@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
p,
dl,
dd,
ul,
ol {
  margin: 0;
}

fieldset,
legend {
  margin: 0;
  padding: 0;
  border: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

@font-face {
  font-family: "Pretendard";
  src: local("Pretendard"), url(../assets/fonts/Pretendard-Thin.otf) format("opentype");
  font-weight: 100;
}
@font-face {
  font-family: "Pretendard";
  src: local("Pretendard"), url(../assets/fonts/Pretendard-ExtraLight.otf) format("opentype");
  font-weight: 200;
}
@font-face {
  font-family: "Pretendard";
  src: local("Pretendard"), url(../assets/fonts/Pretendard-Light.otf) format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "Pretendard";
  src: local("Pretendard"), url(../assets/fonts/Pretendard-Regular.otf) format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "Pretendard";
  src: local("Pretendard"), url(../assets/fonts/Pretendard-Medium.otf) format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "Pretendard";
  src: local("Pretendard"), url(../assets/fonts/Pretendard-SemiBold.otf) format("opentype");
  font-weight: 600;
}
@font-face {
  font-family: "Pretendard";
  src: local("Pretendard"), url(../assets/fonts/Pretendard-Bold.otf) format("opentype");
  font-weight: 700;
}
@font-face {
  font-family: "Pretendard";
  src: local("Pretendard"), url(../assets/fonts/Pretendard-ExtraBold.otf) format("opentype");
  font-weight: 800;
}
@font-face {
  font-family: "Pretendard";
  src: local("Pretendard"), url(../assets/fonts/Pretendard-Black.otf) format("opentype");
  font-weight: 900;
}
:root {
  --breakpoint-header: 1360px;
  --breakpoint-mobile: 767px;
  --breakpoint-tablet: 1024px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  height: auto;
  width: 100%;
  overflow-x: clip;
  background: #f7f7f7;
  color: #111111;
  font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
}

/* layout.css가 비활성화된 환경에서 로그인 로딩 딤 레이어 기본 숨김 처리 */
.dim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: 900;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 6px;
  background: #000000;
  color: #ffffff;
  font-weight: 700;
  transform: translateY(calc(-100% - 24px));
  transition: transform 140ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

img {
  display: block;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  --header-container-width: min(calc(100vw - 64px), 1856px);
  --header-container-offset: calc((100vw - var(--header-container-width)) / 2);
  --header-nav-shift: clamp(0px, calc(50vw - 772px), 188px);
  position: relative;
  z-index: 20;
  height: 84px;
  background: #ffffff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  z-index: 24;
  height: 12px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0));
  transition: opacity 140ms ease;
}
.site-header.is-menu-open::after, .site-header.is-search-open::after {
  opacity: 1;
}
.site-header__inner {
  width: var(--header-container-width);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}
.site-header__brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  color: #555555;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.site-header__brand img {
  width: 254px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header__brand span {
  margin-left: 20px;
  font-size: 15px;
  display: none;
}
.site-header__nav {
  z-index: 25;
  justify-self: start;
  margin-left: var(--header-nav-shift);
}
.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header__nav-link {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 156px;
  padding: 0 16px;
  border-radius: 999px;
  color: #111111;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
}
.site-header__nav-item:first-child .site-header__nav-link {
  width: 164px;
}
.site-header.is-menu-open .site-header__nav-link.is-active {
  background: #0030af;
  color: #ffffff;
}
.site-header__nav-link:hover, .site-header__nav-link:focus-visible {
  background: #f5f7fb;
  color: #111111;
}
.site-header.is-menu-open .site-header__nav-link.is-active:hover, .site-header.is-menu-open .site-header__nav-link.is-active:focus-visible {
  background: #0030af;
  color: #ffffff;
}
.site-header__nav-link span {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: url("../assets/images/icon-chevron-down.png") center/contain no-repeat;
  transition: filter 140ms ease, transform 140ms ease;
}
.site-header.is-menu-open .site-header__nav-link.is-active span {
  filter: brightness(0) invert(1);
  transform: rotate(180deg);
}
.site-header__nav-link:hover span, .site-header__nav-link:focus-visible span {
  transform: rotate(180deg);
}
.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}
.site-header__login {
  color: #505050;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.025em;
  transition: color 140ms ease;
  padding: 12px 4px;
}
.site-header__login:hover, .site-header__login:focus-visible {
  color: #111111;
}
.site-header__search {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #3359bf url("../assets/images/icon-search-header.svg") center/24px 24px no-repeat;
  transition: background-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}
.site-header__search:hover, .site-header__search:focus-visible {
  box-shadow: 0 4px 10px rgba(0, 48, 175, 0.18);
  transform: translateY(-1px);
}
.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5eaf7;
  transition: background-color 140ms ease, border-color 140ms ease;
}
.site-header__toggle:hover, .site-header__toggle:focus-visible {
  border-color: #cfd7e6;
  background-color: #f5f7fb;
}
.site-header__toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #111111;
}
.site-header__mega {
  position: absolute;
  left: 0;
  top: 84px;
  z-index: 15;
  display: none;
  width: 100%;
  height: 275px; /* kjg */
  background: #ffffff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}
.site-header__backdrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 84px;
  bottom: 0;
  z-index: 14;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease, visibility 140ms ease;
}
.site-header.is-menu-open .site-header__mega {
  display: block;
}
.site-header.is-menu-open .site-header__backdrop {
  visibility: visible;
  opacity: 1;
}
.site-header.is-overlay-switching .site-header__backdrop {
  transition: none;
}
.site-header__mega-inner {
  width: 860px; 
  height: 275px; /* kjg */
  margin: 0;
  margin-left: calc(var(--header-container-offset) + 286px + 32px + var(--header-nav-shift) - 8px);
  display: grid;
  grid-template-columns: repeat(5, 172px);
}
.site-header__mega-column {
  min-width: 0;
  padding: 20px 24px;
  border-left: 1px solid #dddddd;
  transition: background-color 140ms ease;
}
.site-header__mega-column:last-child {
  border-right: 1px solid #dddddd;
}
.site-header__mega-column.is-active {
  background: #e5eaf7;
}
.site-header__mega-column ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.site-header__mega-column a {
  display: block;
  color: #111111;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 2px 0px;
  transition: color 140ms ease;
}
.site-header__mega-column a:hover, .site-header__mega-column a:focus-visible {
  color: #0030af;
}

@media (max-width: 1440px) {
  .site-header__mypage {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  width: calc(100% - 60px);
  max-width: 400px;
  height: 100dvh;
  overflow-y: auto;
  background: #ffffff;
  color: #111111;
  box-shadow: -12px 0 30px rgba(40, 44, 55, 0.14);
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 180ms ease, visibility 0s linear 180ms;
}

.site-header.is-mobile-menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.45);
}
.mobile-menu[hidden] {
  display: none;
}
.site-header.is-mobile-menu-open .mobile-menu {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition: transform 180ms ease, visibility 0s;
}
.mobile-menu__utility {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #3490ca;
}

.mobile-menu__login-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-menu__login {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 15px;
  padding: 10px 8px;
  font-weight: 400;
  transition: color 140ms ease;
}

.mobile-menu__login + .mobile-menu__login:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  opacity: 0.3;
}

.mobile-menu__login:hover,
.mobile-menu__login:focus-visible {
  color: #ffffff;
}

.mobile-menu__login img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: none;
}

.mobile-menu__close {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 6px;
  transition: background-color 140ms ease;
}

.mobile-menu__close:hover,
.mobile-menu__close:focus-visible {
  background-color: #f5f7fb;
}

.mobile-menu__close::before,
.mobile-menu__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
}

.mobile-menu__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__section {
  padding: 16px 16px 8px;
  border-bottom: 5px solid #e5e5e5;
  background: #ffffff;
}

.mobile-menu__section-title {
  width: 100%;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px 12px;
  border-bottom: 1px solid transparent;
  color: #1e2124;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.mobile-menu__section-toggle:hover,
.mobile-menu__section-toggle:focus-visible {
  background-color: #f5f7fb;
  color: #1e2124;
}

.mobile-menu__section-title span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background: url("../assets/images/icon-chevron-down.svg") center/contain no-repeat;
  transition: transform 140ms ease;
}

.mobile-menu__section-title.is-open span {
  transform: rotate(180deg);
}

.mobile-menu__section-title.is-open {
  border-bottom-color: rgba(138, 148, 158, 0.3);
}

.mobile-menu__section-list {
  display: flex;
  flex-direction: column;
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transition: height 240ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms ease, padding 220ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height, opacity;
}

.mobile-menu__section-list.is-open {
  padding: 8px 0;
  opacity: 1;
}

.mobile-menu__section-list[hidden] {
  display: none;
}

.mobile-menu__section a,
.mobile-menu__subtoggle {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  border-radius: 8px;
  color: #1e2124;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
  transition: background-color 140ms ease, color 140ms ease;
}

.mobile-menu__section a:hover,
.mobile-menu__section a:focus-visible {
  background-color: #f5f7fb;
  color: #1e2124;
}

.mobile-menu__subtoggle:hover,
.mobile-menu__subtoggle:focus-visible {
  background-color: #f5f7fb;
  color: #1e2124;
}

.mobile-menu__link-with-icon span {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  background: url("../assets/images/icon-chevron-down.svg") center/contain no-repeat;
  transition: transform 140ms ease;
}

.mobile-menu__link-with-icon.is-open span {
  transform: rotate(180deg);
}

.mobile-menu__sublist {
  display: flex;
  flex-direction: column;
  gap: 2px;
  height: 0;
  margin: 0 8px;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  border-radius: 8px;
  background: #f5f7fb;
  transition: height 240ms cubic-bezier(0.4, 0, 0.2, 1), margin 220ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms ease, padding 220ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height, opacity;
}

.mobile-menu__sublist.is-open {
  margin-bottom: 8px;
  padding: 8px 0;
  opacity: 1;
}

.mobile-menu__sublist[hidden] {
  display: none;
}

.mobile-menu__sublist a {
  position: relative;
  min-height: 34px;
  padding: 5px 12px 5px 24px;
  color: #33363d;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 140ms ease;
}

.mobile-menu__sublist a::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8a949e;
  transform: translateY(-50%);
}

html.is-menu-lock,
body.is-menu-lock {
  overflow: hidden;
}

.site-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 19;
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
}

.site-search[hidden] {
  display: none;
}

.site-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.site-search__panel {
  position: relative;
  z-index: 1;
  height: 360px;
  display: flex;
  justify-content: center;
  padding-top: 54px;
  background: #ffffff;
}

.site-search__content {
  width: min(884px, 100vw - 64px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-search__form {
  width: 100%;
  height: 72px;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px 24px;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #f7f7f7;
}

.site-search__form.is-filled {
  border-color: #0030af;
}

.site-search__input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111111;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.site-search__input::-moz-placeholder {
  color: #cccccc;
  font-weight: 500;
  opacity: 1;
}

.site-search__input::placeholder {
  color: #cccccc;
  font-weight: 500;
  opacity: 1;
}

.site-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
}

.site-search__clear,
.site-search__submit {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background-position: center;
  background-repeat: no-repeat;
}

.site-search__clear {
  grid-column: 2;
  width: 16px;
  height: 16px;
  background-image: url("../assets/images/icon-clear-circle.svg");
  background-size: 16px 16px;
}

.site-search__clear[hidden] {
  display: none;
}

.site-search__submit {
  grid-column: 3;
  background-image: url("../assets/images/icon-search-primary.svg");
  background-size: 24px 24px;
}

.recent-search {
  padding: 22px 24px;
  border-radius: 20px;
  background: #ffffff;
}

.recent-search[hidden] {
  display: none;
}

.recent-search__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.recent-search__title {
  color: #111111;
  font-size: 18px;
  font-weight: 700;
}

.recent-search__clear-all {
  color: #767676;
  font-size: 14px;
  font-weight: 500;
  transition: color 140ms ease;
  text-decoration: underline;
}

.recent-search__clear-all:hover,
.recent-search__clear-all:focus-visible {
  color: #111111;
}

.recent-search__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.recent-search__list li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 10px 9px 14px;
  border-radius: 999px;
  background: #f7f7f7;
}

.recent-search__list li.recent-search__empty {
  display: flex; /*kjg*/
  color: #767676;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  width: 100%;
  justify-content: center;
  padding: 20px 10px;
}

.recent-search__keyword {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  color: #111111;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-search__delete {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  background: #d5d9e1;
  transition: background-color 140ms ease;
}

.recent-search__delete::before,
.recent-search__delete::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 1.5px;
  border-radius: 1px;
  background: #ffffff;
}

.recent-search__delete::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.recent-search__delete::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.recent-search__delete:hover,
.recent-search__delete:focus-visible {
  background: #aeb6c4;
}

@media (max-width: 1360px) {
  .site-search {
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
  }
  .site-search__panel {
    height: 360px;
    padding-top: 24px;
  }
  .site-search__content {
    width: 90vw;
    max-width: 884px;
    gap: 14px;
  }
  .site-search__form {
    width: 100%;
    height: 68px;
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) 16px 24px;
    -moz-column-gap: 12px;
         column-gap: 12px;
    padding: 0 24px;
  }
  .site-search__input {
    font-size: 16px;
  }
  .recent-search {
    padding: 14px;
    border-radius: 16px;
  }
  .recent-search__header {
    margin-bottom: 14px;
  }
  .recent-search__title {
    font-size: 16px;
  }
  .recent-search__list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .recent-search__list li {
    padding: 8px 10px 8px 12px;
  }
}
.page {
  padding: 20px 20px;
}
.page__inner {
  max-width: 1600px;
  margin: 0 auto;
}
.page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, clamp(420px, 34vw, 574px));
  gap: 20px;
  align-items: start;
}
.page__primary {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page__aside {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer {
  background: #282c37;
  color: #999999;
}
.site-footer__inner {
  width: min(100% - 64px, 1856px);
  min-height: 195px;
  margin: 0 auto;
  padding: 24px 0 30px;
}
.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #373e43;
}
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 40px;
  font-size: 16px;
  letter-spacing: -0.025em;
}
.site-footer__links a {
  transition: color 140ms ease;
}
.site-footer__links a:first-child {
  color: #ffffff;
  font-weight: 700;
}
.site-footer__links a:hover, .site-footer__links a:focus-visible {
  color: #ffffff;
}
.site-footer__actions {
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-footer__bottom {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 16px;
}
.site-footer__logo {
  width: 234px;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer__info {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 48px;
  max-width: 760px;
  padding-top: 2px;
  color: #999999;
  font-size: 14px;
  letter-spacing: -0.025em;
}
.site-footer__address, .site-footer__business {
  display: contents;
}
.site-footer__copyright {
  flex-basis: 100%;
  color: #767676;
  font-size: inherit;
}

.weather-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 4px 16px;
  border-radius: 999px;
  background: #e5eaf7;
  color: #0030af;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.025em;
  transition: background-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.weather-link:hover,
.weather-link:focus-visible {
  background: #f0f5ff;
  box-shadow: 0 4px 10px rgba(0, 48, 175, 0.12);
  transform: translateY(-1px);
}

.weather-link img {
  width: 20px;
  height: 20px;
}

.family-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 221px;
  height: 40px;
  padding: 0 40px 0 16px;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  background: transparent url("../assets/images/icon-family-arrow.svg") right 10px center/20px 20px no-repeat;
  color: #eaeaea;
  font-size: 14px;
  letter-spacing: -0.025em;
  transition: border-color 140ms ease, background-color 140ms ease;
}

.family-select:hover,
.family-select:focus-visible {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.06);
}

.family-select option {
  color: #111111;
  background-color: #ffffff;
}

@media (max-width: 1360px) {
  .site-header {
    height: 64px;
  }
  .site-header__inner {
    width: min(100% - 32px, 1856px);
    min-height: 64px;
    grid-template-columns: 1fr 49px 16px 49px;
    gap: 0;
    padding: 0;
  }
  .site-header__brand {
    gap: 0;
  }
  .site-header__brand img {
    width: 180px;
    height: 34px;
  }
  .site-header__brand span {
    display: none;
  }
  .site-header__toggle {
    grid-column: 4;
    grid-row: 1;
    position: relative;
    display: block;
    width: 49px;
    height: 56px;
    border: 0;
    border-radius: 0;
    background: transparent url("../assets/images/icon-menu-mobile.svg") 14px 8px/20px 20px no-repeat;
  }
  .site-header__toggle:hover, .site-header__toggle:focus-visible {
    background-color: transparent;
    border-color: transparent;
  }
  .site-header__toggle::after {
    content: "메뉴";
    position: absolute;
    left: 0;
    top: 32px;
    width: 49px;
    color: #1e2124;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    text-align: center;
    letter-spacing: -0.025em;
  }
  .site-header__toggle-line {
    display: none;
  }
  .site-header__toggle-line:nth-of-type(1) {
    top: 11px;
  }
  .site-header__toggle-line:nth-of-type(2) {
    top: 17px;
  }
  .site-header__toggle-line:nth-of-type(3) {
    top: 23px;
  }
  .site-header__toggle-line + .site-header__toggle-line {
    margin-top: 0;
  }
  .site-header__nav {
    display: none;
  }
  .site-header__mega {
    display: none;
  }
  .site-header__backdrop {
    display: none;
  }
  .site-header__actions {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    width: 49px;
    height: 56px;
    justify-content: center;
    gap: 0;
  }
  .site-header__login {
    display: none;
  }
  .site-header__search {
    position: relative;
    width: 49px;
    height: 56px;
    border-radius: 0;
    background: transparent url("../assets/images/icon-search-mobile.svg") 14px 8px/20px 20px no-repeat;
  }
  .site-header__search:hover, .site-header__search:focus-visible {
    box-shadow: none;
    transform: none;
  }
  .site-header__search::after {
    content: "검색";
    position: absolute;
    left: 0;
    top: 32px;
    width: 49px;
    color: #1e2124;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    text-align: center;
    letter-spacing: -0.025em;
  }
}
@media (max-width: 1280px) {
  .page__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .page {
    padding: 20px 0 32px;
  }
  .page__inner {
    width: min(100% - 32px, 1856px);
  }
  .page__aside {
    display: flex;
    flex-direction: column;
  }
  .site-footer__inner {
    width: min(100% - 32px, 1856px);
  }
  .site-footer__top, .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .site-footer__links, .site-footer__actions {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
  .site-footer__info {
    gap: 4px 20px;
  }
}
@media (max-width: 767px) {
  .page {
    padding: 20px 0 32px;
  }
  .page__inner {
    width: min(100% - 32px, 1856px);
  }
  .page__grid {
    gap: 16px;
  }
  .page__primary, .page__aside {
    gap: 16px;
  }
  .site-footer {
    min-height: 325px;
  }
  .site-footer__inner {
    width: min(100% - 32px, 1856px);
    min-height: 325px;
    padding: 20px 0;
  }
  .site-footer__top {
    gap: 20px;
    padding-bottom: 10px;
  }
  .site-footer__links {
    order: 2;
    width: 100%;
    min-height: 20px;
    flex-direction: row;
    gap: 24px;
    font-size: 14px;
  }
  .site-footer__actions {
    order: 1;
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
  .site-footer__bottom {
    gap: 18px;
    padding-top: 10px;
  }
  .site-footer__logo {
    order: 2;
    width: 234px;
    height: auto;
  }
  .site-footer__info {
    order: 1;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 20px;
    font-size: 12px;
    line-height: 23px;
  }
  .site-footer__address span:first-child, .site-footer__business span:nth-child(2), .site-footer__copyright {
    flex-basis: 100%;
  }
  .site-footer__copyright {
    line-height: 23px;
  }
  .weather-link {
    min-width: 144px;
    padding: 4px 16px;
    font-size: 14px;
  }
  .weather-link img {
    width: 18px;
    height: 18px;
  }
  .family-select {
    width: 156px;
  } 
}
.ui-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

/* jquery-ui.css a:link.ui-button / a:visited.ui-button 색상보다 우선 적용 */
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
a.ui-button:hover,
a.ui-button:focus,
a.ui-button:focus-visible {
  color: #ffffff;
  text-decoration: none;
}

.ui-button--form {
  min-width: 96px;
  height: 48px;
  padding: 0 16px;
  font-size: 16px;
}

.ui-button--table {
  min-width: 88px;
  height: 40px;
  padding: 0 14px;
  font-size: 15px;
  line-height: 1.4;
}

.ui-button--large {
  width: 200px;
  height: 56px;
  font-size: 18px;
}

.ui-button--primary {
  background: #2f66c5;
}

.ui-button--primary:hover,
.ui-button--primary:focus-visible {
  background: #0030af;
  box-shadow: 0 6px 16px rgba(0, 48, 175, 0.18);
}

.ui-button--outline {
  border-color: #c0c0c0;
  background: #ffffff;
  color: #333333;
  font-weight: 600;
}

a.ui-button--outline,
a:link.ui-button--outline,
a:visited.ui-button--outline,
a.ui-button--outline:hover,
a.ui-button--outline:focus,
a.ui-button--outline:focus-visible {
  color: #333333;
}

.ui-button--outline:hover,
.ui-button--outline:focus-visible {
  background: #f5f7fb;
  box-shadow: 0 4px 10px rgba(40, 65, 119, 0.12);
}

.ui-button--secondary {
  background: #606a7a;
}

@media (max-width: 767px) {
  .ui-button--large {
    width: 100%;
  }
}
.ui-button--secondary:hover,
.ui-button--secondary:focus-visible {
  background: #505a68;
}

.ui-button--muted {
  background: #8a8a8a;
}

.ui-button--muted:hover,
.ui-button--muted:focus-visible {
  background: #747474;
}

.card {
  background: #ffffff;
  border: 1px solid #e5eaf7;
  border-radius: 16px;
  box-shadow: 4px 4px 10px rgba(65, 77, 109, 0.03);
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #464c53;
  font-size: 15px;
  line-height: 1.5;
  word-break: keep-all;
}

.info-box__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border-radius: 50%;
  background: #e5ebfb;
  color: #0030af;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  font-family: "Inter", "Pretendard", sans-serif;
}

.info-box__text {
  min-width: 0;
  margin: 0;
}

.info-box a {
  color: #0030af;
  font-weight: 700;
}

.info-box a:hover,
.info-box a:focus-visible {
  color: #284177;
}

@media (max-width: 767px) {
  .info-box {
    gap: 5px;
  }
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-section__title {
  margin: 0;
  color: #111111;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}

.form-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-field--wide {
  grid-column: 1/-1;
}

.form-field--short {
  max-width: 360px;
}

.form-field__label {
  color: #333333;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
  word-break: keep-all;
}

.form-field__label span {
  color: #e60012;
}

.form-required {
  color: #e60012;
}

.form-field__control {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #c0c0c0;
  border-radius: 6px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
}

.form-field__control[readonly],
.form-field__control:disabled {
  border-color: #d8d8d8;
  background: #f5f5f5;
  color: #333333;
}

.form-field__control:disabled {
  opacity: 1;
  cursor: not-allowed;
}
.form-field__control:focus {
  border-color: #0030af;
}

.form-field__control--file {
  height: auto;
  min-height: 40px;
  padding-block: 8px;
}

textarea.form-field__control {
  height: auto;
  min-height: 76px;
  padding-block: 8px;
  resize: none;
}

.form-field__control--xs {
  max-width: 96px;
}

.form-field__control--sm {
  max-width: 160px;
}

.form-field__control--md {
  max-width: 250px;
}

.form-field__control--full {
  max-width: none;
}

.form-field__guide {
  margin: 0;
  color: #e60012;
  font-size: 15px;
  line-height: 1.5;
  word-break: keep-all;
}

.form-number-group,
.form-input-action {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-number-group span {
  color: #333333;
  font-size: 17px;
}

.form-number-group .form-field__control {
  text-align: center;
}

.form-input-action .form-field__control {
  flex: 1 1 auto;
}

.info-table:has(.form-field__control) {
  margin-bottom: 0;
}
.info-table:has(.form-field__control) th {
  padding-left: 16px;
}
.info-table:has(.form-field__control) td:has(.form-field__control) {
  padding: 5px 8px;
}
.info-table:has(.form-field__control) .form-field,
.info-table:has(.form-field__control) .form-number-group {
  width: 100%;
  gap: 6px;
}
.info-table:has(.form-field__control) .form-number-group {
  display: grid;
  grid-template-columns: minmax(48px, 1fr) auto minmax(40px, 0.8fr) auto minmax(64px, 1.2fr);
}
.info-table:has(.form-field__control) .form-number-group .form-field__control {
  padding-inline: 6px;
}
.info-table:has(.form-field__control) .form-field__guide {
  margin-top: 4px;
  font-size: 14px;
}

.form-input-action--compact {
  max-width: 560px;
}

.form-actions {
  display: flex;
  justify-content: center;
}

.file-select__input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}

.file-select-field,
.join-file-field {
  position: relative;
}

.file-select-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-select {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid #c0c0c0;
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.file-select-field:hover .file-select,
.join-file-field:hover .file-select,
.file-select:hover {
  border-color: #9ba8b7;
  background: #fbfcff;
}

.file-select__input:focus-visible + .file-select {
  border-color: #0030af;
  box-shadow: 0 0 0 3px rgba(0, 48, 175, 0.12);
}

.file-select__button {
  flex: 0 0 auto;
  min-width: 104px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 6px;
  background: #606a7a;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.file-select__name {
  min-width: 0;
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .form-section__header {
    align-items: flex-start;
  }
  .form-section__title {
    font-size: 21px;
    line-height: 1.45;
  }
  .form-field__control {
    font-size: 15px;
  }
  .form-field__control--sm,
  .form-field__control--md {
    max-width: none;
  }
  .form-field--short {
    max-width: none;
  }
  .form-input-action {
    flex-wrap: wrap;
  }
  .form-input-action .form-field__control {
    flex-basis: 100%;
  }
  .form-input-action .form-field__control--xs {
    max-width: 96px;
    flex: 0 0 96px;
  }
  .form-number-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1.4fr);
  }
  .file-select__name {
    width: 100%;
    padding: 0 8px 2px;
  }
}
.attachment-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../assets/images/icon-download.svg");
}

.notice-detail__file .attachment-icon {
  background-image: url("../assets/images/icon-download2.svg");
}

.process-stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #ffffff;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.process-stepper__item {
  position: relative;
  min-width: 0;
  min-height: 88px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-right: 1px solid #ddd;
  background: #ffffff;
  color: #111111;
  transition: background-color 140ms ease, color 140ms ease;
}

.process-stepper__item:first-child {
  border-radius: 12px 0 0 12px;
}

.process-stepper__item:last-child {
  border-right: 0;
  border-radius: 0 12px 12px 0;
}

.process-stepper__item.is-current {
  z-index: 2;
  margin-right: 32px;
  border-color: #339cde;
  background: #339cde;
  color: #ffffff;
}

.process-stepper__item.is-current::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -32px;
  width: 32px;
  height: calc(100% + 2px);
  background: #339cde;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.process-stepper__item.is-current + .process-stepper__item {
  padding-left: 48px;
}

.process-stepper__item.is-current:last-child {
  margin-right: 0;
}

.process-stepper__item.is-current:last-child::after {
  display: none;
}
.process-stepper__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #767676;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
}

.process-stepper__icon img,
.process-stepper__icon svg {
  width: 56px;
  height: 56px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.process-stepper__icon-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.process-stepper__item.is-current .process-stepper__icon {
  background: #ffffff;
}

.process-stepper__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.process-stepper__eyebrow {
  color: #464c53;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  white-space: nowrap;
}

.process-stepper__label {
  color: #111111;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  word-break: keep-all;
}

.process-stepper__item.is-current .process-stepper__eyebrow,
.process-stepper__item.is-current .process-stepper__label {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .process-stepper__item {
    min-height: 92px;
    gap: 12px;
    padding: 16px;
  }
  .process-stepper__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    font-size: 13px;
  }
  .process-stepper__icon img,
  .process-stepper__icon svg {
    width: 48px;
    height: 48px;
  }
  .process-stepper__eyebrow {
    font-size: 13px;
  }
  .process-stepper__label {
    font-size: 16px;
  }
  .process-stepper__item.is-current {
    margin-right: 24px;
  }
  .process-stepper__item.is-current::after {
    right: -24px;
    width: 24px;
  }
  .process-stepper__item.is-current + .process-stepper__item {
    padding-left: 36px;
  }
}
@media (max-width: 767px) {
  .process-stepper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid #ddd;
    background: #ffffff;
    box-shadow: 4px 4px 10px rgba(65, 77, 109, 0.03);
  }
  .process-stepper__item {
    min-height: 94px;
    flex-direction: column;
    justify-content: center;
    margin-right: 0;
    gap: 6px;
    padding: 10px 4px;
    border: 0;
    border-right: 1px solid #ddd;
    border-radius: 0;
    text-align: center;
  }
  .process-stepper__item:first-child {
    border-radius: 12px 0 0 12px;
  }
  .process-stepper__item:last-child {
    border-right: 0;
    border-radius: 0 12px 12px 0;
  }
  .process-stepper__icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 13px;
  }
  .process-stepper__icon img,
  .process-stepper__icon svg {
    width: 40px;
    height: 40px;
  }
  .process-stepper__content {
    align-items: center;
  }
  .process-stepper__eyebrow {
    font-size: 12px;
  }
  .process-stepper__label {
    font-size: 13px;
    line-height: 1.25;
  }
  .process-stepper__item.is-current {
    margin-right: 0;
  }
  .process-stepper__item.is-current::after {
    display: none;
  }
  .process-stepper__item.is-current + .process-stepper__item {
    padding-left: 4px;
  }
}
@media (max-width: 767px) {
  .scroll-hint {
    position: relative;
  }
  .scroll-hint::after {
    content: attr(data-scroll-hint-text);
    position: absolute;
    left: 50%;
    top: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: -moz-max-content;
    width: max-content;
    max-width: calc(100% - 24px);
    min-height: 36px;
    padding: 7px 42px 7px 16px;
    border-radius: 999px;
    background-color: rgba(40, 44, 55, 0.55);
    background-image: url("../assets/images/icon_moving2.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 24px 24px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 4px);
    transition: opacity 140ms ease, visibility 140ms ease, transform 140ms ease;
  }
  .scroll-hint.is-scrollable:not(.is-scroll-hint-hidden)::after {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}
.icon-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.icon-link-grid__item {
  min-width: 0;
}

.icon-link-card {
  min-width: 0;
  min-height: 176px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 16px;
  color: #111111;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.icon-link-card:hover,
.icon-link-card:focus-visible {
  border-color: #c0c0c0;
  background: #f5f7fb;
  box-shadow: 0 6px 18px rgba(40, 65, 119, 0.08);
}

.icon-link-card__media {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-link-card__sprite {
  width: 64px;
  height: 64px;
  display: block;
  background-image: var(--icon-link-sprite-image, none);
  background-repeat: no-repeat;
  background-position: var(--icon-link-sprite-position, 0 0);
  background-size: var(--icon-link-sprite-size, auto);
}

.icon-link-card__label {
  min-width: 0;
  color: inherit;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  word-break: keep-all;
}

@media (max-width: 1024px) {
  .icon-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .icon-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .icon-link-card {
    min-height: 148px;
    gap: 10px;
    padding: 18px 10px;
  }
  .icon-link-card__media {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
  .icon-link-card__sprite {
    width: 52px;
    height: 52px;
  }
  .icon-link-card__label {
    font-size: 16px;
  }
}
.status-banner {
  --status-icon-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 6px 24px;
  border-radius: 10px;
  background: #0030af;
  color: #ffffff;
  box-shadow: 4px 4px 10px rgba(0, 117, 255, 0.05);
  overflow: hidden;
}
.status-banner__title {
  flex: 0 0 auto;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.status-banner__list {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  flex-wrap: wrap;
}
.status-banner__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.status-banner__item strong {
  font-family: "Inter", "Pretendard", sans-serif;
  font-size: 22px;
  font-weight: 500;
}
.status-banner__item span:last-child {
  font-size: 16px;
  font-weight: 500;
}
.status-banner__icon {
  width: var(--status-icon-size);
  height: var(--status-icon-size);
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: var(--status-icon-size) var(--status-icon-size);
}
.status-banner__item--total .status-banner__icon {
  background-image: url("../assets/images/icon-status-total.png");
}
.status-banner__item--general .status-banner__icon {
  background-image: url("../assets/images/icon-status-general.png");
}
.status-banner__item--etc .status-banner__icon {
  background-image: url("../assets/images/icon-status-etc.png");
}

.overview {
  position: relative;
  display: block;
}
.overview__tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  align-items: end;
}
.overview__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 43px;
  padding: 12px 28px;
  border-radius: 12px 12px 0 0;
  background: #f0f0f0;
  color: #767676;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 140ms ease, color 140ms ease;
}
.overview__tab:not(.is-active):hover, .overview__tab:not(.is-active):focus-visible {
  background: #e9eef8;
  color: #111111;
}
.overview__tab.is-active {
  height: 49px;
  background: #d7eaff;
  color: #0030af;
  font-weight: 700;
}
.overview__tab.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 13px solid #d7eaff;
  transform: translateX(-50%);
  z-index: 2;
}
.overview__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 16px;
  align-items: stretch;
}
.overview__status, .overview__region, .overview__panel {
  min-width: 0;
}
.overview__status, .overview__region {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
}

.home-search {
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}
/* PC 전용: 기본 표시 / 모바일 전용: 기본 숨김 kjg */
.home-search--mobile {
  display: none;
}
/* PC 전용: 기본 표시 / 모바일 전용: 기본 숨김 kjg */
.home-search .form-field__control {
  height: 44px;
  padding-inline: 16px;
  font-size: 16px;
}
.home-search .ui-button {
  min-width: 72px;
  height: 44px;
  background: #339cde;
}

.stat-card {
  min-height: 347px;
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 22px;
  align-items: center;
  padding: 34px 24px 30px 24px;
  border-radius: 0 0 16px 16px;
}
.stat-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.stat-card__title {
  display: flex;
  align-items: baseline;
  gap: 2px 6px;
  width: 100%;
  color: #111111;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-wrap: wrap;
}
.stat-card__title span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: #414657;
  font-size: 16px;
  font-weight: 500;
}
.stat-card__title strong {
  color: #0030af;
  font-size: 22px;
  font-weight: 700;
}
.stat-card__list {
  width: 100%;
  padding: 12px 4px; 
  border: 1px solid #dedede;
  border-radius: 12px;
  background: #fafafa;
}
.stat-card__list div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
}
.stat-card__list dt, .stat-card__list dd {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333333;
  font-size: 17px;
  font-weight: 600;
}
.stat-card__list dd {
  gap: 4px;
  margin-left: 0;
  font-size: 16px;
  font-weight: 500;
}
.stat-card__list strong {
  color: #111111;
  font-size: 22px;
  font-weight: 700;
}
.stat-card__marker {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.stat-card__marker--total {
  background-image: url("../assets/images/icon-marker-total.png");
}
.stat-card__marker--general {
  background-image: url("../assets/images/icon-marker-general.png");
}
.stat-card__marker--etc {
  background-image: url("../assets/images/icon-marker-etc.png");
}
.stat-card__date {
  color: #767676;
  font-family: "Inter", "Pretendard", sans-serif;
  font-size: 13px;
  line-height: 22px;
}

/* <!-- 2026.05.29 추가: Chart.js 캔버스 컨테이너 스타일 --> */
.chart-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.chart-container canvas {
  max-width: 100%;
  max-height: 100%;
}

.region-chart__canvas-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 250px;
}

.region-chart__canvas-container canvas {
  max-width: 100%;
  max-height: 100%;
}
/* <!-- // 2026.05.29 추가 끝 --> */

.chart-placeholder {
  display: grid;
  place-items: center;
  min-height: 214px;
  border: 1px dashed rgba(198, 209, 234, 0.72);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(229, 234, 247, 0.52), rgba(247, 247, 247, 0.88)), repeating-linear-gradient(90deg, transparent 0 23px, rgba(0, 48, 175, 0.05) 23px 24px);
  color: #333333;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}
.chart-placeholder::before {
  content: "차트 영역";
}

.stat-card > .chart-placeholder {
  width: 100%;
  height: 100%;
}

@container (max-width: 520px) {
  .stat-card {
    grid-template-columns: minmax(150px, 0.9fr) minmax(0, 1fr);
    gap: 16px;
    padding: 20px 20px 24px;
  }
  .stat-card__title {
    flex-wrap: wrap;
    font-size: 18px;
    line-height: 1.4;
    white-space: normal;
  }
  .stat-card__title span {
    font-size: 14px;
  }
  .stat-card__list div {
    gap: 10px;
    padding: 8px 10px;
  }
  .stat-card__list dt,
  .stat-card__list dd {
    gap: 6px;
    font-size: 15px;
  }
  .stat-card__list strong {
    font-size: 18px;
  }
  .stat-card > .chart-placeholder {
    height: 242px;
  }
}
@media (max-width: 1280px) {
  .overview__body {
    grid-template-columns: 1fr;
  }
}
.region-chart > .chart-placeholder {
  min-height: 214px;
}

.region-card {
  position: relative;
  min-height: 344px;
  padding: 24px 40px 24px;
  box-shadow: 4px 4px 10px rgba(204, 204, 204, 0.05);
}
.region-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.region-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.region-card__total {
  position: absolute;
  top: 35px;
  right: 40px;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.region-card__total strong {
  font-size: 18px;
  font-weight: 600;
}

.region-chart {
  min-height: 250px;
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
  color: #6b7388;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}
.region-chart__control {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  background-color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
  transition: background-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}
.region-chart__control:hover, .region-chart__control:focus-visible {
  background-color: #f8fbff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  transform: translateY(-50%) scale(1.04);
}
.region-chart__control--prev {
  left: -20px;
  background-image: url("../assets/images/icon-chart-prev.svg");
}
.region-chart__control--next {
  right: -20px;
  background-image: url("../assets/images/icon-chart-next.svg");
}

.role-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.role-card {
  background: #ffffff;
  border: 1px solid #e5eaf7;
  border-radius: 16px;
  box-shadow: 4px 4px 10px rgba(65, 77, 109, 0.03);
  overflow: hidden;
}
.role-card__header {
  position: relative;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 26px;
  color: #ffffff;
  background: linear-gradient(90deg, #3b77d4 3.5%, #195abe 45%);
}
.role-card--agency .role-card__header {
  background: linear-gradient(90deg, #31adb5 3.5%, #139099 45%);
}
.role-card--local .role-card__header {
  background: linear-gradient(90deg, #6c6eca 3.5%, #5658b2 45%);
}
.role-card__header::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 11px;
  z-index: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(128deg, rgba(101, 154, 235, 0.6) 0%, rgba(46, 108, 203, 0.6) 100%);
  pointer-events: none;
}
.role-card--agency .role-card__header::before {
  background: linear-gradient(128deg, rgba(92, 200, 207, 0.6) 0%, rgba(36, 160, 169, 0.6) 100%);
}
.role-card--local .role-card__header::before {
  background: linear-gradient(128deg, rgba(148, 150, 237, 0.6) 0%, rgba(99, 101, 192, 0.6) 100%);
}
.role-card__header img {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.role-card__header > div {
  position: relative;
  z-index: 1;
}
.role-card__header h3 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.role-card__header p {
  font-size: 13px;
}
.role-card__body {
  padding: 12px 20px 16px;
}
.role-card__toggle {
  display: none;
}
.role-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
}
.role-card__eyebrow span {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: url("../assets/images/icon-star-company.png") center/contain no-repeat;
}
.role-card--agency .role-card__eyebrow span {
  background-image: url("../assets/images/icon-star-agency.png");
}
.role-card--local .role-card__eyebrow span {
  background-image: url("../assets/images/icon-star-local.png");
}
.role-card__menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.role-card--company .role-card__menu {
  padding: 12px 14px;
  border-radius: 16px;
  background: #eef6ff;
}

.role-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 10px 14px;
  border: 1px solid #dee5f0;
  border-radius: 6px;
  background: #ffffff;
  word-break: keep-all;
}
.role-feature + .role-feature {
  margin-top: 6px;
}
.role-feature--large, .role-feature--block {
  min-height: 68px;
  padding: 0;
  border: 0;
  background: transparent;
}
.role-feature--large {
  margin-bottom: 12px;
}
.role-card__menu .role-feature--large {
  margin-bottom: 6px;
}
.role-card__menu .role-feature + .role-feature {
  margin-top: 0;
}
.role-card__menu .role-feature:not(.role-feature--large) {
  height: 61px;
}
.role-feature--block {
  min-height: 112px;
  padding: 7px 14px;
  border-radius: 16px;
  background: #eef6ff;
}
.role-card--agency .role-feature--block {
  background: #ecfafb;
}
.role-card--local .role-feature--block {
  background: #f0f1fa;
}
.role-feature__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f4f4f4;
}
.role-feature__icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.role-feature__icon--blue, .role-feature__icon--teal, .role-feature__icon--purple {
  width: 68px;
  height: 68px;
}
.role-feature__icon--blue {
  background: #dae9ff;
}
.role-feature__icon--teal {
  background: #d8f2f4;
}
.role-feature__icon--purple {
  background: #e1e3fa;
}
.role-feature__icon--blue img {
  width: 42px;
  height: 42px;
}
.role-feature__icon--teal img, .role-feature__icon--purple img {
  width: 43px;
  height: 43px;
}
.role-feature strong, .role-feature__desc {
  display: block;
}
.role-feature strong {
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}
.role-feature--large strong, .role-feature--block strong {
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.role-card--agency .role-feature--block strong, .role-card--local .role-feature--block strong {
  font-size: 22px;
}
.role-feature__desc {
  margin-top: 2px;
  color: #767676;
  font-size: 11px;
  line-height: 1.3;
}
.role-feature--large .role-feature__desc, .role-feature--block .role-feature__desc {
  color: #333333;
  font-size: 13px;
}

.quick-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.quick-card {
  height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 28px;
  border: 1px solid #f0f7ff;
  border-radius: 16px;
  text-align: center;
  box-shadow: 4px 4px 10px rgba(65, 77, 109, 0.03);
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.quick-card:hover, .quick-card:focus-visible {
  box-shadow: 0 8px 18px rgba(65, 77, 109, 0.1);
  transform: translateY(-2px);
}
.quick-card--inspection {
  background: #e2f0ff;
}
.quick-card--education {
  background: #deffed;
}
.quick-card--permit {
  background: #feefea;
}
.quick-card--duty {
  background: #f6f7c3;
}
.quick-card img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}
.quick-card h3 {
  color: #111111;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.015em;
  word-break: keep-all;
}
.quick-card p {
  color: #333333;
  font-size: 14px;
  line-height: 1.2;
  word-break: keep-all;
}

.safety-card {
  background: #ffffff;
  border: 1px solid #e5ebfb;
  border-radius: 16px;
  box-shadow: 4px 4px 10px rgba(65, 77, 109, 0.03);
  min-height: 177px;
  padding: 16px 24px 20px;
  box-shadow: none;
}
.safety-card__title {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.safety-card__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.safety-card__list li {
  position: relative;
}
.safety-card__list li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  width: 1px;
  height: 80px;
  background: #d9d9d9;
  transform: translateY(-50%);
}
.safety-card__list a {
  position: relative;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #333333;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: background-color 140ms ease, color 140ms ease;
  word-break: keep-all;
  text-align: center;
  padding: 0 4px;
}
.safety-card__list a:hover, .safety-card__list a:focus-visible {
  background-color: #f7faff;
}
.safety-card__list img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}

.notice__heading h2 {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.notice__tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  height: 56px;
}
.notice__tab-list {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
  gap: 8px;
}
.notice__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 52px;
  padding: 0 18px;
  border: 1px solid #cccccc;
  border-radius: 999px;
  color: #666666;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}
.notice__tab:not(.is-active):hover, .notice__tab:not(.is-active):focus-visible {
  border-color: #cfcfcf;
  color: #111111;
  background: #eeeeee;
}
.notice__tab.is-active {
  border-color: #0030af;
  background: #0030af;
  color: #ffffff;
  font-weight: 700;
}
.notice__more {
  position: relative;
  margin-left: auto;
  padding-right: 22px;
  color: #767676;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.025em;
  white-space: nowrap;
  transition: color 140ms ease;
}
.notice__more::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: url("../assets/images/icon-more-arrow.png") center/contain no-repeat;
  transform: translateY(-50%);
}
.notice__more:hover, .notice__more:focus-visible {
  color: #111111;
}
.notice__list {
  background: #ffffff;
  border: 1px solid #e5ebfb;
  border-radius: 16px;
  box-shadow: 4px 4px 10px rgba(65, 77, 109, 0.03);
  padding: 17px 20px;
}
.notice__list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px;
  gap: 24px;
  align-items: center;
  min-height: 24px;
}
.notice__list li + li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #dbdbdb;
}
.notice__list a {
  overflow: hidden;
  color: #414657;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 140ms ease;
}
.notice__list a:hover, .notice__list a:focus-visible {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.notice__list time {
  color: #767676;
  font-family: "Inter", "Pretendard", sans-serif;
  font-size: 14px;
  text-align: right;
  letter-spacing: -0.025em;
}

@media only screen and (max-width: 1440px) {
  .role-card__body {
    padding: 12px 16px 16px;
  }
  .role-section {
    gap: 12px;
  }
  .role-feature--block {
    flex-direction: column;
    text-align: center;
  }
  .role-feature--large {
    flex-direction: column;
    text-align: center;
  }
  .role-feature {
    row-gap: 6px;
  }
}
@media (max-width: 1280px) {
  .overview__body {
    grid-template-columns: 1fr;
  }
  /* overview 1열 전환 시 PC 검색(지역카드 상단)이 차트 아래로 밀리므로
     배너~탭 사이 모바일 검색창을 사용 */
  .home-search--pc {
    display: none;
  }
  .home-search--mobile {
    display: grid;
    margin-bottom: 0;
  }
  .stat-card {
    grid-template-columns: 44% 30%;
    justify-content: center;
  }
  .role-section {
    gap: 16px;
  }
  .role-feature--block {
    flex-direction: row;
    text-align: left;
  }
  .role-feature--large {
    flex-direction: row;
    text-align: left;
  }
}
@media (max-width: 1024px) {
  .status-banner {
    align-items: flex-start;
    flex-direction: column;
    --status-icon-size: 14px;
    min-height: 80px;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 8px 0 6px;
    border-radius: 12px;
  }
  .status-banner__title {
    font-size: 26px;
  }
  .status-banner__list {
    flex-wrap: wrap;
  }
  .stat-card {
    height: auto;
    border-radius: 0 0 16px 16px;
    grid-template-columns: 44% 1fr;
  }
  .role-section {
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }
  .role-card {
    min-height: 76px;
  }
  .role-card.is-open {
    height: auto;
  }
  .role-card__header {
    padding-right: 64px;
  }
  .role-card__header::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: auto;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8L10 13L15 8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    box-shadow: none;
    transition: transform 160ms ease;
  }
  .role-card.is-open .role-card__header::after {
    transform: rotate(180deg);
  }
  .role-card__body {
    display: none;
  }
  .role-card.is-open .role-card__body {
    display: block;
  }
  .role-card__toggle {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  .quick-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .status-banner__title {
    flex: 0 0 auto;
    width: 100%;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
  }
  .status-banner__list {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }
  .status-banner__item {
    height: 36px;
    min-height: 36px;
    padding: 0 6px;
    gap: 4px;
    font-size: 14px;
  }
  .status-banner__item strong {
    font-size: 16px;
  }
  .status-banner__item span:last-child {
    font-size: 13px;
  }
  .overview__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 40px;
  }
  .overview__body {
    gap: 20px;
  }
  .overview__tab {
    height: 36px;
    padding-inline: 8px;
    font-size: 14px;
  }
  .overview__tab.is-active {
    height: 40px;
  }
  .home-search {
    gap: 6px;
  }
  .home-search .form-field__control {
    height: 44px;
    padding-inline: 12px;
    font-size: 15px;
  }
  .home-search .ui-button {
    min-width: 60px;
    height: 44px;
    padding-inline: 12px;
    font-size: 15px;
  }
  .stat-card {
    min-height: 450px;
    min-width: 0;
    max-width: 100%;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 32px;
    padding: 32px 16px 20px;
  }
  .stat-card__content {
    gap: 10px;
    align-items: stretch;
  }
  .stat-card__title {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 18px;
    line-height: 28px;
    white-space: normal;
  }
  .stat-card__title span {
    font-size: 14px;
  }
  .stat-card__title strong {
    font-size: 22px;
  }
  .stat-card__list {
    display: flex;
    align-items: stretch; /*260610 kjg*/
    justify-content: center;
    gap: clamp(4px, 2.5vw, 10px); /*260610 kjg*/
    padding: 8px 4px;
    border: 1px solid #dedede;
    border-radius: 12px;
    background: #fafafa;
  }
  .stat-card__list div {
    display: flex;
    flex-direction: column; /*260610 kjg*/
    align-items: center;
    justify-content: center;
    flex: 1 1 0; /*260610 kjg*/
    min-width: 0; /*260610 kjg*/
    gap: 6px; /*260610 kjg*/
    padding: 10px 2px; /*260610 kjg*/
  }
  .stat-card__list dt, .stat-card__list dd {
    gap: 5px;
    font-size: clamp(12px, 3.85vw, 15px);
    line-height: 21px;
    white-space: nowrap;
  }
  .stat-card__list dd {
    font-size: 0;
  }
  .stat-card__list strong {
    font-size: clamp(12px, 3.5vw, 15px); /*260610 kjg*/
    line-height: 21px;
  }
  .stat-card__marker {
    width: 14px;
    height: 14px;
  }
  .stat-card__date {
    text-align: right;
  }
  .stat-card > .chart-placeholder {
    width: 100%;
    max-width: 100%;
    min-height: 282px;
    margin: 0 auto;
  }
  .region-card {
    --mobile-title-width: 204px;
    --mobile-title-height: 48px;
    --mobile-title-padding-left: 20px;
    --mobile-title-deco-width: 44px;
    --mobile-title-deco-height: 25px;
    --mobile-title-deco-top: 23px;
    --mobile-title-deco-fill-left: calc(var(--mobile-title-width) - 10px);
    --mobile-title-deco-border-left: calc(var(--mobile-title-width) - 1px);
    position: relative;
    height: 396px;
    min-height: 396px;
    min-width: 0;
    max-width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .region-card__header {
    position: relative;
    z-index: 2;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    width: var(--mobile-title-width);
    height: var(--mobile-title-height);
    margin-bottom: 0;
    padding: 16px 0 0 var(--mobile-title-padding-left);
    overflow: visible;
    border: 1px solid #e5eaf7;
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
    background: #ffffff;
  }
  .region-card__header::before, .region-card__header::after {
    content: "";
    position: absolute;
    top: var(--mobile-title-deco-top);
    width: var(--mobile-title-deco-width);
    height: var(--mobile-title-deco-height);
  }
  .region-card__header::before {
    left: var(--mobile-title-deco-fill-left);
    background: #ffffff;
  }
  .region-card__header::after {
    left: var(--mobile-title-deco-border-left);
    border-left: 1px solid #e5eaf7;
    border-bottom: 1px solid #e5eaf7;
    border-radius: 0 0 0 16px;
    background: #f7f7f7;
  }
  .region-card__title {
    position: relative;
    z-index: 2;
    font-size: 18px;
    line-height: 25px;
  }
  .region-card__total {
    position: absolute;
    left: auto;
    top: auto;
    right: 28px;
    bottom: 29px;
    z-index: 2;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 20px;
  }
  .region-chart {
    position: relative;
    z-index: 1;
    min-height: 340px;
    margin-top: -1px;
    padding: 34px 22px 44px;
    border: 1px solid #e5eaf7;
    border-radius: 0 12px 12px 12px;
    background: #ffffff;
  }
  .region-chart > .chart-placeholder {
    min-height: 224px;
    height: 224px;
    align-self: start;
  }
  .region-chart__control {
    position: absolute;
    top: 128px;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 50%;
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }
  .region-chart__control--prev {
    left: -8px;
    background-image: url("../assets/images/icon-chart-prev.svg");
  }
  .region-chart__control--next {
    right: -8px;
    background-image: url("../assets/images/icon-chart-next.svg");
  }
  .role-section {
    gap: 8px;
    padding-bottom: 0;
  }
  .role-card {
    min-height: 84px;
  }
  .role-card.is-open {
    height: auto;
  }
  .role-card__header {
    position: relative;
    height: 84px;
    padding: 16px 64px 16px 26px;
    gap: 20px;
  }
  .role-card__header::before {
    left: 19px;
    top: 14px;
    width: 56px;
    height: 56px;
  }
  .role-card__header::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 20px;
    bottom: auto;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8L10 13L15 8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    box-shadow: none;
  }
  .role-card.is-open .role-card__header::after {
    transform: rotate(180deg);
  }
  .role-card__header img {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
  }
  .role-card__header > div {
    position: relative;
    z-index: 1;
  }
  .role-card__header h3 {
    font-size: 24px;
    line-height: 29px;
  }
  .role-card__header p {
    font-size: 13px;
    line-height: 18px;
  }
  .role-card__body {
    display: none;
    padding: 14px 12px 14px;
  }
  .role-card.is-open .role-card__body {
    display: block;
  }
  .role-card__toggle {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  .role-card__eyebrow {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .role-card__eyebrow span {
    width: 14px;
    height: 14px;
  }
  .role-card--company .role-card__menu {
    min-height: auto;
    padding: 14px;
  }
  .role-feature {
    gap: 10px;
  }
  .role-feature--large, .role-feature--block {
    min-height: 88px;
  }
  .role-feature--block {
    padding: 10px 14px;
  }
  .role-feature--large strong, .role-feature--block strong, .role-card--agency .role-feature--block strong, .role-card--local .role-feature--block strong {
    font-size: 20px;
  }
  .role-feature__icon--blue, .role-feature__icon--teal, .role-feature__icon--purple {
    width: 56px;
    height: 56px;
  }
  .role-feature__icon--blue img, .role-feature__icon--teal img, .role-feature__icon--purple img {
    width: 34px;
    height: 34px;
  }
  .quick-section {
    width: calc(100% + 32px);
    margin: 0 -16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
    border-top: 1px solid #e5eaf7;
    border-bottom: 1px solid #e5eaf7;
    background: #ffffff;
  }
  .quick-card {
    min-height: 172px;
    padding: 12px 22px;
    border-radius: 12px;
    gap: 4px;
  }
  .quick-card h3 {
    font-size: 19px;
    line-height: 1.1;
  }
  .quick-card p {
    font-size: 12px;
    line-height: 1.2;
  }
  .safety-card {
    --mobile-title-width: 169px;
    --mobile-title-height: 48px;
    --mobile-title-padding-left: 20px;
    --mobile-title-deco-width: 44px;
    --mobile-title-deco-height: 25px;
    --mobile-title-deco-top: 23px;
    --mobile-title-deco-fill-left: calc(var(--mobile-title-width) - 10px);
    --mobile-title-deco-border-left: calc(var(--mobile-title-width) - 1px);
    min-height: 195px;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .safety-card__title {
    position: relative;
    z-index: 2;
    width: var(--mobile-title-width);
    height: var(--mobile-title-height);
    margin-bottom: 0;
    padding: 16px 0 0 var(--mobile-title-padding-left);
    overflow: visible;
    border: 1px solid #e5eaf7;
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
    background: #ffffff;
    font-size: 18px;
    line-height: 25px;
  }
  .safety-card__title::before, .safety-card__title::after {
    content: "";
    position: absolute;
    top: var(--mobile-title-deco-top);
    width: var(--mobile-title-deco-width);
    height: var(--mobile-title-deco-height);
  }
  .safety-card__title::before {
    left: var(--mobile-title-deco-fill-left);
    background: #ffffff;
  }
  .safety-card__title::after {
    left: var(--mobile-title-deco-border-left);
    border-left: 1px solid #e5eaf7;
    border-bottom: 1px solid #e5eaf7;
    border-radius: 0 0 0 16px;
    background: #f7f7f7;
  }
  .safety-card__list {
    position: relative;
    z-index: 1;
    height: 148px;
    min-height: 0;
    margin-top: -1px;
    grid-template-columns: repeat(3, 1fr);
    padding: 23px 21px;
    border: 1px solid #e5eaf7;
    border-radius: 0 12px 12px 12px;
    background: #ffffff;
  }
  .safety-card__list li + li::before {
    height: 80px;
  }
  .safety-card__list a {
    min-height: 102px;
    font-size: 15px;
  }
  .safety-card__list img {
    width: 64px;
    height: 64px;
  }
  .notice__heading h2 {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .notice__tabs {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
    margin-bottom: 10px;
    padding-bottom: 0;
  }
  .notice__tabs::-webkit-scrollbar {
    display: none;
  }
  .notice__tab-list {
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }
  .notice__tab {
    min-width: 100px;
    height: 36px;
    padding: 0 14px;
    font-size: 15px;
  }
  .notice__more {
    flex: 0 0 auto;
    width: auto;
    padding-right: 22px;
    text-align: left;
  }
  .notice__list {
    min-height: 178px;
    padding: 20px;
    border-radius: 12px;
  }
  .notice__list li {
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 0;
    min-height: 24px;
  }
  .notice__list li + li {
    margin-top: 16px;
    padding-top: 16px;
  }
  .notice__list a {
    font-size: 15px;
    line-height: 24px;
  }
  .notice__list time {
    font-size: 14px;
    text-align: right;
  }
}
.breadcrumb {
  font-size: 15px;
  line-height: 1.5;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #1e2124;
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background: url("../assets/images/icon-breadcrumb-arrow.svg") center/contain no-repeat;
}
.breadcrumb__link, .breadcrumb__current {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 4px;
  border-radius: 4px;
}
.breadcrumb__link:hover, .breadcrumb__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.breadcrumb__home::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background: url("../assets/images/icon-breadcrumb-home.svg") center/contain no-repeat;
}

.subpage {
  background: #ffffff;
}
.subpage__inner {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: 20px 20px 24px; /*kjg*/
}
.subpage__header {
  margin-bottom: 8px; /* kjg */
}
.subpage__title {
/*   margin-top: 20px; KJG */
  color: #111111;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}
.subpage__body {
  display: flex;
  flex-direction: column;
  gap: 8px; /* kjg */
}

.list-filter {
  width: 100%;
  padding: 14px 40px; /* kjg*/
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 12px;
  background: #f6f6f6;
}
.list-filter__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-top: 1px solid #e7e7e7;
  padding-top: 11px;
}
.list-filter__row--simple {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
}
.list-filter__row:first-child {
  border-top: 0;
  padding-top: 0;
}
.list-filter__field {
  min-width: 0;
  display: flex;
  flex: 1 1 0;
  align-items: center;
  gap: 12px;
}
.list-filter__field--keyword {
  flex: 1 1 auto;
}
.list-filter__label {
  flex: 0 0 132px;
  color: #111111;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
  word-break: keep-all;
}
.list-filter__control {
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #c0c0c0;
  border-radius: 6px;
  background-color: #ffffff;
  color: #333333;
  font: inherit;
  font-size: 17px;
  line-height: 1.5;
}
.list-filter__control::-moz-placeholder {
  color: #767676;
}
.list-filter__control::placeholder {
  color: #767676;
}
.list-filter__control--keyword {
  flex: 1 1 auto;
}
.list-filter__control--date, .list-filter__select {
  flex: 0 0 205px; /*kjg*/
}
.list-filter__control--date {
  padding-right: 10px;
  background: #ffffff url("../assets/images/icon-calendar.svg") right 10px center/24px 24px no-repeat;
}
.list-filter__control--date::-webkit-calendar-picker-indicator {
  width: 24px;
  height: 24px;
  opacity: 0;
  cursor: pointer;
}
.list-filter__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("../assets/images/icon-select-arrow.svg");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding-right: 40px;
}
.list-filter__range, .list-filter__selects {
  display: flex;
  align-items: center;
  gap: 8px;
}
.list-filter__range-separator {
  color: #333333;
  font-size: 17px;
}
.list-filter__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}
.list-filter__actions--mobile {
  display: none;
}

.multi-select {
  position: relative;
  flex: 0 1 400px;
  min-width: 0;
}
.multi-select__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding-right: 44px;
  background-image: url("../assets/images/icon-select-arrow.svg");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.multi-select__panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 20;
  width: min(640px, 100vw - 64px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px 20px;
  padding: 16px;
  border: 1px solid #8a949e;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.multi-select__panel[hidden] {
  display: none;
}
.multi-select__item {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  font-size: 14px;
  line-height: 1.5;
  word-break: keep-all;
  cursor: pointer;
}
.multi-select__item input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0;
}

.segmented-control {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  height: 48px;
  padding: 2px;
  border-radius: 8px;
  background: #ffffff;
}
.segmented-control__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.segmented-control__item {
  min-width: 98px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 6px;
  color: #333333;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease;
}
.segmented-control__item:hover {
  background: #eeeeee;
}
.segmented-control__item:has(> .segmented-control__input:checked) {
  background: #f9b015;
  color: #ffffff;
  font-weight: 700;
}

.list-button {
  min-width: 100px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.list-button::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.list-button--search {
  background: #339cde;
  color: #ffffff;
}
.list-button--search::before {
  background-image: url("../assets/images/icon-search-button.svg");
}
.list-button--reset {
  border-color: #c0c0c0;
  background: #ffffff;
  color: #333333;
  font-weight: 600;
}
.list-button--reset::before {
  background-image: url("../assets/images/icon-reset.svg");
}
.list-button:hover, .list-button:focus-visible {
  box-shadow: 0 4px 10px rgba(0, 48, 175, 0.12);
}

.list-results {
  width: 100%;
}
.list-results__count {
  margin-bottom: 6px; /* kjg */
  color: #1e2124;
  font-size: 18px;
  font-weight: 700;
}
.list-results__count strong {
  color: #0030af;
  font-weight: 700;
}
.list-results__count--split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.list-results__note {
  color: #1e2124;
  font-size: 15px;
  font-weight: 400;
}

.data-table-wrap {
  --data-table-min-width: 1240px;
  position: relative;
  width: 100%;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  min-width: var(--data-table-min-width);
  table-layout: fixed;
  border-collapse: collapse;
  color: #333333;
  font-size: 17px;
  border-top: 2px solid #466eaf;
}
.data-table th,
.data-table td {
  height: 50px;
  padding: 0 16px;
  border-bottom: 1px solid #ddd;
  text-align: center;
  vertical-align: middle;
}
.data-table th {
  height: 39px;
  background: #f0f7fc;
  border-bottom-color: #d6e0eb;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
}
.data-table tbody tr:hover,
.data-table tbody tr:focus-within {
  background: #f9f9f9;
}
.data-table tbody tr.fixed-row {
  background-color: #fef8f3;
}
.data-table__cell--text {
  text-align: inherit;
}
.data-table td.data-table__cell--align-left {
  text-align: left;
}
.data-table td.data-table__cell--align-center {
  text-align: center;
}
.data-table__cell--truncate {
  overflow: hidden;
}
.data-table__link {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-underline-offset: 3px;
  text-decoration: underline;
}
.data-table__span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.data-table__link:hover, .data-table__link:focus-visible {
  color: #0030af;
}
.data-table__button {
  width: 92px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
  border: 1px solid #c0c0c0;
  background: #ffffff;
  color: #333333;
  font-weight: 600;
}
.data-table__button:hover, .data-table__button:focus-visible {
  background: #f5f7fb;
}

.mobile-list {
  display: none;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px; /*kjg*/
  flex-wrap: wrap;
}
.pagination__list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pagination__item, .pagination__control {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #464c53;
  font-size: 17px;
  line-height: 1.5;
  transition: background-color 140ms ease, color 140ms ease;
}
.pagination__control {
  padding: 0 8px;
  gap: 2px;
}
.pagination__control--first, .pagination__control--prev, .pagination__control--next, .pagination__control--last {
  word-break: keep-all;
}
.pagination__control--first, .pagination__control--last {
  font-size: 0;
}
.pagination__control[aria-disabled=true], .pagination__control.is-disabled {
  color: #8a949e;
  cursor: default;
  pointer-events: none;
}
.pagination__control--first::before, .pagination__control--prev::before, .pagination__control--next::after, .pagination__control--last::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: url("../assets/images/icon-pagination-next.svg") center/contain no-repeat;
}
.pagination__control--first::before, .pagination__control--last::after {
  width: 26px;
  background-image: url("../assets/images/icon-pagination-next.svg"), url("../assets/images/icon-pagination-next.svg");
  background-position: left center, right center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.pagination__control--first::before, .pagination__control--prev::before {
  transform: rotate(180deg);
}
.pagination__control[aria-disabled=true]::before, .pagination__control[aria-disabled=true]::after, .pagination__control.is-disabled::before, .pagination__control.is-disabled::after {
  opacity: 0.45;
}
.pagination__item:hover, .pagination__item:focus-visible, .pagination__control:hover, .pagination__control:focus-visible {
  background: #f5f7fb;
}
.pagination__item.is-active {
  background: #2f63b7;
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 1279px) {
  .list-filter__row {
    flex-wrap: wrap;
  }
  .list-filter__field:not(.list-filter__field--keyword) {
    flex: 1 1 100%;
  }
}
@media (max-width: 1024px) {
  .subpage__inner {
    width: min(100% - 32px, 1280px);
    padding-inline: 0;
  }
  .data-table-wrap {
    display: none;
  }
  .mobile-list {
    position: relative;
    display: block;
    border-top: 2px solid #466eaf;
  }
  .mobile-list__title {
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background: #eef2f7;
    border-bottom: 1px solid #d6e0eb;
    color: #111111;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
  }
  .mobile-list__items {
    display: flex;
    flex-direction: column;
  }
  .mobile-list__item {
    min-height: 100px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border-bottom: 1px solid #ddd;
    background: #ffffff;
  }
  .mobile-list__item.is-fixed {
    background-color: #fef8f3;
  }
  .mobile-list__link {
    color: #333333;
    font-size: 17px;
    line-height: 1.5;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: keep-all;
    padding: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .mobile-list__link:not(a):not(button) {
    text-decoration: none;
  }
  .mobile-list__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #333333;
    font-size: 15px;
    line-height: 1.5;
  }
  .mobile-list__meta div {
    display: flex;
    gap: 6px;
    white-space: nowrap; /* HWS */
  }
  .mobile-list__meta dt {
    color: #767676;
  }
  .mobile-list__meta dd {
    flex: 1; /* HWS */
    overflow: hidden; /* HWS */
    text-overflow: ellipsis; /* HWS */
  }
}
@media (max-width: 767px) {
  .breadcrumb {
    font-size: 13px;
  }
  .breadcrumb__list {
    gap: 2px;
    overflow: hidden;
  }
  .breadcrumb__item {
    min-width: 0;
    flex: 0 0 auto;
  }
  .breadcrumb__item + .breadcrumb__item::before, .breadcrumb__home::before {
    width: 14px;
    height: 14px;
  }
  .breadcrumb__item + .breadcrumb__item::before {
    background-image: url("../assets/images/icon-breadcrumb-arrow-mobile.svg");
  }
  .breadcrumb__home::before {
    background-image: url("../assets/images/icon-breadcrumb-home-mobile.svg");
  }
  .breadcrumb__current, .breadcrumb__link {
    overflow: hidden;
    max-width: 120px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .subpage {
    background: #ffffff;
  }
  .subpage__inner {
    padding: 16px 0 32px;
  }
  .subpage__header {
    margin-bottom: 12px;
  }
  .subpage__title {
    margin-top: 20px;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-align: left;
  }
  .subpage__body {
    gap: 32px;
  }
  .list-filter {
    padding: 16px;
    gap: 14px;
  }
  .list-filter__row {
    display: contents;
  }
  .list-filter__row:not(:last-child) {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .list-filter__field, .list-filter__field:not(.list-filter__field--keyword) {
    width: 100%;
    flex: 0 1 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .list-filter__field--keyword {
    order: 1;
  }
  .list-filter__field--type {
    order: 2;
  }
  .list-filter__field--water {
    order: 3;
  }
  .list-filter__field--date {
    order: 4;
  }
  .list-filter__field--region {
    order: 5;
  }
  .list-filter__field--keyword .list-filter__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .list-filter__label {
    flex: 0 0 auto;
    width: auto;
    font-size: 16px;
    font-weight: 600;
  }
  .list-filter__control {
    width: 100%;
    height: 44px;
    font-size: 16px;
  }
  .list-filter__range, .list-filter__selects {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 8px;
  }
  .list-filter__selects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .list-filter__control--date, .list-filter__select,
  .list-filter .multi-select {
    width: 100%;
    flex-basis: auto;
  }
  .list-filter__actions {
    order: 6;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-top: 19px;
    border-top: 1px solid #d6e0eb;
  }
  .list-filter__actions--desktop {
    display: none;
  }
  .list-filter__actions--mobile {
    display: grid;
  }
  .list-filter--merge .list-filter__row--simple {
    --merge-action-width: clamp(80px, 24%, 180px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    padding: 0 calc(var(--merge-action-width) + 10px) 0 0;
    border: 0;
  }
  .list-filter--merge .list-filter__row--simple > .list-filter__select,
  .list-filter--merge .list-filter__row--simple > .list-filter__selects,
  .list-filter--merge .list-filter__row--simple > .list-filter__field,
  .list-filter--merge .list-filter__row--simple .list-filter__control {
    width: 100%;
  }
  .list-filter--merge .list-filter__actions {
    position: absolute;
    inset: 0 0 0 auto;
    width: var(--merge-action-width);
    padding: 0;
    border: 0;
  }
  .list-filter--merge .list-button {
    height: 100%;
  }
  .segmented-control {
    height: 44px;
    max-width: 100%;
    overflow: hidden;
  }
  .segmented-control__item {
    min-width: 0;
    width: 80px;
    padding: 0 8px;
    font-size: 16px;
  }
  .multi-select__button {
    height: 44px;
    font-size: 16px;
  }
  .multi-select__panel {
    position: static;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
    padding: 14px;
    box-shadow: none;
  }
  .multi-select__item {
    font-size: 14px;
  }
  .list-button {
    width: 100%;
    min-width: 0;
    height: 48px;
    font-size: 17px;
  }
  .list-button--reset {
    order: -1;
  }
  .list-results__count {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .pagination {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }
  .pagination__control {
    min-width: 62px;
    grid-row: 1;
  }
  .pagination__control--prev {
    justify-self: end;
  }
  .pagination__control--next {
    justify-self: start;
  }
  .pagination__control--first, .pagination__control--prev, .pagination__control--next, .pagination__control--last {
    font-size: 0;
  }
  .pagination__list {
    grid-column: 1/-1;
    grid-row: 2;
    justify-content: center;
    gap: 8px;
  }
  .pagination__list li:nth-child(n+6):nth-child(-n+8) { /*kjg*/
    display: none;
  }
}
.detail-page__body {
  gap: 48px;
}

.detail-section {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.detail-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.detail-heading__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: url("../assets/images/icon-detail-heading.svg") center/20px 20px no-repeat;
}

.detail-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.detail-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  color: #333333;
  font-size: 17px;
  line-height: 1.3;
}
.detail-table th,
.detail-table td {
  height: 46px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: middle;
  word-break: keep-all;
}
.detail-table th {
  padding-left: 32px;
  background: #fcf8f0;
  color: #333333;
  font-weight: 600;
}
.detail-table td {
  background: #ffffff;
  font-weight: 400;
}

.detail-table__link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.detail-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #111111;
  font-size: 24px;
  line-height: 1.4;
  word-break: keep-all;
}

.detail-section > .detail-modal__intro {
  margin-bottom: 40px;
  grid-template-columns: 550px minmax(0, 1fr);
}

.detail-check-results .data-table-wrap {
  --data-table-min-width: 760px;
}

.detail-tabs {
  display: flex;
  margin-bottom: 32px;
}

.detail-tab {
  flex: 1 1 0;
  min-width: 0;
  height: 56px;
  padding: 0 16px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  color: #464c53;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  word-break: keep-all;
  transition: background-color 140ms ease, color 140ms ease;
}
.detail-tab + .detail-tab {
  margin-left: -1px;
}
.detail-tab:first-child {
  border-radius: 8px 0 0 8px;
}
.detail-tab:last-child {
  border-radius: 0 8px 8px 0;
}
.detail-tab:hover, .detail-tab:focus-visible {
  background: #e5e5e5;
}
.detail-tab.is-active {
  position: relative;
  z-index: 1;
  background: #3359bf;
  color: #ffffff;
}

.detail-tabpanel {
  min-height: 138px;
}

.detail-modal[hidden] {
  display: none;
}

.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 71px 16px 32px;
  overflow-y: auto;
}

.detail-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.detail-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100vw - 32px);
  max-height: min(751px, 100vh - 96px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #b1b8be;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 10px 3px rgba(0, 0, 0, 0.1);
}
.detail-modal__dialog--wide {
  width: min(1120px, 100vw - 32px);
}

.detail-modal__header {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: #f0f0f0;
}

.detail-modal__title {
  color: #1e2124;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
}

.detail-modal__close {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: url("../assets/images/icon-modal-close.svg") center/16px 16px no-repeat;
}

.detail-modal__content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 20px 6px;
}

.detail-modal__intro {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.detail-modal__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.detail-modal__media img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.detail-modal__summary {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-modal__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.detail-modal__heading span {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: url("../assets/images/icon-detail-heading.svg") center/20px 20px no-repeat;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 8px;
  border-top: 2px solid rgba(181, 188, 206, 0.7);
}
.summary-list div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: start;
}
.summary-list dt,
.summary-list dd {
  padding-block: 6px;
  font-size: 17px;
  line-height: 1.3;
  word-break: keep-all;
}
.summary-list dt {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #464c53;
  font-weight: 600;
}
.summary-list dt::before {
  content: "";
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.46);
}
.summary-list dd {
  padding-left: 8px;
  color: #111111;
}
.summary-list .summary-list__item--responsive {
  display: none;
}

.info-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  color: #333333;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 28px;
}
.info-table th,
.info-table td {
  height: 46px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: middle;
  word-break: keep-all;
}
.info-table th {
  padding-left: 32px;
  background: #fcf8f0;
  color: #333333;
  font-weight: 600;
}
.info-table td {
  background: #ffffff;
}
@media (max-width: 1024px) {
  .info-table.info-table--stack-mobile {
    display: block;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
    line-height: 1.3;
  }
  .info-table.info-table--stack-mobile tbody {
    display: block;
  }
  .info-table.info-table--stack-mobile colgroup {
    display: none;
  }
  .info-table.info-table--stack-mobile tr {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
  }
  .info-table.info-table--stack-mobile th,
  .info-table.info-table--stack-mobile td {
    min-width: 0;
    min-height: 43px;
    height: auto;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 0;
    border-top: 1px solid #ddd;
    word-break: keep-all;
    flex-wrap: wrap;
  }
  .info-table.info-table--stack-mobile tr:first-child > *:first-child,
  .info-table.info-table--stack-mobile tr:first-child > *:first-child + * {
    border-top: 0;
  }
  .info-table.info-table--stack-mobile th {
    padding-left: 12px;
    word-break: normal;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 767px) {
  .info-table.info-table--stack-mobile tr {
    grid-template-columns: 104px minmax(0, 1fr);
  }
  .info-table.info-table--stack-mobile .form-number-group {
    gap: 4px;
  }
  .info-table.info-table--field-mobile {
    --field-mobile-label-gap: 5px;
    --field-mobile-set-gap: 16px;
    border: 0;
    background: transparent;
  }
  .info-table.info-table--field-mobile tbody {
    display: block;
  }
  .info-table.info-table--field-mobile tr {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .info-table.info-table--field-mobile th,
  .info-table.info-table--field-mobile td {
    width: 100%;
    min-height: 0;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .info-table.info-table--field-mobile th {
    color: #333333;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .info-table.info-table--field-mobile td {
    color: #111111;
  }
  .info-table.info-table--field-mobile th {
    margin-bottom: var(--field-mobile-label-gap);
  }
  .info-table.info-table--field-mobile td + th {
    margin-top: var(--field-mobile-set-gap);
  }
  .info-table.info-table--field-mobile tr + tr {
    margin-top: var(--field-mobile-set-gap);
  }
  .info-table.info-table--field-mobile td:has(.form-field__control) {
    padding: 0;
  }
  .info-table.info-table--field-mobile .form-field {
    gap: 8px;
  }
  .info-table.info-table--field-mobile .form-input-action,
  .info-table.info-table--field-mobile .form-number-group {
    gap: 8px;
  }
  .info-table.info-table--field-mobile .form-field__guide {
    margin-top: 6px;
  }
}
.detail-modal .data-table-wrap {
  --data-table-min-width: 760px;
  overflow-x: auto;
}
.detail-modal .data-table {
  min-width: var(--data-table-min-width);
}

.detail-modal__footer {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: #ffffff;
}

.detail-modal__button {
  width: 200px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c0c0c0;
  border-radius: 8px;
  background: #ffffff;
  color: #333333;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
}
.detail-modal__button:hover, .detail-modal__button:focus-visible {
  background: #f5f7fb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.detail-modal__button--primary {
  border-color: #2f66c5;
  background: #2f66c5;
  color: #ffffff;
  font-weight: 700;
}
.detail-modal__button--primary:hover, .detail-modal__button--primary:focus-visible {
  border-color: #0030af;
  background: #0030af;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 48, 175, 0.18);
}

.detail-modal__footer:has(.detail-modal__button + .detail-modal__button) .detail-modal__button {
  flex: 0 1 200px;
}

.detail-map {
  align-self: stretch;
  width: 100%;
  max-width: none;
  aspect-ratio: 1240/618;
  overflow: hidden;
  background: #f5f7fb;
}
.detail-map img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.detail-actions {
  display: flex;
  justify-content: center;
}

.detail-list-button {
  min-width: 200px;
  padding: 0 16px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c0c0c0;
  border-radius: 8px;
  background: #ffffff;
  color: #333333;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  transition: background-color 140ms ease, box-shadow 140ms ease;
}
.detail-list-button:hover, .detail-list-button:focus-visible {
  background: #f5f7fb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.detail-mobile-list {
  display: none;
}

@media (max-width: 1024px) {
  .detail-table-wrap {
    display: none;
  }
  .detail-mobile-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 10px;
    border-top: 2px solid rgba(181, 188, 206, 0.7);
    border-bottom: 2px solid rgba(181, 188, 206, 0.7);
    color: #464c53;
    font-size: 17px;
    line-height: 1.3;
  }
  .detail-mobile-list--panel {
    padding: 12px 10px;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-color: #ddd;
    background: #fafafa;
  }
  .detail-mobile-list__item {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .detail-mobile-list dt {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-block: 6px;
    color: #111111;
    font-weight: 600;
    word-break: keep-all;
  }
  .detail-mobile-list dt::before {
    content: "";
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.46);
  }
  .detail-mobile-list dd {
    padding: 6px 0 6px 8px;
    word-break: keep-all;
  }
  .detail-mobile-list a {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .detail-modal__dialog {
    width: calc(100vw - 30px);
    max-width: 600px;
  }
  .detail-modal__dialog--wide {
    width: calc(100vw - 30px);
    max-width: 740px;
  }
  .detail-modal__intro {
    grid-template-columns: 1fr;
  }
  .detail-modal__media {
    width: min(100%, 428px);
    margin: 0 auto;
  }
  .summary-list .summary-list__item--responsive {
    display: grid;
  }
  .detail-modal__table-wrap {
    display: none;
  }
  .detail-modal .data-table-wrap {
    display: block;
  }
  .detail-section > .detail-modal__intro {
    margin-bottom: 0;
    grid-template-columns: 1fr;
  }
  .info-table th {
    padding-left: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .detail-mobile-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 24px;
         column-gap: 24px;
    row-gap: 12px;
    align-items: start;
  }
  .detail-section > .detail-modal__intro .detail-modal__media {
    width: min(100%, 540px);
    margin: 0 auto 20px;
  }
}
@media (max-width: 767px) {
  .detail-page .subpage__inner {
    width: 100%;
    padding: 16px 16px 32px;
  }
  .detail-page .subpage__body {
    gap: 32px;
    padding-top: 20px;
  }
  .detail-heading {
    gap: 6px;
    font-size: 20px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }
  .detail-photo-placeholder {
    font-size: 18px;
  }
  .detail-heading__icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .detail-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .detail-tab {
    height: 52px;
    margin-left: 0;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 17px;
  }
  .detail-tab + .detail-tab {
    margin-left: 0;
  }
  .detail-tab:first-child, .detail-tab:last-child {
    border-radius: 8px;
  }
  .detail-tabpanels {
    margin-top: 0;
  }
  .detail-tabpanel {
    min-height: 420px;
  }
  .detail-modal {
    padding: 41px 15px 24px;
  }
  .detail-modal__dialog {
    max-height: calc(100vh - 82px);
  }
  .detail-modal__header {
    padding: 16px 20px;
  }
  .detail-modal__content {
    padding: 12px;
  }
  .detail-modal__intro {
    gap: 20px;
    margin-bottom: 0;
  }
  .detail-modal__media {
    width: 100%;
  }
  .detail-section > .detail-modal__intro .detail-modal__media {
    width: min(100%, 540px);
    margin: 0 auto 12px;
  }
  .detail-modal__summary {
    gap: 10px;
  }
  .summary-list {
    padding: 6px;
  }
  .summary-list div {
    display: flex;
    flex-direction: column;
  }
  .summary-list dt,
  .summary-list dd {
    padding-block: 6px;
  }
  .summary-list dd {
    padding-left: 8px;
  }
  .detail-modal__footer {
    min-height: 84px;
    padding: 16px 32px;
  }
  .detail-modal__button {
    width: 100%;
  }
  .detail-modal__footer:has(.detail-modal__button + .detail-modal__button) .detail-modal__button {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
  }
  .detail-modal__heading {
    gap: 6px;
    font-size: 20px;
    letter-spacing: 0;
  }
  .detail-modal__heading span {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .detail-map {
    aspect-ratio: 1240/618;
  }
  .detail-list-button {
    width: 100%;
  }
  .summary-list .summary-list__item--responsive {
    display: flex;
    flex-direction: column;
  }
  .info-table {
    font-size: 15px;
  }
  .info-table th {
    padding-left: 24px;
  }
}
.mt0 {
  margin-top: 0 !important;
}

.mypage-page {
  background: #ffffff;
}
.mypage-page__header {
  margin-bottom: 32px;
}
.mypage-page__body {
  gap: 0;
}

.mypage-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.mypage-side-nav {
  overflow: hidden;
  border: 1px solid #dedfe5;
  border-radius: 8px;
  background: #ffffff;
}
.mypage-side-nav__title {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border-bottom: 1px solid #8a949e;
  background: #2f63b7;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.mypage-side-nav__list {
  display: flex;
  flex-direction: column;
}
.mypage-side-nav__link {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid #dedfe5;
  color: #111111;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  word-break: keep-all;
  transition: background-color 140ms ease, color 140ms ease;
}
li:last-child .mypage-side-nav__link {
  border-bottom: 0;
}
.mypage-side-nav__link:hover, .mypage-side-nav__link:focus-visible {
  background: #f5f7fb;
}
.mypage-side-nav__link.is-active {
  background: #f0f7fc;
  color: #0030af;
}
.mypage-side-nav__link.is-active::after {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: currentColor;
  -webkit-mask: url("../assets/images/icon-breadcrumb-arrow.svg") center/contain no-repeat;
  mask: url("../assets/images/icon-breadcrumb-arrow.svg") center/contain no-repeat;
}

.mypage-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.mypage-content-title {
  margin: 0 0 32px;
  color: #111111;
  font-size: 36px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mypage-mobile-nav {
  display: none;
}

.mypage-list-results .data-table-wrap {
  --data-table-min-width: 952px;
}

.mypage-detail-sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mypage-detail-section .detail-heading {
  margin-bottom: 10px;
}
.mypage-detail-section .info-table {
  margin-bottom: 0;
}

.mypage-target-results .data-table-wrap {
  --data-table-min-width: 952px;
}

.mypage-file-box {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  font-size: 17px;
  line-height: 1.5;
}

.mypage-file-box__label {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 600;
  word-break: keep-all;
}

.mypage-file-box__label {
  gap: 4px;
}
.mypage-file-box__label span {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: url("../assets/images/icon-download.svg") center/17px 14px no-repeat;
}

.mypage-file-box__file {
  color: #284177;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mypage-file-box__file {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mypage-content .data-table {
  font-size: 16px;
}

@media (max-width: 1024px) {
  .mypage-page__header {
    margin-bottom: 20px;
  }
  .mypage-layout {
    display: block;
  }
  .mypage-side-nav {
    display: none;
  }
  .mypage-content-title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: -0.01em;
  }
  .mypage-mobile-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 20px;
  }
  .mypage-mobile-nav__link {
    min-width: 0;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f0f0f0;
    color: #464c53;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
    word-break: keep-all;
    transition: background-color 140ms ease, color 140ms ease;
  }
  .mypage-mobile-nav__link:hover,
  .mypage-mobile-nav__link:focus-visible {
    background: #e5e5e5;
  }
  .mypage-mobile-nav__link.is-active {
    background: #284177;
    color: #ffffff;
  }
  .mypage-detail-sections {
    gap: 32px;
  }
  .mypage-detail-section .detail-heading {
    margin-bottom: 10px;
  }
  .mypage-detail-page .info-table--stack-mobile {
    display: block;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
    line-height: 1.3;
  }
  .mypage-detail-page .info-table--stack-mobile tbody {
    display: block;
  }
  .mypage-detail-page .info-table--stack-mobile colgroup {
    display: none;
  }
  .mypage-detail-page .info-table--stack-mobile tr {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
  }
  .mypage-detail-page .info-table--stack-mobile th,
  .mypage-detail-page .info-table--stack-mobile td {
    min-height: 43px;
    height: auto;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 0;
    border-top: 1px solid #ddd;
    word-break: keep-all;
  }
  .mypage-detail-page .info-table--stack-mobile tr:first-child > *:first-child,
  .mypage-detail-page .info-table--stack-mobile tr:first-child > *:first-child + * {
    border-top: 0;
  }
  .mypage-detail-page .info-table--stack-mobile th {
    padding-left: 12px;
  }
  .mypage-file-box {
    flex-wrap: wrap;
    gap: 6px 16px;
    padding: 12px;
  }
  .mypage-file-box__file {
    flex: 1 1 100%;
  }
  .mypage-target-results .mobile-list__item {
    min-height: 0;
  }
}
@media (max-width: 767px) {
  .mypage-page .subpage__inner {
    width: 100%;
    padding: 16px 16px 32px;
  }
  .mypage-list-results .mobile-list__item {
    min-height: 204px;
  }
  .mypage-list-results .pagination {
    grid-template-columns: repeat(2, auto);
  }
  .mypage-detail-sections {
    gap: 32px;
  }
}
.search-results-page {
  background: #ffffff;
}

.search-results-hero {
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7fc;
}

.search-results-search-wrap {
  position: relative;
  width: min(884px, 100vw - 64px);
  z-index: 2;
}

.search-results-search {
  width: 100%;
  height: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px 24px;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding: 0 32px;
  border: 1px solid #0030af;
  border-radius: 999px;
  background: #ffffff;
}

.search-results-search__input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.search-results-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
}

.search-results-search__clear,
.search-results-search__submit {
  background-position: center;
  background-repeat: no-repeat;
}

.search-results-search__clear {
  grid-column: 2;
  width: 16px;
  height: 16px;
  background-image: url("../assets/images/icon-clear-circle.svg");
  background-size: 16px 16px;
}

.search-results-search__submit {
  grid-column: 3;
  width: 24px;
  height: 24px;
  background-image: url("../assets/images/icon-search-primary.svg");
  background-size: 24px 24px;
}

.search-results-search__recent {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 12px);
  z-index: 3;
  box-shadow: 0 14px 32px rgba(40, 44, 55, 0.14);
}

.search-results-page__inner {
  width: min(100% - 64px, 1240px);
  margin: 0 auto;
  padding: 40px 0 64px;
}

.search-results-summary {
  margin-bottom: 40px;
  color: #1e2124;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
}

.search-results-summary strong {
  color: #0b50d0;
}

.search-results-panel[hidden] {
  display: none;
}

.search-results-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.search-section {
  width: 100%;
}

.search-section__header {
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(181, 188, 206, 0.7);
}

.search-section__title {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  color: #111111;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
}

.search-section__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 24px;
  height: 24px;
  background: url("../assets/images/icon-search-section-chevron.svg") center/20px 20px no-repeat;
}

.search-section__title strong {
  font-weight: inherit;
}

.search-sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
}

.search-sort__item {
  position: relative;
  padding: 0 4px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #1e2124;
  font-size: 17px;
  line-height: 1.5;
  transition: background-color 140ms ease;
}

.search-sort__item + .search-sort__item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  width: 1px;
  height: 16px;
  background: #8a949e;
  transform: translateY(-50%);
}

.search-sort__item:hover,
.search-sort__item:focus-visible {
  background: #eeeeee;
}

.search-sort__item.is-active {
  background: #eef2f7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.search-sort__item.is-active:hover,
.search-sort__item.is-active:focus-visible {
  background: #eef2f7;
}

.search-result-list {
  width: calc(100% - 40px);
  margin: 16px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-result-item {
  min-width: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #dedfe5;
}

.search-result-item__title {
  color: #1e2124;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 700;
}

.search-result-item__title a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-underline-offset: 3px;
}

.search-result-item__title a:hover,
.search-result-item__title a:focus-visible {
  text-decoration: underline;
}

.search-result-item__mark {
  color: #0b50d0;
  background: #d8e5fd;
}

.search-result-item__path {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  color: #1e2124;
  font-size: 17px;
  line-height: 1.5;
}

.search-result-item__path-separator {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: url("../assets/images/icon-breadcrumb-arrow.svg") center/contain no-repeat;
  /* -webkit-mask: url("../assets/images/icon-breadcrumb-arrow.svg") center/10px 10px no-repeat; */
  /* mask: url("../assets/images/icon-breadcrumb-arrow.svg") center/10px 10px no-repeat; */
}

.search-result-item__date {
  display: block;
  margin-top: 8px;
  color: #464c53;
  font-size: 17px;
  line-height: 1.5;
}

.search-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.search-more-button {
  width: 200px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c0c0c0;
  border-radius: 8px;
  background: #ffffff;
  color: #333333;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  transition: background-color 140ms ease, box-shadow 140ms ease;
}

.search-more-button:hover,
.search-more-button:focus-visible {
  background: #f5f7fb;
  box-shadow: 0 4px 10px rgba(40, 65, 119, 0.12);
}

.search-image-grid {
  width: calc(100% - 40px);
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.search-image-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #1e2124;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}

.search-image-card img {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .search-results-page__inner {
    width: min(100% - 32px, 1240px);
    padding: 32px 0 56px;
  }
  .search-results-summary {
    margin-bottom: 28px;
    font-size: 22px;
    white-space: normal;
  }
  .search-section__header {
    flex-direction: column;
    gap: 8px;
  }
  .search-result-list,
  .search-image-grid {
    width: 100%;
  }
  .search-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .search-results-hero {
    height: 112px;
  }
  .search-results-search-wrap {
    width: 90vw;
    max-width: 884px;
  }
  .search-results-search {
    width: 100%;
    height: 68px;
    grid-template-columns: minmax(0, 1fr) 16px 24px;
    -moz-column-gap: 12px;
         column-gap: 12px;
    padding: 0 24px;
  }
  .search-results-search__recent {
    top: calc(100% + 8px);
  }
  .search-results-search__input {
    font-size: 16px;
  }
  .search-results-summary {
    font-size: 19px;
  }
  .search-results-panel {
    gap: 32px;
  }
  .search-section__title {
    font-size: 20px;
    white-space: normal;
  }
  .search-sort__item,
  .search-result-item__path,
  .search-result-item__date {
    font-size: 15px;
  }
  .search-result-item__title {
    font-size: 17px;
  }
  .search-result-item__title a {
    white-space: normal;
  }
  .search-image-grid {
    gap: 16px;
  }
  .search-image-card a {
    font-size: 16px;
  }
  .search-more-button {
    width: 180px;
    height: 52px;
font-size: 16px;
  }
}
.join-page {
  background: #ffffff;
}

.join-page__body {
  gap: 28px;
}

.join-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 680px;
  margin: 0 auto;
}

.join-agreement-form {
  max-width: 1080px;
}

.join-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  padding: 28px 32px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fbfcff;
  box-shadow: 4px 4px 10px rgba(65, 77, 109, 0.03);
}

.join-card .form-field__control {
  height: 48px;
  padding: 0 12px;
  font-size: 17px;
}

.join-card .form-field__control--file {
  height: auto;
  min-height: 48px;
  padding: 11px 16px;
}

.join-member-card {
  background: #ffffff;
}

.join-confirm-card {
  padding: 28px 24px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fbfcff;
  box-shadow: 4px 4px 10px rgba(65, 77, 109, 0.03);
}

.join-confirm-list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
}

.join-confirm-list__item {
  min-width: 0;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 12px;
  padding: 0 0 16px;
}
.join-confirm-list__item:last-child {
  padding-bottom: 0;
}

.join-confirm-list__item--wide {
  grid-column: 1/-1;
}

.join-confirm-list dt,
.join-confirm-list dd {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  word-break: keep-all;
}

.join-confirm-list dt {
  color: #464c53;
  font-weight: 500;
}

.join-confirm-list dd {
  color: #111111;
  font-weight: 400;
}

.join-confirm-card .info-box {
  margin-top: 8px;
}

.join-file-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.join-agreement-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.join-agreement-body {
  min-width: 0;
  max-height: 300px;
  overflow: auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
}
.join-agreement-body h4 {
  margin: 24px 0 8px;
  color: #111111;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}
.join-agreement-body h4:first-child {
  margin-top: 0;
}
.join-agreement-body p,
.join-agreement-body ol,
.join-agreement-body ul {
  margin: 0 0 14px;
}
.join-agreement-body ol,
.join-agreement-body ul {
  padding-left: 1.25em;
}
.join-agreement-body li + li {
  margin-top: 6px;
}

.join-agreement-table-wrap {
  min-width: 0;
  width: 100%;
  overflow-x: auto;
  margin: 16px 0;
}

.join-agreement-table {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ddd;
  color: #333333;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}
.join-agreement-table caption {
  caption-side: top;
  padding: 0 0 4px;
  color: #767676;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.join-agreement-table th,
.join-agreement-table td {
  padding: 12px 14px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}
.join-agreement-table tr > :last-child {
  border-right: 0;
}
.join-agreement-table tbody tr:last-child > * {
  border-bottom: 0;
}
.join-agreement-table th {
  background: #f0f7fc;
  color: #111111;
  font-weight: 700;
}
.join-agreement-table td strong {
  font-weight: 700;
  text-decoration: underline;
  font-size: 16px;
}

.join-agreement-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 4px;
}

.join-agreement-control-label {
  margin: 0;
  color: #111111;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.join-agreement-control-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.join-choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  cursor: pointer;
}
.join-choice input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  accent-color: #339cde;
}

.join-actions {
  gap: 12px;
}

@media (max-width: 1024px) {
  .join-card {
    padding: 24px;
  }
  .join-confirm-card {
    padding: 24px;
  }
  .join-confirm-list__item {
    grid-template-columns: 112px minmax(0, 1fr);
  }
}
@media (max-width: 767px) {
  .join-page .subpage__inner {
    width: min(100% - 32px, 1280px);
    padding-right: 0;
    padding-left: 0;
  }
  .join-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 16px;
  }
  .join-confirm-card {
    padding: 20px 16px;
  }
  .join-confirm-list {
    grid-template-columns: 1fr;
  }
  .join-confirm-list__item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 0 0 16px;
  }
  .join-confirm-list dt,
  .join-confirm-list dd {
    font-size: 16px;
  }
  .join-confirm-card .info-box {
    margin-top: 8px;
  }
  .join-agreement-list {
    gap: 20px;
  }
  .join-agreement-body {
    max-height: 260px;
    padding: 16px;
    font-size: 15px;
  }
  .join-agreement-controls {
    align-items: flex-end;
    flex-direction: column;
  }
  .join-choice {
    font-size: 16px;
  }
  .join-choice input {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
  .join-agreement-control-label {
    font-size: 16px;
  }
  .join-actions {
    flex-direction: column;
  }
}
/* ===== KJG joinStep04.jsp 에서 사용하는 CSS 지우지말것 ===== */
.join-complete {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.join-complete__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 56px 48px;
  text-align: center;
  background: #ffffff;
}

.join-complete__check-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #444;
}

.join-complete__check-icon svg {
  width: 28px;
  height: 28px;
}

.join-complete__message {
  font-size: 26px;
  font-weight: 700;
  color: #1a1e27;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin: 0;
}

.join-complete__info {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.join-complete__info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #464c53;
}

.join-complete__info-item dt {
  font-weight: 400;
  color: #7a8292;
}

.join-complete__info-item dt::after {
  content: ':';
}

.join-complete__info-item dd {
  margin: 0;
  font-weight: 500;
  color: #1a1e27;
}

.join-complete .info-box {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  color: #1a6bb5;
}

.join-complete .info-box__icon {
  display: none;
}

.join-complete .info-box__text {
  color: #1a6bb5;
  font-size: 14px;
  line-height: 1.8;
}

.join-complete__thanks {
  font-size: 15px;
  color: #464c53;
  margin: 0;
}

@media (max-width: 767px) {
  .join-complete__card {
    padding: 40px 24px;
    gap: 24px;
  }
  .join-complete__message {
    font-size: 22px;
  }
}

.notice-list .data-table-wrap {
  --data-table-min-width: 760px;
}

.notice-attachment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  vertical-align: middle;
}

.notice-badge {
  font-weight: 700;
  color: #333333;
}

@media (max-width: 1024px) {
  .notice-list__meta {
    gap: 4px;
  }
}
.notice-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice-detail__header {
  border-top: 2px solid #466eaf;
  border-bottom: 1px solid #ddd;
}

.notice-detail__title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid #ddd;
}

.notice-detail__title {
  margin: 0;
  color: #111111;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.notice-detail__date {
  color: #767676;
  font-size: 17px;
  line-height: 1.5;
  white-space: nowrap;
}

.notice-detail__files {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 24px;
  background: #fafafa;
}

.notice-detail__files-title {
  margin: 0;
  color: #111111;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.notice-detail__file-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice-detail__file {
  min-width: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  color: #3359bf;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.notice-detail__file:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.notice-detail__file-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-detail__content {
  min-height: 240px;
  padding: 24px 24px 72px;
  border-bottom: 1px solid #ddd;
  color: #111111;
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}

.notice-detail__content p {
  margin: 0;
}

.notice-detail__content p + p {
  margin-top: 24px;
}

.notice-detail__content img {
  margin: 0 auto;
}

.notice-detail__content-placeholder {
  padding-top: 48px;
  text-align: center;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
}

.notice-detail__actions {
  display: flex;
  justify-content: center;
}

.notice-detail__nav {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.notice-detail__nav-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 52px;
  border-top: 1px solid #ddd;
}

.notice-detail__nav-item:first-child {
  border-top: 0;
}

.notice-detail__nav-label {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: #f0f7fc;
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  justify-content: center;
}

.notice-detail__nav-link {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 20px 20px;
  color: #333333;
  font-size: 17px;
  line-height: 1.5;
  transition: background-color 140ms ease, color 140ms ease;
}

.notice-detail__nav-link:hover,
.notice-detail__nav-link:focus-visible {
  background: #f5f7fb;
}

.notice-detail__nav-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #111111;
}

.notice-detail__nav-date {
  color: #767676;
  font-size: 16px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .notice-detail__title-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 16px;
  }
  .notice-detail__title {
    font-size: 21px;
  }
  .notice-detail__files {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }
  .notice-detail__file {
    width: 100%;
    font-size: 16px;
  }
  .notice-detail__content {
    min-height: 220px;
    padding: 20px 16px 56px;
    font-size: 16px;
    line-height: 1.7;
  }
  .notice-detail__content-placeholder {
    padding-top: 32px;
    font-size: 18px;
  }
  .notice-detail__nav-item {
    grid-template-columns: 88px minmax(0, 1fr);
  }
  .notice-detail__nav-label {
    padding: 12px;
    font-size: 15px;
  }
  .notice-detail__nav-link {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 12px;
    font-size: 15px;
  }
  .notice-detail__nav-date {
    font-size: 14px;
  }
  .notice-detail__date {
    font-size: 15px;
  }
}
.faq-page .pagination {
  margin-top: 28px;
}

.faq-tabs {
  margin: 20px 0 14px;
}

.faq-panel {
  min-height: 420px;
}

.faq-list {
  border-top: 2px solid #466eaf;
}

.faq-item {
  background: #ffffff;
}

.faq-item__heading {
  margin: 0;
}

.faq-item__question {
  width: 100%;
  min-height: 56px;
  display: grid;
  grid-template-columns: 44px auto minmax(0, 1fr) 48px;
  align-items: center;
  gap: 10px;
  padding: 14px 10px;
  border: 0;
  border-bottom: 1px solid #ddd;
  background: transparent;
  color: #111111;
  font: inherit;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: background-color 140ms ease;
}
.faq-item__question:hover, .faq-item__question:focus-visible {
  background: #f5f7fb;
}

.faq-item__mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border-radius: 50%;
  background: #339cde;
  color: #ffffff;
  font-family: "Inter", "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.faq-item__category {
  color: #339cde;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.faq-item__title {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.faq-item__icon {
  justify-self: center;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: url("../assets/images/icon-chevron-down.svg") center/28px 28px no-repeat;
  transition: transform 140ms ease;
}
.faq-item__icon img,
.faq-item__icon svg {
  width: 24px;
  height: 24px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0 32px 0 54px;
  background: #f5f5f5;
  color: #111111;
  font-size: 16px;
  line-height: 1.75;
  opacity: 0;
  transition: grid-template-rows 180ms ease, padding 180ms ease, opacity 140ms ease;
}

.faq-item__answer-inner {
  min-height: 0;
  overflow: hidden;
}
.faq-item__answer-inner p {
  margin: 0;
}
.faq-item__answer-inner p + p {
  margin-top: 16px;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
  padding: 24px 32px 28px 54px;
  border-bottom: 1px solid #ddd;
  opacity: 1;
}

@media (max-width: 1024px) {
  .faq-tabs {
    margin-top: 18px;
  }
  .faq-panel {
    min-height: 360px;
  }
}
@media (max-width: 767px) {
  .faq-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 16px 0 12px;
  }
  .faq-tabs .detail-tab {
    height: 48px;
    border-radius: 8px;
    margin-left: 0;
    padding: 0 10px;
    font-size: 15px;
  }
  .faq-panel {
    min-height: 300px;
  }
  .faq-item__question {
    grid-template-columns: 28px minmax(0, 1fr) 40px;
    gap: 8px;
    min-height: 58px;
    padding: 13px 8px;
    font-size: 15px;
  }
  .faq-item__mark {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
  .faq-item__category {
    display: block;
    grid-column: 2;
    font-size: 14px;
  }
  .faq-item__title {
    grid-column: 2;
  }
  .faq-item__icon {
    grid-column: 3;
    grid-row: 1/span 2;
    width: 36px;
    height: 36px;
    background-size: 24px 24px;
  }
  .faq-item__icon img,
  .faq-item__icon svg {
    width: 22px;
    height: 22px;
  }
  .faq-item__answer {
    padding: 0 16px;
    font-size: 15px;
    line-height: 1.7;
  }
  .faq-item__answer-inner p + p {
    margin-top: 12px;
  }
  .faq-item.is-open .faq-item__answer {
    padding: 18px 16px;
  }
}

.safety-network {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-top: 3px solid #339cde;
  padding-top: 40px;
}

.safety-network-hero {
  text-align: center;
  word-break: keep-all;
}

.safety-network-hero__title {
  margin: 0;
  color: #111111;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
}

.safety-network__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.safety-network-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  box-shadow: none;
  border: none;
  position: relative;
}

.safety-network-card__title {
  margin: 0;
  color: #e9e9e9;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  word-break: keep-all;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  opacity: 0.7;
}

.safety-network__placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(229, 234, 247, 0.42), rgba(247, 247, 247, 0.76));
}

.safety-network__placeholder img,
.safety-network-audience__media img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.safety-network__intro {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 60px;
  border-bottom: 1px solid #ddd;
  color: #333333;
  font-size: 18px;
  line-height: 2;
  word-break: keep-all;
  text-align: center;
}

.safety-network__intro p {
  margin: 0;
}

.safety-network__audiences {
  display: flex;
  flex-direction: column;
}

.safety-network-audience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 492px);
  gap: 40px;
  align-items: center;
  padding: 32px 0;
}

.safety-network-audience:first-child {
  padding-top: 0;
}

.safety-network-audience:nth-of-type(odd) .safety-network-audience__content {
  justify-self: start;
}

.safety-network-audience:nth-of-type(even) {
  grid-template-columns: minmax(320px, 492px) minmax(0, 1fr);
}
.safety-network-audience:nth-of-type(even) .safety-network-audience__content {
  grid-column: 2;
  justify-self: end;
}
.safety-network-audience:nth-of-type(even) .safety-network-audience__media {
  grid-column: 1;
  grid-row: 1;
}

.safety-network-audience__content {
  width: 100%;
  max-width: 84%;
  min-width: 0;
}

.safety-network-audience__title {
  margin: 0 0 16px;
  color: #111111;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 800;
}

.safety-network-audience__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #333333;
  font-size: 18px;
  line-height: 1.75;
  list-style: none;
  word-break: keep-all;
}

.safety-network-audience__list li {
  position: relative;
  padding-left: 14px;
}

.safety-network-audience__list li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #f9b015;
}

.safety-network-audience__media {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(229, 234, 247, 0.38), rgba(247, 247, 247, 0.78));
}

.safety-network__closing {
  margin: 0px auto;
  color: #767676;
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
  max-width: 740px;
  text-align: center;
}

@media (max-width: 1024px) {
  .safety-network {
    gap: 36px;
  }
  .safety-network-hero__title {
    font-size: 24px;
  }
  .safety-network__cards {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .safety-network-card {
    max-width: 400px;
    margin: 0 auto;
  }
  .safety-network-card__title {
    font-size: 15px;
  }
  .safety-network-audience {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 44%);
    gap: 24px;
  }
  .safety-network-audience:nth-of-type(even) {
    grid-template-columns: minmax(260px, 44%) minmax(0, 1fr);
  }
  .safety-network-audience__title {
    font-size: 24px;
  }
  .safety-network-audience__list {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .safety-network {
    gap: 32px;
  }
  .safety-network-hero__title {
    font-size: 20px;
    text-wrap: balance;
  }
  .safety-network__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .safety-network-card {
    min-height: 0;
    gap: 12px;
  }
  .safety-network__placeholder {
    aspect-ratio: 16/9;
  }
  .safety-network__intro {
    font-size: 16px;
    line-height: 1.75;
  }
  .safety-network__closing {
    font-size: 15px;
  }
  .safety-network__intro {
    gap: 22px;
    text-align: left;
  }
  .safety-network-audience {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 0;
  }
  .safety-network-audience:nth-of-type(even) {
    grid-template-columns: 1fr;
  }
  .safety-network-audience:nth-of-type(even) .safety-network-audience__content,
  .safety-network-audience:nth-of-type(even) .safety-network-audience__media {
    grid-column: auto;
    grid-row: auto;
  }
  .safety-network-audience:nth-of-type(even) .safety-network-audience__content {
    justify-self: stretch;
  }
  .safety-network-audience__content {
    max-width: 100%;
  }
  .safety-network-audience__title {
    margin-bottom: 12px;
    font-size: 22px;
  }
  .safety-network-audience__list {
    font-size: 16px;
  }
  .safety-network-audience__media {
    aspect-ratio: 16/9;
    order: -1;
  }
}
.agency-info {
  width: 100%;
}

.agency-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.agency-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px;
  box-shadow: none;
  border: none;
}
.agency-card + .agency-card::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: -20px;
  background: #f0f0f0;
}

.agency-card__media {
  position: relative;
  width: min(100%, 365px);
  aspect-ratio: 365/278;
  margin: 0 auto;
}

.agency-card__thumb {
  position: absolute;
  z-index: 1;
  top: 7.5%;
  left: 4.4%;
  width: 91.2%;
  height: 62.9%;
  -o-object-fit: cover;
     object-fit: cover;
}

.agency-card__frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}

.agency-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.agency-card__title {
  margin: 0;
  color: #111111;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
}

.agency-card__button {
  width: 128px;
  height: 40px;
  font-size: 16px;
}

.agency-card__list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.agency-card__item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e7e7e7;
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
}
.agency-card__item:last-child {
  border-bottom: none;
}

.agency-card__item dt {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #111111;
  font-weight: 700;
  word-break: keep-all;
}

.agency-card__item dt::before {
  content: "";
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: #464c53;
}

.agency-card__item dd {
  min-width: 0;
  margin: 0;
  word-break: keep-all;
}

@media (max-width: 1024px) {
  .agency-card::after {
    display: none;
  }
  .agency-info__grid {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .agency-info__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .agency-card {
    padding: 16px;
  }
  .agency-card__title {
    font-size: 20px;
  }
  .agency-card__item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
    font-size: 15px;
  }
}
@counter-style permit-circled-number {
  system: fixed;
  symbols: "①" "②" "③" "④" "⑤" "⑥" "⑦" "⑧" "⑨" "⑩";
  suffix: " ";
}
.permit-process {
  width: 100%;
}

.permit-process__primary-tabs {
  margin-bottom: 40px;
}

.permit-process__panel[hidden],
.permit-process__content[hidden] {
  display: none;
}

.permit-process__step-tabs {
  display: grid;
  gap: 16px;
  width: 100%;
  margin: 0 auto 32px;
}

.permit-process__step-tabs--license {
  max-width: 900px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.permit-process__step-tabs--report {
  max-width: 442px; /* kjg */
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.permit-process__step-tabs--safe {
  max-width: 1100px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.permit-step-tab {
  min-width: 0;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #ffffff;
  color: #333333;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 400;
  text-align: center;
  word-break: keep-all;
  transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.permit-step-tab:hover,
.permit-step-tab:focus-visible {
  background: #f5f7fb;
  box-shadow: 0 6px 18px rgba(40, 65, 119, 0.08);
}

.permit-step-tab.is-active {
  border-color: #339cde;
  border-width: 2px;
  font-weight: 700;
  color: #339cde;
}

.permit-step-tab__media {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #767676;
}

.permit-step-tab__media img,
.permit-step-tab__media svg {
  width: 54px;
  height: 54px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.permit-step-tab__label {
  min-width: 0;
}

.permit-process__content {
  min-width: 0;
  min-height: 220px;
  padding-top: 32px;
  overflow-x: clip;
}

.permit-content-section {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.permit-content-section + .permit-content-section {
  margin-top: 44px;
}

.permit-content-heading-row {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid rgba(181, 188, 206, 0.7);
  padding-bottom: 16px;
}

.permit-content-heading {
  margin: 0;
  color: #333333;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 700;
  word-break: keep-all;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(181, 188, 206, 0.7);
}

.permit-content-heading-row .permit-content-heading {
  padding-bottom: 0;
  border-bottom: none;
}

.permit-text-list,
.permit-check-list,
.permit-dash-list,
.permit-hangul-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #333333;
  font-size: 17px;
  line-height: 1.7;
  word-break: keep-all;
}

.permit-text-list {
  margin-bottom: 12px;
}

.permit-table-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  color: #333333;
  font-size: 17px;
  line-height: 1.75;
  word-break: keep-all;
}

.permit-check-list {
  font-size: 16px;
  gap: 5px;
  margin-bottom: 10px;
  color: #333333;
}

.permit-text-list > li,
.permit-check-list > li,
.permit-table-list > li,
.permit-dash-list > li,
.permit-hangul-list > li {
  position: relative;
}

.permit-text-list > li {
  padding-left: 14px;
}

.permit-check-list > li {
  padding-left: 20px;
}

.permit-check-list > li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 10px;
  background: url("../assets/images/blt_check.png") center/contain no-repeat;
}

.permit-text-list > li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #f9b015;
}

.permit-dash-list > li {
  padding-left: 14px;
}

.permit-dash-list > li::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
  color: #464c53;
  font-weight: 700;
}

.permit-number-list strong {
  color: #333333;
  font-weight: 700;
}

.permit-flow__body strong {
  color: #333333;
  font-weight: 700;
  font-size: 18px;
}

.permit-text-list strong {
  color: #333333;
  font-weight: 400;
}

.permit-text-list em,
.permit-inner-list em,
.permit-table-list em,
.permit-dash-list em {
  display: block;
  margin-top: 6px;
  color: #767676;
  font-style: normal;
  line-height: 1.7;
}

.permit-text-list em::before,
.permit-inner-list em::before,
.permit-table-list em::before,
.permit-dash-list em::before {
  content: "※";
  margin-right: 4px;
}

.permit-text-list--nested,
.permit-inner-list,
.permit-table-list .permit-table-list,
.permit-dash-list .permit-table-list,
.permit-dash-list .permit-hangul-list {
  margin-top: 8px;
  color: #767676;
}

.permit-note,
.permit-note-inline {
  display: inline-flex;
  align-items: flex-start;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
}

.permit-note {
  margin: 0;
  gap: 6px;
  padding: 6px 14px;
  white-space: nowrap;
  border-radius: 999px;
  background: #f0f0f0;
  color: #767676;
  font-size: 15px;
  font-weight: 700;
}

.permit-note-inline {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  padding: 4px 12px;
}

.permit-note-inline::before {
  content: "-";
  flex: 0 0 auto;
}

.permit-number-list,
.permit-inner-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #333333;
  font-size: 17px;
  line-height: 1.75;
  word-break: keep-all;
  counter-reset: permit-number;
}

.permit-number-list > li,
.permit-inner-list > li {
  position: relative;
  padding-left: 28px;
  counter-increment: permit-number;
}
/*
.permit-number-list > li + li,
.permit-inner-list > li + li {
  margin-top: 10px;
}
*/
.permit-number-list > li::before,
.permit-inner-list > li::before {
  content: counter(permit-number) ")";
  position: absolute;
  top: -1px;
  left: 0;
  color: #333333;
  font-weight: 400;
}

.permit-inner-list {
  margin-top: 10px;
  counter-reset: permit-inner;
}

.permit-inner-list > li {
  padding-left: 24px;
  counter-increment: permit-inner;
}

.permit-inner-list > li::before {
  content: counter(permit-inner, permit-circled-number);
}

.permit-number-list--circled > li {
  padding-left: 24px;
}

.permit-number-list--circled > li::before {
  content: counter(permit-number, permit-circled-number);
}

.permit-inner-list--decimal > li::before {
  content: counter(permit-inner) ".";
}

.permit-info-box {
  margin-top: 12px;
  padding: 48px 24px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #ffffff;
}

.permit-info-box__title {
  margin: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #333333;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
  word-break: keep-all;
  text-align: center;
}

.permit-info-box__title img {
  flex: 0 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.permit-info-box__sub-title {
  margin: 0 0 16px;
  color: #333333;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  word-break: keep-all;
}

.permit-info-box__summary {
  margin: 0 0 18px;
  color: #333333;
  font-size: 17px;
  line-height: 1.65;
  word-break: keep-all;
}

.permit-info-box > :last-child,
.permit-info-box li > :last-child {
  margin-bottom: 0;
}

.permit-download-actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.permit-download-actions a.ui-button,
.permit-download-actions a:link.ui-button,
.permit-download-actions a:visited.ui-button {
  gap: 8px;
  min-width: 300px;
  height: 56px;
  padding: 0 26px;
  border-color: #339cde;
  background: #339cde;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
}

.permit-download-actions a.ui-button:hover,
.permit-download-actions a.ui-button:focus,
.permit-download-actions a.ui-button:focus-visible {
  border-color: #238dcc;
  background: #238dcc;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(51, 156, 222, 0.2);
}

.permit-download-actions .attachment-icon {
  background-image: url("../assets/images/icon-download3.svg");
}

.permit-table-wrap {
  --permit-table-min-width: 760px;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  overflow-x: auto;
}

.permit-table-wrap .data-table {
  min-width: var(--permit-table-min-width);
  border-top: 1px solid #dddddd;
}

.permit-data-table__col--item {
  width: 20%;
}
.permit-data-table__col--type {
  width: 24%;
}
.permit-data-table__col--case {
  width: 34%;
}
.permit-data-table__col--law {
  width: 25%;
}
.permit-data-table__col--department {
  width: 18%;
}
.permit-data-table__col--safe-kind {
  width: 18%;
}
.permit-data-table__col--safe-target {
  width: 30%;
}
.permit-data-table th,
.permit-data-table td {
  height: auto;
  padding: 13px 14px;
  line-height: 1.6;
  vertical-align: middle;
  word-break: keep-all;
  border: 1px solid #dddddd;
}
.permit-data-table th {
  border-bottom: 1px solid #dddddd;
  background: #fcf8f0;
  color: #333333;
}
.permit-data-table tbody td {
  text-align: left;
}
.permit-data-table caption {
  caption-side: top;
  padding: 0 0 4px;
  color: #767676;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}

.permit-info-table {
  margin: 10px 0 0;
}
.permit-info-table__col--label {
  width: 25%;
}
.permit-info-table caption {
  caption-side: top;
  padding: 0 0 4px;
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
}
.permit-info-table td,
.permit-info-table th {
  height: auto;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

.permit-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.permit-flow__item {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  border: 1px solid #e5eaf7;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.permit-flow__item::before {
  content: "";
  position: absolute;
  left: 360px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: #e5eaf7;
}

.permit-flow__item h4 {
  margin: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 20px 20px 20px 36px;
  background: #ffffff;
  color: #333333;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  word-break: keep-all;
}

.permit-flow--safe .permit-flow__item h4 {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
}

.permit-flow__icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 600;
  color: #767676;
}

.permit-flow__icon img,
.permit-flow__icon svg {
  width: 56px;
  height: 56px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.permit-flow__icon--report-accident {
  background-image: url("../assets/images/icon_infor_report_accident.png");
  background-repeat: no-repeat;
  background-size: 64px auto;
  background-position: 0 0;
  width: 64px;
  height: 64px;
}

.permit-flow__icon--report-accident-notice {
  background-position: 0 0;
}

.permit-flow__icon--report-accident-content {
  background-position: 0 -64px;
}

.permit-flow__heading-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.permit-flow__step {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 14px;
  border-radius: 999px;
  background: #339cde;
  color: #ffffff;
  font-family: "Inter", "Pretendard", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.permit-flow__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px 20px;
  color: #333333;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  padding-left: 32px;
}

.permit-flow__body p {
  margin: 0;
}

.permit-flow__body em {
  display: block;
  color: #767676;
  font-style: normal;
}

.permit-flow__body em::before {
  content: "※";
  margin-right: 4px;
}

@media (max-width: 1024px) {
  .permit-process__primary-tabs {
    margin-bottom: 32px;
  }
  .permit-process__step-tabs,
  .permit-process__step-tabs--license,
  .permit-process__step-tabs--report,
  .permit-process__step-tabs--safe {
    max-width: none;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  }
  .permit-step-tab {
    min-height: 150px;
    padding: 22px 14px;
  }
  .permit-flow {
    grid-template-columns: 1fr;
  }
  .permit-flow__item {
    grid-template-columns: 280px minmax(0, 1fr);
  }
  .permit-flow__item::before {
    left: 280px;
  }
}
@media (max-width: 767px) {
  .permit-process__primary-tabs {
    margin-bottom: 28px;
  }
  .permit-process__step-tabs,
  .permit-process__step-tabs--license,
  .permit-process__step-tabs--report,
  .permit-process__step-tabs--safe {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    gap: 12px;
    margin-bottom: 24px;
  }
  .permit-step-tab {
    min-height: 132px;
    gap: 8px;
    padding: 18px 10px;
    font-size: 15px;
  }
  .permit-step-tab__media {
    width: 56px;
    height: 56px;
  }
  .permit-step-tab__media img,
  .permit-step-tab__media svg {
    width: 48px;
    height: 48px;
  }
  .permit-process__content {
    min-height: 180px;
    padding-top: 24px;
  }
  .permit-content-section {
    gap: 14px;
  }
  .permit-content-section + .permit-content-section {
    margin-top: 34px;
  }
  .permit-content-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .permit-content-heading {
    font-size: 22px;
  }
  .permit-text-list,
  .permit-check-list,
  .permit-table-list,
  .permit-dash-list,
  .permit-hangul-list,
  .permit-number-list,
  .permit-inner-list {
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .permit-check-list {
    font-size: 14px;
  }
  .permit-note-inline {
    max-width: 100%;
    white-space: normal;
  }
  .permit-number-list > li,
  .permit-inner-list > li {
    padding-left: 24px;
  }
  .permit-table-wrap {
    --permit-table-min-width: 720px;
  }
  .permit-data-table th,
  .permit-data-table td {
    padding: 11px 12px;
    font-size: 15px;
  }
  .permit-info-table {
    font-size: 15px;
  }
  .permit-info-table th {
    padding-left: 16px;
  }
  .permit-flow__item {
    grid-template-columns: 1fr;
  }
  .permit-flow__item::before {
    left: 16px;
    right: 16px;
    top: 92px;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .permit-flow__item h4 {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
    font-size: 18px;
  }
  .permit-flow--safe .permit-flow__item h4 {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 6px;
  }
  .permit-flow__icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }
  .permit-flow__icon img,
  .permit-flow__icon svg {
    width: 52px;
    height: 52px;
  }
  .permit-flow__icon--report-accident {
    background-size: 60px auto;
  }
  .permit-flow__icon--report-accident-content {
    background-position: 0 -60px;
  }
  .permit-flow__body {
    padding: 16px;
    font-size: 15px;
  }
  .permit-flow__body strong {
    font-size: 16px;
  }
  .permit-info-box {
    padding: 32px 16px;
  }
  .permit-info-box__title {
    flex-direction: column;
    font-size: 22px;
    margin: 0 0 32px;
  }
  .permit-info-box__sub-title {
    font-size: 17px;
  }
  .permit-info-box__summary {
    font-size: 15px;
  }
}

.icon-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.icon-tabs-select {
  display: none;
}

.icon-tab {
  min-width: 0;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #ffffff;
  color: #333333;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 400;
  text-align: center;
  word-break: keep-all;
  transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.icon-tab:hover,
.icon-tab:focus-visible {
  background: #f5f7fb;
  box-shadow: 0 6px 18px rgba(40, 65, 119, 0.08);
}

.icon-tab.is-active {
  border-color: #339cde;
  border-width: 2px;
  color: #339cde;
  font-weight: 700;
}

.icon-tab__media {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 68px;
  border-radius: 8px;
  color: #767676;
  font-size: 15px;
  font-weight: 600;
}

.icon-tab__media img,
.icon-tab__media svg {
  width: 54px;
  height: 54px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon-tab__label {
  min-width: 0;
}

.inspection-guide {
  min-width: 0;
  --inspection-step-indent: 32px;
}

.inspection-guide__tabs {
  margin-bottom: 40px;
}

.inspection-guide__panel[hidden] {
  display: none;
}

.inspection-guide .permit-hangul-list > li > strong {
  color: #333333;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.inspection-guide .permit-hangul-list > li > strong + strong {
  margin-left: 6px;
}

.inspection-guide .permit-hangul-list > li > .dfn {
  position: absolute;
}

.inspection-guide .permit-hangul-list > li > .dfn ~ .permit-note-inline {
  padding-left: 26px;
}

.inspection-guide .permit-hangul-list > li > .dfn_title {
  display: inline-block;
  padding-left: 28px;
}

.inspection-guide .permit-hangul-list > li > .permit-text-list,
.inspection-guide .permit-text-list > li > .permit-dash-list,
.inspection-guide .permit-text-list > li > .permit-number-list,
.inspection-guide .permit-dash-list > li > .permit-number-list {
  margin-top: 16px;
}

.inspection-guide .permit-hangul-list > li > .permit-text-list,
.inspection-guide .permit-hangul-list > li > .permit-dash-list,
.inspection-guide .permit-hangul-list > li > .permit-number-list,
.inspection-guide .permit-hangul-list > li > .permit-table-wrap {
  margin-left: var(--inspection-step-indent);
}

.inspection-guide .permit-hangul-list {
  gap: 24px;
}

.inspection-guide .permit-text-list {
  gap: 20px;
}

.inspection-guide .permit-text-list > li > strong:first-child {
  display: inline-block;
  margin-bottom: 4px;
  color: #333333;
  font-weight: 700;
}

.inspection-guide .permit-number-list--strong > li,
.inspection-guide .permit-number-list--strong > li strong,
.inspection-guide .permit-number-list--strong > li::before {
  color: #333333;
  font-weight: 500;
}

.inspection-guide .permit-number-list--circled > li::before {
  font-weight: 500;
}

.inspection-guide .permit-number-list--label-block > li > strong:first-child,
.inspection-guide .permit-number-list--label-block > li > span {
  display: block;
}

.inspection-guide .permit-number-list--label-block > li > strong:first-child {
  color: #333333;
  font-weight: 700;
}

.inspection-guide .permit-table-wrap {
  margin-top: 14px;
}

.permit-table-wrap--classification {
  --permit-table-min-width: 1180px;
}

.inspection-col--wide {
  width: 60%;
}

.inspection-col--medium {
  width: 35%;
}

.inspection-col--type {
  width: 25%;
}

.inspection-col--method,
.inspection-col--target-example {
  width: 20%;
}

.inspection-col--target-group {
  width: 8%;
}

.inspection-col--target-type {
  width: 7%;
}

.inspection-col--target-subtype {
  width: 23%;
}

.inspection-classification-table th,
.inspection-classification-table td {
  padding: 13px 14px;
}

.facility-type-label {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #333333;
}
.facility-type-label strong {
  font-weight: 600;
}

.facility-sprite-icon {
  --facility-icon-scale: 0.8;
  width: 80px;
  height: 80px;
  display: inline-block;
  flex: 0 0 80px;
  position: relative;
  overflow: hidden;
}
.facility-sprite-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: url("../assets/images/icon_ride.png") no-repeat 0 0;
  transform: scale(var(--facility-icon-scale));
  transform-origin: 0 0;
}
.facility-sprite-icon--ride-a01::before {
  background-position: 0 0;
}
.facility-sprite-icon--ride-a02::before {
  background-position: 0 -100px;
}
.facility-sprite-icon--ride-a03::before {
  background-position: 0 -200px;
}
.facility-sprite-icon--ride-a04::before {
  background-position: 0 -300px;
}
.facility-sprite-icon--ride-a05::before {
  background-position: 0 -400px;
}
.facility-sprite-icon--ride-b01::before {
  background-position: -100px 0;
}
.facility-sprite-icon--ride-b02::before {
  background-position: -100px -100px;
}
.facility-sprite-icon--ride-b03::before {
  background-position: -100px -200px;
}
.facility-sprite-icon--ride-b04::before {
  background-position: -100px -300px;
}
.facility-sprite-icon--ride-b05::before {
  background-position: -100px -400px;
}
.facility-sprite-icon--ride-c01::before {
  background-position: -200px 0;
}
.facility-sprite-icon--ride-c02::before {
  background-position: -200px -100px;
}
.facility-sprite-icon--ride-c03::before {
  background-position: -200px -200px;
}
.facility-sprite-icon--ride-d01::before {
  background-position: -300px 0;
}
.facility-sprite-icon--ride-d02::before {
  background-position: -300px -100px;
}
.facility-sprite-icon--ride-d03::before {
  background-position: -300px -200px;
}

.inspection-guide__actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.inspection-guide__download {
  gap: 8px;
  min-width: 300px;
  height: 56px;
  padding: 0 26px;
  border-color: #339cde;
  background: #339cde;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
}

.inspection-guide__download:hover,
.inspection-guide__download:focus-visible {
  border-color: #238dcc;
  background: #238dcc;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(51, 156, 222, 0.2);
}

.inspection-guide__download .attachment-icon {
  background-image: url("../assets/images/icon-download3.svg");
}

@media (max-width: 1024px) {
  .icon-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .inspection-guide__tabs {
    margin-bottom: 32px;
  }
  .inspection-guide .permit-hangul-list > li > .permit-table-wrap {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .inspection-guide {
    --inspection-step-indent: 16px;
    position: relative;
  }
  .icon-tabs-select {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 18px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #ffffff;
    color: #111111;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    text-align: left;
    margin-bottom: 28px;
  }
  .icon-tabs-select__text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .icon-tabs-select__icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background: url("../assets/images/icon-select-arrow.svg") center/20px 20px no-repeat;
    transition: transform 140ms ease;
  }
  .icon-tabs-select[aria-expanded=true] {
    border-color: #339cde;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .icon-tabs-select[aria-expanded=true] .icon-tabs-select__icon {
    transform: rotate(180deg);
  }
  .inspection-guide__tabs {
    position: absolute;
    z-index: 10;
    top: 55px;
    left: 0;
    right: 0;
  }
  .icon-tabs {
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: none;
    margin-top: -1px;
    border: 1px solid #339cde;
    border-radius: 0 0 10px 10px;
    background: #ffffff;
    box-shadow: 0 10px 18px rgba(40, 44, 55, 0.08);
    overflow: hidden;
  }
  .icon-tabs.is-open {
    display: grid;
  }
  .icon-tab {
    min-height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0 18px;
    border: 0;
    border-top: 1px solid #e5eaf7;
    border-radius: 0;
    background: #ffffff;
    color: #333333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    text-align: left;
    box-shadow: none;
  }
  .icon-tab:first-child {
    border-top: 0;
  }
  .icon-tab:first-child.is-active {
    border-top: 0;
  }
  .icon-tab:hover,
  .icon-tab:focus-visible {
    background: #f5f7fb;
    box-shadow: none;
  }
  .icon-tab.is-active {
    border-color: #e5eaf7;
    border-width: 1px 0 0;
    background: #f0f7ff;
    color: #238dcc;
  }
  .icon-tab__media {
    display: none;
  }
  .icon-tab__media img,
  .icon-tab__media svg {
    width: 50px;
    height: 50px;
  }
  .facility-sprite-icon {
    --facility-icon-scale: 0.56;
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
  .inspection-guide__actions {
    margin-top: 22px;
  }
  .inspection-guide__download {
    width: 100%;
    min-width: 0;
  }
}
.accident-case {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: stretch;
  min-width: 0;
}
.accident-case + .accident-case {
  margin-top: 12px;
}

.accident-case__media {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  min-height: 180px;
  border: 1px solid #ddd;
  border-right: 0;
}
.accident-case__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5px;
}

.accident-case__table {
  margin-bottom: 0;
  table-layout: auto;
}
.accident-case__table th,
.accident-case__table td {
  height: auto;
  padding: 12px 16px;
  line-height: 1.6;
}
.accident-case__table th {
  width: 148px;
}

.accident-case__prevention {
  margin: 0;
  white-space: pre-line;
}

@media (max-width: 1024px) {
  .accident-case {
    grid-template-columns: 1fr;
  }
  .accident-case__media {
    min-height: auto;
    aspect-ratio: 16/7;
    border-right: 1px solid #ddd;
    border-bottom: 0;
  }
  .accident-case__table th {
    width: auto;
  }
}
@media (max-width: 767px) {
  .accident-case + .accident-case {
    margin-top: 16px;
  }
  .accident-case__media {
    aspect-ratio: 16/9;
  }
  .accident-case__table th,
  .accident-case__table td {
    padding: 10px 12px;
    line-height: 1.55;
  }
}
.law-link-list {
  --icon-link-sprite-image: url('../assets/images/icon-law-sprite.png');
  --icon-link-sprite-size: 380px 228px;
}

.law-link-list .icon-link-card__media,
.law-link-list .icon-link-card__sprite {
  width: 76px;
  height: 76px;
}

.law-link-list .icon-link-card__media {
  flex-basis: 76px;
}

.icon-link-card__sprite--law-tourism-act {
  --icon-link-sprite-position: 0 0;
}

.icon-link-card__sprite--law-tourism-decree {
  --icon-link-sprite-position: -76px 0;
}

.icon-link-card__sprite--law-tourism-rule {
  --icon-link-sprite-position: -152px 0;
}

.icon-link-card__sprite--law-public-use {
  --icon-link-sprite-position: -228px 0;
}

.icon-link-card__sprite--law-serious-accident {
  --icon-link-sprite-position: -304px 0;
}

.icon-link-card__sprite--law-tax-special {
  --icon-link-sprite-position: 0 -76px;
}

.icon-link-card__sprite--law-capital-region {
  --icon-link-sprite-position: -76px -76px;
}

.icon-link-card__sprite--law-occupational-safety {
  --icon-link-sprite-position: -152px -76px;
}

.icon-link-card__sprite--law-electric-utility {
  --icon-link-sprite-position: -228px -76px;
}

.icon-link-card__sprite--law-parking {
  --icon-link-sprite-position: -304px -76px;
}

.icon-link-card__sprite--law-copyright {
  --icon-link-sprite-position: 0 -152px;
}

.icon-link-card__sprite--law-fire-facility {
  --icon-link-sprite-position: -76px -152px;
}

.icon-link-card__sprite--reserve1 {
  --icon-link-sprite-position: -152px -152px;
}

.icon-link-card__sprite--reserve2 {
  --icon-link-sprite-position: -228px -152px;
}

.icon-link-card__sprite--reserve3 {
  --icon-link-sprite-position: -304px -152px;
}
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.gap-0 {
  gap: 0 !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.column-gap-0 {
  -moz-column-gap: 0 !important;
       column-gap: 0 !important;
}

.m-1 {
  margin: 4px !important;
}

.mt-1 {
  margin-top: 4px !important;
}

.mr-1 {
  margin-right: 4px !important;
}

.mb-1 {
  margin-bottom: 4px !important;
}

.ml-1 {
  margin-left: 4px !important;
}

.mx-1 {
  margin-right: 4px !important;
  margin-left: 4px !important;
}

.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.p-1 {
  padding: 4px !important;
}

.pt-1 {
  padding-top: 4px !important;
}

.pr-1 {
  padding-right: 4px !important;
}

.pb-1 {
  padding-bottom: 4px !important;
}

.pl-1 {
  padding-left: 4px !important;
}

.px-1 {
  padding-right: 4px !important;
  padding-left: 4px !important;
}

.py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.gap-1 {
  gap: 4px !important;
}

.row-gap-1 {
  row-gap: 4px !important;
}

.column-gap-1 {
  -moz-column-gap: 4px !important;
       column-gap: 4px !important;
}

.m-2 {
  margin: 8px !important;
}

.mt-2 {
  margin-top: 8px !important;
}

.mr-2 {
  margin-right: 8px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.ml-2 {
  margin-left: 8px !important;
}

.mx-2 {
  margin-right: 8px !important;
  margin-left: 8px !important;
}

.my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.p-2 {
  padding: 8px !important;
}

.pt-2 {
  padding-top: 8px !important;
}

.pr-2 {
  padding-right: 8px !important;
}

.pb-2 {
  padding-bottom: 8px !important;
}

.pl-2 {
  padding-left: 8px !important;
}

.px-2 {
  padding-right: 8px !important;
  padding-left: 8px !important;
}

.py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.gap-2 {
  gap: 8px !important;
}

.row-gap-2 {
  row-gap: 8px !important;
}

.column-gap-2 {
  -moz-column-gap: 8px !important;
       column-gap: 8px !important;
}

.m-3 {
  margin: 12px !important;
}

.mt-3 {
  margin-top: 12px !important;
}

.mr-3 {
  margin-right: 12px !important;
}

.mb-3 {
  margin-bottom: 12px !important;
}

.ml-3 {
  margin-left: 12px !important;
}

.mx-3 {
  margin-right: 12px !important;
  margin-left: 12px !important;
}

.my-3 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.p-3 {
  padding: 12px !important;
}

.pt-3 {
  padding-top: 12px !important;
}

.pr-3 {
  padding-right: 12px !important;
}

.pb-3 {
  padding-bottom: 12px !important;
}

.pl-3 {
  padding-left: 12px !important;
}

.px-3 {
  padding-right: 12px !important;
  padding-left: 12px !important;
}

.py-3 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.gap-3 {
  gap: 12px !important;
}

.row-gap-3 {
  row-gap: 12px !important;
}

.column-gap-3 {
  -moz-column-gap: 12px !important;
       column-gap: 12px !important;
}

.m-4 {
  margin: 16px !important;
}

.mt-4 {
  margin-top: 16px !important;
}

.mr-4 {
  margin-right: 16px !important;
}

.mb-4 {
  margin-bottom: 16px !important;
}

.ml-4 {
  margin-left: 16px !important;
}

.mx-4 {
  margin-right: 16px !important;
  margin-left: 16px !important;
}

.my-4 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.p-4 {
  padding: 16px !important;
}

.pt-4 {
  padding-top: 16px !important;
}

.pr-4 {
  padding-right: 16px !important;
}

.pb-4 {
  padding-bottom: 16px !important;
}

.pl-4 {
  padding-left: 16px !important;
}

.px-4 {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

.py-4 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.gap-4 {
  gap: 16px !important;
}

.row-gap-4 {
  row-gap: 16px !important;
}

.column-gap-4 {
  -moz-column-gap: 16px !important;
       column-gap: 16px !important;
}

.m-5 {
  margin: 20px !important;
}

.mt-5 {
  margin-top: 20px !important;
}

.mr-5 {
  margin-right: 20px !important;
}

.mb-5 {
  margin-bottom: 20px !important;
}

.ml-5 {
  margin-left: 20px !important;
}

.mx-5 {
  margin-right: 20px !important;
  margin-left: 20px !important;
}

.my-5 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.p-5 {
  padding: 20px !important;
}

.pt-5 {
  padding-top: 20px !important;
}

.pr-5 {
  padding-right: 20px !important;
}

.pb-5 {
  padding-bottom: 20px !important;
}

.pl-5 {
  padding-left: 20px !important;
}

.px-5 {
  padding-right: 20px !important;
  padding-left: 20px !important;
}

.py-5 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.gap-5 {
  gap: 20px !important;
}

.row-gap-5 {
  row-gap: 20px !important;
}

.column-gap-5 {
  -moz-column-gap: 20px !important;
       column-gap: 20px !important;
}

.m-6 {
  margin: 24px !important;
}

.mt-6 {
  margin-top: 24px !important;
}

.mr-6 {
  margin-right: 24px !important;
}

.mb-6 {
  margin-bottom: 24px !important;
}

.ml-6 {
  margin-left: 24px !important;
}

.mx-6 {
  margin-right: 24px !important;
  margin-left: 24px !important;
}

.my-6 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.p-6 {
  padding: 24px !important;
}

.pt-6 {
  padding-top: 24px !important;
}

.pr-6 {
  padding-right: 24px !important;
}

.pb-6 {
  padding-bottom: 24px !important;
}

.pl-6 {
  padding-left: 24px !important;
}

.px-6 {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

.py-6 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.gap-6 {
  gap: 24px !important;
}

.row-gap-6 {
  row-gap: 24px !important;
}

.column-gap-6 {
  -moz-column-gap: 24px !important;
       column-gap: 24px !important;
}

.m-7 {
  margin: 32px !important;
}

.mt-7 {
  margin-top: 32px !important;
}

.mr-7 {
  margin-right: 32px !important;
}

.mb-7 {
  margin-bottom: 32px !important;
}

.ml-7 {
  margin-left: 32px !important;
}

.mx-7 {
  margin-right: 32px !important;
  margin-left: 32px !important;
}

.my-7 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.p-7 {
  padding: 32px !important;
}

.pt-7 {
  padding-top: 32px !important;
}

.pr-7 {
  padding-right: 32px !important;
}

.pb-7 {
  padding-bottom: 32px !important;
}

.pl-7 {
  padding-left: 32px !important;
}

.px-7 {
  padding-right: 32px !important;
  padding-left: 32px !important;
}

.py-7 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.gap-7 {
  gap: 32px !important;
}

.row-gap-7 {
  row-gap: 32px !important;
}

.column-gap-7 {
  -moz-column-gap: 32px !important;
       column-gap: 32px !important;
}

.m-8 {
  margin: 40px !important;
}

.mt-8 {
  margin-top: 40px !important;
}

.mr-8 {
  margin-right: 40px !important;
}

.mb-8 {
  margin-bottom: 40px !important;
}

.ml-8 {
  margin-left: 40px !important;
}

.mx-8 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

.my-8 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.p-8 {
  padding: 40px !important;
}

.pt-8 {
  padding-top: 40px !important;
}

.pr-8 {
  padding-right: 40px !important;
}

.pb-8 {
  padding-bottom: 40px !important;
}

.pl-8 {
  padding-left: 40px !important;
}

.px-8 {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.py-8 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.gap-8 {
  gap: 40px !important;
}

.row-gap-8 {
  row-gap: 40px !important;
}

.column-gap-8 {
  -moz-column-gap: 40px !important;
       column-gap: 40px !important;
}

.m-9 {
  margin: 48px !important;
}

.mt-9 {
  margin-top: 48px !important;
}

.mr-9 {
  margin-right: 48px !important;
}

.mb-9 {
  margin-bottom: 48px !important;
}

.ml-9 {
  margin-left: 48px !important;
}

.mx-9 {
  margin-right: 48px !important;
  margin-left: 48px !important;
}

.my-9 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.p-9 {
  padding: 48px !important;
}

.pt-9 {
  padding-top: 48px !important;
}

.pr-9 {
  padding-right: 48px !important;
}

.pb-9 {
  padding-bottom: 48px !important;
}

.pl-9 {
  padding-left: 48px !important;
}

.px-9 {
  padding-right: 48px !important;
  padding-left: 48px !important;
}

.py-9 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.gap-9 {
  gap: 48px !important;
}

.row-gap-9 {
  row-gap: 48px !important;
}

.column-gap-9 {
  -moz-column-gap: 48px !important;
       column-gap: 48px !important;
}

.m-10 {
  margin: 64px !important;
}

.mt-10 {
  margin-top: 64px !important;
}

.mr-10 {
  margin-right: 64px !important;
}

.mb-10 {
  margin-bottom: 64px !important;
}

.ml-10 {
  margin-left: 64px !important;
}

.mx-10 {
  margin-right: 64px !important;
  margin-left: 64px !important;
}

.my-10 {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

.p-10 {
  padding: 64px !important;
}

.pt-10 {
  padding-top: 64px !important;
}

.pr-10 {
  padding-right: 64px !important;
}

.pb-10 {
  padding-bottom: 64px !important;
}

.pl-10 {
  padding-left: 64px !important;
}

.px-10 {
  padding-right: 64px !important;
  padding-left: 64px !important;
}

.py-10 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.gap-10 {
  gap: 64px !important;
}

.row-gap-10 {
  row-gap: 64px !important;
}

.column-gap-10 {
  -moz-column-gap: 64px !important;
       column-gap: 64px !important;
}

.imageAtchmnflArea{
  margin-top: 10px;
  display: flex;
  gap: 10px;
  width: 150px;
} /* 260617 HWS */

/* 카카오톡 상담 플로팅 버튼 */
.kakao-talk-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.20));
    transition: transform 0.18s ease, filter 0.18s ease;
}
.kakao-talk-btn:hover,
.kakao-talk-btn:focus {
    transform: translateY(-4px);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
    outline: none;
}
.kakao-talk-btn:focus-visible {
    outline: 3px solid #191919;
    outline-offset: 3px;
    border-radius: 50px;
}
.kakao-talk-btn__circle {
    width: 60px;
    height: 60px;
    background-color: #FEE500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kakao-talk-btn__circle svg {
    width: 34px;
    height: 34px;
    display: block;
}
.kakao-talk-btn__label {
    background-color: #FEE500;
    color: #191919;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    padding: 4px 9px;
    border-radius: 10px;
    letter-spacing: -0.3px;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .kakao-talk-btn {
        bottom: 20px;
        right: 16px;
    }
    .kakao-talk-btn__circle {
        width: 52px;
        height: 52px;
    }
    .kakao-talk-btn__circle svg {
        width: 30px;
        height: 30px;
    }
}

/* ============================================================
   메인 포털 공지 팝업
   ============================================================ */
.portal-main-popup-layer {
  display: none;
  pointer-events: none;
}
.portal-main-popup-layer.is-active {
  display: block;
}

.portal-main-popup {
  display: none;
  position: fixed;
  pointer-events: auto;
  flex-direction: column;
  overflow: hidden;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  border: 1px solid #b1b8be;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.portal-main-popup.is-open {
  display: flex;
}
.portal-main-popup.is-centered {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.portal-main-popup__header {
  min-height: 56px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}

.portal-main-popup__title {
  margin: 0;
  color: #1e2124;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  word-break: keep-all;
}

.portal-main-popup__close {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: url("../assets/images/icon-modal-close.svg") center/16px 16px no-repeat;
}

.portal-main-popup__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 20px 24px;
  touch-action: pan-y;
}

.portal-main-popup__content {
  color: #333333;
  font-size: 15px;
  line-height: 1.7;
  word-break: break-word;
  white-space: pre-line;
}
.portal-main-popup__content img {
  max-width: 100%;
  height: auto;
  display: block;
}

.portal-main-popup__footer {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  border-top: 1px solid #e8e8e8;
  background: #fafafa;
}

.portal-main-popup__chk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #555555;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
}
.portal-main-popup__chk input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #2f66c5;
}

.portal-main-popup__btn {
  min-width: 72px;
  height: 36px;
  padding: 0 16px;
  border: 1px solid #c0c0c0;
  border-radius: 8px;
  background: #ffffff;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.portal-main-popup__btn:hover,
.portal-main-popup__btn:focus-visible {
  background: #f5f7fb;
  border-color: #2f66c5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .portal-main-popup__header {
    padding: 12px 16px;
  }
  .portal-main-popup__title {
    font-size: 16px;
  }
  .portal-main-popup__body {
    padding: 16px;
  }
  .portal-main-popup__footer {
    flex-wrap: wrap;
    padding: 12px 16px;
  }
  .portal-main-popup__btn {
    margin-left: auto;
  }
}