@media screen and (min-width: 1025px) {
  br.pc {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  br.m {
    display: none;
  }
  br.t {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
  br.t {
    display: none;
  }
  br.m {
    display: block;
  }
}

#skip_nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 99999;
}
#skip_nav a {
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1a1d24;
  color: #fff;
  font-size: 20px;
  line-height: 50px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: 0.3s;
}
#skip_nav a:hover, #skip_nav a:focus-visible, #skip_nav a:active {
  height: 50px;
  transition: 0.3s;
}

#wrap {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background-color: #fff;
}

.inner {
  width: 100%;
  max-width: 1275px;
  padding-left: 32px;
  padding-right: 32px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.header {
  position: relative;
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px 0;
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.header__brand {
  display: flex;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
}
.header__logo-link {
  display: inline-flex;
  flex-shrink: 0;
  text-decoration: none;
}
.header__logo {
  height: 56px;
}
.header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.header__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: #44403c;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}
.header__link:hover, .header__link:focus-visible {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.header__link:hover svg path, .header__link:focus-visible svg path {
  fill: #0065bd;
}
.header__link-text {
  color: inherit;
}
.header__org {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.header__org:hover, .header__org:focus-visible {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.header__org-name {
  color: #0369a1;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-align: center;
}
.header__lang {
  display: inline-flex;
  align-self: stretch;
  align-items: center;
  gap: 10px;
}
.header__lang-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.header__lang-label select {
  color: #44403c;
  font-size: 1.125rem;
  font-weight: 600;
  height: 28px;
  line-height: 140%;
  box-sizing: border-box;
  font-family: "Pretendard", sans-serif;
}
.header__menu-btn {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  max-width: 100%;
}
.header__icon--login {
  width: 16px;
  height: 16px;
}
.header__icon--logout {
  width: 16px;
  height: 16px;
}
.header__icon--join {
  width: 14px;
  height: 16px;
}
.header__icon--mypage {
  width: 16px;
  height: 16px;
}
.header__icon--org {
  width: 14px;
  height: 14px;
}
.header__icon--globe {
  width: 16px;
  height: 16px;
}
.header__icon--menu {
  display: inline-flex;
}
.header__icon--close {
  display: none;
}
.header__icon--chevron {
  width: 0;
  height: 0;
  background-color: transparent;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #44403c;
}
.header__icon svg {
  max-width: 100%;
}
@media screen and (min-width: 1025px) {
  .header__menu-btn {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 24px 0;
  }
  .header__logo {
    height: 52px;
  }
  .header__actions {
    gap: 10px;
  }
  .header__link {
    gap: 0;
    width: 36px;
    height: 36px;
  }
  .header__link-text {
    display: none;
  }
  .header__org {
    display: none;
  }
  .header__icon--login {
    width: 22px;
    height: 24px;
  }
  .header__icon--logout {
    width: 22px;
    height: 24px;
  }
  .header__icon--join {
    width: 20px;
    height: 22px;
  }
  .header__icon--mypage {
    width: 20px;
    height: 22px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 20px 0;
  }
  .header__inner {
    gap: 10px;
  }
  .header__logo {
    height: 40px;
  }
  .header__actions {
    gap: 0;
  }
  .header__menu-btn {
    width: 26px;
    height: 26px;
  }
}

.header-gnb {
  position: relative;
  width: 100%;
  z-index: 20;
}
.header-gnb__nav {
  position: relative;
  border-bottom: 1px solid #e5e7eb;
  background-color: #fff;
  z-index: 30;
  overflow: visible;
}
.header-gnb__panel {
  position: absolute;
  top: 64px;
  left: 50%;
  width: 100%;
  min-height: 0;
  height: auto;
  margin: 0;
  transform: translateX(-50%);
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid #e5e7eb;
  pointer-events: none;
  z-index: 20;
  box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.1);
}
.header-gnb__menu {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1275px;
  padding-left: 32px;
  padding-right: 32px;
  margin: 0 auto;
  list-style: none;
  z-index: 30;
}
.header-gnb__item {
  position: relative;
  flex: 1;
}
.header-gnb__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 64px;
  padding: 0 18px;
  color: #1a1d24;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
  text-decoration: none;
  border-right: 1px solid #e6e9ec;
}
.header-gnb__link:hover, .header-gnb__link:focus-visible, .header-gnb__link.is-active, .header-gnb__link[aria-current=page] {
  color: #0065bd;
}
.header-gnb__link:hover::after, .header-gnb__link:focus-visible::after, .header-gnb__link.is-active::after, .header-gnb__link[aria-current=page]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 3px solid #0065bd;
}
.header-gnb__blank {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: inherit;
}
.header-gnb__blank svg {
  display: block;
  width: 100%;
  height: 100%;
}
.header-gnb__submenu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  flex-direction: column;
  height: auto;
  margin: 0;
  padding: 20px 0 24px;
  list-style: none;
  overflow: hidden;
  background-color: transparent;
  border-right: 1px solid #e6e9ec;
  z-index: 30;
}
.header-gnb__submenu > * {
  position: relative;
  z-index: 1;
}
.header-gnb__item:first-child > .header-gnb__link, .header-gnb__item:first-child > .header-gnb__submenu {
  border-left: 1px solid #e6e9ec;
}
.header-gnb:hover .header-gnb__panel, .header-gnb:focus-within .header-gnb__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header-gnb:hover .header-gnb__submenu, .header-gnb:focus-within .header-gnb__submenu {
  display: flex;
}
.header-gnb__item:hover > .header-gnb__submenu, .header-gnb__item:focus-within > .header-gnb__submenu {
  background-color: #F2F9FF;
  background-image: url("../images/common/gnb_submenu-bg.png");
  background-position: bottom right;
  background-repeat: no-repeat;
}
.header-gnb__item:hover > .header-gnb__link, .header-gnb__item:focus-within > .header-gnb__link {
  color: #0065bd;
}
.header-gnb__item:hover > .header-gnb__link::after, .header-gnb__item:focus-within > .header-gnb__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 3px solid #0065bd;
}
.header-gnb__sublink {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 20px;
  color: #3e3a39;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}
.header-gnb__sublink:not([target=_blank])::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  opacity: 0;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8H13M13 8L9 4M13 8L9 12' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8H13M13 8L9 4M13 8L9 12' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: opacity 0.15s ease;
}
.header-gnb__sublink .header-gnb__blank {
  width: 14px;
  height: 14px;
  color: inherit;
}
.header-gnb__sublink:hover, .header-gnb__sublink:focus-visible, .header-gnb__sublink.is-active, .header-gnb__sublink[aria-current=page] {
  color: #0065bd;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.header-gnb__sublink:hover:not([target=_blank])::after, .header-gnb__sublink:focus-visible:not([target=_blank])::after, .header-gnb__sublink.is-active:not([target=_blank])::after, .header-gnb__sublink[aria-current=page]:not([target=_blank])::after {
  opacity: 1;
}
.header-gnb__dim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}
.header-gnb:hover .header-gnb__dim, .header-gnb:focus-within .header-gnb__dim {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1024px) {
  .header-gnb {
    display: none;
  }
}

.header-mgnb {
  display: none;
}

@media screen and (max-width: 1024px) {
  body.is-mgnb-open {
    overflow: hidden;
  }
  body.is-mgnb-open .header {
    position: relative;
    z-index: 50;
    border-bottom-color: #e9eaeb;
  }
  body.is-mgnb-open .header__icon--menu {
    display: none;
  }
  body.is-mgnb-open .header__icon--close {
    display: inline-flex;
  }
  .header-mgnb {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: none;
    flex-direction: column;
    background-color: #fff;
  }
  .header-mgnb.is-open {
    display: flex;
  }
  .header-mgnb__nav {
    flex: 1;
    width: 100%;
    margin-top: 100px;
    padding: 0 32px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header-mgnb__menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .header-mgnb__item {
    width: 100%;
  }
  .header-mgnb__toggle, .header-mgnb__link, .header-mgnb__external {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 22px 20px;
    border: 0;
    background: #fff;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
  }
  .header-mgnb__item--link .header-mgnb__arrow {
    display: none;
  }
  .header-mgnb__label {
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    color: #1a1d24;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 150%;
    word-break: break-word;
    margin-top: -3px;
  }
  .header-mgnb__arrow {
    display: inline-flex;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
  }
  .header-mgnb__arrow svg {
    display: block;
  }
  .header-mgnb__item.is-open .header-mgnb__arrow {
    transform: rotate(180deg);
  }
  .header-mgnb__item.is-open .header-mgnb__submenu {
    display: flex;
  }
  .header-mgnb__submenu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 14px 10px;
    list-style: none;
    border: 1px solid #e9eaeb;
    border-radius: 4px;
    background-color: #f7f9fa;
    box-sizing: border-box;
  }
  .header-mgnb__subitem {
    width: 100%;
  }
  .header-mgnb__sublink {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 12px 24px;
    color: #717680;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 150%;
    text-decoration: none;
    box-sizing: border-box;
    word-break: break-word;
  }
  .header-mgnb__sublink:hover, .header-mgnb__sublink:focus-visible, .header-mgnb__sublink[aria-current=page] {
    color: #0065bd;
  }
  .header-mgnb__blank {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 8px;
    color: inherit;
    margin-top: -3px;
  }
  .header-mgnb__blank svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  .header-mgnb__sublink .header-mgnb__blank {
    width: 16px;
    height: 16px;
  }
  .header-mgnb__item--external .header-mgnb__label {
    color: #0065bd;
  }
  .header-mgnb__external {
    align-items: center;
  }
  .header-mgnb__external-icon {
    display: inline-flex;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
  }
  .header-mgnb__lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 0 0 60px;
  }
  .header-mgnb__lang-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
  }
  .header-mgnb__lang-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }
  .header-mgnb__lang-item {
    color: #717680;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 150%;
  }
  .header-mgnb__lang-item.is-active {
    color: #3e3a39;
    font-weight: 500;
  }
  .header-mgnb__lang-divider {
    display: block;
    width: 1px;
    height: 12px;
    background-color: #c9d0d7;
  }
}
@media screen and (max-width: 768px) {
  .header-mgnb__nav {
    margin-top: 80px;
    padding: 0 16px 32px;
  }
  .header-mgnb__toggle, .header-mgnb__link, .header-mgnb__external {
    padding: 16px 10px;
  }
  .header-mgnb__label {
    font-size: 1.25rem;
  }
  .header-mgnb__submenu {
    padding: 14px 10px;
  }
  .header-mgnb__sublink {
    padding: 10px;
    font-size: 0.9375rem;
  }
  .header-mgnb__lang-item {
    font-size: 0.875rem;
  }
}
main {
  flex: 1;
}

.footer {
  width: 100%;
  padding: 2.5rem 0;
  border-top: 1px solid #E4E4E4;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  width: 100%;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.footer__logo {
  display: block;
  height: auto;
  max-height: 52px;
}
.footer__copyright {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}
.footer__copy-text {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
.footer__nav {
  flex-shrink: 0;
}
.footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__nav-item {
  display: flex;
  align-items: center;
}
.footer__nav-link {
  color: #4b5563;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__nav-link:hover, .footer__nav-link:focus-visible {
  color: #111827;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.footer__nav-link:focus-visible {
  outline: 2px solid #0065bd;
  outline-offset: 2px;
}
.footer__nav-divider {
  width: 1px;
  height: 12px;
  background-color: #e5e7eb;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 1rem 5.625rem;
  }
  .footer__brand {
    grid-column: 1;
    grid-row: 1/3;
    align-self: center;
  }
  .footer__nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: flex-start;
  }
  .footer__copyright {
    grid-column: 2;
    grid-row: 2;
    flex: none;
    width: auto;
    justify-self: flex-start;
  }
  .footer__nav-list {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .footer__logo {
    max-height: 44px;
  }
  .footer__brand {
    order: 1;
    margin-bottom: 1.875rem;
  }
  .footer__nav {
    order: 2;
    margin-bottom: 0.625rem;
  }
  .footer__copyright {
    order: 3;
    flex: none;
    width: 100%;
  }
  .footer__nav-list {
    justify-content: flex-start;
  }
}

.go-top {
  display: none;
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 1000;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #fff;
  border-radius: 60px;
  border: 1px solid #E9EAEB;
  color: #3E3A39;
  text-decoration: none;
  transition: background-color 0.3s;
}
.go-top:hover, .go-top:focus-visible {
  background-color: #fff;
}
.go-top:focus-visible {
  outline: 2px solid #0065bd;
  outline-offset: 2px;
}
.go-top__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.go-top__text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tab-menu {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 76.625rem;
  margin: 0 auto 2.5rem;
  box-sizing: border-box;
}
.tab-menu__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  height: 4rem;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 8px;
  background: #0065bd;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  box-sizing: border-box;
}
.tab-menu__toggle-text {
  flex: 1 1 0;
  min-width: 0;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tab-menu__toggle-icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.2s ease;
}
.tab-menu__toggle-icon svg {
  width: 100%;
  height: 100%;
}
.tab-menu.is-open .tab-menu__toggle-icon {
  transform: rotate(180deg);
}
.tab-menu__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.tab-menu__item {
  flex: 0 0 25%;
  min-width: 25%;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border: 1px solid #c9d0d7;
  margin: 0 -1px -1px 0;
  background: #fff;
  color: #1a1d24;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  box-sizing: border-box;
}
.tab-menu__item-text {
  min-width: 0;
  width: 100%;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.tab-menu__item.is-radius-tl {
  border-top-left-radius: 8px;
}
.tab-menu__item.is-radius-tr {
  border-top-right-radius: 8px;
}
.tab-menu__item.is-radius-bl {
  border-bottom-left-radius: 8px;
}
.tab-menu__item.is-radius-br {
  border-bottom-right-radius: 8px;
}
.tab-menu__item.is-active {
  border-color: #0065bd;
  background: #0065bd;
  color: #fff;
  z-index: 1;
}
.tab-menu__item:focus-visible {
  outline: 2px solid #0065bd;
  outline-offset: 2px;
  z-index: 1;
}
.tab-menu__list.resize .tab-menu__item {
  flex: 1 1 0;
}
@media screen and (max-width: 1024px) {
  .tab-menu {
    margin-bottom: 2.5rem;
  }
  .tab-menu__toggle {
    display: flex;
  }
  .tab-menu.is-open .tab-menu__list {
    display: flex;
  }
  .tab-menu__list {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    flex-direction: column;
    height: auto;
    overflow: hidden;
    border: 1px solid #c9d0d7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  .tab-menu__item {
    flex: none;
    min-width: 0;
    max-width: none;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding: 0.75rem 1rem;
    margin: 0;
    border: none;
    border-radius: 4px;
    background: #fff;
    color: #1a1d24;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
  }
  .tab-menu__item-text {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
  }
  .tab-menu__item.is-radius-tl, .tab-menu__item.is-radius-tr, .tab-menu__item.is-radius-bl, .tab-menu__item.is-radius-br, .tab-menu__item:first-child, .tab-menu__item:last-child {
    border-radius: 4px;
  }
  .tab-menu__item.is-active, .tab-menu__item:hover {
    border-color: transparent;
    background: #f6f6f6;
    color: #1a1d24;
  }
}
@media screen and (max-width: 768px) {
  .tab-menu {
    margin-bottom: 1.5rem;
  }
  .tab-menu__toggle {
    height: 3.5rem;
    font-size: 1rem;
  }
  .tab-menu__item {
    font-size: 1rem;
  }
}

.subtit {
  position: relative;
  line-height: 150%;
  color: #1A1D24;
}
.subtit.blue {
  color: #0065BD;
}
.subtit.gray {
  color: #667381;
}
.subtit.large {
  font-size: 1.125rem;
}
.subtit.medium {
  font-size: 1rem;
}
.subtit.small {
  font-size: 0.875rem;
}
.subtit.bold {
  font-weight: 700;
}
.subtit.semibold {
  font-weight: 600;
}
.subtit.mid {
  font-weight: 500;
}
.subtit.bullet {
  line-height: 32px;
  padding-left: 40px;
  font-weight: 600;
  letter-spacing: -0.54px;
}
.subtit.bullet::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-image: url(../../static/images/common/subtit/subtit-bullet.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.subtit.bullet02 {
  line-height: 24px;
  padding-left: 40px;
  font-weight: 600;
  letter-spacing: -0.48px;
}
.subtit.bullet02::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 24px;
  background-image: url(../../static/images/common/subtit/subtit-bullet02.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.subtit.dot {
  line-height: 24px;
  padding-left: 11px;
  letter-spacing: -0.48px;
  font-weight: 700;
}
.subtit.dot::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 24px;
  background-image: url(../../static/images/common/subtit/subtit-dot.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.subtit.dot2 {
  line-height: 24px;
  padding-left: 9px;
  letter-spacing: -0.48px;
  font-weight: 700;
}
.subtit.dot2::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 24px;
  background-image: url(../../static/images/common/subtit/subtit-dot02.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.subtit.line {
  line-height: 24px;
  padding-left: 11px;
  letter-spacing: -0.48px;
}
.subtit.line::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 24px;
  background-image: url(../../static/images/common/subtit/subtit-line.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.subtit.num {
  line-height: 24px;
  padding-left: 28px;
  letter-spacing: -0.48px;
  font-weight: 700;
}
.subtit.num::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 3px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  border: 1px solid #1A1D24;
  font-weight: 500;
}
.subtit.num.num01::before {
  content: "1";
}
.subtit.num.num02::before {
  content: "2";
}
.subtit.num.num03::before {
  content: "3";
}
.subtit.num.num04::before {
  content: "4";
}
.subtit.num.num05::before {
  content: "5";
}
.subtit.num.num06::before {
  content: "6";
}
.subtit.num.num07::before {
  content: "7";
}
.subtit.num.num08::before {
  content: "8";
}
.subtit.num.num09::before {
  content: "9";
}
.subtit.num.num10::before {
  content: "10";
}
.subtit.num.num11::before {
  content: "11";
}
.subtit.num.num12::before {
  content: "12";
}
.subtit.num.num13::before {
  content: "13";
}

.subtit_con {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.subtit_con.large {
  gap: 8px;
}
.subtit_con.x-large {
  gap: 12px;
}
.subtit_con.xx-large {
  gap: 20px;
}
.subtit_con.medium {
  padding-left: 40px;
  gap: 6px;
}
.subtit_con.small {
  padding-left: 12px;
  gap: 4px;
}
.subtit_con.non {
  gap: 0;
}

/*# sourceMappingURL=common.css.map */
