@font-face {
  font-family: "OneShinhan";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("One Shinhan Light"), url("../fonts/OneShinhanLight.woff2") format("woff2"), url("../fonts/OneShinhanLight.otf") format("opentype");
}
@font-face {
  font-family: "OneShinhan";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("One Shinhan Medium"), url("../fonts/OneShinhanMedium.woff2") format("woff2"), url("../fonts/OneShinhanMedium.otf") format("opentype");
}
@font-face {
  font-family: "OneShinhan";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("One Shinhan Bold"), url("../fonts/OneShinhanBold.woff2") format("woff2"), url("../fonts/OneShinhanBold.otf") format("opentype");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "OneShinhan", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #15171d;
  background: #ffffff;
  word-break: keep-all;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 0 solid #2878f5;
  outline-offset: 0;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}
button:focus-visible {
  outline: 0 solid #2878f5;
  outline-offset: 0;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 0 solid #2878f5;
  outline-offset: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.smr-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.smr-page {
  position: relative;
  min-height: calc(100vh - 490px);
  background: #ffffff;
}
.smr-page > [class^=SMR_FP],
.smr-page > [class*=" SMR_FP"] {
  display: none;
}
.smr-page > [class^=SMR_FP].smr-is-active,
.smr-page > [class*=" SMR_FP"].smr-is-active {
  display: block;
}

.smr-container {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 2rem;
}
.smr-container--narrow, .smr-container--card {
  max-width: 100%;
}

.smr-section {
  padding-block: 4rem 8rem;
}
.smr-section + .smr-section {
  padding-top: 0;
}
.smr-section__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  margin-bottom: 1.6rem;
  color: #15171d;
}
.smr-section__body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.smr-section__body--center {
  align-items: center;
  gap: 3.2rem;
  text-align: center;
}

.smr-intro {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #686f82;
}

.smr-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  transition: transform 300ms ease-out;
}
.smr-header.smr-is-hidden {
  transform: translateY(-100%);
}
.smr-header.smr-is-open {
  transform: none;
  transition: none;
}
.smr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  height: 6rem;
  padding-inline: 2rem;
}
.smr-header__logo {
  flex-shrink: 0;
}
.smr-header__logo img {
  display: block;
  width: auto;
  height: 2.6rem;
}
.smr-header__nav {
  display: none;
}
.smr-header__utils {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.8rem;
}
.smr-header__login, .smr-header__toggle {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  font-size: 0;
  transition: background-color 150ms ease-out, color 150ms ease-out;
}
.smr-header__login::after, .smr-header__toggle::after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-color: currentcolor;
  mask: var(--smr-header-icon) no-repeat center/contain;
  -webkit-mask: var(--smr-header-icon) no-repeat center/contain;
}
.smr-header__login::before, .smr-header__toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.4rem;
  height: 4.4rem;
  transform: translate(-50%, -50%);
}
.smr-header__login {
  --smr-header-icon: url('../images/common/ico_user.svg');
  background: #eef0f4;
  color: #2e323f;
}
.smr-header__toggle {
  --smr-header-icon: url('../images/common/ico_menu.svg');
  background: #0046ff;
  color: #ffffff;
}
.smr-header--overlay {
  margin-bottom: -6rem;
}
.smr-header--overlay.smr-is-top:not(.smr-is-open) {
  background: transparent;
}
.smr-header--overlay.smr-is-top:not(.smr-is-open) .smr-header__logo {
  background: url("../images/common/logo_gnb_w.svg") no-repeat left center/contain;
}
.smr-header--overlay.smr-is-top:not(.smr-is-open) .smr-header__logo img {
  visibility: hidden;
}
.smr-header--overlay.smr-is-top:not(.smr-is-open) .smr-header__login {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  backdrop-filter: blur(5px);
}
.smr-header--overlay.smr-is-top:not(.smr-is-open) .smr-header__toggle {
  background: rgba(0, 70, 255, 0.8);
  backdrop-filter: blur(5px);
}

.smr-is-preopen .smr-header__nav {
  display: none;
}
.smr-is-preopen .smr-header__utils {
  display: none;
}

.smr-footer {
  min-width: 100%;
  background: #ffffff;
}
.smr-footer__partners {
  border-top: 1px solid #e1e4ea;
}
.smr-footer__partner-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 1.6rem 3rem;
  min-height: 12rem;
  padding-block: 1.6rem;
}
.smr-footer__partner {
  flex-shrink: 0;
}
.smr-footer__partner-logo {
  display: block;
}
.smr-footer__inner {
  padding-block: 5.1rem 5rem;
  border-top: 1px solid #e1e4ea;
}
.smr-footer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}
.smr-footer__logo {
  flex-shrink: 0;
  width: auto;
  height: 2.8rem;
}
.smr-footer__body {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  min-width: 0;
}
.smr-footer__policy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  line-height: 1;
}
.smr-footer__policy-link {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  line-height: 1;
  color: #686f82;
  transition: color 150ms ease-out;
}
.smr-footer__policy-link:hover {
  color: #15171d;
  text-decoration: underline;
}
.smr-footer__policy-link--strong {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  color: #15171d;
}
.smr-footer__info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.smr-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.smr-footer__address {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  font-style: normal;
  color: #686f82;
}
.smr-footer__label {
  color: #2e323f;
}
.smr-footer__callcenter-title, .smr-footer__callcenter-tel {
  line-height: 1.6;
}
.smr-footer__callcenter-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #15171d;
}
.smr-footer__callcenter-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #15171d;
}
.smr-footer__callcenter-hours {
  font-size: 1.2rem;
  font-weight: 300;
  color: #686f82;
}
.smr-footer__copyright {
  padding-top: 2.1rem;
  border-top: 1px solid #e1e4ea;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #686f82;
}
.smr-footer__floating {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 150ms ease-out, transform 150ms ease-out, visibility 150ms ease-out;
}
.smr-footer__floating.smr-is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.smr-footer__floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 999px;
  background: #031d62;
  backdrop-filter: blur(5px);
}
.smr-footer__floating-button::after {
  content: "";
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background-color: #ffffff;
  mask: url("../images/common/arrow-narrow-up.svg") no-repeat center/contain;
  -webkit-mask: url("../images/common/arrow-narrow-up.svg") no-repeat center/contain;
}

.smr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  height: 4.8rem;
  min-width: 15.2rem;
  padding-inline: 2rem;
  border: 1.5px solid #c7ccd6;
  border-radius: 12px;
  background: #ffffff;
  color: #15171d;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  transition: background-color 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out;
}
.smr-button:hover {
  border-color: #2878f5;
  color: #2878f5;
}
.smr-button:active {
  border-color: #1448a3;
  color: #1448a3;
}
.smr-button:disabled, .smr-button.smr-is-disabled {
  border-color: #e1e4ea;
  color: #a6acbb;
  cursor: default;
  pointer-events: none;
}
.smr-button--primary {
  border-color: #2878f5;
  background: #2878f5;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(40, 120, 245, 0.3);
}
.smr-button--primary:hover {
  border-color: #1c5fd1;
  background: #1c5fd1;
  color: #ffffff;
}
.smr-button--primary:active {
  border-color: #1448a3;
  background: #1448a3;
  color: #ffffff;
}
.smr-button--primary:disabled, .smr-button--primary.smr-is-disabled {
  border-color: #99cdfb;
  background: #99cdfb;
  color: #ffffff;
  box-shadow: none;
}
.smr-button--neutral {
  border-color: #686f82;
  background: #686f82;
  color: #ffffff;
}
.smr-button--neutral:hover, .smr-button--neutral:active {
  border-color: #15171d;
  background: #15171d;
  color: #ffffff;
}
.smr-button--neutral:disabled, .smr-button--neutral.smr-is-disabled {
  border-color: #c7ccd6;
  background: #c7ccd6;
  color: #ffffff;
}
.smr-button--error {
  border-color: #ef4444;
  background: #fde8e8;
  color: #b91c1c;
}
.smr-button--error:hover, .smr-button--error:active {
  border-color: #ef4444;
  color: #b91c1c;
}
.smr-button--sm {
  height: 4.8rem;
  min-width: 15.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.smr-button--full {
  width: 100%;
  min-width: 0;
}
.smr-button.smr-is-loading {
  cursor: default;
  pointer-events: none;
}
.smr-button.smr-is-loading::before {
  content: "";
  width: 2rem;
  height: 2rem;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: smr-spin 700ms linear infinite;
}

@keyframes smr-spin {
  to {
    transform: rotate(360deg);
  }
}
.smr-button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.smr-button-group .smr-button {
  flex: 1;
  min-width: 0;
}

.smr-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 150ms ease-out, visibility 150ms ease-out;
}
.smr-drawer-overlay.smr-is-open {
  opacity: 1;
  visibility: visible;
}

.smr-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100dvh;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 150ms ease-out;
}
.smr-drawer.smr-is-open {
  transform: translateX(0);
}
.smr-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-shrink: 0;
  height: 5rem;
  padding-inline: 2rem;
}
.smr-drawer__logo {
  flex-shrink: 0;
}
.smr-drawer__logo img {
  display: block;
  width: auto;
  height: 2.4rem;
}
.smr-drawer__close {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #eef0f4;
  color: #2e323f;
}
.smr-drawer__close::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: currentcolor;
  mask: url("../images/common/ico_close.svg") no-repeat center/contain;
  -webkit-mask: url("../images/common/ico_close.svg") no-repeat center/contain;
}
.smr-drawer__close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.4rem;
  height: 4.4rem;
  transform: translate(-50%, -50%);
}
.smr-drawer__body {
  flex: 1 1 auto;
  min-height: 0;
  padding-block-start: 2rem;
  overflow-y: auto;
}

.smr-menu__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  min-height: 6.2rem;
  padding-inline: 2rem;
  color: #15171d;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  transition: color 150ms ease-out;
}
.smr-menu__toggle::after {
  content: "";
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background-color: #15171d;
  mask: url("../images/common/ico_arw_down.svg") no-repeat center/contain;
  -webkit-mask: url("../images/common/ico_arw_down.svg") no-repeat center/contain;
}
.smr-menu__item.smr-is-open > .smr-menu__toggle {
  color: #0046ff;
  font-weight: 700;
}
.smr-menu__item.smr-is-open > .smr-menu__toggle::after {
  mask-image: url("../images/common/ico_arw_up.svg");
  -webkit-mask-image: url("../images/common/ico_arw_up.svg");
}
.smr-menu__submenu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #f7f8fa;
  overflow: hidden;
  transition: height 200ms ease-out;
}
.smr-menu__submenu[hidden] {
  display: none;
}
.smr-menu__subitem--wide {
  grid-column: 1/-1;
}
.smr-menu__sublink {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 4.4rem;
  padding: 2rem 3.2rem;
  color: #2e323f;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  transition: color 150ms ease-out;
}
.smr-menu__sublink.smr-is-active {
  color: #0046ff;
  font-weight: 700;
}
.smr-menu__sublink--external::after {
  content: "";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-color: currentcolor;
  mask: url("../images/common/ico_link_external.svg") no-repeat center/contain;
  -webkit-mask: url("../images/common/ico_link_external.svg") no-repeat center/contain;
}

.smr-icon {
  --smr-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E");
  display: inline-block;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background-color: currentcolor;
  mask: var(--smr-icon-url) no-repeat center/contain;
  -webkit-mask: var(--smr-icon-url) no-repeat center/contain;
  vertical-align: middle;
}
.smr-icon--xs {
  width: 1.2rem;
  height: 1.2rem;
}
.smr-icon--sm {
  width: 1.6rem;
  height: 1.6rem;
}
.smr-icon--md {
  width: 2rem;
  height: 2rem;
}
.smr-icon--lg {
  width: 2.4rem;
  height: 2.4rem;
}
.smr-icon--xl {
  width: 3.2rem;
  height: 3.2rem;
}
.smr-icon--2xl {
  width: 4.8rem;
  height: 4.8rem;
}
.smr-icon--primary {
  background-color: #2878f5;
}
.smr-icon--secondary {
  background-color: #686f82;
}
.smr-icon--error {
  background-color: #ef4444;
}

.smr-illust {
  display: block;
  flex-shrink: 0;
  width: 9rem;
  height: 9rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.smr-illust--sm {
  width: 8.8rem;
  height: 8.8rem;
}
.smr-illust--md {
  width: 3rem;
  height: 3rem;
}

.smr-illust-circle {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: #eaf4fe;
}
.smr-illust-circle--sm {
  width: 8.8rem;
  height: 8.8rem;
}
.smr-illust-circle--md {
  width: 6rem;
  height: 6rem;
  background: #f3f6fd;
}

.smr-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
}
.smr-modal[hidden] {
  display: none;
}
.smr-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 150ms ease-out;
}
.smr-modal__box {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: calc(100% - 4rem);
  max-height: 85vh;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
  transform: translate(-50%, -48%);
  opacity: 0;
  transition: opacity 200ms ease-out, transform 200ms ease-out;
}
.smr-modal.smr-is-open .smr-modal__overlay {
  opacity: 1;
}
.smr-modal.smr-is-open .smr-modal__box {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.smr-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-shrink: 0;
  padding: 2rem 2rem 1.2rem;
}
.smr-modal__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 700;
  color: #15171d;
}
.smr-modal__close {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  min-height: 4.4rem;
  border-radius: 8px;
  color: #686f82;
  transition: color 150ms ease-out;
}
.smr-modal__close:hover {
  color: #15171d;
}
.smr-modal__close::before, .smr-modal__close::after {
  content: "";
  position: absolute;
  width: 1.8rem;
  height: 1.5px;
  background: currentcolor;
}
.smr-modal__close::before {
  transform: rotate(45deg);
}
.smr-modal__close::after {
  transform: rotate(-45deg);
}
.smr-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  padding-inline: 2rem;
  overflow-y: auto;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #15171d;
}
.smr-modal__footer {
  display: flex;
  width: 100%;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem;
}
.smr-modal__footer .smr-button {
  flex: 1;
  min-width: 0;
}
.smr-modal--notice .smr-modal__box {
  align-items: center;
  gap: 2.4rem;
  padding: 3.2rem 2rem;
  text-align: center;
}
.smr-modal--notice .smr-modal__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-inline: 0;
  overflow: visible;
}
.smr-modal--notice .smr-illust-circle,
.smr-modal--notice .smr-illust {
  width: 5.6rem;
  height: 5.6rem;
}
.smr-modal--notice .smr-modal__title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 2;
}
.smr-modal--notice .smr-modal__close {
  display: none;
}
.smr-modal--notice .smr-modal__footer {
  padding: 0;
}
.smr-modal--notice .smr-modal__footer .smr-button {
  flex: 0 0 auto;
  width: 100%;
}
.smr-modal--confirm .smr-modal__box {
  align-items: center;
  gap: 2.4rem;
  padding: 3.2rem 2rem;
  text-align: center;
}
.smr-modal--confirm .smr-modal__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-inline: 0;
  overflow: visible;
}
.smr-modal--confirm .smr-illust-circle,
.smr-modal--confirm .smr-illust {
  width: 5.6rem;
  height: 5.6rem;
}
.smr-modal--confirm .smr-modal__title {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 500;
}
.smr-modal--confirm .smr-modal__close {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
}
.smr-modal--confirm .smr-modal__footer {
  width: 100%;
  padding: 0;
}
.smr-modal--must-know .smr-modal__box {
  gap: 4rem;
  padding: 3.2rem 2rem;
}
.smr-modal--must-know .smr-modal__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}
.smr-modal--must-know .smr-modal__body {
  padding-inline: 0;
}
.smr-modal--must-know .smr-modal__close {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
}
.smr-modal--must-know .smr-modal__footer {
  padding: 0;
}
.smr-modal--cert .smr-modal__box {
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64.2rem;
  max-height: 100vh;
  border-radius: 16px 16px 0 0;
  transform: none;
  overflow: hidden;
}
.smr-modal--cert.smr-is-open .smr-modal__box {
  transform: none;
}
.smr-modal--cert .smr-modal__body {
  padding-inline: 0;
  overflow: hidden;
}
.smr-modal__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.smr-modal--payment-detail .smr-modal__box {
  gap: 4rem;
  padding: 4rem 2rem;
  border-radius: 24px;
}
.smr-modal--payment-detail .smr-modal__body {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-inline: 0;
  overflow-y: auto;
}
.smr-modal--payment-detail .smr-modal__close {
  position: absolute;
  top: 1.2rem;
  right: 2rem;
}
.smr-modal--payment-detail .smr-modal__footer {
  padding: 0;
}
.smr-modal--payment-detail .smr-modal__footer .smr-button {
  flex: 1 1 auto;
}

.smr-page-head {
  padding-block: 5rem 5rem;
  background: #ffffff;
  text-align: center;
}
.smr-page-head__breadcrumb {
  display: none;
}
.smr-page-head__nav {
  margin-top: 3rem;
}
.smr-page-head__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  line-height: 1;
  color: #15171d;
}
.smr-page-head__intro {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #686f82;
}

.smr-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}
.smr-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  color: #686f82;
}
.smr-breadcrumb__item:not(:first-child)::before {
  content: "";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-color: currentcolor;
  mask: url("../images/common/ico_chevron_right.svg") no-repeat center/contain;
  -webkit-mask: url("../images/common/ico_chevron_right.svg") no-repeat center/contain;
}
.smr-breadcrumb__home {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}
.smr-breadcrumb__home::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background-color: currentcolor;
  mask: url("../images/common/ico_home.svg") no-repeat center/contain;
  -webkit-mask: url("../images/common/ico_home.svg") no-repeat center/contain;
}
.smr-breadcrumb__home::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.4rem;
  height: 4.4rem;
  transform: translate(-50%, -50%);
}

.smr-section-head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.smr-section-head__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  color: #15171d;
}
.smr-section-head__desc {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #15171d;
}

.smr-guide {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  text-align: center;
}
.smr-guide__body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.smr-guide__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: #15171d;
}
.smr-guide__text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #15171d;
}
.smr-guide__text--lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}
.smr-guide__actions {
  width: 100%;
  max-width: 100%;
}

.smr-field {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.smr-field__label {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #15171d;
}
.smr-field__required {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 0.4rem;
  border: 1.5px solid #2878f5;
  border-radius: 999px;
  background-color: #2878f5;
  vertical-align: middle;
}
.smr-field__required::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 0.6rem;
  background-color: #ffffff;
  mask: url("../images/common/ico_step_check.svg") no-repeat center/contain;
  -webkit-mask: url("../images/common/ico_step_check.svg") no-repeat center/contain;
  transform: translate(-50%, -50%);
}
.smr-field__help {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  color: #686f82;
}
.smr-field__help--primary {
  color: #2878f5;
}
.smr-field__control {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.smr-field--apply {
  gap: 0.8rem;
}
.smr-field--apply .smr-field__label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-inline: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}
.smr-field--apply .smr-field__required {
  margin-left: 0;
}
.smr-field--apply .smr-field__help {
  padding-inline: 0.2rem;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  line-height: 1.8;
}
.smr-field__error {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  color: #b91c1c;
}
.smr-field__error::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: #ef4444;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
}

.smr-input {
  display: flex;
  align-items: center;
  width: 100%;
  height: 4.8rem;
  padding-inline: 2rem;
  border: 1.5px solid #e1e4ea;
  border-radius: 12px;
  background-color: #ffffff;
  color: #15171d;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out;
}
.smr-input[readonly] {
  border-color: #c7ccd6 !important;
  background-color: #fafafa !important;
  color: #686f82;
  cursor: default;
}
.smr-input::-moz-placeholder {
  color: #a6acbb;
}
.smr-input::placeholder {
  color: #a6acbb;
}
.smr-input:focus-visible, .smr-input.smr-is-active {
  border-color: #2878f5;
  background-color: #eaf4fe;
}
.smr-input:focus-visible {
  outline: 0 solid #2878f5;
  outline-offset: 0;
}
.smr-input:disabled {
  border-color: #e1e4ea;
  background-color: #fafafa;
  color: #a6acbb;
  cursor: default;
}
.smr-input[aria-invalid=true], .smr-input.smr-is-error {
  border-color: #ef4444;
  background-color: #fde8e8;
  color: #b91c1c;
}

.smr-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  height: 4.8rem;
  padding-inline: 2rem;
  border: 1.5px solid #e1e4ea;
  border-radius: 12px;
  background-color: #fafafa;
  color: #15171d;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out;
}
.smr-select::-moz-placeholder {
  color: #a6acbb;
}
.smr-select::placeholder {
  color: #a6acbb;
}
.smr-select:focus-visible, .smr-select.smr-is-active {
  border-color: #2878f5;
  background-color: #eaf4fe;
}
.smr-select:focus-visible {
  outline: 0 solid #2878f5;
  outline-offset: 0;
}
.smr-select:disabled {
  border-color: #e1e4ea;
  background-color: #fafafa;
  color: #a6acbb;
  cursor: default;
}
.smr-select[aria-invalid=true], .smr-select.smr-is-error {
  border-color: #ef4444;
  background-color: #fde8e8;
  color: #b91c1c;
}
.smr-select {
  background-image: url("../images/common/arrow-narrow-right.svg");
  background-repeat: no-repeat;
  background-position: right 2.4rem center;
  background-size: 2.4rem 2.4rem;
  padding-right: 5.8rem;
  background-color: #ffffff;
}
.smr-select:disabled {
  opacity: 0.6;
}

.is-readonly {
  cursor: default;
  pointer-events: none;
  border-color: #c7ccd6 !important;
  background-color: #fafafa !important;
  color: #686f82;
  cursor: default;
}

.smr-account {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}
.smr-account[hidden] {
  display: none;
}
.smr-account__bank {
  gap: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  height: 4.8rem;
  padding-inline: 2rem;
  border: 1.5px solid #e1e4ea;
  border-radius: 12px;
  background-color: #ffffff;
  color: #15171d;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out;
  flex: 0 0 100%;
  min-width: 0;
}
.smr-account__bank.smr-select {
  padding-right: 5.4rem;
}
.smr-account__number {
  flex: 1 1 0;
  min-width: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}
.smr-account__message {
  flex: 0 0 100%;
  padding-inline: 0.2rem;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  color: #2878f5;
}
.smr-account__message.smr-is-error {
  color: #ef4444;
}
.smr-account__confirm {
  flex-shrink: 0;
  width: 9rem;
  min-width: 0;
  height: 4.8rem;
  padding-inline: 1.6rem;
  border-radius: 12px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: nowrap;
}
.smr-account__note {
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #a6acbb;
}
.smr-account--view {
  gap: 0.8rem 1.2rem;
  height: auto;
  padding: 0.8rem 1.6rem;
  border: 1.5px solid #e1e4ea;
  border-radius: 12px;
  background: #fafafa;
  overflow: hidden;
}
.smr-account--view .smr-account__bank {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0.6rem 0.8rem;
  border: 1px solid #e1e4ea;
  border-radius: 8px;
  background: #ffffff;
  color: #686f82;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  cursor: default;
}
.smr-account--view .smr-account__number {
  flex: 1 1 0;
  text-align: right;
  color: #686f82;
}
.smr-account--view .smr-account__note {
  flex: 0 0 100%;
  text-align: right;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
}

.smr-tel-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.smr-tel-wrap > .smr-account__message {
  flex: 0 0 auto;
}

.smr-tel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}
.smr-tel__carrier {
  gap: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  height: 4.8rem;
  padding-inline: 2rem;
  border: 1.5px solid #e1e4ea;
  border-radius: 12px;
  background-color: #ffffff;
  color: #15171d;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out;
  flex: 0 0 100%;
  min-width: 0;
}
.smr-tel__carrier.smr-select {
  padding-right: 5.4rem;
}
.smr-tel__number {
  flex: 1 1 0;
  min-width: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}
.smr-tel__submit {
  flex-shrink: 0;
  width: 9rem;
  min-width: 0;
  height: 4.8rem;
  padding-inline: 1.6rem;
  border-radius: 12px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: nowrap;
}

.smr-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.smr-checkbox__input {
  flex-shrink: 0;
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
  border: 1px solid #0046ff;
  border-radius: 5px;
  background: #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: background-color 150ms ease-out, border-color 150ms ease-out;
}
.smr-checkbox__input::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.8rem;
  width: 0.6rem;
  height: 1.1rem;
  border: solid #0046ff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 150ms ease-out;
}
.smr-checkbox__input:checked::after {
  opacity: 1;
}
.smr-checkbox__input:disabled {
  border-color: #c7ccd6;
  background: #fafafa;
  cursor: default;
}
.smr-checkbox__input:disabled::after {
  border-color: #a6acbb;
}
.smr-checkbox__input[aria-invalid=true], .smr-checkbox__input.smr-is-error {
  border-color: #ef4444;
  background: #fde8e8;
}
.smr-checkbox__label {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #686f82;
}
.smr-checkbox__input--circle {
  width: 1.8rem;
  height: 1.8rem;
  border: 1.5px solid #c7ccd6;
  border-radius: 999px;
  background: none;
}
.smr-checkbox__input--circle::after {
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 0.7rem;
  border: 0;
  background-color: #c7ccd6;
  mask: url("../images/common/ico_step_check.svg") no-repeat center/contain;
  -webkit-mask: url("../images/common/ico_step_check.svg") no-repeat center/contain;
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: background-color 150ms ease-out;
}
.smr-checkbox__input--circle:checked {
  border-color: #2878f5;
}
.smr-checkbox__input--circle:checked::after {
  background-color: #2878f5;
}

.smr-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.smr-radio__input {
  flex-shrink: 0;
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0;
  border: 1.5px solid #c7ccd6;
  border-radius: 999px;
  background: #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: border-color 150ms ease-out;
}
.smr-radio__input::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: #2878f5;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 150ms ease-out;
}
.smr-radio__input:checked {
  border-color: #2878f5;
}
.smr-radio__input:checked::after {
  transform: translate(-50%, -50%) scale(1);
}
.smr-radio__input:disabled {
  border-color: #e1e4ea;
  background: #fafafa;
  cursor: default;
}
.smr-radio__input:disabled::after {
  background: #a6acbb;
}
.smr-radio__input[aria-invalid=true], .smr-radio__input.smr-is-error {
  border-color: #ef4444;
  background: #fde8e8;
}
.smr-radio__label {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #686f82;
}

.smr-switch {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
  width: 100%;
  min-width: 0;
  height: 4.8rem;
  padding-inline: 1.6rem;
  border: 1.5px solid #e1e4ea;
  border-radius: 12px;
  background: #ffffff;
  color: #686f82;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  cursor: pointer;
  transition: background-color 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out;
}
.smr-switch.smr-is-active, .smr-switch:has(.smr-radio__input:checked), .smr-switch:has(.smr-checkbox__input:checked) {
  border-color: #2878f5;
  background: #eaf4fe;
  color: #2878f5;
}
.smr-switch.smr-is-disabled {
  border-color: #e1e4ea;
  background: #fafafa;
  color: #a6acbb;
  cursor: default;
  pointer-events: none;
}

.smr-switch-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.smr-switch-group--fill {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1.2rem;
}
.smr-switch-group--fill > .smr-switch {
  flex: 0 0 auto;
}

.smr-textarea {
  display: block;
  width: 100%;
  min-height: 16rem;
  padding: 1.6rem 2.4rem;
  border: 1.5px solid #e1e4ea;
  border-radius: 12px;
  background: #ffffff;
  color: #15171d;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  resize: vertical;
  transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out;
}
.smr-textarea::-moz-placeholder {
  color: #a6acbb;
}
.smr-textarea::placeholder {
  color: #a6acbb;
}
.smr-textarea:focus-visible, .smr-textarea.smr-is-active {
  border-color: #2878f5;
  background-color: #eaf4fe;
}
.smr-textarea:focus-visible {
  outline: 0 solid #2878f5;
  outline-offset: 0;
}
.smr-textarea:disabled {
  border-color: #e1e4ea;
  background-color: #fafafa;
  color: #a6acbb;
  cursor: default;
}
.smr-textarea[aria-invalid=true], .smr-textarea.smr-is-error {
  border-color: #ef4444;
  background-color: #fde8e8;
  color: #b91c1c;
}
.smr-textarea--sm {
  min-height: 10.3rem;
  padding: 1.4rem 2.4rem 1.4rem 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.smr-search {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.smr-search__input {
  flex: 1 1 0;
  min-width: 0;
}
.smr-search__button {
  flex-shrink: 0;
  width: 13rem;
  min-width: 0;
  height: 5.6rem;
  border-radius: 12px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.smr-search--pill {
  width: 100%;
  padding: 1.6rem 2.4rem;
  border: 1px solid rgba(166, 172, 187, 0.5);
  border-radius: 999px;
  background: #ffffff;
  transition: border-color 150ms ease-out;
}
.smr-search--pill:focus-within {
  border-color: #2878f5;
}
.smr-search--pill .smr-search__input {
  height: auto;
  padding: 0;
  border: 0;
  background: none;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #686f82;
}
.smr-search--pill .smr-search__input::-moz-placeholder {
  color: #686f82;
}
.smr-search--pill .smr-search__input::placeholder {
  color: #686f82;
}
.smr-search--pill .smr-search__input:focus-visible {
  outline: none;
}
.smr-search--pill .smr-search__button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
}
.smr-search--pill .smr-search__button .smr-icon {
  width: 100%;
  height: 100%;
}

.smr-file {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.smr-file__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.smr-file__name {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 4.8rem;
  padding-inline: 2rem;
  border: 1.5px solid #e1e4ea;
  border-radius: 12px;
  background-color: #fafafa;
  color: #15171d;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out;
  color: #a6acbb;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.smr-file__name.smr-is-active {
  color: #15171d;
}
.smr-file__button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13rem;
  height: 5.6rem;
  border: 1.5px solid #c7ccd6;
  border-radius: 12px;
  background: #ffffff;
  color: #686f82;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  transition: border-color 150ms ease-out, color 150ms ease-out;
}
.smr-file__button:hover {
  border-color: #2878f5;
  color: #2878f5;
}
.smr-file__input:focus-visible + .smr-file__button:focus-visible {
  outline: 0 solid #2878f5;
  outline-offset: 0;
}
.smr-file__input:disabled + .smr-file__button {
  border-color: #e1e4ea;
  color: #a6acbb;
  cursor: default;
  pointer-events: none;
}

.smr-tab {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #e1e4ea;
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.smr-tab::-webkit-scrollbar {
  display: none;
}
.smr-tab__item {
  flex: 0 0 auto;
}
.smr-tab__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5rem;
  padding: 1.6rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: #686f82;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
  transition: color 150ms ease-out, border-color 150ms ease-out;
}
.smr-tab__link:hover {
  color: #2878f5;
}
.smr-tab__link.smr-is-active {
  border-bottom-color: #2878f5;
  color: #2878f5;
  font-weight: 700;
  line-height: 1;
}
.smr-tab__link[aria-disabled=true] {
  color: #a6acbb;
  pointer-events: none;
}

.smr-tabmenu__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  min-height: 4.4rem;
  padding: 1.6rem 2.4rem;
  border-radius: 40px;
  background: #fafafa;
  color: #2e323f;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  transition: background-color 150ms ease-out, color 150ms ease-out;
}
.smr-tabmenu__toggle::after {
  content: "";
  flex-shrink: 0;
  width: 0.9rem;
  height: 0.9rem;
  margin-right: 0.7rem;
  border: solid currentcolor;
  border-width: 0 1.5px 1.5px 0;
  transform: translateY(-0.2rem) rotate(45deg);
  transition: transform 150ms ease-out;
}
.smr-tabmenu__toggle[aria-expanded=true]::after {
  transform: translateY(0.2rem) rotate(-135deg);
}
.smr-tabmenu__toggle[aria-expanded=true] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid #eaeaea;
}

.smr-tabmenu {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}
.smr-tabmenu[hidden] {
  display: none;
}
.smr-tabmenu__item {
  display: flex;
}
.smr-tabmenu__item:last-child .smr-tabmenu__link {
  border-radius: 0 0 40px 40px;
}
.smr-tabmenu__link {
  display: flex;
  flex: 1;
  align-items: center;
  min-height: 4.4rem;
  padding: 1.6rem 2.4rem;
  background: #fafafa;
  color: #2e323f;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  transition: background-color 150ms ease-out, color 150ms ease-out;
}
.smr-tabmenu__link.smr-is-active {
  background: #336bff;
  color: #ffffff;
}

.smr-card {
  display: flex;
  flex-direction: column;
  padding: 2.4rem 1.6rem;
  border-radius: 12px;
  background: #fafafa;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.smr-card__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  color: #15171d;
}
.smr-card__text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #686f82;
}
.smr-card--status {
  align-items: center;
  justify-content: center;
  gap: 2rem;
  min-height: 24rem;
  text-align: center;
}
.smr-card__date {
  font-size: 1.2rem;
  line-height: 1;
  color: #686f82;
}
.smr-card__value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #a6acbb;
}
.smr-card__state {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #a6acbb;
}
.smr-card.smr-is-active .smr-card__value,
.smr-card.smr-is-active .smr-card__state {
  color: #15171d;
}
.smr-card__marker {
  position: relative;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: #e1e4ea;
}
.smr-card__marker::before {
  content: "";
  position: absolute;
  top: 0.333rem;
  left: 50%;
  width: 3.333rem;
  height: 3.333rem;
  border-radius: 999px;
  background: #fafafa;
  transform: translateX(-50%);
}
.smr-card__marker-num {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: 700;
  color: #686f82;
}
.smr-card__marker-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 1.667rem;
  height: 1.667rem;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
.smr-card.smr-is-completed, .smr-card.smr-is-error, .smr-card.smr-is-upcoming {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.16);
}
.smr-card.smr-is-completed {
  background: #eaf4fe;
}
.smr-card.smr-is-completed .smr-card__marker {
  background: transparent;
}
.smr-card.smr-is-completed .smr-card__marker::before {
  background: #2878f5;
  box-shadow: 0 0 12px #2878f5;
}
.smr-card.smr-is-completed .smr-card__value,
.smr-card.smr-is-completed .smr-card__state {
  color: #2878f5;
}
.smr-card.smr-is-error {
  background: #fde8e8;
}
.smr-card.smr-is-error .smr-card__marker {
  background: transparent;
}
.smr-card.smr-is-error .smr-card__marker::before {
  background: #ef4444;
  box-shadow: 0 0 11px rgba(239, 68, 68, 0.4);
}
.smr-card.smr-is-error .smr-card__value {
  color: #686f82;
}
.smr-card.smr-is-error .smr-card__state {
  color: #b91c1c;
}
.smr-card.smr-is-upcoming {
  background: #e7f9ee;
}
.smr-card.smr-is-upcoming .smr-card__marker {
  background: transparent;
}
.smr-card.smr-is-upcoming .smr-card__marker::before {
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}
.smr-card.smr-is-upcoming .smr-card__marker-num {
  color: #ffffff;
}
.smr-card.smr-is-upcoming .smr-card__value,
.smr-card.smr-is-upcoming .smr-card__state {
  color: #157a3c;
}

.smr-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.smr-note-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  counter-reset: smr-note;
  list-style: none;
}

.smr-note {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.6rem;
  border-radius: 16px;
  background: #fafafa;
  counter-increment: smr-note;
}
.smr-note__title {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #2878f5;
  font-weight: 500;
}
.smr-note .smr-bullet-list {
  padding-inline: 0.8rem;
}

.smr-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  list-style: none;
}
.smr-bullet-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #15171d;
}
.smr-bullet-list__item::before {
  content: "";
  flex-shrink: 0;
  width: 0.3rem;
  height: 0.3rem;
  margin-top: 1.05rem;
  border-radius: 999px;
  background: currentcolor;
}
.smr-bullet-list__item strong {
  font-weight: 500;
}

.smr-accordion {
  display: flex;
  flex-direction: column;
}
.smr-accordion__item + .smr-accordion__item {
  margin-top: 1.2rem;
}
.smr-accordion__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 4.8rem;
  padding: 1.2rem;
  border: 1px solid #e1e4ea;
  border-radius: 12px;
  background: #ffffff;
  text-align: left;
  transition: border-color 150ms ease-out, border-radius 150ms ease-out;
}
.smr-accordion__label {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  margin-block: -0.4rem;
  padding-block: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #686f82;
}
.smr-accordion__mark {
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 500;
  color: #ef4444;
}
.smr-accordion__mark--optional {
  color: #a6acbb;
}
.smr-accordion__more {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0;
  color: #a6acbb;
}
.smr-accordion__more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.4rem;
  height: 4.4rem;
  transform: translate(-50%, -50%);
}
.smr-accordion__more::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border: solid currentcolor;
  border-width: 0 1.5px 1.5px 0;
  transform: translateY(-0.2rem) rotate(45deg);
  transition: transform 150ms ease-out;
}
.smr-accordion__panel {
  max-height: 23rem;
  padding: 1.2rem 0.4rem 2rem 1.6rem;
  border: 1px solid #e1e4ea;
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: #fafafa;
  overflow-y: auto;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  line-height: 1.3;
  color: #15171d;
  scrollbar-width: thin;
  scrollbar-color: #c7ccd6 transparent;
}
.smr-accordion__panel::-webkit-scrollbar {
  width: 0.4rem;
}
.smr-accordion__panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #c7ccd6;
}
.smr-accordion__panel > p + p {
  margin-top: 0.8rem;
}
.smr-accordion__panel[hidden] {
  display: none;
}
.smr-accordion__panel-title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}
.smr-accordion__panel-note {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
}
.smr-accordion__item.smr-is-open .smr-accordion__header {
  border-radius: 12px 12px 0 0;
}
.smr-accordion__item.smr-is-open .smr-accordion__more::after {
  transform: translateY(0.2rem) rotate(-135deg);
}

.smr-accordion--faq .smr-accordion__item {
  border: 1px solid #c7ccd6;
  border-radius: 20px;
  background: #ffffff;
  transition: border-color 150ms ease-out;
}
.smr-accordion--faq .smr-accordion__item + .smr-accordion__item {
  margin-top: 1.6rem;
}
.smr-accordion--faq .smr-accordion__header {
  gap: 2.4rem;
  min-height: 0;
  padding: 2rem;
  border: 0;
  border-radius: inherit;
  background: none;
  color: #15171d;
}
.smr-accordion--faq .smr-accordion__label {
  display: block;
  margin-block: 0;
  padding-block: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #15171d;
  line-height: 1.6;
}
.smr-accordion--faq .smr-accordion__icon {
  --smr-icon-url: url('../images/common/ico_plus_24.svg');
}
.smr-accordion--faq .smr-accordion__panel {
  max-height: none;
  padding: 0 2rem 2rem;
  border: 0;
  border-radius: inherit;
  background: none;
  overflow: visible;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  line-height: 1.6;
  color: #686f82;
}
.smr-accordion--faq .smr-accordion__panel-text + .smr-accordion__panel-text {
  margin-top: 0.8rem;
}
.smr-accordion--faq .smr-accordion__item.smr-is-open {
  border-color: #15171d;
}
.smr-accordion--faq .smr-accordion__item.smr-is-open .smr-accordion__header {
  padding-bottom: 1.6rem;
  border-radius: inherit;
}
.smr-accordion--faq .smr-accordion__item.smr-is-open .smr-accordion__icon {
  --smr-icon-url: url('../images/common/ico_minus_24.svg');
}

.smr-step {
  --smr-step-gap: 1.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--smr-step-gap);
  width: 100%;
}
.smr-step__item {
  position: relative;
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}
.smr-step__item + .smr-step__item::before {
  content: "";
  position: absolute;
  top: 1.7rem;
  right: 50%;
  z-index: 0;
  width: calc(100% + var(--smr-step-gap));
  height: 2px;
  background: #e1e4ea;
}
.smr-step__marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 999px;
  background: #e1e4ea;
  transition: background-color 150ms ease-out;
}
.smr-step__marker::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 50%;
  width: 3.2rem;
  height: 3.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: #ffffff;
  transform: translateX(-50%);
  transition: background-color 150ms ease-out, border-color 150ms ease-out, box-shadow 150ms ease-out;
}
.smr-step__marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 1rem;
  height: 0.7rem;
  background-color: #ffffff;
  mask: url("../images/common/ico_step_check.svg") no-repeat center/contain;
  -webkit-mask: url("../images/common/ico_step_check.svg") no-repeat center/contain;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 150ms ease-out;
}
.smr-step__num {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
  color: #a6acbb;
  transition: color 150ms ease-out, opacity 150ms ease-out;
}
.smr-step__label {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  letter-spacing: -0.04em;
  line-height: 1.4;
  color: #a6acbb;
  transition: color 150ms ease-out;
}
.smr-step__item.smr-is-active .smr-step__marker::before {
  border-color: #2878f5;
}
.smr-step__item.smr-is-active .smr-step__num {
  color: #2878f5;
}
.smr-step__item.smr-is-active .smr-step__label {
  color: #15171d;
}
.smr-step__item.smr-is-completed .smr-step__marker {
  background: #eaf4fe;
}
.smr-step__item.smr-is-completed .smr-step__marker::before {
  top: 0.3rem;
  width: 3rem;
  height: 3rem;
  background: #2878f5;
  box-shadow: 0 0 10px #2878f5;
}
.smr-step__item.smr-is-completed .smr-step__marker::after {
  opacity: 1;
}
.smr-step__item.smr-is-completed .smr-step__num {
  opacity: 0;
}
.smr-step__item.smr-is-completed .smr-step__label {
  color: #2878f5;
}
.smr-step__item.smr-is-error .smr-step__marker::before {
  background: #ef4444;
}
.smr-step__item.smr-is-error .smr-step__num {
  color: #ffffff;
}
.smr-step__item.smr-is-error .smr-step__label {
  color: #b91c1c;
}
.smr-step__item + .smr-step__item.smr-is-completed::before {
  background: #2878f5;
}
.smr-step__item + .smr-step__item.smr-is-active::before {
  background: linear-gradient(90deg, #2878f5 0%, #e1e4ea 99%);
}

.smr-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  background: #eef0f4;
  color: #686f82;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 500;
  white-space: nowrap;
}
.smr-badge--primary {
  background: #eaf4fe;
  color: #2878f5;
}
.smr-badge--success {
  background: #e7f9ee;
  color: #157a3c;
}
.smr-badge--warning {
  background: #fff4e0;
  color: #a15c00;
}
.smr-badge--error {
  background: #fde8e8;
  color: #b91c1c;
}
.smr-badge--outline {
  border: 1px solid #e1e4ea;
  background: transparent;
}

.smr-board-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid #15171d;
}
.smr-board-list__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding-block: 2rem;
  border-bottom: 1px solid #c7ccd6;
}
.smr-board-list__info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 0;
}
.smr-board-list__col {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #2e323f;
}
.smr-board-list__col--date {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  color: #686f82;
}
.smr-board-list__link::after {
  content: "";
  position: absolute;
  inset: 0;
}
.smr-board-list__download {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #eef0f4;
  transition: background-color 150ms ease-out;
}
.smr-board-list__download::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.4rem;
  height: 4.4rem;
  transform: translate(-50%, -50%);
}

.smr-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.smr-news-card:not(:last-child) {
  margin-bottom: 2.4rem;
}
.smr-news-card__link {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  color: inherit;
  text-decoration: none;
}
.smr-news-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 320/180;
  overflow: hidden;
  border-radius: 2rem;
  background: #eef0f4;
}
.smr-news-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.smr-news-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.smr-news-card__play img {
  width: 4rem;
  height: 4rem;
}
.smr-news-card__meta {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.smr-news-card__text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 0;
}
.smr-news-card__title {
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #15171d;
  word-break: keep-all;
}
.smr-news-card__date {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  color: #686f82;
}

.smr-table {
  width: 88rem;
  table-layout: fixed;
  border-collapse: collapse;
}
.smr-table th,
.smr-table td {
  height: 4.8rem;
  padding: 0.8rem 1.2rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #15171d;
}
.smr-table thead th {
  height: 6.4rem;
  background: #eaf4fe;
  color: #2878f5;
  font-weight: 700;
}
.smr-table tbody th {
  background: #ffffff;
  font-weight: 700;
}
.smr-table tbody tr:not(:first-child) > * {
  border-top: 1px solid #e1e4ea;
}
.smr-table tbody tr.smr-is-total > * {
  background: #fafafa;
  font-weight: 700;
}
.smr-table__cell--accent {
  color: #2878f5;
}

.smr-table__code {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.1rem;
  font-weight: 300;
}

.smr-table-wrap {
  width: -moz-max-content;
  width: max-content;
  border-radius: 12px;
  overflow: hidden;
}

.smr-apply-process {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.smr-apply-process__actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.smr-apply-process__actions .smr-button {
  flex: 1;
  min-width: 0;
}

.smr-terms {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 0;
  background: none;
}
.smr-terms__head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.smr-terms__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  color: #15171d;
}
.smr-terms__desc {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  line-height: 1.6;
  color: #15171d;
}
.smr-terms__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.smr-terms__all {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.6rem;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px #e1e4ea;
  background: #eaf4fe;
  cursor: pointer;
}
.smr-terms__all-label {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #2878f5;
}
.smr-terms__all-check {
  position: relative;
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  margin: 0;
  border: 2px solid #a6acbb;
  border-radius: 999px;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: border-color 150ms ease-out;
}
.smr-terms__all-check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.3rem;
  height: 0.9rem;
  background-color: #a6acbb;
  mask: url("../images/common/ico_step_check.svg") no-repeat center/contain;
  -webkit-mask: url("../images/common/ico_step_check.svg") no-repeat center/contain;
  transform: translate(-50%, -50%);
  transition: background-color 150ms ease-out;
}
.smr-terms__all-check:checked {
  border-color: #2878f5;
}
.smr-terms__all-check:checked::after {
  background-color: #2878f5;
}
.smr-terms__check {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0;
  background-color: #c7ccd6;
  mask: url("../images/common/ico_step_check.svg") no-repeat center/1.2rem;
  -webkit-mask: url("../images/common/ico_step_check.svg") no-repeat center/1.2rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: background-color 150ms ease-out;
}
.smr-terms__check:checked {
  background-color: #2878f5;
}

.docs h3 {
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #15171d;
  padding: 0.8rem 0 0.8rem 0;
  font-weight: 700;
}
.docs h4, .docs__title {
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #15171d;
  padding: 0.8rem 0 0.8rem 0;
  font-weight: 700;
}
.docs p, .docs__desc {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  line-height: 1.8;
  color: #15171d;
}
.docs p strong, .docs__desc strong {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
}
.docs__desc {
  margin-bottom: 2.4rem;
}
.docs__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.docs figure.table {
  width: 100% !important;
  overflow-x: auto;
  overflow-y: hidden;
}
.docs figure.table table {
  width: 100%;
  min-width: 70rem !important;
  border-collapse: collapse;
  border: 1px solid #000000;
}
.docs figure.table th,
.docs figure.table td {
  padding: 0.6rem 1.2rem !important;
  border: 1px solid #000000;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  line-height: 1.5;
  color: #15171d;
  text-align: left;
}
.docs strong {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
}

.smr-apply-form {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 2.8rem 2rem 3.2rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}
.smr-apply-form__head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.smr-apply-form__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  color: #15171d;
}
.smr-apply-form__desc {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #15171d;
}
.smr-apply-form__body {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.smr-apply-form__group {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.smr-apply-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding: 2.8rem 2rem 3.2rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.smr-apply-result__head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
  text-align: center;
}
.smr-apply-result__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  color: #15171d;
}
.smr-apply-result__desc {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #15171d;
}
.smr-apply-result__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  padding-inline: 0.4rem;
}
.smr-apply-result__row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid #e1e4ea;
}
.smr-apply-result__row:last-child {
  border-bottom: 0;
}
.smr-apply-result__term {
  flex: 0 0 6.4rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #686f82;
}
.smr-apply-result__value {
  flex: 1 1 0;
  min-width: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #15171d;
}
.smr-apply-result__note {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #15171d;
  line-height: 2;
}
.smr-apply-result__note-icon {
  --smr-icon-url: url('../images/common/ico_exc.svg');
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 0.2rem;
  transform: translateY(-0.3rem);
}
.smr-apply-result__note-link {
  color: #2878f5;
}

.smr-must-know {
  margin-top: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: 100%;
  padding-bottom: 2rem;
}
.smr-must-know__col {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.6rem;
  min-width: 0;
}
.smr-must-know__col--split {
  justify-content: space-between;
  gap: 4rem;
}
.smr-must-know__stack {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.smr-must-know__group {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.smr-must-know__subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #15171d;
}
.smr-must-know__chips {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.smr-must-know__chip {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 0;
  padding: 1.2rem 2.4rem;
  border-radius: 16px;
  background: #eaf4fe;
  text-align: center;
}
.smr-must-know__chip-label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #2878f5;
}
.smr-must-know__chip-desc {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  color: #686f82;
}
.smr-must-know__desc {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #15171d;
  line-height: 1.6;
}

.smr-login-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.smr-board__toolbar {
  display: flex;
  justify-content: center;
  margin-inline: -2rem;
  margin-bottom: 3.2rem;
  padding: 2rem 2rem;
  background: #fafafa;
}
.smr-board__more {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.smr-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-block: 1.8rem 13rem;
}
.smr-empty-state[hidden] {
  display: none;
}
.smr-empty-state .smr-illust {
  width: 8.5rem;
  height: 8.5rem;
}
.smr-empty-state__text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #2e323f;
}

.smr-board-detail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.smr-board-detail__head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.8rem;
  padding-block: 2rem;
  border-top: 2px solid #15171d;
  border-bottom: 1px solid #c7ccd6;
}
.smr-board-detail__title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #2e323f;
}
.smr-board-detail__date {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  color: #686f82;
}
.smr-board-detail__lead {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #2e323f;
}
.smr-board-detail__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 320/195;
  -o-object-fit: cover;
     object-fit: cover;
}
.smr-board-detail__desc {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #2e323f;
}
.smr-board-detail__desc--article {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #2e323f;
}
.smr-board-detail__desc--article p + p {
  margin-top: 0.8rem;
}
.smr-board-detail__desc-image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
.smr-board-detail__attach {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2.4rem 2rem;
  border-radius: 16px;
  background: #fafafa;
}
.smr-board-detail__attach-label {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #2e323f;
}
.smr-board-detail__attach-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.smr-board-detail__attach-name {
  overflow: hidden;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #2e323f;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.smr-board-detail__download {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #eef0f4;
}
.smr-board-detail__download::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.4rem;
  height: 4.4rem;
  transform: translate(-50%, -50%);
}
.smr-board-detail__nav {
  display: flex;
  align-items: stretch;
  border-top: 1px solid #c7ccd6;
}
.smr-board-detail__nav-link {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 0.8rem;
  height: 6rem;
}
.smr-board-detail__nav-link--prev {
  justify-content: flex-start;
}
.smr-board-detail__nav-link--next {
  justify-content: flex-end;
}
.smr-board-detail__nav-label {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #2e323f;
}
.smr-board-detail__actions {
  display: flex;
  justify-content: center;
}

.smr-gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
}
.smr-gallery-viewer[hidden] {
  display: none;
}
.smr-gallery-viewer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 150ms ease-out;
}
.smr-gallery-viewer__box {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  opacity: 0;
  transform: 0;
  transition: opacity 150ms ease-out, transform 150ms ease-out;
}
.smr-gallery-viewer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  flex-shrink: 0;
  margin-bottom: 1rem;
  min-width: 4.4rem;
  min-height: 4.4rem;
  color: #ffffff;
  margin-right: 2rem;
}
.smr-gallery-viewer__close::before, .smr-gallery-viewer__close::after {
  content: "";
  position: absolute;
  width: 1.8rem;
  height: 1.5px;
  background: currentcolor;
}
.smr-gallery-viewer__close::before {
  transform: rotate(45deg);
}
.smr-gallery-viewer__close::after {
  transform: rotate(-45deg);
}
.smr-gallery-viewer.smr-is-open .smr-gallery-viewer__overlay {
  opacity: 1;
}
.smr-gallery-viewer.smr-is-open .smr-gallery-viewer__box {
  opacity: 1;
  transform: translateY(-4.4rem);
}
.smr-gallery-viewer__media {
  position: relative;
}
.smr-gallery-viewer__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 320/180;
  -o-object-fit: cover;
     object-fit: cover;
}
.smr-gallery-viewer__image[hidden] {
  display: none;
}
.smr-gallery-viewer__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 320/180;
  -o-object-fit: cover;
     object-fit: cover;
}
.smr-gallery-viewer__video[hidden] {
  display: none;
}
.smr-gallery-viewer__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.smr-gallery-viewer__play img {
  width: 4rem;
  height: 4rem;
}
.smr-gallery-viewer__play[hidden] {
  display: none;
}
.smr-gallery-viewer__caption {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 2rem 5rem;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.smr-gallery-viewer__title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #2e323f;
}
.smr-gallery-viewer__date {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  color: #2e323f;
}
.smr-gallery-viewer__nav {
  position: absolute;
  bottom: 3rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.6rem;
  padding-inline: 1rem;
}
.smr-gallery-viewer__nav-btn {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.smr-gallery-viewer__nav-btn--prev {
  background-image: url("../images/common/ico_gallery_viewer_prev.svg");
}
.smr-gallery-viewer__nav-btn--next {
  background-image: url("../images/common/ico_gallery_viewer_next.svg");
}
.smr-gallery-viewer__nav-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.4rem;
  height: 4.4rem;
  transform: translate(-50%, -50%);
}

.smr-policy-doc {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.smr-policy-doc__intro {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.smr-policy-doc__lead {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  line-height: 1.6;
  color: #15171d;
}
.smr-policy-doc__desc {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  line-height: 1.6;
  color: #15171d;
}
.smr-policy-doc__section {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.smr-policy-doc__section-title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  line-height: 1.6;
  color: #15171d;
}
.smr-policy-doc__section-body {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  line-height: 1.6;
  color: #15171d;
}
.smr-policy-doc table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.smr-policy-doc th,
.smr-policy-doc td {
  padding: 1.2rem 1.6rem;
  border: 1px solid #000;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  line-height: 1.6;
  color: #15171d;
  text-align: left;
}
.smr-policy-doc__revision {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-inline: -2rem;
  padding: 2rem 2rem;
  background: #fafafa;
}
.smr-policy-doc__download {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: #2878f5;
  color: #ffffff;
  transition: background-color 150ms ease-out;
}
.smr-policy-doc__download:hover {
  background: #1c5fd1;
}
.smr-policy-doc__download:active {
  background: #1448a3;
}
.smr-policy-doc__download-icon {
  width: 2rem;
  height: 2rem;
  color: #ffffff !important;
}
.smr-policy-doc span, .smr-policy-doc strong, .smr-policy-doc p, .smr-policy-doc div, .smr-policy-doc li, .smr-policy-doc td, .smr-policy-doc th, .smr-policy-doc tr, .smr-policy-doc tbody, .smr-policy-doc thead {
  font-size: 1.8rem !important;
  color: #15171d;
  word-break: break-all;
}
.smr-policy-doc strong {
  font-weight: 700;
}
.smr-policy-doc figure.table {
  width: 100% !important;
  overflow-x: auto;
}
.smr-policy-doc figure.table table {
  min-width: 70rem;
}

.smr-revision-select {
  flex: 1;
  min-width: 0;
  border-radius: 40px;
  color: #2e323f;
  font-family: "OneShinhan", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  padding-inline: 3rem;
  height: 5rem;
}

.smr-error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}
.smr-error-state__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
.smr-error-state__logo {
  display: block;
}
.smr-error-state__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.smr-error-state__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: #15171d;
}
.smr-error-state__desc {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2;
  color: #15171d;
}

.smr-support-status {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 3.2rem;
}
.smr-support-status__card {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  padding-bottom: 3.2rem;
}
.smr-support-status__title {
  padding: 1.6rem 2.4rem;
  background: #eaf4fe;
  color: #111111;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}
.smr-support-status__body {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-inline: 3.2rem;
}
.smr-support-status__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.4rem;
}
.smr-support-status__divider {
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  border-radius: 999px;
  background: #e1e4ea;
}
.smr-support-status__text {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  min-width: 0;
}
.smr-support-status__label {
  color: #111111;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}
.smr-support-status__value {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  white-space: nowrap;
}
.smr-support-status__value strong {
  font-size: 2rem;
  font-weight: 700;
  color: #0046ff;
}
.smr-support-status__value span {
  font-size: 1.2rem;
  font-weight: 500;
  color: #15171d;
}

.smr-caution {
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid #e1e4ea;
}
.smr-caution__title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: #444444;
}
.smr-caution__icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  transform: rotate(180deg);
  background-color: #000000;
  mask: url("../images/common/ico_info_24.svg") no-repeat center/contain;
  -webkit-mask: url("../images/common/ico_info_24.svg") no-repeat center/contain;
}
.smr-caution__list {
  margin: 0;
  padding-left: 1.6rem;
  list-style: none;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.8;
  color: #444444;
}
.smr-caution__list li {
  position: relative;
  margin-bottom: 0.8rem;
}
.smr-caution__list li::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: -1rem;
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: currentcolor;
}
.smr-caution__list li:last-child {
  margin-bottom: 0;
}
.smr-caution__link {
  color: #0046ff;
  font-weight: 500;
  text-decoration: underline;
}
.smr-caution__link-icon {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 0.4rem;
  vertical-align: middle;
  transform: translateY(-2px);
  background-color: #0046ff;
  background: url("../images/common/link-external-02.svg") no-repeat center/contain;
}

.smr-mypage-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
}
.smr-mypage-form__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
  text-align: center;
}
.smr-mypage-form__icon {
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 999px;
  background-color: #eaf4fe;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 6.3rem;
}
.smr-mypage-form__icon--account {
  background-image: url("../images/common/illust_manu_account.svg");
}
.smr-mypage-form__icon--privacy {
  background-image: url("../images/common/illust_manu_privacy.svg");
}
.smr-mypage-form__icon--withdraw {
  background-color: #fde8e8;
  background-image: url("../images/common/illust_manu_withdraw.svg");
}
.smr-mypage-form__text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}
.smr-mypage-form__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #15171d;
}
.smr-mypage-form__desc {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: #15171d;
  line-height: 1.8;
}
.smr-mypage-form__desc-sub {
  display: block;
  margin-top: 0.8rem;
  color: #686f82;
}
.smr-mypage-form__title-em {
  color: #ef4444;
}
.smr-mypage-form__panel {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: 100%;
  padding: 2.8rem 2rem 4rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.smr-mypage-form__field {
  gap: 1.2rem;
}
.smr-mypage-form__field--readonly .smr-field__label {
  color: #686f82;
}
.smr-mypage-form__field--readonly .smr-account--view::after {
  content: "";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: url("../images/common/ico_lock_20.svg") no-repeat center/auto 1.5rem;
}
.smr-mypage-form__note {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ef4444;
  text-align: center;
  line-height: 1.8;
}
.smr-mypage-form__submit {
  width: 100%;
  min-width: 0;
  height: 5.2rem;
}
.smr-mypage-form--withdraw .smr-mypage-form__panel {
  gap: 4rem;
  padding-top: 3.2rem;
  border-radius: 16px;
}
.smr-mypage-form--withdraw .smr-mypage-form__note {
  margin-top: -0.8rem;
}

.smr-notice-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.smr-notice-list__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
  margin-bottom: 1.6rem;
  text-align: center;
}
.smr-notice-list__icon {
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 999px;
  background: #eaf4fe url("../images/common/illust_manu_notice.svg") no-repeat center/6.3rem;
}
.smr-notice-list__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #15171d;
}
.smr-notice-list__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
.smr-notice-list__item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.smr-notice-list__body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 0;
}
.smr-notice-list__item-title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #15171d;
}
.smr-notice-list__desc {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  line-height: 1.3;
  color: #686f82;
}
.smr-notice-list__desc p + p {
  margin-top: 0.8rem;
}
.smr-notice-list__date {
  width: 100%;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  color: #a6acbb;
  text-align: right;
}
.smr-notice-list__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 4.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #686f82;
}
.smr-notice-list__more-icon {
  --smr-icon-url: url('../images/common/ico_arw_down.svg');
  width: 2rem;
  height: 2rem;
}

.SMR_FP00_001__panel {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}
.SMR_FP00_001__bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.SMR_FP00_001__visual {
  display: flex;
  align-items: center;
  padding-block: 6rem 0;
  color: #ffffff;
}
.SMR_FP00_001__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}
.SMR_FP00_001__visual-inner {
  position: relative;
  z-index: 2;
  margin-bottom: 5rem;
}
.SMR_FP00_001__visual-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 500;
}
.SMR_FP00_001__visual-title::first-line {
  font-size: 1.6rem;
  line-height: 2.3;
}
.SMR_FP00_001__visual-title strong {
  font-weight: 700;
}
.SMR_FP00_001__visual-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 4rem;
}
.SMR_FP00_001__promo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-height: 11rem;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  color: inherit;
  backdrop-filter: blur(5px);
}
.SMR_FP00_001__promo-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  min-width: 0;
  margin-right: auto;
}
.SMR_FP00_001__promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  background: #0046ff;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
}
.SMR_FP00_001__promo-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.SMR_FP00_001__promo-illust {
  display: block;
  flex-shrink: 0;
  width: 4.8rem;
  height: 4.8rem;
  opacity: 0.8;
}
.SMR_FP00_001__promo-arrow {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background-color: currentcolor;
  mask: url("../images/common/ico_arw_w_r.svg") no-repeat center/2.4rem;
  -webkit-mask: url("../images/common/ico_arw_w_r.svg") no-repeat center/2.4rem;
}
.SMR_FP00_001__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/main/bg_card.jpg") no-repeat center/cover;
  background-position: center bottom;
}
.SMR_FP00_001__brand-stack {
  position: relative;
  z-index: 1;
  width: 28.8rem;
  height: 28.8rem;
}
.SMR_FP00_001__brand-stack::before, .SMR_FP00_001__brand-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  transform-origin: 100% 100%;
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.SMR_FP00_001__brand-stack::before {
  transform: translate(0.9px, -1px) rotate(1.53deg);
  transition-delay: 560ms;
}
.SMR_FP00_001__brand-stack::after {
  z-index: -2;
  transform: translate(-2.4px, 1.5px) rotate(4.6deg);
  transition-delay: 340ms;
}
.SMR_FP00_001__brand-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.2rem;
  width: 100%;
  height: 100%;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  text-align: center;
  transform-origin: 100% 100%;
  transform: translate(-2.4px, 1.5px) rotate(4.6deg);
  opacity: 0;
  transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}
.SMR_FP00_001__panel.smr-is-active .SMR_FP00_001__brand-card {
  transform: none;
  opacity: 1;
}
.SMR_FP00_001__panel.smr-is-active .SMR_FP00_001__brand-stack::before,
.SMR_FP00_001__panel.smr-is-active .SMR_FP00_001__brand-stack::after {
  opacity: 1;
}
.SMR_FP00_001__brand-text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.SMR_FP00_001__brand-lead {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: #111;
}
.SMR_FP00_001__brand-lead strong {
  font-weight: 700;
  color: #0046ff;
}
.SMR_FP00_001__brand-title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.43;
  color: #111;
}
.SMR_FP00_001__brand-title strong {
  font-weight: 700;
}
.SMR_FP00_001__brand-logo {
  display: block;
  width: 12.8rem;
  height: auto;
}
.SMR_FP00_001__loan {
  padding-block: 6rem 8rem;
  background: linear-gradient(180deg, #FFF 0%, #EEF6FF 69.39%);
}
.SMR_FP00_001__loan-title {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.1;
  color: #111;
}
.SMR_FP00_001__loan-title strong {
  font-weight: 700;
}
.SMR_FP00_001__loan-slider {
  margin-top: 5rem;
  padding-inline: 1.8rem;
}
.SMR_FP00_001__loan-track {
  overflow: visible;
}
.SMR_FP00_001__loan-item {
  display: flex;
  flex-direction: column;
  width: 28rem;
  height: 49rem;
  border-radius: 16px;
  overflow: hidden;
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.1));
  transform: translateY(2rem) !important;
  transition: transform 300ms ease-out;
  opacity: 0.7;
  filter: blur(1px) !important;
}
.SMR_FP00_001__loan-item.swiper-slide-active {
  transform: translateY(0) !important;
  opacity: 1;
  filter: blur(0) !important;
}
.SMR_FP00_001__loan-body {
  position: relative;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 2rem;
  height: 27rem;
  padding: 3rem 2.2rem;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.SMR_FP00_001__loan-name {
  padding-right: 4rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}
.SMR_FP00_001__loan-more {
  position: absolute;
  top: 3rem;
  right: 2.2rem;
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background-color: #e2ebff;
}
.SMR_FP00_001__loan-more::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #031d62;
  mask: url("../images/common/arrow-narrow-up.svg") no-repeat center/1.6rem;
  -webkit-mask: url("../images/common/arrow-narrow-up.svg") no-repeat center/1.6rem;
  transform: rotate(90deg);
}
.SMR_FP00_001__loan-spec {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}
.SMR_FP00_001__loan-row {
  display: flow-root;
}
.SMR_FP00_001__loan-row dt {
  float: left;
  margin-right: 0.4rem;
}
.SMR_FP00_001__loan-row dt::after {
  content: " :";
}
.SMR_FP00_001__loan-line {
  display: block;
  line-height: 1.2;
}
.SMR_FP00_001__loan-line + .SMR_FP00_001__loan-line {
  margin-top: 0.8rem;
}
.SMR_FP00_001__loan-note {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.2rem;
  line-height: 1.2;
}
.SMR_FP00_001__loan-info {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: -0.8rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}
.SMR_FP00_001__loan-info::before {
  content: "";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-color: #0046ff;
  mask: url("../images/common/ico_exc.svg") no-repeat center/contain;
  -webkit-mask: url("../images/common/ico_exc.svg") no-repeat center/contain;
  transform: rotate(180deg);
}
.SMR_FP00_001__loan-thumb {
  display: block;
  flex: 1;
  width: 100%;
  min-height: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.SMR_FP00_001__loan-nav-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.2rem;
}
.SMR_FP00_001__loan-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid #0046ff;
  border-radius: 999px;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.SMR_FP00_001__loan-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.4rem;
  height: 4.4rem;
  transform: translate(-50%, -50%);
}
.SMR_FP00_001__loan-nav::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background-color: #0046ff;
  mask: url("../images/common/arrow-narrow-up.svg") no-repeat center/contain;
  -webkit-mask: url("../images/common/arrow-narrow-up.svg") no-repeat center/contain;
  transform: rotate(90deg);
}
.SMR_FP00_001__loan-nav--prev::after {
  transform: rotate(-90deg);
}
.SMR_FP00_001__loan-nav.swiper-button-disabled {
  opacity: 0.4;
}
.SMR_FP00_001__loan-count {
  position: static;
  width: auto;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  color: #111;
}
.SMR_FP00_001__loan-count .swiper-pagination-current {
  color: #0046ff;
}
.SMR_FP00_001__news {
  padding-block: 6rem;
  color: #ffffff;
}
.SMR_FP00_001__news::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.SMR_FP00_001__news-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.SMR_FP00_001__status {
  padding: 3rem;
  border-radius: 16px;
  background: rgba(0, 70, 255, 0.8);
  backdrop-filter: blur(5px);
}
.SMR_FP00_001__notice-head, .SMR_FP00_001__status-head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
}
.SMR_FP00_001__notice-head img, .SMR_FP00_001__status-head img {
  display: block;
  width: 3rem;
  height: 3rem;
}
.SMR_FP00_001__status-head {
  border-bottom-color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}
.SMR_FP00_001__status-head img {
  mix-blend-mode: lighten;
}
.SMR_FP00_001__status-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.SMR_FP00_001__stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.SMR_FP00_001__stat dt {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
}
.SMR_FP00_001__stat dd {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.SMR_FP00_001__stat dd strong {
  margin-right: 0.2rem;
  font-size: 2.8rem;
  font-weight: 700;
}
.SMR_FP00_001__notice {
  padding: 3rem;
  border-radius: 16px;
  background: rgba(238, 246, 255, 0.2);
  backdrop-filter: blur(5px);
}
.SMR_FP00_001__notice-more {
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
}
.SMR_FP00_001__notice-more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.4rem;
  height: 4.4rem;
  transform: translate(-50%, -50%);
}
.SMR_FP00_001__notice-more::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  mask: url("../images/common/arrow-narrow-up.svg") no-repeat center/1.6rem;
  -webkit-mask: url("../images/common/arrow-narrow-up.svg") no-repeat center/1.6rem;
  transform: rotate(90deg);
}
.SMR_FP00_001__notice-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.SMR_FP00_001__notice-list a {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.8rem;
  color: inherit;
}
.SMR_FP00_001__notice-list time {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}
.SMR_FP00_001__notice-list span {
  overflow: hidden;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.SMR_FP00_001__videos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.SMR_FP00_001__videos-track {
  width: 100%;
}
.SMR_FP00_001__video {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.5);
  color: inherit;
  backdrop-filter: blur(5px);
}
.SMR_FP00_001__video-thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 140/77;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.SMR_FP00_001__video-meta {
  display: flex;
  align-items: center;
  width: 100%;
}
.SMR_FP00_001__video-title {
  position: relative;
  min-width: 0;
  padding-left: 2.8rem;
  overflow: hidden;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.SMR_FP00_001__video-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 2rem;
  background-color: currentcolor;
  mask: url("../images/main/ico_play_24.svg") no-repeat center/contain;
  -webkit-mask: url("../images/main/ico_play_24.svg") no-repeat center/contain;
  transform: translateY(-50%);
}
.SMR_FP00_001__videos-dots {
  position: static;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  width: auto;
}
.SMR_FP00_001__videos-dots .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}
.SMR_FP00_001__videos-dots .swiper-pagination-bullet-active {
  background: #ffffff;
}

.SMR_FP00_001_01 {
  position: relative;
}
.SMR_FP00_001_01 .smr-container {
  padding-inline: 3rem;
}
.SMR_FP00_001_01__visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: 22.1rem 4rem;
  overflow: hidden;
  background: #eef6ff;
  color: #ffffff;
}
.SMR_FP00_001_01__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}
.SMR_FP00_001_01__bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: no-repeat center/cover;
  pointer-events: none;
}
.SMR_FP00_001_01__visual-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.SMR_FP00_001_01__visual-title {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
}
.SMR_FP00_001_01__visual-title strong {
  font-weight: 700;
}
.SMR_FP00_001_01__visual-line:first-child {
  font-size: 1.6rem;
  line-height: 1.4;
}
.SMR_FP00_001_01__promo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 11rem;
  padding-inline: 3rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  color: inherit;
  backdrop-filter: blur(5px);
  transition: background-color 150ms ease-out;
}
.SMR_FP00_001_01__promo-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  min-width: 0;
  margin-right: auto;
}
.SMR_FP00_001_01__promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  background: #0046ff;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
}
.SMR_FP00_001_01__promo-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.SMR_FP00_001_01__promo-illust {
  display: block;
  flex-shrink: 0;
  width: 4.8rem;
  height: 4.8rem;
  opacity: 0.8;
}
.SMR_FP00_001_01__promo-arrow {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background-color: currentcolor;
  mask: url("../images/common/ico_arw_w_r.svg") no-repeat center/2.4rem;
  -webkit-mask: url("../images/common/ico_arw_w_r.svg") no-repeat center/2.4rem;
}

.smr-page:has(> .SMR_FP00_003) {
  background: #ffffff;
}

.SMR_FP00_003 {
  background: #ffffff;
  padding-bottom: 5.7rem;
}
.SMR_FP00_003 .smr-section {
  padding-top: 0;
}
.SMR_FP00_003 .smr-guide {
  gap: 2.4rem;
}
.SMR_FP00_003 .smr-guide__actions {
  margin-top: 0.8rem;
}

.SMR_FP00_004[hidden] {
  display: none;
}
.SMR_FP00_004 {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
}

.SMR_FP00_004__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.SMR_FP00_004__panel {
  position: relative;
  width: calc(100% - 4rem);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.SMR_FP00_004__list {
  width: 100%;
  min-width: 0;
  min-height: 0;
}

.SMR_FP00_004__body {
  padding-block: 2rem 3rem;
  background: #fbefd9;
}

.SMR_FP00_004__image {
  display: block;
  width: 100%;
  height: auto;
}

.SMR_FP00_004__dots {
  position: absolute;
  right: 0;
  bottom: 0.9rem;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  width: auto;
}
.SMR_FP00_004__dots .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  margin: 0 !important;
  background: rgba(121, 121, 121, 0.3);
  opacity: 1;
}
.SMR_FP00_004__dots .swiper-pagination-bullet-active {
  background: #ffffff;
}

.SMR_FP00_004__bar {
  display: flex;
  flex-shrink: 0;
  background: #ffffff;
}

.SMR_FP00_004__today,
.SMR_FP00_004__close {
  flex: 1;
  height: 4.2rem;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  color: #333;
}

.SMR_FP00_004__close {
  border-left: 1px solid #e6e6e6;
}

.SMR_FP01_001 {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.SMR_FP01_001 .smr-section {
  padding-top: 0;
  padding-bottom: 13.2rem;
}
.SMR_FP01_001 .smr-section__body {
  gap: 4rem;
}
.SMR_FP01_001 > .smr-container {
  position: relative;
  z-index: 1;
}
.SMR_FP01_001::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 20.25rem;
  height: 19.46rem;
  background: url("../images/common/bg_symbol.svg") no-repeat center/contain;
  pointer-events: none;
}
.SMR_FP01_001__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.SMR_FP01_001__greeting {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.SMR_FP01_001__headline {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 700;
  color: #15171d;
  word-break: keep-all;
  line-height: 1.6;
}
.SMR_FP01_001__accent {
  color: #0046ff;
}
.SMR_FP01_001__message {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.SMR_FP01_001__text {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  color: #2e323f;
  word-break: keep-all;
}
.SMR_FP01_001__text strong {
  font-weight: 500;
}
.SMR_FP01_001__sign {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: #15171d;
}
.SMR_FP01_001__sign-role {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
.SMR_FP01_001__sign-name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
}

.SMR_FP01_005 {
  background: #fafafa;
}
.SMR_FP01_005__layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.SMR_FP01_005__nav {
  margin-inline: -2rem;
}
.SMR_FP01_005__nav .smr-tab {
  padding-inline: 2rem;
}
.SMR_FP01_005__panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.SMR_FP01_005__panel-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #15171d;
}
.SMR_FP01_005__info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.SMR_FP01_005__info dt,
.SMR_FP01_005__info dd {
  margin: 0;
}
.SMR_FP01_005__info-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #2e323f;
}
.SMR_FP01_005__info-row dt {
  flex-shrink: 0;
  width: 5.4rem;
  font-weight: 500;
}
.SMR_FP01_005__info-row dd {
  display: inline;
  font-weight: 300;
  line-height: 1.6;
}
.SMR_FP01_005__copy {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  transform: translateY(-0.3rem);
}
.SMR_FP01_005__map {
  width: 100%;
  height: 36rem;
  border-radius: 12px;
  overflow: hidden;
}

.SMR_FP03_001 .smr-section {
  padding-block: 0;
}
.SMR_FP03_001__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  color: #000000;
}
.SMR_FP03_001__title-main, .SMR_FP03_001__title-sub {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.SMR_FP03_001__title2 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 2.4rem;
}
.SMR_FP03_001__lead {
  margin-top: 2.4rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  color: #444444;
}
.SMR_FP03_001__lead-point {
  font-weight: 700;
  color: #0046ff;
}
.SMR_FP03_001__hero {
  margin-top: 3rem;
}
.SMR_FP03_001__hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.SMR_FP03_001__blocks {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.SMR_FP03_001__overview-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.SMR_FP03_001__overview-card {
  display: flex;
  flex-direction: column;
  padding: 2.4rem 3rem 4rem;
  border-radius: 12px;
  background: #f3f6fd;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
.SMR_FP03_001__overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.SMR_FP03_001__overview-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #00236e;
}
.SMR_FP03_001__overview-icon {
  display: block;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.SMR_FP03_001__overview-icon--target {
  background-image: url("../images/program/icon-target.png");
}
.SMR_FP03_001__overview-icon--amount {
  background-image: url("../images/program/icon-amount.png");
}
.SMR_FP03_001__overview-icon--date {
  background-image: url("../images/program/icon-date.png");
}
.SMR_FP03_001__overview-body {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 35, 110, 0.5);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333333;
}
.SMR_FP03_001__overview-note {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #333333;
}
.SMR_FP03_001__accent {
  color: #0046ff;
}
.SMR_FP03_001__accent--value strong {
  font-size: 1.5rem;
}
.SMR_FP03_001__method {
  display: flex;
  flex-direction: column;
}
.SMR_FP03_001__method-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.SMR_FP03_001__method-card {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  padding: 3.2rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 35, 110, 0.5);
  background: #ffffff;
}
.SMR_FP03_001__method-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.SMR_FP03_001__method-arrow {
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  background: url("../images/common/ico_down_line_32.svg") no-repeat center/contain;
  transform: rotate(90deg);
}
.SMR_FP03_001__method-icon {
  display: block;
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.SMR_FP03_001__method-icon--apply {
  background-image: url("../images/program/step-01.png");
}
.SMR_FP03_001__method-icon--check {
  background-image: url("../images/program/step-02.png");
}
.SMR_FP03_001__method-icon--schedule {
  background-image: url("../images/program/step-03.png");
}
.SMR_FP03_001__method-icon--payout {
  background-image: url("../images/program/step-04.png");
}
.SMR_FP03_001__method-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
}
.SMR_FP03_001__method-desc {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.1;
  color: #333333;
}
.SMR_FP03_001__method-caption {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.1;
  color: #333333;
}
.SMR_FP03_001__method-notes {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.SMR_FP03_001__method-note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  color: #333333;
}
.SMR_FP03_001__method-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.6rem;
  border-radius: 40px;
  background: #f3f6fd;
  color: #0046ff;
  font-weight: 700;
  white-space: nowrap;
}
.SMR_FP03_001__example {
  margin-top: 4rem;
  margin-inline: calc(-1 * 2rem);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background: #f5f5f5;
}
.SMR_FP03_001__example-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}
.SMR_FP03_001__example-caption {
  font-size: 1.3rem;
  color: #00236e;
}
.SMR_FP03_001__timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.SMR_FP03_001__timeline-card {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.1);
}
.SMR_FP03_001__timeline-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 1.6rem;
  background: #e1e4ea;
}
.SMR_FP03_001__timeline-title, .SMR_FP03_001__timeline-value {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
}
.SMR_FP03_001__timeline-title {
  font-weight: 700;
  color: #111111;
}
.SMR_FP03_001__timeline-value {
  font-weight: 500;
  color: #333333;
}
.SMR_FP03_001__timeline-arrow {
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  background: url("../images/common/ico_down_line_32.svg") no-repeat center/contain;
  transform: rotate(90deg);
}
.SMR_FP03_001__table-scroll {
  width: 100%;
  overflow-x: auto;
}
.SMR_FP03_001__table {
  width: 52rem;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(191, 191, 191, 0.5);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}
.SMR_FP03_001__table th,
.SMR_FP03_001__table td {
  border-bottom: 1px solid rgba(191, 191, 191, 0.5);
  border-right: 1px solid rgba(191, 191, 191, 0.5);
}
.SMR_FP03_001__table th:last-child,
.SMR_FP03_001__table td:last-child {
  border-right: 0;
}
.SMR_FP03_001__table thead th {
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  background: #a9c1f0;
  border-right-color: #ffffff;
}
.SMR_FP03_001__table tbody th,
.SMR_FP03_001__table tbody td {
  padding: 3rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333333;
  background: #ffffff;
  white-space: nowrap;
}
.SMR_FP03_001__table tbody tr:last-child th,
.SMR_FP03_001__table tbody tr:last-child td {
  border-bottom: 0;
}

.SMR_FP03_002 .smr-section {
  padding-block: 0 8rem;
}
.SMR_FP03_002__brand {
  color: #0046ff;
}
.SMR_FP03_002 .smr-section-head__title {
  font-weight: 700;
}

.SMR_FP03_003,
.SMR_FP03_004,
.SMR_FP03_005,
.SMR_FP03_006 {
  background: #fafafa;
}

.SMR_FP03_007 {
  background: #fafafa;
}

.SMR_FP03_009 {
  background: #fafafa;
}

.SMR_FP03_010 {
  background: #fafafa;
}

.SMR_FP03_011 {
  background: #fafafa;
}
.SMR_FP03_011 .smr-section-head {
  text-align: center;
}

.SMR_FP03_012 {
  background: #fafafa;
}
.SMR_FP03_012__tab {
  padding-bottom: 1.6rem;
}
.SMR_FP03_012__body {
  display: flex;
  flex-direction: column;
  padding-top: 4rem;
  gap: 4rem;
}
.SMR_FP03_012__notice {
  position: relative;
  overflow: hidden;
  padding: 3.2rem 2rem;
  border-radius: 24px;
  background: #eaf4fe;
}
.SMR_FP03_012__notice-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.SMR_FP03_012__notice-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
  color: #15171d;
}
.SMR_FP03_012__notice-title strong {
  font-weight: 700;
  color: #0046ff;
}
.SMR_FP03_012__notice-desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.SMR_FP03_012__notice-lead {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #15171d;
}
.SMR_FP03_012__notice-caption {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #686f82;
}
.SMR_FP03_012__notice-illust {
  position: absolute;
  top: 3.2rem;
  right: 0;
  width: 14.2rem;
  height: 10.8rem;
  background-image: url("../images/mypage/illust_umbrella.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}
.SMR_FP03_012__notice-illust--flag {
  background-image: url("../images/mypage/illust_flag.png");
  top: 2.4rem;
  right: 2rem;
}
.SMR_FP03_012__block-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #15171d;
}
.SMR_FP03_012__summary {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2.4rem;
}
.SMR_FP03_012__summary-card {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
  padding: 2rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.16);
}
.SMR_FP03_012__summary-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}
.SMR_FP03_012__summary-head {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  min-width: 0;
  gap: 1.6rem;
}
.SMR_FP03_012__summary-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  color: #2878f5;
}
.SMR_FP03_012__summary-desc {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #686f82;
}
.SMR_FP03_012__summary-caption {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  color: #686f82;
  line-height: 1.6;
}
.SMR_FP03_012__summary-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: #eaf4fe;
}
.SMR_FP03_012__summary-illust {
  width: 5.6rem;
  height: 5.6rem;
}
.SMR_FP03_012__stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  width: 100%;
  padding: 2rem 2.4rem;
  border-radius: 24px;
  background: #2878f5;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.16);
  color: #ffffff;
}
.SMR_FP03_012__stat-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.SMR_FP03_012__stat-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}
.SMR_FP03_012__stat-title::after {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  background: url("../images/common/Ico_won_10.png") no-repeat center/contain;
}
.SMR_FP03_012__stat-value {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
}
.SMR_FP03_012__stat-value span {
  margin-left: 0.4rem;
  font-size: 1.6rem;
}
.SMR_FP03_012__stat-progress {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
}
.SMR_FP03_012__stat-progress-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.SMR_FP03_012__stat-progress-track, .SMR_FP03_012__stat-progress-value {
  fill: none;
  stroke-width: 14px;
}
.SMR_FP03_012__stat-progress-track {
  stroke: rgba(255, 255, 255, 0.24);
}
.SMR_FP03_012__stat-progress-value {
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-dasharray: 100;
  transition: stroke-dashoffset 150ms ease-out;
}
.SMR_FP03_012__stat-progress-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: #ffffff;
  text-align: center;
}
.SMR_FP03_012__stat-progress-text strong {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}
.SMR_FP03_012__stat-progress-text span {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}
.SMR_FP03_012 .smr-card {
  padding: 2rem 1.2rem;
  min-height: 18.2rem;
  gap: 1.4rem;
}
.SMR_FP03_012__rounds {
  background: #ffffff;
  padding: 4rem 0 8rem;
}
.SMR_FP03_012__rounds-head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}
.SMR_FP03_012__block-desc {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.3;
  color: #686f82;
}
.SMR_FP03_012__legend {
  display: flex;
  gap: 1.2rem;
}
.SMR_FP03_012__legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #333333;
}
.SMR_FP03_012__legend-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
}
.SMR_FP03_012__legend-dot--completed {
  background: #2878f5;
}
.SMR_FP03_012__legend-dot--upcoming {
  background: #22c55e;
}
.SMR_FP03_012__legend-dot--error {
  background: #ef4444;
}
.SMR_FP03_012__rounds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem 1.6rem;
}
.SMR_FP03_012__rounds-slider {
  width: 100%;
}
.SMR_FP03_012__rounds-track.swiper {
  overflow-x: hidden;
  overflow-y: visible;
  margin-inline: -2rem;
  padding: 0 2rem 1.6rem 2rem;
}
.SMR_FP03_012__rounds-dots {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: auto;
  margin-top: 2.4rem;
}
.SMR_FP03_012__rounds-dots .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 !important;
  background: #e1e4ea;
  opacity: 1;
}
.SMR_FP03_012__rounds-dots .swiper-pagination-bullet-active {
  background: #2878f5;
}
.SMR_FP03_012__more {
  margin-top: 2.4rem;
}
.SMR_FP03_012__caution {
  margin-top: 4rem;
}
.SMR_FP03_012__caution .smr-caution {
  margin-top: 0;
  border-top: 0;
}
.SMR_FP03_012__detail-head {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.SMR_FP03_012__detail-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 700;
  color: #15171d;
}
.SMR_FP03_012__detail-year {
  width: 100%;
}
.SMR_FP03_012__detail-year-icon {
  transform: rotate(90deg);
}
.SMR_FP03_012__detail-table-scroll {
  width: 100%;
  max-height: 34rem;
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.SMR_FP03_012__detail-scrollbar {
  width: 100%;
  height: 0.4rem;
  margin-top: 1.6rem;
  border-radius: 999px;
  background: #e1e4ea;
  overflow: hidden;
}
.SMR_FP03_012__detail-scrollbar-thumb {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: #2878f5;
  transition: width 150ms ease-out, transform 150ms ease-out;
}
.SMR_FP03_012__detail-note {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  color: #2878f5;
  margin-top: 1.6rem;
  line-height: 1.6;
}

.smr-modal--payment-detail .smr-modal__body {
  overflow: hidden;
  gap: 2.4rem;
}
.smr-modal--payment-detail .smr-table-wrap {
  overflow: auto;
  width: 100%;
  max-height: 50vh;
}

.SMR_FP03_014 {
  background: #fafafa;
}
.SMR_FP03_014__tab {
  padding-bottom: 1.6rem;
}
.SMR_FP03_014__body {
  padding-top: 3.2rem;
  padding-bottom: 8rem;
}

.SMR_FP03_016 {
  background: #fafafa;
}
.SMR_FP03_016 .smr-mypage-form__panel {
  gap: 1.6rem;
}
.SMR_FP03_016 .smr-mypage-form__field {
  gap: 0.8rem;
}
.SMR_FP03_016 .smr-mypage-form__panel > .smr-field:last-child {
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.SMR_FP03_016__tab {
  padding-bottom: 1.6rem;
}
.SMR_FP03_016__body {
  padding-top: 3.2rem;
  padding-bottom: 8rem;
}

.SMR_FP03_017 {
  background: #fafafa;
}
.SMR_FP03_017__tab {
  padding-bottom: 1.6rem;
}
.SMR_FP03_017__body {
  padding-top: 3.2rem;
  padding-bottom: 6rem;
}

.SMR_FP03_018 {
  background: #fafafa;
}
.SMR_FP03_018__tab {
  padding-bottom: 1.6rem;
}
.SMR_FP03_018__body {
  padding-top: 3.2rem;
  padding-bottom: 8rem;
}

.SMR_FP04_001 .smr-section {
  padding-block: 0 8rem;
}

.SMR_FP04_004 .smr-section {
  padding-block: 0 8rem;
}

.SMR_FP04_006 .smr-section {
  padding-block: 0 8rem;
}

.SMR_FP04_007 .smr-section {
  padding-block: 0 8rem;
}

.SMR_FP05_001 .smr-section {
  padding-block: 0 8rem;
}

.SMR_FP05_004 .smr-section {
  padding-block: 0 8rem;
}

.SMR_FP05_005 .smr-section {
  padding-block: 0 8rem;
}

.SMR_FP06_001 .smr-section {
  padding-block: 0 20rem;
}

.SMR_FP06_004 {
  display: flex !important;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
}
.SMR_FP06_004 .smr-button {
  height: 5.2rem;
  min-width: 16rem;
}/*# sourceMappingURL=app.css.map */