:root {
  --hs-guide-navy: #04143e;
  --hs-guide-ink: #111;
  --hs-guide-muted: #727171;
  --hs-guide-line: #e1e4e8;
  --hs-guide-soft: #f4f5f6;
  --hs-guide-cyan: #60d8ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--hs-guide-ink);
  background: #fff;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  letter-spacing: 0;
  word-break: keep-all;
}

a {
  color: inherit;
}

.hs-guide-page {
  overflow: hidden;
  background: #fff;
}

.hs-guide-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 535px;
  color: #fff;
  text-align: center;
  background-image: url("/media/events/01-page-hero.jpg");
  background-position: center;
  background-size: cover;
}

.hs-guide-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  content: "";
}

.hs-guide-hero__inner {
  position: relative;
  z-index: 1;
  padding: 28px 24px 0;
}

.hs-guide-hero__title {
  margin: 0 0 35px;
  color: #fff;
  font-size: clamp(54px, 4.17vw, 80px);
  font-weight: 400;
  line-height: 0.9;
}

.hs-guide-hero__breadcrumb {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.41vw, 27px);
  font-weight: 300;
  line-height: 1;
}

.hs-guide-nav {
  width: min(1180px, calc(100vw - 80px));
  margin: 86px auto 0;
  border-top: 1px solid var(--hs-guide-line);
  border-bottom: 1px solid var(--hs-guide-line);
}

.hs-guide-nav__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hs-guide-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  color: var(--hs-guide-muted);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.hs-guide-nav a + a {
  border-left: 1px solid var(--hs-guide-line);
}

.hs-guide-nav a[aria-current="page"] {
  color: #fff;
  background: var(--hs-guide-navy);
}

.hs-guide-content {
  width: min(1180px, calc(100vw - 80px));
  margin: 0 auto;
  padding: 112px 0 170px;
}

.hs-guide-section + .hs-guide-section {
  margin-top: 124px;
}

.hs-guide-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 42px;
}

.hs-guide-section__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 161px;
  height: 36px;
  margin-bottom: 24px;
  background: #000;
  color: var(--hs-guide-cyan);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.hs-guide-section__title {
  margin: 0;
  color: #000;
  font-size: clamp(34px, 2.5vw, 48px);
  font-weight: 500;
  line-height: 1.2;
}

.hs-guide-section__copy {
  max-width: 500px;
  margin: 0;
  color: var(--hs-guide-muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
}

.hs-guide-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #000;
  font-size: 18px;
}

.hs-guide-table th,
.hs-guide-table td {
  padding: 25px 24px;
  border-bottom: 1px solid var(--hs-guide-line);
  text-align: left;
  vertical-align: middle;
}

.hs-guide-table th {
  color: #000;
  background: #fafafa;
  font-weight: 500;
}

.hs-guide-table td {
  color: #222;
  font-weight: 300;
}

.hs-guide-table--price td:not(:first-child),
.hs-guide-table--price th:not(:first-child) {
  text-align: center;
}

.hs-guide-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.hs-guide-note {
  min-height: 164px;
  padding: 30px 28px;
  border: 1px solid var(--hs-guide-line);
  border-radius: 6px;
  background: #fff;
}

.hs-guide-note strong {
  display: block;
  margin-bottom: 15px;
  color: #000;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.35;
}

.hs-guide-note span,
.hs-guide-note li {
  color: var(--hs-guide-muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.hs-guide-note ul {
  margin: 0;
  padding-left: 18px;
}

.hs-guide-floor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}

.hs-guide-floor__item {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  min-height: 82px;
  border: 1px solid var(--hs-guide-line);
  background: #fff;
}

.hs-guide-floor__level {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--hs-guide-navy);
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

.hs-guide-floor__text {
  padding: 20px 24px;
  color: #222;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.hs-notice-list {
  width: min(1180px, calc(100vw - 80px));
  margin: 0 auto;
  padding: 112px 0 170px;
}

.hs-notice-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #000;
}

.hs-notice-table th,
.hs-notice-table td {
  padding: 28px 24px;
  border-bottom: 1px solid var(--hs-guide-line);
}

.hs-notice-table th {
  color: #000;
  background: #fafafa;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}

.hs-notice-table td {
  color: #222;
  font-size: 18px;
  font-weight: 300;
}

.hs-notice-table td:first-child {
  width: 110px;
  color: var(--hs-guide-muted);
  text-align: center;
}

.hs-notice-table td:last-child {
  width: 180px;
  color: var(--hs-guide-muted);
  text-align: center;
  white-space: nowrap;
}

.hs-notice-table a {
  display: inline-flex;
  color: #000;
  font-size: 21px;
  font-weight: 400;
  text-decoration: none;
}

.hs-notice-table a:hover,
.hs-notice-table a:focus {
  color: var(--hs-guide-navy);
}

@media (max-width: 1024px) {
  .hs-guide-hero {
    min-height: 420px;
  }

  .hs-guide-nav,
  .hs-guide-content,
  .hs-notice-list {
    width: min(720px, calc(100vw - 48px));
  }

  .hs-guide-nav {
    margin-top: 64px;
  }

  .hs-guide-content,
  .hs-notice-list {
    padding: 82px 0 120px;
  }

  .hs-guide-section + .hs-guide-section {
    margin-top: 92px;
  }

  .hs-guide-section__head {
    display: block;
  }

  .hs-guide-section__copy {
    margin-top: 22px;
  }

  .hs-guide-note-grid,
  .hs-guide-floor {
    grid-template-columns: 1fr;
  }

  .hs-guide-table {
    font-size: 16px;
  }

  .hs-guide-table th,
  .hs-guide-table td,
  .hs-notice-table th,
  .hs-notice-table td {
    padding: 20px 16px;
  }
}

@media (max-width: 640px) {
  .hs-guide-hero {
    min-height: 360px;
  }

  .hs-guide-nav,
  .hs-guide-content,
  .hs-notice-list {
    width: calc(100vw - 36px);
  }

  .hs-guide-nav__inner {
    grid-template-columns: 1fr;
  }

  .hs-guide-nav a + a {
    border-top: 1px solid var(--hs-guide-line);
    border-left: 0;
  }

  .hs-guide-content,
  .hs-notice-list {
    padding: 64px 0 92px;
  }

  .hs-guide-table,
  .hs-guide-table tbody,
  .hs-guide-table tr,
  .hs-guide-table th,
  .hs-guide-table td,
  .hs-notice-table,
  .hs-notice-table tbody,
  .hs-notice-table tr,
  .hs-notice-table th,
  .hs-notice-table td {
    display: block;
  }

  .hs-guide-table thead,
  .hs-notice-table thead {
    display: none;
  }

  .hs-guide-table tr,
  .hs-notice-table tr {
    border-bottom: 1px solid var(--hs-guide-line);
  }

  .hs-guide-table th,
  .hs-guide-table td,
  .hs-notice-table th,
  .hs-notice-table td {
    border-bottom: 0;
    text-align: left !important;
  }

  .hs-guide-table td::before,
  .hs-notice-table td::before {
    display: block;
    margin-bottom: 8px;
    color: var(--hs-guide-muted);
    font-size: 13px;
    font-weight: 400;
    content: attr(data-label);
  }

  .hs-notice-table td:first-child,
  .hs-notice-table td:last-child {
    width: auto;
  }

  .hs-guide-floor__item {
    grid-template-columns: 74px 1fr;
  }
}

.hs-psd-guide-page,
.hs-psd-guide-page * {
  box-sizing: border-box;
}

.hs-psd-guide-page {
  min-height: 100vh;
  overflow: hidden;
  background: #f4f5f6;
  color: #000;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "AppleSDGothicNeo", sans-serif;
  letter-spacing: 0;
}

.hs-psd-guide-page a {
  color: inherit;
  text-decoration: none;
}

.hs-psd-guide-title {
  height: 525px;
  padding-top: 218px;
  text-align: center;
}

.hs-psd-guide-title h1 {
  margin: 0 0 29px;
  color: #000;
  font-size: 80px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.93;
}

.hs-psd-guide-title p {
  margin: 0;
  color: #000;
  font-size: 27px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hs-psd-guide-tabs {
  display: flex;
  justify-content: center;
  gap: 59px;
  height: 59px;
}

.hs-psd-guide-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 336px;
  height: 59px;
  background: #001038;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hs-psd-guide-tabs a.is-active {
  background: #50b8e0;
}

.hs-psd-guide-list,
.hs-psd-guide-detail {
  width: 1177px;
  max-width: calc(100vw - 48px);
  margin-right: auto;
  margin-left: auto;
}

.hs-psd-guide-list {
  margin-top: 99px;
  margin-bottom: 214px;
}

.hs-psd-guide-detail {
  margin-top: 98px;
  margin-bottom: 214px;
}

.hs-psd-guide-table-block {
  width: 100%;
}

.hs-psd-guide-table-block--detail {
  margin-top: 71px;
}

.hs-psd-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-bottom: 2px solid #001038;
  background: #fff;
  color: #222;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.35;
  text-align: center;
}

.hs-psd-table th,
.hs-psd-table td {
  border: 1px solid #d9d9d9;
  vertical-align: middle;
}

.hs-psd-table thead th {
  height: 53px;
  border-color: rgba(255, 255, 255, 0.28);
  background: #001038;
  color: #fff;
  font-weight: 500;
}

.hs-psd-table tbody th,
.hs-psd-table tbody td {
  min-height: 45px;
  padding: 13px 15px;
}

.hs-psd-table strong {
  font-weight: 700;
}

.hs-psd-table span {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.hs-psd-table__ko,
.hs-psd-table__product,
.hs-psd-table__floor {
  color: #001038;
  font-weight: 700;
}

.hs-psd-table__en {
  color: #777;
  font-weight: 300;
}

.hs-psd-table--fee col:nth-child(1) {
  width: 18.9%;
}

.hs-psd-table--fee col:nth-child(2) {
  width: 24%;
}

.hs-psd-table--fee col:nth-child(n + 3) {
  width: 14.275%;
}

.hs-psd-table--fee tbody th,
.hs-psd-table--fee tbody td {
  height: 45px;
}

.hs-psd-table--fee .hs-psd-table__en {
  text-align: left;
}

.hs-psd-table__notice-row td {
  padding: 18px 24px;
  background: #f6fbfd;
  color: #20262b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
}

.hs-psd-table__notice-row strong {
  color: #001038;
  font-weight: 700;
}

.hs-psd-table__notice-row span {
  color: #20262b;
  font-size: 16px;
  font-weight: 400;
}

.hs-psd-table--detail col {
  width: 14.285%;
}

.hs-psd-table--detail {
  font-size: 16px;
}

.hs-psd-table--detail tbody th,
.hs-psd-table--detail tbody td {
  min-height: 46px;
  padding: 10px 12px;
}

.hs-psd-table--detail tbody tr:nth-child(11),
.hs-psd-table--detail tbody tr:nth-child(17),
.hs-psd-table--detail tbody tr:nth-child(18),
.hs-psd-table--detail tbody tr:nth-child(20) {
  border-top: 1px solid #9fa4aa;
}

.hs-psd-table--floor col:nth-child(1) {
  width: 10%;
}

.hs-psd-table--floor col:nth-child(2) {
  width: 18%;
}

.hs-psd-table--floor col:nth-child(3) {
  width: 17%;
}

.hs-psd-table--floor col:nth-child(4) {
  width: 55%;
}

.hs-psd-table--floor tbody th,
.hs-psd-table--floor tbody td {
  height: 45px;
  padding: 13px 32px;
  border-color: #9aa7ba;
}

.hs-psd-table--floor .hs-psd-table__floor,
.hs-psd-table--floor .hs-psd-table__ko,
.hs-psd-table--floor .hs-psd-table__en {
  background: #dff3fa;
}

.hs-psd-table--floor .hs-psd-table__ko,
.hs-psd-table--floor .hs-psd-table__en {
  text-align: left;
}

.hs-psd-mobile-cards {
  display: none;
}

.hs-psd-mobile-card {
  border: 1px solid #d8dee5;
  border-radius: 6px;
  background: #fff;
  padding: 18px 18px 16px;
}

.hs-psd-mobile-card h3 {
  margin: 0 0 12px;
  color: #001038;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.hs-psd-mobile-card h3 span {
  display: block;
  margin-top: 3px;
  color: #777;
  font-size: 14px;
  font-weight: 300;
}

.hs-psd-mobile-card dl {
  margin: 0;
}

.hs-psd-mobile-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid #e4e7eb;
}

.hs-psd-mobile-card dt,
.hs-psd-mobile-card dd {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.hs-psd-mobile-card dt {
  color: #30363a;
  font-weight: 300;
}

.hs-psd-mobile-card dd {
  color: #111;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.hs-psd-mobile-card p {
  margin: 13px 0 0;
  color: #666;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.55;
}

.hs-psd-mobile-card--notice {
  border-color: #c9dbe8;
  background: #f6fbfd;
}

.hs-psd-mobile-card--notice h3 {
  margin-bottom: 8px;
}

.hs-psd-mobile-card--notice p {
  margin-top: 0;
  color: #20262b;
  font-weight: 400;
}

.hs-psd-guide-footnote {
  margin: 35px 0 0 2px;
  color: #000;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.hs-psd-guide-notices {
  width: 745px;
  max-width: 100%;
  margin-top: 96px;
}

.hs-psd-guide-notice + .hs-psd-guide-notice {
  margin-top: 54px;
}

.hs-psd-guide-notice h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  min-height: 53px;
  margin: 0 0 34px;
  padding: 0 24px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}

.hs-psd-guide-notice p,
.hs-psd-guide-notice ul {
  margin: 0;
  color: #000;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.67;
}

.hs-psd-guide-notice p {
  overflow-wrap: break-word;
  word-break: keep-all;
}

.hs-psd-guide-notice ul {
  padding-left: 18px;
}

@media (max-width: 900px) {
  .hs-psd-guide-title {
    height: 360px;
    padding-top: 128px;
  }

  .hs-psd-guide-title h1 {
    font-size: 56px;
  }

  .hs-psd-guide-title p {
    font-size: 20px;
  }

  .hs-psd-guide-tabs {
    gap: 16px;
    width: calc(100vw - 48px);
    height: auto;
    margin: 0 auto;
  }

  .hs-psd-guide-tabs a {
    width: 50%;
  }

  .hs-psd-guide-list,
  .hs-psd-guide-detail {
    margin-top: 64px;
    margin-bottom: 120px;
  }

  .hs-psd-table {
    font-size: 15px;
  }

  .hs-psd-table--detail {
    font-size: 14px;
  }

  .hs-psd-table--detail tbody th,
  .hs-psd-table--detail tbody td,
  .hs-psd-table--floor tbody th,
  .hs-psd-table--floor tbody td {
    padding-right: 8px;
    padding-left: 8px;
  }

  .hs-psd-guide-notices {
    width: 100%;
  }

}

@media (max-width: 760px) {
  .hs-psd-guide-list,
  .hs-psd-guide-detail {
    width: calc(100vw - 36px);
    max-width: none;
  }

  .hs-psd-table {
    display: none;
  }

  .hs-psd-mobile-cards {
    display: grid;
    gap: 14px;
  }

  .hs-psd-guide-table-block--detail {
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  .hs-psd-guide-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hs-psd-guide-tabs a {
    width: 100%;
  }
}

.hs-psd-notice-page,
.hs-psd-notice-page * {
  box-sizing: border-box;
}

.hs-psd-notice-page {
  min-height: 100vh;
  overflow: hidden;
  background: #f4f5f6;
  color: #000;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "AppleSDGothicNeo", sans-serif;
  letter-spacing: 0;
}

.hs-psd-notice-page a {
  color: inherit;
  text-decoration: none;
}

.hs-psd-notice-title {
  height: 421px;
  padding-top: 218px;
  text-align: center;
}

.hs-psd-notice-title h1 {
  margin: 0 0 29px;
  color: #000;
  font-size: 80px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.93;
}

.hs-psd-notice-title p {
  margin: 0;
  color: #000;
  font-size: 27px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hs-psd-notice-list {
  width: 1178px;
  max-width: calc(100vw - 48px);
  margin: 0 auto;
  padding-bottom: 770px;
}

.hs-psd-notice-list__intro {
  margin: 125px 0 0;
  color: #000;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
}

.hs-psd-notice-table {
  width: 100%;
  margin-top: 120px;
  border-collapse: collapse;
  table-layout: fixed;
  border-bottom: 2px solid #001038;
  background: #fff;
  color: #222;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.3;
  text-align: center;
}

.hs-psd-notice-table col:first-child {
  width: 75%;
}

.hs-psd-notice-table col:last-child {
  width: 25%;
}

.hs-psd-notice-table th {
  height: 53px;
  background: #001038;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hs-psd-notice-table td {
  height: 45px;
  border-top: 1px solid #d8d8d8;
  color: #252525;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.hs-psd-notice-table time {
  color: #777;
}

.hs-psd-notice-table a:hover,
.hs-psd-notice-table a:focus {
  color: #001038;
  font-weight: 400;
}

.hs-psd-notice-mobile-list {
  display: none;
}

.hs-psd-notice-pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 69px;
}

.hs-psd-notice-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid #b8b8b8;
  border-radius: 50%;
  background: #fff;
  color: #777;
  font-family: Inter, "Noto Sans KR", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hs-psd-notice-pagination a.is-active {
  border-color: #001038;
  background: #001038;
  color: #fff;
}

.hs-psd-notice-detail {
  width: 1180px;
  max-width: calc(100vw - 48px);
  margin: 214px auto 197px;
}

.hs-psd-notice-detail__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding: 0 22px 28px 21px;
  border-bottom: 4px solid #001038;
}

.hs-psd-notice-detail__head h1 {
  margin: 0;
  color: #000;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hs-psd-notice-detail__head time {
  margin-top: 10px;
  color: #000;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.hs-psd-notice-detail__image {
  display: block;
  width: 924px;
  max-width: 100%;
  height: auto;
  margin: 22px auto 0;
}

.hs-psd-notice-detail__body {
  width: 659px;
  max-width: 100%;
  margin: 61px 0 0 21px;
  color: #000;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.68;
}

.hs-event-detail-images {
  display: grid;
  gap: 0;
  width: 924px;
  max-width: 100%;
  margin: 34px auto 0;
}

.hs-event-detail-images__image {
  display: block;
  width: 100%;
  height: auto;
}

.hs-psd-notice-detail__back {
  margin-top: 60px;
  padding-top: 22px;
  border-top: 4px solid #001038;
  text-align: center;
}

.hs-psd-notice-detail__back a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hs-psd-notice-detail__back span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid #b8b8b8;
  border-radius: 50%;
  background: #fff;
  color: #777;
  font-family: Inter, "Noto Sans KR", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 900px) {
  .hs-psd-notice-title {
    height: 360px;
    padding-top: 128px;
  }

  .hs-psd-notice-title h1 {
    font-size: 56px;
  }

  .hs-psd-notice-title p {
    font-size: 20px;
  }

  .hs-psd-notice-list {
    padding-bottom: 220px;
  }

  .hs-psd-notice-list__intro {
    margin-top: 64px;
  }

  .hs-psd-notice-table {
    margin-top: 56px;
    font-size: 15px;
  }

  .hs-psd-notice-table th,
  .hs-psd-notice-table td {
    font-size: 15px;
  }

  .hs-psd-notice-detail {
    margin-top: 96px;
    margin-bottom: 120px;
  }

  .hs-psd-notice-detail__head {
    display: block;
    padding-right: 0;
    padding-left: 0;
  }

  .hs-psd-notice-detail__head h1 {
    font-size: 24px;
    line-height: 1.35;
  }

  .hs-psd-notice-detail__head time {
    display: block;
    margin-top: 18px;
  }

  .hs-psd-notice-detail__body {
    margin-left: 0;
  }

  .hs-event-detail-images {
    margin-top: 30px;
  }
}

@media (max-width: 640px) {
  .hs-psd-notice-list {
    width: calc(100vw - 36px);
    max-width: none;
    padding-bottom: 120px;
  }

  .hs-psd-notice-table {
    display: none;
  }

  .hs-psd-notice-mobile-list {
    display: grid;
    gap: 12px;
    margin-top: 38px;
  }

  .hs-psd-notice-mobile-list article {
    padding: 18px;
    border: 1px solid #d8dee5;
    border-radius: 6px;
    background: #fff;
  }

  .hs-psd-notice-mobile-list a,
  .hs-psd-notice-mobile-list span {
    display: block;
    color: #111;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.45;
  }

  .hs-psd-notice-mobile-list time {
    display: block;
    margin-top: 10px;
    color: #777;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .hs-psd-notice-pagination {
    margin-top: 36px;
  }

  .hs-psd-notice-pagination a,
  .hs-psd-notice-detail__back span {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }

  .hs-psd-notice-detail {
    width: calc(100vw - 36px);
    max-width: none;
    margin-top: 72px;
  }

  .hs-psd-notice-detail__image {
    margin-top: 18px;
  }

  .hs-psd-notice-detail__body {
    margin-top: 36px;
    font-size: 15px;
  }

  .hs-event-detail-images {
    width: 100%;
    margin-top: 24px;
  }
}
