@charset "UTF-8";
@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 */
/* 최대 화면 크기 설정 */
/* 반응형이 일어날 화면 설정 */
/* 화면 크기에 따라 크기를 알맞게 설정해주는 함수 */
/* rem 설정을 위한 폰트 */
html {
  font-size: 20px;
}

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: #382d2d;
  font-family: "Pretendard", arial, sans-serif, Arial, dotum, "돋움";
  font-size: 20px;
  letter-spacing: -0.03em;
}

/*-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;
}

a {
  text-decoration: none;
  color: #382d2d;
}

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;
}

/* 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: 2px solid #ddd;
  text-align: center;
  cursor: pointer;
}
.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.8rem;
  padding: 0 0.8rem;
  font-weight: 700;
  font-size: 1.5rem;
}
.btn.xlarge {
  height: 4.4rem;
  padding: 0 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}
.btn.primary {
  background-color: #4b46a6;
  border-color: #4b46a6;
  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.danger {
  background-color: #e0012b;
  border-color: #e0012b;
  color: #fff;
}
.btn.warning {
  background-color: #ff9582;
  border-color: #ff9582;
  color: #fff;
}
.btn.round.small {
  border-radius: 50px;
}
.btn.round.medium {
  border-radius: 40px;
}
.btn.round.large {
  border-radius: 150px;
}
.btn.round.xlarge {
  border-radius: 150px;
}
.btn.border {
  border: 1px solid #222;
}
.btn.border.primary {
  color: #4b46a6;
  border-color: #4b46a6;
  background-color: #fff;
}
.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;
}
@media (min-width: 1100px) {
  .btn.main-hover:hover {
    border-color: #4b46a6;
    background-color: #fff;
    color: #4b46a6;
  }
}
.btn.main-hover.sub {
  border-color: #4b46a6;
  background-color: #fff;
  color: #4b46a6;
}
@media (min-width: 1100px) {
  .btn.main-hover.sub:hover {
    border-color: #8d89cf;
    background-color: #8d89cf;
    color: #fff;
  }
}
.btn.btn-next {
  position: relative;
}
.btn.btn-next::after {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/icon/icon_next_22x22_white.png");
  margin-left: 0.5rem;
}
@media (min-width: 1100px) {
  .btn.btn-next:hover::after {
    background-image: url("../images/icon/icon_next_22x22_primary.png");
  }
}
.btn.btn-next.sub::after {
  background-image: url("../images/icon/icon_next_22x22_primary.png");
}
@media (min-width: 1100px) {
  .btn.btn-next.sub:hover::after {
    background-image: url("../images/icon/icon_next_22x22_white.png");
  }
}

.data-table table {
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #ddd;
}
.data-table th,
.data-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-size: 14px;
}
@media (max-width: 720px) {
  .data-table th,
  .data-table td {
    padding: 10px 8px;
    font-size: 12px;
  }
}
.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 {
  background-color: #f1f1f1;
  border-bottom: 1px solid #ddd;
}
.data-table td {
  border-bottom: 1px solid #ddd;
}

.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: 0.6rem;
  overflow: hidden;
  margin-top: 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;
  width: 1.2rem;
  height: 1.2rem;
}
.pagination .paging.current .page-link {
  font-weight: 900;
  color: #4b46a6;
}
.pagination .page-link {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #666666;
  letter-spacing: -0.02em;
  text-align: center;
}
.pagination .controller {
  width: 1.2rem;
  height: 1.2rem;
}
.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.focus .form-label,
.input-cover.focus .required, .input-cover.open-datepicker .form-label,
.input-cover.open-datepicker .required {
  color: #2c599d !important;
}
.input-cover.focus .form-input, .input-cover.open-datepicker .form-input {
  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.8rem;
  line-height: 2.7rem;
  padding: 0 1rem;
  border: 1px solid #e0e0e3;
  border-radius: 0.2rem;
  font-size: 0.8rem;
  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-size: 0.8rem;
  margin-bottom: 0.3rem;
  color: #999;
}
.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;
}
.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 {
  top: 0;
  right: 0;
  z-index: 1;
}
.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;
  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.medium .btn {
  max-width: 6rem;
}

.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.8rem;
  word-break: keep-all;
}
.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.6rem;
  min-height: 1.2rem;
}
.selector-cover.checkbox.round .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-round-off.png");
}
.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: 1.2rem;
}
.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: #4b46a6;
}
.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: #4b46a6;
  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: #4b46a6;
}
.font.danger {
  color: #e0012b;
}
.font.dark {
  color: #222;
}
.font.lightSlightly {
  color: #a1a1a1;
}

.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: #4b46a6;
}
.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;
}
.layer-popup.open {
  visibility: visible;
  opacity: 1;
}
.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: 20px;
  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: 640px;
}
.layer-popup .popup-container.small {
  max-width: 460px;
}
.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 20px 20px;
  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;
}
@media (max-width: 1100px) {
  .layer-popup .popup-footer .btn-area .btn {
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 0.8rem;
  }
}
.layer-popup .popup-footer .btn-area .btn-close {
  background-color: #666;
}
.layer-popup .popup-footer .btn-area .btn-ok {
  background-color: #4b46a6;
}
.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: 20px;
  font-size: initial;
}
.layer-popup.full-scroll .popup-content {
  height: auto;
  position: relative;
  overflow: visible;
  text-align: left;
}
.layer-popup.full-scroll .popup-common--text {
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1100px) {
  .layer-popup.full-scroll .popup-common--text {
    font-size: 0.8rem;
  }
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup {
    padding: 1rem 0;
  }
}
.layer-popup.common-style--popup .popup-header .btn-close {
  width: 1.3rem;
  height: 1.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.7rem;
  background-size: contain;
  background-image: url("../images/icon/icon-close-white-26x26.png");
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup .popup-header .btn-close {
    width: 0.9rem;
    height: 0.9rem;
    right: 1rem;
  }
}
.layer-popup.common-style--popup .popup-title {
  padding: 1rem;
  background: #4b46a6;
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup .popup-title {
    padding: 0.975rem;
  }
}
.layer-popup.common-style--popup .popup-title strong {
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
  color: #fff;
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup .popup-title strong {
    font-size: 0.9rem;
  }
}
.layer-popup.common-style--popup .popup-inner {
  padding: 2rem 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup .popup-inner {
    padding: 2rem 1rem;
    padding-bottom: 2rem;
  }
}
.layer-popup.common-style--popup .popup-info-items--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.5rem;
}
.layer-popup.common-style--popup .popup-info--item .info-item--title {
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: #cd9ff8;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup .popup-info--item .info-item--title {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}
.layer-popup.common-style--popup .popup-info--item .info-item--title.type-mint {
  background: #5db9c8;
}
.layer-popup.common-style--popup .popup-info--item .info-item--title + .text-box--item {
  margin-bottom: 1.5rem;
}
.layer-popup.common-style--popup .popup-info--item .img {
  margin-bottom: 1.5rem;
}
.layer-popup.common-style--popup .popup-info--item .img.mb10 {
  margin-bottom: 0.5rem;
}
.layer-popup.common-style--popup .popup-info--item .text-box--item + .text-box--item {
  margin-top: 1.5rem;
}
.layer-popup.common-style--popup .popup-info--item .text-box--item .title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: #4b46a6;
  word-break: keep-all;
  margin-bottom: 0.5rem;
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup .popup-info--item .text-box--item .title {
    font-size: 0.8rem;
  }
}
.layer-popup.common-style--popup .popup-info--item .text-box--item .title sup {
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-left: 0.25rem;
}
.layer-popup.common-style--popup .popup-info--item .text-box--item .title.center {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup .popup-info--item .text-box--item .title.center {
    font-size: 1rem;
  }
}
.layer-popup.common-style--popup .popup-info--item .text-box--item p {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.3;
  color: #382d2d;
  word-break: keep-all;
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup .popup-info--item .text-box--item p {
    font-size: 0.7rem;
  }
}
.layer-popup.common-style--popup .popup-info--item .text-box--item small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.3;
  color: #4b46a6;
  margin-top: 0.5rem;
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup .popup-info--item .text-box--item small {
    font-size: 0.6rem;
  }
}
.layer-popup.common-style--popup .popup-info--item .list-flex--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.layer-popup.common-style--popup .popup-info--item .list-flex--item span {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.3;
  color: #382d2d;
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup .popup-info--item .list-flex--item span {
    font-size: 0.7rem;
  }
}
.layer-popup.common-style--popup .popup-info--item .list-flex--item span.radius {
  position: relative;
  top: -0.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.2rem;
  background: #382d2d;
  border-radius: 100%;
}
.layer-popup.common-style--popup .popup-info--item .list-flex--item .reference-list--wrap {
  padding: 0;
}
.layer-popup.common-style--popup .popup-info--item .reference-list--wrap {
  margin-top: 1rem;
  padding: 0 1.125rem;
}
.layer-popup.common-style--popup .popup-info--item .reference-list--wrap .reference-title {
  font-weight: 600;
  color: #4b46a6;
}
.layer-popup.common-style--popup .popup-info--item .reference-list--wrap small {
  color: #382d2d;
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup .popup-info--item .reference-list--wrap small {
    font-size: 0.7rem;
  }
}
.layer-popup.common-style--popup .popup-info--item .reference-list--wrap .list-flex--item {
  display: inline-block;
}
.layer-popup.common-style--popup .popup-info--item .reference-list--wrap .list-flex--item span {
  color: #4b46a6;
  word-break: keep-all;
}
.layer-popup.common-style--popup .popup-info--item .reference-list--wrap .list-flex--item span.radius {
  width: auto;
  height: auto;
  position: static;
  background: transparent;
  margin-right: 0;
}
.layer-popup.common-style--popup .btn-area {
  width: 100%;
  max-width: 25.5rem;
  margin: 0 auto;
  margin-top: 2.5rem;
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup .btn-area {
    margin-top: 1.5rem;
  }
}
.layer-popup.common-style--popup .btn-area .btn {
  width: 100%;
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup .btn-area .btn {
    height: 2.7rem;
    font-size: 0.95rem;
  }
}
.layer-popup.common-style--popup .btn-area .btn + .btn {
  margin-top: 1rem;
}
@media (max-width: 1100px) {
  .layer-popup.common-style--popup .btn-area .btn + .btn {
    margin-top: 0.5rem;
  }
}

.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);
}
.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;
  }
}
.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;
}

@-webkit-keyframes widthAni {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes widthAni {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.typing {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes cardFlip {
  0% {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  100% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
}

@keyframes cardFlip {
  0% {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  100% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
}
::-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; /*스크롤바 트랙 색상*/
}

.ui-datepicker {
  width: 16em !important;
  padding: 0.5rem !important;
}
@media (max-width: 720px) {
  .ui-datepicker {
    width: 15em !important;
  }
}
.ui-datepicker.ui-widget.ui-widget-content {
  margin-top: 0.5rem;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  top: 50% !important;
}
.ui-datepicker .ui-datepicker-prev .ui-icon,
.ui-datepicker .ui-datepicker-next .ui-icon {
  width: 16px;
  height: 16px;
  background-repeat: no-repeat !important;
  background-position: 0 0 !important;
  background-size: cover !important;
}
.ui-datepicker .ui-datepicker-prev .ui-icon {
  background-image: url("../images/components/icon-arrow-prev-bk-32x32.png") !important;
}
.ui-datepicker .ui-datepicker-next .ui-icon {
  background-image: url("../images/components/icon-arrow-next-bk-32x32.png") !important;
}
.ui-datepicker .ui-widget-header {
  background-color: #fff;
  border: 0;
}
.ui-datepicker .ui-datepicker-title {
  font-size: 0.6rem;
}
.ui-datepicker .ui-datepicker-title select {
  width: calc(45% - 10px) !important;
  margin: 0 0.25rem !important;
  padding: 0.25rem 0.5rem !important;
  border: 1px solid #ddd !important;
  font-size: 0.7rem !important;
}
.ui-datepicker .ui-state-default {
  border: 0 !important;
  background-color: #fff !important;
  text-align: center !important;
  font-size: 0.8rem;
}
.ui-datepicker .ui-state-default.ui-state-active {
  background-color: #4b46a6 !important;
  border-color: transparent !important;
  color: #fff !important;
}

.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: 1100px) {
  .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(75, 70, 166, 0.4);
  border-radius: 50%;
  color: #4b46a6;
}
.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: #4b46a6 !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;
}

body {
  /* 프로젝트 마무리후 비밀번호 삽입시 주석 제거 */
}

html,
body {
  height: 100%;
  overscroll-behavior: none;
}

.section-inner {
  max-width: 65.6rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

#header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.5rem;
  position: absolute;
  top: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 64rem;
  border-radius: 1.5rem;
  background-color: #fff;
}
@media (max-width: 1100px) {
  #header {
    width: calc(100% - 2rem);
  }
}
#header.header.sub .section-inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#header .section-inner {
  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: 0 1.5rem;
}
@media (max-width: 1100px) {
  #header .section-inner {
    padding-left: 1rem;
    padding-right: 0.5rem;
  }
}
#header .header-logo a {
  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;
}
#header .header-logo img {
  max-width: 6.65rem;
}
@media (max-width: 1100px) {
  #header .header-logo img {
    max-width: 4.45rem;
  }
}
#header .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media (max-width: 1100px) {
  #header .header-menu {
    display: none;
  }
}
#header .header-menu-item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
  font-size: 0.7rem;
}
#header .header-menu-item a:hover {
  color: #ff8bc9;
}
#header .header-util {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
#header .header-util .btn-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.5rem;
  gap: 0.25rem;
  padding: 0 0.75rem;
  font-weight: 700;
  font-size: 0.7rem;
  color: #fff;
  border-radius: 2.5rem;
  background-color: #ff8bc9;
}
#header .header-util .btn-search .icon {
  width: 0.5rem;
  height: 0.7rem;
  background: url("../images/layout/icon-location-w.png") no-repeat 0 0;
  background-size: cover;
}
#header .header-util .btn-share {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #ff8bc9;
  text-indent: -9999px;
}
#header .header-util .btn-share::before {
  display: block;
  content: "";
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.65rem;
  height: 0.7rem;
  background: url("../images/layout/icon-share-w.png") no-repeat 0 0;
  background-size: cover;
}

.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);
}

#container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100dvh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.85rem 0;
  background-color: #5b5b5b;
}
@media (max-width: 1100px) {
  #footer {
    padding: 0.7rem 0;
  }
}
#footer .section-inner {
  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;
}
@media (max-width: 1100px) {
  #footer .section-inner {
    -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;
  }
}
#footer .footer-logo a,
#footer .footer-logo img {
  display: block;
}
#footer .footer-logo img {
  max-width: 5rem;
}
@media (max-width: 1100px) {
  #footer .footer-logo img {
    max-width: 3.9rem;
  }
}
#footer .copyright {
  font-weight: 300;
  font-size: 0.6rem;
  color: #fff;
}
@media (max-width: 1100px) {
  #footer .copyright {
    font-size: 0.5rem;
    margin-top: 0.25rem;
  }
}

.quick-menu--wrap {
  display: none;
  position: sticky;
  bottom: 0;
  left: 0;
}
@media (max-width: 1100px) {
  .quick-menu--wrap {
    display: block;
  }
}
.quick-menu--wrap .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #4b46a6;
}
.quick-menu--wrap .flex-box .link-btn {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  padding: 0.55rem 0;
}
.quick-menu--wrap .flex-box .link-btn:last-child::after {
  display: none;
}
.quick-menu--wrap .flex-box .link-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 2.4rem;
  background: rgba(255, 255, 255, 0.4);
}

#content {
  background-color: #ffebeb;
  overflow: hidden;
}

.main-page-content {
  padding: 9.5rem 0 5rem;
}
@media (max-width: 1100px) {
  .main-page-content {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }
}
.main-page-content .section-title {
  text-align: center;
}
.main-page-content .section-title .sub-title {
  line-height: 1.2;
  font-weight: 700;
  font-size: 2rem;
  color: #4b46a6;
}
@media (max-width: 1100px) {
  .main-page-content .section-title .sub-title {
    font-size: 1rem;
  }
}
.main-page-content .section-title .sub-title .bora {
  color: #9757d0;
}
.main-page-content .section-title .sub-title .melian {
  color: #5db9c8;
}
.main-page-content .section-title .title {
  line-height: 1.2;
  font-weight: 700;
  font-size: 3rem;
  color: #4b46a6;
}
@media (max-width: 1100px) {
  .main-page-content .section-title .title {
    font-size: 1.8rem;
  }
}
.main-page-content .keyvisual-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  position: relative;
  margin-top: 2rem;
}
@media (max-width: 1100px) {
  .main-page-content .keyvisual-content {
    margin-top: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.main-page-content .keyvisual-content .content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 1.5rem);
  height: 14rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) {
  .main-page-content .keyvisual-content .content-item {
    width: 100%;
    height: 5rem;
  }
}
.main-page-content .keyvisual-content .content-item.left {
  text-align: right;
  padding-right: 7rem;
  border-radius: 0 7.5rem 7.5rem 0;
  background-color: #cd9ff8;
}
@media (max-width: 1100px) {
  .main-page-content .keyvisual-content .content-item.left {
    padding-right: 1.5rem;
    border-radius: 0 7rem 7rem 0;
  }
}
.main-page-content .keyvisual-content .content-item.left .img {
  right: 14.5rem;
}
@media (max-width: 1100px) {
  .main-page-content .keyvisual-content .content-item.left .img {
    right: 0;
    left: 0;
    max-width: 5.35rem;
  }
}
@media (max-width: 1100px) {
  .main-page-content .keyvisual-content .content-item.left .text-area {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 1100px) {
  .main-page-content .keyvisual-content .content-item.left .text-area .title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.main-page-content .keyvisual-content .content-item.right {
  text-align: left;
  padding-left: 7rem;
  border-radius: 7.5rem 0 0 7.5rem;
  background-color: #8ddbfe;
}
@media (max-width: 1100px) {
  .main-page-content .keyvisual-content .content-item.right {
    padding-left: 1.5rem;
    border-radius: 7rem 0 0 7rem;
  }
}
.main-page-content .keyvisual-content .content-item.right .img {
  left: 12.95rem;
}
@media (max-width: 1100px) {
  .main-page-content .keyvisual-content .content-item.right .img {
    left: auto;
    right: 0.6rem;
    max-width: 5.35rem;
  }
}
.main-page-content .keyvisual-content .content-item .img {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.main-page-content .keyvisual-content .content-item .text-area {
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (max-width: 1100px) {
  .main-page-content .keyvisual-content .content-item .text-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.main-page-content .keyvisual-content .content-item .title {
  font-weight: 700;
  font-size: 2rem;
  color: #4b46a6;
}
@media (max-width: 1100px) {
  .main-page-content .keyvisual-content .content-item .title {
    font-size: 1.2rem;
  }
}
.main-page-content .keyvisual-content .content-item .sub-text {
  margin-top: 0.5rem;
  line-height: 1.3;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b46a6;
}
@media (max-width: 1100px) {
  .main-page-content .keyvisual-content .content-item .sub-text {
    font-size: 0.7rem;
    margin-top: 0;
  }
}
.main-page-content .keyvisual-content .img-center {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  max-width: 15.2rem;
}
@media (max-width: 1100px) {
  .main-page-content .keyvisual-content .img-center {
    max-width: 3.5rem;
  }
}
.main-page-content .more-content {
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 1100px) {
  .main-page-content .more-content {
    margin-top: 1.5rem;
  }
}
.main-page-content .more-content .text {
  font-size: 1.25rem;
  color: #4b46a6;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .main-page-content .more-content .text {
    font-size: 0.9rem;
  }
}
.main-page-content .more-content .text strong {
  font-weight: 800;
  color: #4b46a6;
}
.main-page-content .more-content .btn {
  width: 100%;
  max-width: 18rem;
  margin: 1.5rem auto 0;
}
@media (max-width: 1100px) {
  .main-page-content .more-content .btn {
    margin-top: 0;
    max-width: 12rem;
    height: 2.7rem;
    font-size: 1rem;
    font-weight: 700;
  }
}
.main-page-content .more-content .count {
  margin-top: 1rem;
  font-size: 0.9rem;
}
@media (max-width: 1100px) {
  .main-page-content .more-content .count {
    margin-top: 0.5rem;
    font-size: 0.7rem;
  }
}
.main-page-content .more-content .count strong {
  font-weight: 700;
  color: #4b46a6;
}

.intro-page-content {
  overflow: hidden;
  height: calc(100vh - 2.6rem);
  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;
}
@media (max-width: 1100px) {
  .intro-page-content {
    height: calc(100vh - 3.25rem);
  }
}
.intro-page-content .intro-section .intro-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;
}
.intro-page-content .intro-section .intro-img--wrap {
  width: 10rem;
  height: 10rem;
  margin-bottom: 2rem;
}
@media (max-width: 1100px) {
  .intro-page-content .intro-section .intro-img--wrap {
    width: 8rem;
    height: 8rem;
    margin-bottom: 1.5rem;
  }
}
.intro-page-content .intro-section .intro-text--wrap p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
  color: #4b46a6;
}
@media (max-width: 1100px) {
  .intro-page-content .intro-section .intro-text--wrap p {
    font-size: 1rem;
  }
}
.intro-page-content .intro-section .intro-button--wrap {
  width: 100%;
  max-width: 13.7rem;
  margin-top: 1.5rem;
}
@media (max-width: 1100px) {
  .intro-page-content .intro-section .intro-button--wrap {
    max-width: 12rem;
  }
}
.intro-page-content .intro-section .intro-button--wrap .btn {
  width: 100%;
}
@media (max-width: 1100px) {
  .intro-page-content .intro-section .intro-button--wrap .btn {
    font-size: 1rem;
    height: 2.7rem;
  }
  .intro-page-content .intro-section .intro-button--wrap .btn::after {
    width: 0.8rem;
    height: 0.8rem;
  }
}

.quiz-page-content {
  padding: 7.5rem 0 3.9rem;
}
@media (max-width: 1100px) {
  .quiz-page-content {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }
}
.quiz-page-content .quiz-section .gage-bar--item {
  position: relative;
  width: 100%;
  height: 0.8rem;
  border-radius: 1.9rem;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.quiz-page-content .quiz-section .gage-bar--item .gage-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 15.75rem;
  height: 0.8rem;
  border-radius: 2.65rem;
  background: #cd9ff8;
  opacity: 0;
}
.quiz-page-content .quiz-section .gage-bar--item .gage-bg.active {
  -webkit-animation: widthAni 0.3s ease-in-out both;
          animation: widthAni 0.3s ease-in-out both;
}
.quiz-page-content .quiz-section .quiz-content--items--wrap {
  width: 100%;
  max-width: 31.5rem;
  margin: 0 auto;
  margin-top: 1.5rem;
}
@media (max-width: 1100px) {
  .quiz-page-content .quiz-section .quiz-content--items--wrap {
    margin-top: 0;
  }
}
.quiz-page-content .quiz-section .quiz-content--item {
  -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;
  display: none;
}
.quiz-page-content .quiz-section .quiz-content--item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.quiz-page-content .quiz-section .question-num {
  width: 100%;
  max-width: 8.8rem;
  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: #4b46a6;
  padding: 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: -0.03em;
  border-radius: 3.85rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1100px) {
  .quiz-page-content .quiz-section .question-num {
    max-width: 5.5rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
  }
}
.quiz-page-content .quiz-section .question-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
  color: #4b46a6;
  margin-bottom: 0.5rem;
}
@media (max-width: 1100px) {
  .quiz-page-content .quiz-section .question-title {
    font-size: 1rem;
  }
}
.quiz-page-content .quiz-section .question-desc {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.03em;
  text-align: center;
  color: #4b46a6;
  margin-bottom: 1.5rem;
}
@media (max-width: 1100px) {
  .quiz-page-content .quiz-section .question-desc {
    font-size: 0.7rem;
  }
}
.quiz-page-content .quiz-section .question-desc span {
  display: block;
}
.quiz-page-content .quiz-section .question-desc span + span {
  margin-top: 0.5rem;
}
.quiz-page-content .quiz-section .question-desc .marker {
  display: inline-block;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(0, #8ddbfe));
  background-image: linear-gradient(90deg, transparent 50%, #8ddbfe 0);
  background-position: 0;
  background-size: 200%;
  -webkit-transition: background-position 0.5s linear;
  transition: background-position 0.5s linear;
  border-radius: 2.65rem;
}
@media (max-width: 1100px) {
  .quiz-page-content .quiz-section .question-desc .marker {
    border-radius: 1.325rem;
  }
}
.quiz-page-content .quiz-section .question-desc .marker.on {
  background-position: -100%;
}
.quiz-page-content .quiz-section .question-select--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.5rem;
}
@media (max-width: 1100px) {
  .quiz-page-content .quiz-section .question-select--wrap {
    gap: 0.4rem;
  }
}
.quiz-page-content .quiz-section .question-select--wrap.small {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 0.25rem;
}
@media (max-width: 1100px) {
  .quiz-page-content .quiz-section .question-select--wrap.small {
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.quiz-page-content .quiz-section .question-select--wrap.small .question-select--item .text {
  width: 4rem;
  height: 1.45rem;
}
@media (max-width: 1100px) {
  .quiz-page-content .quiz-section .question-select--wrap.small .question-select--item .text {
    width: 3.7rem;
  }
}
.quiz-page-content .quiz-section .question-select--wrap .question-select--item {
  display: block;
  cursor: pointer;
}
.quiz-page-content .quiz-section .question-select--wrap .question-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;
}
.quiz-page-content .quiz-section .question-select--wrap .question-select--item .form-check.focusable:active, .quiz-page-content .quiz-section .question-select--wrap .question-select--item .form-check.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.quiz-page-content .quiz-section .question-select--wrap .question-select--item .form-check:checked + .text {
  border-color: #cd9ff8;
  color: #ffffff;
  background: #cd9ff8;
}
.quiz-page-content .quiz-section .question-select--wrap .question-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;
  text-align: center;
  width: 17rem;
  height: 2.5rem;
  border: 1px solid #cd9ff8;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 3.85rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0.4rem;
  word-break: keep-all;
  background-color: transparent;
}
@media (max-width: 1100px) {
  .quiz-page-content .quiz-section .question-select--wrap .question-select--item .text {
    width: 16rem;
  }
}
.quiz-page-content .quiz-section .quiz-button--wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 13.7rem;
  margin-top: 3rem;
}
@media (max-width: 1100px) {
  .quiz-page-content .quiz-section .quiz-button--wrap {
    max-width: 12rem;
    margin-top: 1.5rem;
  }
}
.quiz-page-content .quiz-section .quiz-button--wrap .btn {
  width: 100%;
}
@media (max-width: 1100px) {
  .quiz-page-content .quiz-section .quiz-button--wrap .btn {
    font-size: 1rem;
    height: 2.7rem;
  }
  .quiz-page-content .quiz-section .quiz-button--wrap .btn::after {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.quiz-page-content .quiz-section .quiz-content--items--wrap.step01 .gage-bar--item .gage-bg.left {
  display: block;
}
.quiz-page-content .quiz-section .quiz-content--items--wrap.step01 .quiz-content--item.quiz01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.quiz-page-content .quiz-section .quiz-content--items--wrap.step02 .gage-bar--item .gage-bg.right {
  display: block;
}
.quiz-page-content .quiz-section .quiz-content--items--wrap.step02 .quiz-content--item.quiz02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.result-page-content {
  padding-top: 7.5rem;
}
@media (max-width: 1100px) {
  .result-page-content {
    padding-top: 5.5rem;
  }
}
.result-page-content .common-section--title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
  color: #4b46a6;
  margin-bottom: 1.5rem;
}
@media (max-width: 1100px) {
  .result-page-content .common-section--title {
    font-size: 1rem;
  }
}
.result-page-content .result-section {
  padding-bottom: 3rem;
}
@media (max-width: 1100px) {
  .result-page-content .result-section {
    padding-bottom: 2rem;
  }
}
.result-page-content .result-section .result-heading--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-bottom: 1.5rem;
}
.result-page-content .result-section .result-cate {
  width: 100%;
  max-width: 11.25rem;
  height: 2.5rem;
  border-radius: 3.85rem;
  background: #4b46a6;
  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: 1.25rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
@media (max-width: 1100px) {
  .result-page-content .result-section .result-cate {
    max-width: 7.05rem;
    height: 1.85rem;
    font-size: 0.9rem;
  }
}
.result-page-content .result-section .result-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  color: #4b46a6;
  margin-bottom: 0.5rem;
}
@media (max-width: 1100px) {
  .result-page-content .result-section .result-title {
    font-size: 1rem;
  }
}
.result-page-content .result-section .result-desc {
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: #4b46a6;
  text-align: center;
}
@media (max-width: 1100px) {
  .result-page-content .result-section .result-desc {
    font-size: 0.6rem;
  }
}
.result-page-content .result-section .result-card-img--box {
  width: 100%;
  max-width: 20.25rem;
  margin: 0 auto;
  -webkit-perspective: 1000;
  -o-perspective: 1000;
  perspective: 1000;
}
.result-page-content .result-section .result-card-img--box .card-img {
  position: relative;
  padding-bottom: 177.77%;
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -moz-transition: 0.6s;
  -moz-transform-style: preserve-3d;
  -o-transition: 0.6s;
  -o-transform-style: preserve-3d;
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
  -webkit-animation: cardFlip 0.5s ease;
          animation: cardFlip 0.5s ease;
}
@media (max-width: 1100px) {
  .result-page-content .result-section .result-card-img--box .card-img {
    font-size: 0.6rem;
  }
}
.result-page-content .result-section .result-card-img--box img {
  position: absolute;
  width: 100%;
}
.result-page-content .result-section .result-button--wrap {
  width: 100%;
  max-width: 20rem;
  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: 0 auto;
  margin-top: 3rem;
  gap: 1rem;
}
@media (max-width: 1100px) {
  .result-page-content .result-section .result-button--wrap {
    margin-top: 1.5rem;
    gap: 0.5rem;
    max-width: 16rem;
  }
}
.result-page-content .result-section .result-button--wrap .btn {
  width: 100%;
}
@media (max-width: 1100px) {
  .result-page-content .result-section .result-button--wrap .btn {
    height: 2.7rem;
    font-size: 1rem;
  }
}
.result-page-content .result-section .result-button--wrap .btn::after {
  display: none;
}
.result-page-content .drug-about--section .drug-about--con {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.result-page-content .drug-about--section .drug-about--item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 7rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 1100px) {
  .result-page-content .drug-about--section .drug-about--item {
    padding-top: 6.5rem;
    padding-bottom: 1rem;
  }
}
.result-page-content .drug-about--section .drug-about--item .drug-about-item--con {
  width: 100%;
  max-width: 25rem;
  margin: 0 auto;
}
.result-page-content .drug-about--section .drug-about--item:nth-child(1) {
  background: #eddbff;
}
.result-page-content .drug-about--section .drug-about--item:nth-child(2) {
  background: #bae9ff;
}
.result-page-content .drug-about--section .drug-title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  color: #382d2d;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media (max-width: 1100px) {
  .result-page-content .drug-about--section .drug-title {
    font-size: 0.9rem;
  }
}
.result-page-content .drug-about--section .drug-title strong {
  font-weight: 700;
}
.result-page-content .drug-about--section .drug-desc {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-align: center;
  color: #382d2d;
}
@media (max-width: 1100px) {
  .result-page-content .drug-about--section .drug-desc {
    font-size: 0.7rem;
  }
}
.result-page-content .drug-about--section .drug-img--wrap {
  width: 100%;
  max-width: 13.25rem;
  margin: 0 auto;
  margin-top: 1.5rem;
}
@media (max-width: 1100px) {
  .result-page-content .drug-about--section .drug-img--wrap {
    max-width: 6.9rem;
    margin-top: 3rem;
  }
}
.result-page-content .drug-about--section .img-object {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 15.5rem;
}
@media (max-width: 1100px) {
  .result-page-content .drug-about--section .img-object {
    max-width: 5rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: auto;
    bottom: 4.4rem;
  }
}
@media (max-width: 1100px) {
  .result-page-content .drug-about--section .mobile-only--object {
    position: absolute;
    top: 1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 12rem;
  }
}
.result-page-content .about-detail--section {
  background: #ffeecc;
  padding: 3rem 0;
}
@media (max-width: 1100px) {
  .result-page-content .about-detail--section {
    padding: 2rem 0;
  }
}
.result-page-content .about-detail--section .section-inner {
  max-width: 64rem;
  padding: 0;
}
@media (max-width: 1320px) {
  .result-page-content .about-detail--section .section-inner {
    padding: 0 0.8rem;
  }
}
.result-page-content .about-detail--section .about-detail--con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 1100px) {
  .result-page-content .about-detail--section .about-detail--con {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.result-page-content .about-detail--section .about-detail--item {
  width: calc((100% - 0.5rem) / 2);
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: #fff;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .result-page-content .about-detail--section .about-detail--item {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
  }
}
.result-page-content .about-detail--section .about-detail--item .detail-text {
  min-height: 2.9rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #382d2d;
}
@media (max-width: 1100px) {
  .result-page-content .about-detail--section .about-detail--item .detail-text {
    font-size: 0.9rem;
    min-height: 2.1rem;
  }
}
.result-page-content .about-detail--section .about-detail--item .btn-detail--wrap {
  text-align: right;
}
@media (max-width: 1100px) {
  .result-page-content .about-detail--section .about-detail--item .btn-detail--wrap {
    margin-top: 1.05rem;
  }
}
.result-page-content .about-detail--section .about-detail--item .btn-detail {
  width: 6rem;
  height: 2.05rem;
  background: #ff8bc9;
  color: #fff;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .result-page-content .about-detail--section .about-detail--item .btn-detail {
    width: 5.1rem;
    height: 1.85rem;
    font-size: 0.7rem;
  }
}
.result-page-content .tab-menu--section {
  padding: 3rem 0;
}
@media (max-width: 1100px) {
  .result-page-content .tab-menu--section {
    padding: 2rem 0;
  }
}
.result-page-content .tab-menu--section .drug-tab-button--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1100px) {
  .result-page-content .tab-menu--section .drug-tab-button--wrap {
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
    margin-bottom: 0.75rem;
  }
}
.result-page-content .tab-menu--section .drug-tab-button--wrap .drug-tab--button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
  border-radius: 1.5rem;
  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;
  padding: 1.325rem 0;
}
@media (max-width: 1100px) {
  .result-page-content .tab-menu--section .drug-tab-button--wrap .drug-tab--button {
    border-radius: 1rem;
    padding: 0.75rem 0;
  }
}
.result-page-content .tab-menu--section .drug-tab-button--wrap .drug-tab--button.active {
  background: #4b46a6;
}
.result-page-content .tab-menu--section .drug-tab-button--wrap .drug-tab--button.active small,
.result-page-content .tab-menu--section .drug-tab-button--wrap .drug-tab--button.active big {
  color: #fff;
}
.result-page-content .tab-menu--section .drug-tab-button--wrap .drug-tab--button small {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03m;
  text-align: center;
  color: #382d2d;
}
@media (max-width: 1100px) {
  .result-page-content .tab-menu--section .drug-tab-button--wrap .drug-tab--button small {
    font-size: 0.6rem;
  }
}
.result-page-content .tab-menu--section .drug-tab-button--wrap .drug-tab--button big {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03m;
  text-align: center;
  color: #382d2d;
  margin-top: 0.5rem;
}
@media (max-width: 1100px) {
  .result-page-content .tab-menu--section .drug-tab-button--wrap .drug-tab--button big {
    font-size: 1rem;
    margin-top: 0.25rem;
  }
}
.result-page-content .tab-menu--section .content-item {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  display: none;
}
@media (max-width: 1100px) {
  .result-page-content .tab-menu--section .content-item {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.result-page-content .tab-menu--section .content-item.active {
  display: block;
}
.result-page-content .tab-menu--section .content-item .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
@media (max-width: 1100px) {
  .result-page-content .tab-menu--section .content-item .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
  }
}
.result-page-content .tab-menu--section .content-item .content-right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 15.75rem;
}
@media (max-width: 1100px) {
  .result-page-content .tab-menu--section .content-item .content-right {
    max-width: 100%;
  }
}
.result-page-content .tab-menu--section .content-item .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.result-page-content .tab-menu--section .content-item .heading small,
.result-page-content .tab-menu--section .content-item .heading big {
  display: block;
}
.result-page-content .tab-menu--section .content-item .heading small {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: #382d2d;
}
@media (max-width: 1100px) {
  .result-page-content .tab-menu--section .content-item .heading small {
    font-size: 0.6rem;
  }
}
.result-page-content .tab-menu--section .content-item .heading big {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
@media (max-width: 1100px) {
  .result-page-content .tab-menu--section .content-item .heading big {
    font-size: 1.25rem;
    margin-top: 0.25rem;
  }
}
.result-page-content .tab-menu--section .content-item .heading big strong {
  font-weight: 700;
}
.result-page-content .tab-menu--section .content-item .heading big sup {
  font-size: 1.25rem;
  font-weight: 700;
}
@media (max-width: 1100px) {
  .result-page-content .tab-menu--section .content-item .heading big sup {
    font-size: 0.7rem;
  }
}
.result-page-content .tab-menu--section .content-item .content-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: #382d2d;
  margin-top: 0.9rem;
}
@media (max-width: 1100px) {
  .result-page-content .tab-menu--section .content-item .content-text {
    font-size: 0.6rem;
    margin-top: 0.75rem;
  }
}
.result-page-content .tab-menu--section .content-item.content01 .heading big {
  color: #4b46a6;
}
.result-page-content .tab-menu--section .content-item.content02 .heading big {
  color: #5db9c8;
}
.result-page-content .reference-section {
  padding: 2rem 0;
  background: #dfdfdf;
}
.result-page-content .reference-section .title {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.03m;
  color: #382d2d;
  margin-bottom: 0.5rem;
}
@media (max-width: 1100px) {
  .result-page-content .reference-section .title {
    font-size: 0.6rem;
  }
}
.result-page-content .reference-section .rerference-items--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: 0.5rem;
}
.result-page-content .reference-section .rerference-items--wrap .referecne-item {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: #382d2d;
}
@media (max-width: 1100px) {
  .result-page-content .reference-section .rerference-items--wrap .referecne-item {
    font-size: 0.6rem;
  }
}
.result-page-content .info-section {
  padding: 2rem 0;
  background: #f1f1f1;
}
.result-page-content .info-section .title {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.03m;
  color: #382d2d;
  margin-bottom: 0.5rem;
}
@media (max-width: 1100px) {
  .result-page-content .info-section .title {
    font-size: 0.6rem;
  }
}
.result-page-content .info-section p {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: #382d2d;
}
@media (max-width: 1100px) {
  .result-page-content .info-section p {
    font-size: 0.6rem;
  }
}