@charset "UTF-8";
/** break point*/
/** icon bg로 사용*/
/**
모바일 scrollbar 숨김
*/
/**
단일 라인 말줄임
*/
/**
여러 라인 말줄임
*/
.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
}

.content-default {
  box-sizing: border-box;
  min-height: calc(100vh - 140px);
  padding-top: 88px;
}
@media (max-width: 1024px) {
  .content-default {
    min-height: calc(100vh - 239px);
    padding-top: 65px;
  }
}

.ux-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 0 16px;
  border-radius: 4px;
}
.ux-btn.primary {
  background: #e1002a;
  color: #ffffff;
}
.ux-btn.secondary {
  border: 1px solid #e1002a;
  color: #e1002a;
}
.ux-btn.stroke {
  border: 1px solid #cbcdd2;
  color: #000000;
}
.ux-btn:disabled {
  border: none;
  background: #cbcdd2;
  color: #ffffff;
}

.ux-input-box label {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 6px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.064px;
}
.ux-input-box label .asterisk {
  color: #e63312;
}
.ux-input-box .input {
  height: 60px;
  border: 1px solid #cbcdd2;
  border-radius: 4px;
}
.ux-input-box .input::placeholder {
  color: #cbcdd2;
}
.ux-input-box .input-wrap {
  display: flex;
  gap: 8px;
}
.ux-input-box .input-wrap .ux-btn {
  flex-shrink: 0;
  min-width: 100px;
}
.ux-input-box .helper-message {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px; /* 150% */
  letter-spacing: -0.12px;
}
.ux-input-box .helper-message + .helper-message {
  margin-top: 2px;
}
.ux-input-box .helper-message.default {
  color: #4c4f54;
}
.ux-input-box .helper-message.success {
  color: #0dad7e;
}
.ux-input-box .helper-message.warning {
  color: #e63312;
}

.ux-checkbox label {
  display: flex;
  gap: 4px;
}
.ux-checkbox label span {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
}
.ux-checkbox label span.asterisk {
  color: #e63312;
}
.ux-checkbox label::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  margin-top: 3px;
  border: 1px solid #cbcdd2;
  border-radius: 2px;
}
.ux-checkbox label:has(:checked)::before {
  border: none;
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  justify-content: center;
  align-items: center;
  background: url("/images/ico-checkbox-checked.svg") no-repeat center/cover;
  background-color: #e1002a;
}

.ux-select-box .label {
  display: block;
  width: fit-content;
  margin-bottom: 4px;
  color: #151419;
  font-size: 13px;
  font-weight: 700;
  line-height: 130%; /* 16.9px */
}
.ux-select-box .select {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 44px 0 16px;
  border: 1px solid #e6e8eb;
  border-radius: 8px;
  background: url("/images/ico-arr-down.svg") calc(100% - 16px) center/24px 24px no-repeat;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.16px;
}

.ux-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-width: 360px;
  height: 88px;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
}
@media (max-width: 1024px) {
  .ux-header {
    height: 64px;
  }
}
.ux-header .inner {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 1024px) {
  .ux-header .inner {
    padding: 0 20px;
  }
}
.ux-header .logo a {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ux-header .logo img {
  display: block;
  object-fit: contain;
  max-width: 160px;
  max-height: 40px;
}
@media (max-width: 1024px) {
  .ux-header .logo img {
    height: 32px;
  }
}
.ux-header .logo .label {
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: -0.4px;
  font-size: 20px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .ux-header .logo .label {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .ux-header .logo .label {
    font-size: 16px;
  }
}
.ux-header .nav {
  margin: 0 auto;
}
.ux-header .nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ux-header .nav ul li {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #24252e;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .ux-header .nav ul li {
    font-size: 16px;
  }
}
.ux-header .nav ul li a {
  display: block;
  width: 102px;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .ux-header .nav ul li a {
    width: auto;
  }
}
@media (max-width: 1024px) {
  .ux-header .nav {
    display: none;
  }
}
.ux-header .auth {
  display: flex;
}
@media (max-width: 1024px) {
  .ux-header .auth {
    display: none !important;
  }
}
.ux-header .auth.is-login {
  gap: 10px;
}
.ux-header .auth.is-logout {
  gap: 50px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .ux-header .auth.is-logout {
    gap: 10px;
  }
}
.ux-header .auth .link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #24252e;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .ux-header .auth .link {
    font-size: 16px;
  }
}
.ux-header .auth .link.user-name::before {
  content: "";
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  justify-content: center;
  align-items: center;
  background: url("../images/ico-user.svg") no-repeat center/cover;
}
.ux-header .menu {
  display: none;
}
@media (max-width: 1024px) {
  .ux-header .menu {
    display: block;
  }
}
.ux-header .menu .btn-menu::before {
  content: "";
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  justify-content: center;
  align-items: center;
  background: url("../images/menu.svg") no-repeat center/cover;
}
.ux-header .lnb {
  position: fixed;
  left: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 100%;
  background-color: #fff;
  z-index: 50;
  padding: 14px 20px 20px;
  min-width: 288px;
  box-sizing: border-box;
  transition: transform 0.4s ease-in;
}
.ux-header .lnb.show {
  transform: translateX(-100%);
}
.ux-header .lnb .btn-close {
  position: absolute;
  top: 14px;
  right: 20px;
  display: flex;
}
.ux-header .lnb .btn-close::before {
  content: "";
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  justify-content: center;
  align-items: center;
  background: url("../images/x-32.svg") no-repeat center/cover;
}
.ux-header .lnb .head img {
  display: block;
  width: auto;
  height: auto;
  max-width: 160px;
  max-height: 32px;
}
.ux-header .lnb .head .label {
  display: block;
  padding: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-top: 12px;
}
.ux-header .lnb .nav-list {
  border-top: 1px solid #d3d4dd;
  padding: 12px 0;
}
.ux-header .lnb .nav-list:first-of-type {
  margin-top: 16px;
}
.ux-header .lnb .nav-list li {
  padding: 12px 0;
}
.ux-header .lnb .nav-list li a {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
}
.ux-header .lnb .bottom {
  margin-top: auto;
}
.ux-header .lnb .bottom .bottom-links {
  display: flex;
  gap: 8px;
}
.ux-header .lnb .bottom .bottom-links a {
  font-size: 14px;
  line-height: 15px;
  color: #666;
}
.ux-header .lnb .bottom .bottom-links a.bold {
  font-weight: 500;
}
.ux-header .lnb .bottom .bottom-links a + a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ux-header .lnb .bottom .bottom-links a + a::before {
  content: "";
  width: 1px;
  height: 12px;
  background: #d3d4dd;
}
.ux-header .lnb .bottom .copyright {
  font-size: 12px;
  line-height: 15px;
  margin-top: 16px;
  color: #999;
}
.ux-header .lnb .bottom .copyright a {
  text-decoration: underline;
}
.ux-header .lnb-dimmed {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(36, 37, 46, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
}
.ux-header .lnb-dimmed.show {
  display: block;
}

.ux-page-title.left .title,
.ux-page-title.left .desc {
  text-align: left;
}
.ux-page-title .title {
  padding: 0;
  text-align: center;
  color: #000000;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
}
.ux-page-title .desc {
  margin-top: 12px;
  text-align: center;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.ux-gray-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 40px auto 0;
  padding: 28px 24px;
  border-radius: 12px;
  background: #f8f8fa;
  text-align: center;
}
.ux-gray-box p {
  color: #4c4f54;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.16px;
}
.ux-gray-box strong {
  color: #151419;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; /* 150% */
  letter-spacing: -0.16px;
}

.ux-home-top {
  position: relative;
  width: 100%;
  height: 754px;
}
@media (max-width: 1024px) {
  .ux-home-top {
    height: auto;
    min-height: 622px;
  }
}
.ux-home-top .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ux-home-top .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 13%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .ux-home-top .inner {
    flex-direction: column;
    padding: 0 16px 20px;
    justify-content: start;
  }
}
.ux-home-top .inner h2 {
  margin-top: 109px;
  color: #ffffff;
  font-family: "Noto Sans KR";
  font-size: 68px;
  font-weight: 700;
  line-height: 120%; /* 81.6px */
  letter-spacing: -0.272px;
}
@media (max-width: 1024px) {
  .ux-home-top .inner h2 {
    margin-top: 32px;
    text-align: center;
    font-size: 28px;
    line-height: 130%; /* 36.4px */
  }
}
.ux-home-top .inner .card-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 450px;
  min-height: 640px;
  padding-bottom: 40px;
  align-self: center;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .ux-home-top .inner .card-container {
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: 466px;
    margin-top: 32px;
    padding-bottom: 12px;
  }
}
.ux-home-top .inner .card-container .card-swiper {
  width: 100%;
  flex: 1;
}
.ux-home-top .inner .card-container .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.ux-home-top .inner .card-container .swiper-pagination:has(.swiper-pagination-bullet:nth-child(n+2)) {
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .ux-home-top .inner .card-container .swiper-pagination:has(.swiper-pagination-bullet:nth-child(n+2)) {
    margin-top: 12px;
  }
}
.ux-home-top .inner .card-container .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  background: #e5e5e5;
  opacity: 1;
}
.ux-home-top .inner .card-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #e1002a;
}
.ux-home-top .inner .card {
  display: flex;
  height: 100%;
  min-height: 600px;
  flex-direction: column;
  padding: 40px 40px 0;
}
@media (max-width: 1024px) {
  .ux-home-top .inner .card {
    min-height: 446px;
    padding: 24px 20px 0;
  }
}
.ux-home-top .inner .card .card-title {
  word-break: keep-all;
  overflow-wrap: break-word;
  color: #000000;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 1024px) {
  .ux-home-top .inner .card .card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
  }
}
.ux-home-top .inner .card .card-body {
  flex: 1;
  margin-top: 20px;
}
.ux-home-top .inner .card .card-body .text {
  color: #4c4f54;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 1024px) {
  .ux-home-top .inner .card .card-body .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
  }
}
.ux-home-top .inner .card .card-body .stock {
  margin-top: 36px;
}
.ux-home-top .inner .card .card-body .has-stock {
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .ux-home-top .inner .card .card-body .has-stock {
    margin-top: 0;
  }
}
.ux-home-top .inner .card .card-body .has-stock + .has-stock {
  margin-top: 40px;
}
.ux-home-top .inner .card .card-body .has-stock .amount {
  margin-top: 12px;
}
.ux-home-top .inner .card .card-body .has-stock .text {
  text-align: right;
}
.ux-home-top .inner .card .card-body .amount {
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 8px;
  text-align: right;
}
.ux-home-top .inner .card .card-body .amount strong {
  color: #e1002a;
  font-size: 58px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 1024px) {
  .ux-home-top .inner .card .card-body .amount strong {
    font-size: 32px;
  }
}
.ux-home-top .inner .card .card-body .amount strong.disabled {
  color: #cbcdd2;
}
.ux-home-top .inner .card .card-body .amount span {
  margin-bottom: 4px;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 1024px) {
  .ux-home-top .inner .card .card-body .amount span {
    margin-bottom: 0;
  }
}
.ux-home-top .inner .card .card-body .amount-detail {
  margin-top: 24px;
}
.ux-home-top .inner .card .card-body .amount-detail dl {
  display: flex;
  gap: 8px;
}
.ux-home-top .inner .card .card-body .amount-detail dt {
  flex: 1;
  text-align: right;
  color: #4c4f54;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.ux-home-top .inner .card .card-body .amount-detail dd {
  flex: 1;
  text-align: right;
}
.ux-home-top .inner .card .card-body .amount-detail dd strong {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}
.ux-home-top .inner .card .card-body .amount-detail dd span {
  color: #4c4f54;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.ux-home-top .inner .card .card-body .caption {
  margin-top: 4px;
  text-align: right;
  color: #4c4f54;
  font-size: 13px;
  font-weight: 400;
  line-height: 130%; /* 16.9px */
}
.ux-home-top .inner .card .card-bottom {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.ux-home-top .inner .card .card-bottom .ux-btn {
  flex: 1;
}
.ux-home-top .inner .card .card-bottom .shortcut {
  display: inline-flex;
  align-items: center;
  margin: 0 auto;
  color: #4c4f54;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.16px;
}
.ux-home-top .inner .card .card-bottom .shortcut::after {
  content: "";
  margin-top: 2px;
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  justify-content: center;
  align-items: center;
  background: url("/images/ico-arr-right.svg") no-repeat center/cover;
}

.ux-subscribe-form {
  max-width: 532px;
  padding: 60px 16px;
  margin: 0 auto;
}
.ux-subscribe-form .form-container {
  margin-top: 40px;
}
.ux-subscribe-form .form-container.unsubscribe {
  margin-top: 60px;
}
.ux-subscribe-form .form-container .input-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ux-subscribe-form .form-container .input-group .btn-mail {
  width: 100%;
}
.ux-subscribe-form .form-container .input-group .btn-mail + .helper-message {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px; /* 150% */
  letter-spacing: -0.12px;
}
.ux-subscribe-form .form-container .input-group .btn-mail + .helper-message.default {
  color: #4c4f54;
}
.ux-subscribe-form .form-container .input-group .btn-mail + .helper-message.success {
  color: #0dad7e;
}
.ux-subscribe-form .agree-box {
  margin-top: 60px;
}
.ux-subscribe-form .agree-box .term-box {
  height: 278px;
  padding: 22px 24px;
  margin-top: 12px;
  overflow-y: auto;
  background: #f9f9f9;
  color: #4c4f54;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.064px;
  border-radius: 4px;
}
.ux-subscribe-form .btn-submit {
  width: 100%;
  margin-top: 60px;
}
.ux-subscribe-form .btn-unsubscribe {
  display: block;
  width: fit-content;
  margin: 60px auto 0;
  text-decoration: underline;
  color: #4c4f54;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.ux-subscribe-form .gray-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  padding: 28px 24px;
  border-radius: 12px;
  background: #f8f8fa;
  text-align: center;
}
.ux-subscribe-form .gray-box p {
  color: #4c4f54;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.16px;
}
.ux-subscribe-form .gray-box strong {
  color: #151419;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; /* 150% */
  letter-spacing: -0.16px;
}
.ux-subscribe-form .gray-box + .btn-unsubscribe {
  margin-top: 16px;
}

.ux-juju-meeting {
  max-width: 992px;
  padding: 60px 16px 84px;
  margin: 0 auto;
}
.ux-juju-meeting .meeting-title {
  color: #000000;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
}
.ux-juju-meeting .meeting-box-title {
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}
.ux-juju-meeting .button-box {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.ux-juju-meeting .button-box .ux-btn {
  flex: 1;
}
@media (max-width: 1024px) {
  .ux-juju-meeting .button-box {
    flex-direction: column;
  }
  .ux-juju-meeting .button-box .ux-btn {
    flex: auto;
  }
}
.ux-juju-meeting .meeting-notice {
  padding: 60px 40px;
  margin-top: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .ux-juju-meeting .meeting-notice {
    border: none;
    padding: 0 0 60px;
  }
}
.ux-juju-meeting .meeting-notice .user-info {
  display: flex;
  gap: 40px;
  padding: 40px;
  margin-top: 32px;
  border-radius: 8px;
  background: #fafafa;
}
@media (max-width: 1024px) {
  .ux-juju-meeting .meeting-notice .user-info {
    flex-direction: column;
    padding: 40px 28px;
  }
}
.ux-juju-meeting .meeting-notice .user-info dl {
  flex: 1;
}
.ux-juju-meeting .meeting-notice .user-info dt {
  color: #4c4f54;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.ux-juju-meeting .meeting-notice .user-info dt span {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.ux-juju-meeting .meeting-notice .user-info .user-name dd {
  margin-top: 20px;
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}
.ux-juju-meeting .meeting-notice .user-info .user-stock dd {
  margin-top: 13px;
}
.ux-juju-meeting .meeting-notice .user-info .user-stock .stock-num {
  display: flex;
  gap: 4px;
}
.ux-juju-meeting .meeting-notice .user-info .user-stock .stock-num strong {
  color: #e1002a;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
}
.ux-juju-meeting .meeting-notice .user-info .user-stock .stock-num span {
  margin-top: 10px;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.ux-juju-meeting .meeting-notice .user-info .user-stock .company-name {
  margin-top: 6px;
  color: #4c4f54;
  font-size: 13px;
  font-weight: 400;
  line-height: 130%; /* 16.9px */
}
.ux-juju-meeting .meeting-notice .user-info .user-stock .company-name strong {
  color: #000000;
  font-size: 13px;
  font-weight: 400;
  line-height: 130%; /* 16.9px */
}
.ux-juju-meeting .meeting-notice .meeting-overview {
  display: flex;
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .ux-juju-meeting .meeting-notice .meeting-overview {
    flex-direction: column;
  }
}
.ux-juju-meeting .meeting-notice .meeting-overview .overview .list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.ux-juju-meeting .meeting-notice .meeting-overview .overview .list div {
  display: flex;
}
.ux-juju-meeting .meeting-notice .meeting-overview .overview .list dt {
  width: 104px;
  flex-shrink: 0;
  color: #4c4f54;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.ux-juju-meeting .meeting-notice .meeting-overview .overview .list dd {
  flex: 1;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.ux-juju-meeting .meeting-notice .meeting-overview .file-list {
  width: 283px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .ux-juju-meeting .meeting-notice .meeting-overview .file-list {
    width: 100%;
  }
}
.ux-juju-meeting .meeting-notice .meeting-overview .file-list li + li {
  margin-top: 8px;
}
.ux-juju-meeting .meeting-notice .meeting-overview .file-list .btn-file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 64px;
  gap: 12px;
  padding: 12px 12px 12px 20px;
  background: #fafafa;
  border-radius: 8px;
  text-align: left;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.ux-juju-meeting .meeting-notice .meeting-overview .file-list .btn-file::after {
  content: "";
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  justify-content: center;
  align-items: center;
  background: url("/images/ico-file-download.svg") no-repeat center/cover;
}
.ux-juju-meeting .meeting-notice .meeting-overview + .meeting-agenda {
  padding-top: 60px;
  border-top: 1px solid #f2f2f2;
}
.ux-juju-meeting .meeting-notice .meeting-agenda {
  margin-top: 60px;
}
.ux-juju-meeting .meeting-notice .meeting-agenda .agenda-list {
  margin-top: 32px;
}
.ux-juju-meeting .meeting-notice .meeting-agenda .agenda-list li {
  border-left: 1px solid #e5e5e5;
  padding-left: 20px;
}
.ux-juju-meeting .meeting-notice .meeting-agenda .agenda-list li + li {
  margin-top: 24px;
}
.ux-juju-meeting .meeting-notice .meeting-agenda .agenda-list li.withdrawal .num,
.ux-juju-meeting .meeting-notice .meeting-agenda .agenda-list li.withdrawal .agenda {
  color: #cbcdd2;
}
.ux-juju-meeting .meeting-notice .meeting-agenda .agenda-list .num {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 8px;
  color: #4c4f54;
  font-size: 13px;
  font-weight: 700;
  line-height: 130%; /* 16.9px */
}
.ux-juju-meeting .meeting-notice .meeting-agenda .agenda-list .agenda {
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
.ux-juju-meeting .meeting-notice .meeting-agenda .agenda-list .badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  padding: 0 4px;
  border-radius: 2px;
  background: rgba(76, 79, 84, 0.1);
  color: #4c4f54;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%; /* 18px */
}
.ux-juju-meeting .meeting-notice .foot-text {
  margin-top: 32px;
  padding: 20px;
  background: #fafafa;
  color: #4c4f54;
  font-size: 13px;
  font-weight: 400;
  line-height: 130%; /* 16.9px */
}
.ux-juju-meeting .meeting-result {
  margin-top: 40px;
}
.ux-juju-meeting .meeting-result .result-table-container {
  margin-top: 40px;
}
.ux-juju-meeting .meeting-result .result-table-container .caption {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap {
  margin-top: 20px;
  overflow-x: auto;
}
@media (max-width: 1024px) {
  .ux-juju-meeting .meeting-result .result-table-container .table-wrap {
    width: calc(100% + 32px);
    margin-left: -16px;
  }
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap table {
  min-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap table col.col-first {
  width: 260px;
}
@media (max-width: 1024px) {
  .ux-juju-meeting .meeting-result .result-table-container .table-wrap table col.col-first {
    width: 200px;
  }
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap table:has(colgroup > col:nth-child(2):last-child) {
  width: 100%;
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap table:has(colgroup > col:nth-child(2):last-child) col {
  width: 50%;
  min-width: 200px;
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap th,
.ux-juju-meeting .meeting-result .result-table-container .table-wrap td {
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 1024px) {
  .ux-juju-meeting .meeting-result .result-table-container .table-wrap th,
  .ux-juju-meeting .meeting-result .result-table-container .table-wrap td {
    width: 126px;
  }
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap th:first-child,
.ux-juju-meeting .meeting-result .result-table-container .table-wrap td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap th {
  padding: 12px 0;
  background: #fafafa;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap td {
  padding: 20px;
  text-align: right;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap td.text-center {
  text-align: center;
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap .row-withdrawal {
  background: #f2f2f2;
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap .row-withdrawal th,
.ux-juju-meeting .meeting-result .result-table-container .table-wrap .row-withdrawal td {
  background: #f2f2f2;
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap .row-withdrawal th:not(.agenda),
.ux-juju-meeting .meeting-result .result-table-container .table-wrap .row-withdrawal td:not(.agenda) {
  text-align: center;
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap .row-withdrawal th.agenda > span,
.ux-juju-meeting .meeting-result .result-table-container .table-wrap .row-withdrawal td.agenda > span {
  color: #4c4f54;
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap .row-withdrawal th.agenda p,
.ux-juju-meeting .meeting-result .result-table-container .table-wrap .row-withdrawal td.agenda p {
  color: #4c4f54;
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap .agenda {
  background: #fafafa;
  text-align: left;
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap .agenda > span {
  display: block;
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  line-height: 130%; /* 16.9px */
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap .agenda p {
  margin-top: 4px;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.ux-juju-meeting .meeting-result .result-table-container .table-wrap .badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  padding: 0 4px;
  border-radius: 2px;
  background: rgba(76, 79, 84, 0.1);
  color: #4c4f54;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%; /* 18px */
}

.ux-dividend {
  max-width: 992px;
  padding: 60px 16px 84px;
  margin: 0 auto;
}
.ux-dividend .dividend-content {
  padding: 60px 40px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .ux-dividend .dividend-content {
    border: none;
    padding: 0 0 60px;
  }
}
.ux-dividend .dividend-content .dividend-title {
  color: #000000;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
}
.ux-dividend .dividend-content .user-info {
  display: flex;
  gap: 40px;
  padding: 40px;
  margin-top: 32px;
  border-radius: 8px;
  background: #fafafa;
}
@media (max-width: 1024px) {
  .ux-dividend .dividend-content .user-info {
    flex-direction: column;
    padding: 40px 28px;
  }
}
.ux-dividend .dividend-content .user-info dl {
  flex: 1;
}
.ux-dividend .dividend-content .user-info dt {
  color: #4c4f54;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.ux-dividend .dividend-content .user-info dt span {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.ux-dividend .dividend-content .user-info .user-name dd {
  margin-top: 20px;
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}
.ux-dividend .dividend-content .user-info .user-stock dd {
  margin-top: 13px;
}
.ux-dividend .dividend-content .user-info .user-stock .stock-num {
  display: flex;
  gap: 4px;
}
.ux-dividend .dividend-content .user-info .user-stock .stock-num strong {
  color: #e1002a;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
}
.ux-dividend .dividend-content .user-info .user-stock .stock-num span {
  margin-top: 10px;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.ux-dividend .dividend-content .user-info .user-stock .company-name {
  margin-top: 6px;
  color: #4c4f54;
  font-size: 13px;
  font-weight: 400;
  line-height: 130%; /* 16.9px */
}
.ux-dividend .dividend-content .user-info .user-stock .company-name strong {
  color: #000000;
  font-size: 13px;
  font-weight: 400;
  line-height: 130%; /* 16.9px */
}
.ux-dividend .dividend-content .dividend-detail {
  margin-top: 60px;
}
.ux-dividend .dividend-content .dividend-detail .detail-title {
  margin-bottom: 32px;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}
.ux-dividend .dividend-content .dividend-detail .detail-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid #e5e5e5;
}
.ux-dividend .dividend-content .dividend-detail .detail-content p {
  padding: 3px 20px;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
}
.ux-dividend .dividend-content .dividend-detail .detail-content dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.ux-dividend .dividend-content .dividend-detail .detail-content dl dt {
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
.ux-dividend .dividend-content .dividend-detail .detail-content dl dd {
  display: flex;
  align-items: end;
  gap: 4px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.ux-dividend .dividend-content .dividend-detail .detail-content dl dd strong {
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
.ux-dividend .dividend-content .dividend-detail .detail-content dl.bg {
  padding: 12px 20px;
  background: #fafafa;
}
.ux-dividend .dividend-content .dividend-detail .detail-content dl.bg dt {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}
.ux-dividend .dividend-content .dividend-detail .detail-content dl.bg dd strong {
  color: #e1002a;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}
.ux-dividend .dividend-content .notice-box {
  padding: 20px 24px;
  background: #fafafa;
  margin-top: 60px;
}
.ux-dividend .dividend-content .notice-box h4 {
  margin-bottom: 8px;
  color: #4c4f54;
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
}
.ux-dividend .dividend-content .notice-box p {
  color: #4c4f54;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.ux-dividend .dividend-content .foot-text {
  margin-top: 32px;
  padding: 20px;
  background: #fafafa;
  color: #4c4f54;
  font-size: 13px;
  font-weight: 400;
  line-height: 130%; /* 16.9px */
}
.ux-dividend .button-box {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.ux-dividend .button-box .ux-btn {
  flex: 1;
}
@media (max-width: 1024px) {
  .ux-dividend .button-box {
    display: none;
  }
}

.ux-juju-letter {
  max-width: 992px;
  padding: 60px 16px 84px;
  margin: 0 auto;
}
.ux-juju-letter .ux-page-title + .letter-content {
  margin-top: 60px;
}
.ux-juju-letter .letter-content {
  padding: 60px 40px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .ux-juju-letter .letter-content {
    border: none;
    padding: 0 0 60px;
  }
}
.ux-juju-letter .letter-content * {
  line-height: normal;
}

.ux-board {
  max-width: 992px;
  padding: 80px 16px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .ux-board {
    padding-top: 60px;
  }
}
.ux-board .tab_grid_wrap {
  margin-top: 60px !important;
  border-bottom: 1px solid #e6e8eb;
}
@media (max-width: 1024px) {
  .ux-board .tab_grid_wrap {
    margin-top: 40px !important;
  }
}
.ux-board .tab_grid_wrap .tab_grid_box .tab_grid_item {
  margin-bottom: -1px;
}
@media (max-width: 1024px) {
  .ux-board .tab_grid_wrap .tab_grid_box .tab_grid_item {
    padding: 16px 12px !important;
    font-size: 20px !important;
  }
}
.ux-board .info-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.ux-board .info-tabs .tab-button {
  height: 40px;
  padding: 0 16px;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  background: #fafafa;
  color: #616161;
  font-size: 16px;
  font-weight: 300;
  line-height: 150%; /* 24px */
  letter-spacing: -0.04px;
}
.ux-board .info-tabs .tab-button.active {
  background: #e1002a;
  border-color: #e1002a;
  color: #ffffff;
}
.ux-board .info-content {
  position: relative;
  margin-top: 32px;
  padding-bottom: 13px;
}
.ux-board .info-content .info-swiper {
  padding: 56px 16px 0;
  border-radius: 16px;
  border: 1px solid #eeeeee;
  background: #fafafa;
  overflow: hidden;
}
.ux-board .info-content .info-swiper .text {
  text-align: center;
  color: #222222;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.06px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.ux-board .info-content .info-swiper .text + .sub {
  margin-top: 8px;
}
.ux-board .info-content .info-swiper .sub {
  word-break: keep-all;
  overflow-wrap: break-word;
  text-align: center;
  font-size: 19.2px;
  font-weight: 300;
  line-height: 150%; /* 28.8px */
  letter-spacing: -0.077px;
}
@media (max-width: 1024px) {
  .ux-board .info-content .info-swiper .sub br {
    display: none;
  }
}
.ux-board .info-content .info-swiper .img {
  display: block;
  margin: 56px auto 0;
  max-height: 480px;
}
.ux-board .info-content .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  margin-top: 45px;
}
.ux-board .info-content .swiper-pagination .swiper-pagination-bullet {
  background: #eeeeee;
  opacity: 1;
}
.ux-board .info-content .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #bdbdbd;
}
.ux-board .info-content .swiper-button-next,
.ux-board .info-content .swiper-button-prev {
  top: auto;
  bottom: 0;
}
.ux-board .info-content .swiper-button-next {
  right: 0;
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  justify-content: center;
  align-items: center;
  background: url("/images/ico-swiper-next.svg") no-repeat center/cover;
}
.ux-board .info-content .swiper-button-prev {
  left: 0;
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  justify-content: center;
  align-items: center;
  background: url("/images/ico-swiper-prev.svg") no-repeat center/cover;
}