@charset "UTF-8";
/* Responsive Design Variables */
:root {
  /* Breakpoints */
  --mobile: 320px;
  --tablet: 768px;
  --desktop: 1024px;
  --lg-desktop: 1240px;
  /* Container max-widths */
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1200px;
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  /* Typography */
  --font-family-primary: "Pretendard GOV", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1.5rem;
  --font-size-lg: 1.7rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-mobile-xs: 0.75rem;
  --font-size-mobile-sm: 1.1rem;
  --font-size-mobile-base: 1.3rem;
  --font-size-mobile-lg: 1.5rem;
  /* Text Colors */
  --text-color-black: #1D1D1D;
  --text-color-primary: #1764dc; /* 기본 텍스트 색상 */
  --text-color-secondary: #717171; /* 보조 텍스트 색상 */
  --text-color-tertiary: #555; /* 3차 텍스트 색상 */
  --text-color-quaternary: #8e8e8e; /* 4차 텍스트 색상 */
  --text-color-quinary: #e0e0e0; /* 5차 텍스트 색상 */
  --text-color-senary: #f8f8f8; /* 6차 텍스트 색상 */
  --text-color-septenary: #fafafa; /* 7차 텍스트 색상 */
  --text-color-octonary: #fafafa; /* 8차 텍스트 색상 */
  --text-color-nonary: #fafafa; /* 9차 텍스트 색상 */
  --text-color-denary: #fafafa; /* 10차 텍스트 색상 */
  /* Colors */
  --color-primary: #1764DC;
  --color-primary-dark: #2563eb;
  --color-secondary: #17A595;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  /* input height */
  --input-height: 4rem;
  /* Border Colors */
  --border-color: #c6c6c6;
  --border-color-active: #3b82f6;
  --border-color-hover: #3b82f6;
  --border-color-focus: #3b82f6;
  --border-color-disabled: #e0e0e0;
  --border-color-error: #ef4444;
  --border-color-success: #10b981;
  --border-color-warning: #f59e0b;
  --border-color-info: #3b82f6;
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  /* gutter */
  --gutter-sm: 1rem;
  --gutter-md: 2rem;
  --gutter-lg: 3rem;
  --gutter-xl: 4rem;
  --gutter-2xl: 5rem;
  --gutter-3xl: 6rem;
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 10px;
}

/* 전체 스크롤바 영역 */
::-webkit-scrollbar {
  width: 5px; /* 세로 스크롤바 너비 */
  height: 5px; /* 가로 스크롤바 높이 */
}

/* 스크롤바 트랙 (배경) */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

/* 스크롤바 핸들 (움직이는 부분) */
::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 5px;
}

/* 마우스 호버 시 스크롤바 핸들 */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.34;
  color: var(--text-color-black);
  background-color: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: block;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  color: inherit;
  background: none;
  border: none;
}

button,
select { /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

em {
  font-style: normal;
}

[hidden] {
  display: none;
}

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

.container {
  margin: 0 auto;
  max-width: var(--container-xl);
}

.md-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-block {
    display: block;
  }
}

.svg-icon {
  forced-color-adjust: none;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  display: inline-flex;
  transition: all 0.5s;
}

.ico-layer {
  -webkit-mask-image: url("/UII/images/mn/ico-layer.svg");
  mask-image: url("/UII/images/mn/ico-layer.svg");
  width: 2.7rem;
  height: 2.7rem;
  background: linear-gradient(to bottom, #3658D3, #17A595);
}

.ico-map {
  -webkit-mask-image: url("/UII/images/mn/ico-map.svg");
  mask-image: url("/UII/images/mn/ico-map.svg");
  width: 1.7rem;
  height: 1.7rem;
  background-color: #000;
}

.ico-distance {
  -webkit-mask-image: url("/UII/images/mn/ico-distance.svg");
  mask-image: url("/UII/images/mn/ico-distance.svg");
  width: 2rem;
  height: 2rem;
  background-color: #000;
}

.ico-distance2 {
  -webkit-mask-image: url("/UII/images/mn/ico-distance-2.svg");
  mask-image: url("/UII/images/mn/ico-distance-2.svg");
  width: 3.2rem;
  height: 3.2rem;
  background-color: #000;
}

.ico-area {
  -webkit-mask-image: url("/UII/images/mn/ico-area.svg");
  mask-image: url("/UII/images/mn/ico-area.svg");
  width: 3.2rem;
  height: 3.2rem;
  background-color: #000;
}

.ico-radius {
  -webkit-mask-image: url("/UII/images/mn/ico-radius.svg");
  mask-image: url("/UII/images/mn/ico-radius.svg");
  width: 3.2rem;
  height: 3.2rem;
  background-color: #000;
}

.ico-search {
  -webkit-mask-image: url("/UII/images/mn/ico-search.svg");
  mask-image: url("/UII/images/mn/ico-search.svg");
  width: 1.8rem;
  height: 1.8rem;
  background-color: #fff;
}

.ico-reset {
  -webkit-mask-image: url("/UII/images/mn/ico-reset.svg");
  mask-image: url("/UII/images/mn/ico-reset.svg");
  width: 2rem;
  height: 2rem;
  background-color: #555;
}

.ico-info {
  -webkit-mask-image: url("/UII/images/mn/ico-info.svg");
  mask-image: url("/UII/images/mn/ico-info.svg");
  width: 1.8rem;
  height: 1.8rem;
  background-color: #C6C6C6;
}

.ico-back {
  -webkit-mask-image: url("/UII/images/mn/ico-back.svg");
  mask-image: url("/UII/images/mn/ico-back.svg");
  width: 2.4rem;
  height: 2.4rem;
  background-color: rgba(142, 142, 142, 0.5);
}

.ico-close {
  -webkit-mask-image: url("/UII/images/mn/ico-close.svg");
  mask-image: url("/UII/images/mn/ico-close.svg");
  width: 2.4rem;
  height: 2.4rem;
  background-color: rgba(142, 142, 142, 0.5);
}

.ico-close2 {
  -webkit-mask-image: url("/UII/images/mn/ico-close2.svg");
  mask-image: url("/UII/images/mn/ico-close2.svg");
  width: 2.4rem;
  height: 2.4rem;
  background-color: #fff;
}

.ico-close-bold {
  -webkit-mask-image: url("/UII/images/mn/ico-close-white.svg");
  mask-image: url("/UII/images/mn/ico-close-white.svg");
  width: 2.4rem;
  height: 2.4rem;
  background-color: #fff;
}

.ico-zoom-in {
  -webkit-mask-image: url("/UII/images/mn/ico-zoom-in.svg");
  mask-image: url("/UII/images/mn/ico-zoom-in.svg");
  width: 3.2rem;
  height: 3.2rem;
  background-color: #000;
}

.ico-zoom-out {
  -webkit-mask-image: url("/UII/images/mn/ico-zoom-out.svg");
  mask-image: url("/UII/images/mn/ico-zoom-out.svg");
  width: 3.2rem;
  height: 3.2rem;
  background-color: #000;
}

.ico-arrow-down {
  -webkit-mask-image: url("/UII/images/mn/ico-arrow-down.svg");
  mask-image: url("/UII/images/mn/ico-arrow-down.svg");
  width: 2rem;
  height: 2rem;
  background-color: #000;
}

.ico-legend-mobile {
  -webkit-mask-image: url("/UII/images/mn/ico-legend-mobile.svg");
  mask-image: url("/UII/images/mn/ico-legend-mobile.svg");
  width: 2rem;
  height: 2rem;
  background-color: #000;
}

.ico-legend-1 {
  background-image: url("/UII/images/mn/ico-legend-1.png");
  width: 2rem;
  height: 2rem;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.ico-legend-2 {
  background-image: url("/UII/images/mn/ico-legend-2.png");
  width: 2rem;
  height: 2rem;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.ico-legend-3 {
  background-image: url("/UII/images/mn/ico-legend-3.png");
  width: 2rem;
  height: 2rem;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.ico-legend-4 {
  background-image: url("/UII/images/mn/ico-legend-4.png");
  width: 2rem;
  height: 2rem;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.ico-legend-5 {
  background-image: url("/UII/images/mn/ico-legend-5.png");
  width: 2rem;
  height: 2rem;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.ico-legend-6 {
  background-image: url("/UII/images/mn/ico-legend-6.png");
  width: 2rem;
  height: 2rem;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.ico-legend-7 {
  background-image: url("/UII/images/mn/ico-legend-7.png");
  width: 2rem;
  height: 2rem;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.ico-pin-1 {
  background-image: url("/UII/images/mn/ico-pin-1.png");
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.ico-pin-2 {
  background-image: url("/UII/images/mn/ico-pin-2.png");
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.ico-pin-3 {
  background-image: url("/UII/images/mn/ico-pin-3.png");
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.ico-pin-3 {
  background-size: cover;
  background-position: 50% 0;
}

.ico-pin-4 {
  background-image: url("/UII/images/mn/ico-pin-4.png");
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
}

.marker {
  width: 4rem;
  height: 4rem;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  --marker-color: currentColor;
  filter: hue-rotate(0deg) saturate(1) brightness(1);
}

.marker[style*="--marker-color"] {
  filter: hue-rotate(0deg) saturate(1) brightness(1);
}

.marker-1 {
  background-image: url("/UII/images/mn/marker-1.png");
}

.marker-2 {
  background-image: url("/UII/images/mn/marker-2.png");
}

.marker-3 {
  background-image: url("/UII/images/mn/marker-3.png");
}

.marker-4 {
  background-image: url("/UII/images/mn/marker-4.png");
}

.marker-5 {
  background-image: url("/UII/images/mn/marker-5.png");
}

.marker-6 {
  background-image: url("/UII/images/mn/marker-6.png");
}

.marker-7 {
  background-image: url("/UII/images/mn/marker-7.png");
}

.marker-8 {
  background-image: url("/UII/images/mn/marker-8.png");
}

.marker-9 {
  background-image: url("/UII/images/mn/marker-9.png");
}

.marker-10 {
  background-image: url("/UII/images/mn/marker-10.png");
}

.marker-11 {
  background-image: url("/UII/images/mn/marker-11.png");
}

.marker-12 {
  background-image: url("/UII/images/mn/marker-12.png");
}

.marker-13 {
  background-image: url("/UII/images/mn/marker-13.png");
}

.marker-14 {
  background-image: url("/UII/images/mn/marker-14.png");
}

.icon-download,
.icon-arrow-right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.icon-download {
  background-image: url("/UII/images/mn/ico-download.png");
  width: 1.8rem;
  height: 1.5rem;
}

.icon-arrow-right {
  background-image: url("/UII/images/mn/ico-arrow-right.png");
  width: 0.9rem;
  height: 1.4rem;
}

.ico-arrow-right2 {
  -webkit-mask-image: url("/UII/images/mn/ico-right-arrow.svg");
  mask-image: url("/UII/images/mn/ico-right-arrow.svg");
  width: 2rem;
  height: 2rem;
  background-color: rgb(23, 100, 220);
}

/* 파일 아이콘 추가 */
.ico-file {
  -webkit-mask-image: url("/UII/images/mn/ico_file.svg");
  mask-image: url("/UII/images/mn/ico_file.svg");
  width: 2.4rem;
  height: 2.4rem;
  background-color: #555;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.form-select {
  color: #1D1D1D;
  width: 100%;
  height: 4rem;
  border-radius: 0.6rem;
  padding: 0 1.5rem;
  padding-right: 4.8rem;
  font-size: 1.4rem;
  border: 1px solid var(--border-color);
  background-color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1.6rem;
  width: 180px;
}

.form-input {
  color: #1D1D1D;
  width: 100%;
  height: 4rem;
  border-radius: 0.6rem;
  padding: 0 1.5rem;
  padding-right: 4.8rem;
  font-size: 1.4rem;
  border: 1px solid var(--border-color);
  background-color: #fff;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1.6rem;
  width: auto;
}

.btn {
  display: inline-flex;
  border: 1px solid #1d1d1d;
  color: #1d1d1d;
  background-color: #fff;
  transition: all 0.3s;
  opacity: 1;
  padding: 1rem 1.6rem;
  border-radius: 0.6rem;
}
.btn:hover {
  opacity: 0.8;
}
.btn:has(i) {
  gap: 0 1rem;
}
@media (max-width: 768px) {
  .btn {
    font-size: 1.2rem;
    padding: 0.7rem 1rem;
    gap: 0 0.5rem;
  }
  .btn i {
    width: 1.3rem;
    height: 1.3rem;
    background-size: cover;
  }
}
.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.modal-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.modal-wrap .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-wrap.is-open {
  display: block;
}
.modal-wrap .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 100rem;
  z-index: 1001;
}
@media (max-width: 768px) {
  .modal-wrap .modal-content {
    max-width: 100%;
    transform: translate(-50%, 0%);
    top: 5%;
    padding: 0 2rem;
  }
}
.modal-wrap .modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  border-radius: 16px 16px 0 0;
  height: 6rem;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .modal-wrap .modal-content .modal-header {
    height: 5rem;
    padding: 0 1.5rem;
  }
}
.modal-wrap .modal-content .modal-header h3 {
  font-size: 2.1rem;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 768px) {
  .modal-wrap .modal-content .modal-header h3 {
    font-size: 1.8rem;
  }
}
.modal-wrap .modal-content .modal-header .btn-close {
  width: 4rem;
  height: 4rem;
}
.modal-wrap .modal-content .modal-body {
  background-color: #fff;
  border-radius: 0 0 16px 16px;
  max-height: 80vh;
  overflow-y: auto;
}
.modal-wrap .modal-content .modal-body .modal-inner {
  padding: 4rem;
}
@media (max-width: 768px) {
  .modal-wrap .modal-content .modal-body .modal-inner {
    padding: 2rem;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
  }
}
.pagination .page-navi {
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
@media (max-width: 768px) {
  .pagination .page-navi {
    order: 1;
  }
}
.pagination .page-navi.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination .page-navi.prev::before {
  display: inline-block;
  content: "";
  width: 9px;
  height: 1.6rem;
  background: url("/UII/images/mn/ico-paging-prev.png") no-repeat center center/contain;
}
.pagination .page-navi.next::after {
  display: inline-block;
  content: "";
  width: 9px;
  height: 1.6rem;
  background: url("/UII/images/mn/ico-paging-next.png") no-repeat center center/contain;
}

.page-links {
  display: flex;
  align-items: center;
  gap: 0 0.8rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .page-links {
    order: 2;
    width: 100%;
  }
}
.page-links .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 0.4rem;
  transition: all 0.3s;
  background-color: #fff;
  font-size: var(--font-size-lg);
  color: var(--text-color-tertiary);
  cursor: pointer;
}
.page-links .page-link:hover, .page-links .page-link:focus {
  background-color: #f1f1f1;
}
.page-links .page-link.active {
  background-color: #000;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 768px) {
  .page-links .page-link {
    width: 3.2rem;
    height: 3.2rem;
    font-size: var(--font-size-md);
  }
  .page-links .page-link:nth-child(n+6) {
    display: none;
  }
}
.page-links .link-dot {
  height: auto;
}

.map-header {
  position: relative;
  z-index: 10;
}

.header-bg {
  position: absolute;
  left: 0;
  top: 10rem;
  width: 100%;
  background: #f0f1f4;
  background-repeat: no-repeat;
  background-position: center center;
  height: 0;
  opacity: 0.5;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 1024px) {
  .header-bg {
    display: none;
  }
}
.header:has(.gnb-lv1:hover) .header-bg {
  opacity: 1;
  visibility: visible;
  height: 31.8rem;
  background-image: url("/UII/images/mn/header-bg.png");
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 1025px) {
  .header:has(.gnb-lv1:hover) .gnb .gnb-lv1 .gnb-submenu {
    opacity: 1;
    visibility: visible;
    height: 31.8rem;
    padding-top: 4rem;
    display: block;
  }
  .header:has(.gnb-lv1:hover) .gnb .gnb-lv1 .gnb-submenu .gnb-submenu-list .gnb-submenu-item {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .header:has(.gnb-lv1:hover) .gnb .gnb-lv1 .gnb-submenu .gnb-submenu-list .gnb-submenu-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .header:has(.gnb-lv1:hover) .gnb .gnb-lv1 .gnb-submenu .gnb-submenu-list .gnb-submenu-item:nth-child(2) {
    transition-delay: 0.2s;
  }
  .header:has(.gnb-lv1:hover) .gnb .gnb-lv1 .gnb-submenu .gnb-submenu-list .gnb-submenu-item:nth-child(3) {
    transition-delay: 0.3s;
  }
}
.header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  height: 10rem;
  padding: 0 6rem;
  z-index: 2;
}
@media (max-width: 1340px) {
  .header-container {
    padding: 0 clamp(2rem, 3.13vw, 6rem);
  }
}
.header-container .logo {
  width: 29.7rem;
  height: 4.7rem;
}
.header-container .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/UII/images/mn/logo.png") no-repeat center center/contain;
}
@media (min-width: 1025px) {
  .header .gnb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .header .gnb .gnb-lv1 {
    position: relative;
  }
  .header .gnb .gnb-lv1 > a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D1D1D;
    font-weight: 700;
    padding: 0 clamp(20px, 2.6vw, 50px);
    font-size: clamp(1.4rem, 1.5vw, 2.1rem);
    height: 10rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .header .gnb .gnb-lv1 > a.current, .header .gnb .gnb-lv1 > a:hover, .header .gnb .gnb-lv1 > a:focus {
    color: #1764dc;
  }
  .header .gnb .gnb-lv1:hover > a {
    color: #1764dc;
  }
  .header .gnb-submenu {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 10;
    height: 0;
    padding-top: 0;
  }
  .header .gnb-submenu .gnb-submenu-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .header .gnb-submenu .gnb-submenu-list .gnb-submenu-item {
    opacity: 0;
    transform: translateY(40px);
    visibility: hidden;
    transition: all 0.1s;
    text-align: center;
  }
  .header .gnb-submenu .gnb-submenu-list .gnb-submenu-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #000000;
    font-size: 19px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .header .gnb-submenu .gnb-submenu-list .gnb-submenu-item a:hover, .header .gnb-submenu .gnb-submenu-list .gnb-submenu-item a:focus {
    color: #1764dc;
  }
  .header .gnb-submenu .gnb-submenu-list .gnb-submenu-item a:hover::after, .header .gnb-submenu .gnb-submenu-list .gnb-submenu-item a:focus::after {
    width: 100%;
  }
  .header .gnb-submenu .gnb-submenu-list .gnb-submenu-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #1764dc;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}

@media (min-width: 1024px) and (max-width: 1340px) {
  .header-right {
    display: none;
  }
}

.mobile-btn-menu {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}
.mobile-btn-menu .mobile-btn-menu__line {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.mobile-btn-menu .mobile-btn-menu__line .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-btn-menu .mobile-btn-menu__line .line:nth-child(1) {
  margin-bottom: 6px;
  transform-origin: center;
}
.mobile-btn-menu .mobile-btn-menu__line .line:nth-child(2) {
  margin-bottom: 6px;
  transform-origin: center;
}
.mobile-btn-menu .mobile-btn-menu__line .line:nth-child(3) {
  transform-origin: center;
}

@media (max-width: 1024px) {
  .mobile-btn-menu {
    display: block;
  }
  .mobile-btn-menu.active .line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-btn-menu.active .line:nth-child(2) {
    opacity: 0;
  }
  .mobile-btn-menu.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .header-container {
    height: 7rem;
    padding: 0 2rem;
  }
  .header-container .logo {
    width: 17rem;
    height: 3.6rem;
  }
  #nav {
    position: fixed;
    width: 100vw;
    left: inherit;
    right: 0;
    transform: translateX(100%);
    top: 70px;
    height: calc(100dvh - 70px);
    background-color: #fff;
    z-index: 1001;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  #nav::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: clamp(170px, 29vw, 350px);
    height: 90%;
    background: linear-gradient(to bottom, #199F96, #345CD0);
    border-radius: 0 0 8rem 0;
  }
  #nav.mobile-active {
    transform: translateX(0);
  }
  #nav .gnb {
    position: relative;
    z-index: 2;
  }
  #nav .gnb .gnb-lv1 {
    display: flex;
    gap: 0 2rem;
    padding: 2rem;
    border: 1px solid #eee;
    border-left: 0;
  }
  #nav .gnb .gnb-lv1 + .gnb-lv1 {
    border-top: 0;
  }
  #nav .gnb .gnb-lv1 > a {
    flex-shrink: 0;
    width: clamp(140px, 29vw, 250px);
    font-size: clamp(1.6rem, 2.5vw, 1.8rem);
    white-space: nowrap;
    color: #fff;
  }
  #nav .gnb .gnb-lv1 .gnb-submenu {
    flex-grow: 1;
  }
  #nav .gnb .gnb-lv1 .gnb-submenu .gnb-submenu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #nav .gnb .gnb-lv1 .gnb-submenu .gnb-submenu-list .gnb-submenu-item a {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
  }
}
.footer {
  background-color: #333a46;
}
.footer-link {
  border-bottom: 1px solid #5c616b;
}
.footer-link .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  justify-content: space-between;
}
@media (max-width: 900px) {
  .footer-link .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.footer-link .link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
  transition: color 0.3s ease;
  border-right: 1px solid #5c616b;
  color: #a7afbe;
  font-size: var(--font-size-lg);
  padding: 2rem 2.5rem;
}
.footer-link .link:first-child {
  border-left: 1px solid #5c616b;
}
@media (max-width: 900px) {
  .footer-link .link:first-child {
    border-left: 0;
  }
}
@media (max-width: 900px) {
  .footer-link .link:not(:last-child) {
    border-bottom: 1px solid #5c616b;
  }
  .footer-link .link:nth-child(2), .footer-link .link:nth-child(4) {
    border-right: 0;
  }
}
.footer-link .link:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-link .link i {
  display: inline-flex;
  width: 1.6rem;
  height: 1.6rem;
  background: url("/UII/images/mn/icon-blank.png") no-repeat center center/contain;
}
@media (max-width: 1240px) {
  .footer-link .link {
    border-left: 0;
  }
}
@media (max-width: 1024px) {
  .footer-link .link {
    font-size: var(--font-size-mobile-base);
    padding: 1.4rem 2rem;
  }
}
@media (max-width: 900px) {
  .footer-link .link {
    padding: 1.4rem 1rem;
  }
  .footer-link .link i {
    width: 1.4rem;
    height: 1.4rem;
    background-size: 100% auto;
  }
}
.footer-content {
  padding: 4rem 0;
}
@media (max-width: 1240px) {
  .footer-content {
    padding-left: var(--gutter-md);
    padding-right: var(--gutter-md);
  }
}
@media (max-width: 768px) {
  .footer-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.footer-content .logo {
  width: 16.3rem;
  height: 4.6rem;
  background: url("/UII/images/mn/logo-footer.png") no-repeat center center/contain;
}
@media (max-width: 1024px) {
  .footer-content .logo {
    width: 12rem;
    height: 3.6rem;
  }
}
.footer-content .ft-info {
  padding: 4rem 0;
  font-size: var(--font-size-lg);
}
@media (max-width: 1024px) {
  .footer-content .ft-info {
    padding: 2rem 0;
    font-size: var(--font-size-mobile-base);
  }
}
@media (max-width: 768px) {
  .footer-content .ft-info {
    font-size: var(--font-size-mobile-base);
  }
}
.footer-content .ft-info .addr {
  color: #a7afbe;
}
.footer-content .ft-info .tel {
  display: flex;
  align-items: center;
  gap: 0 0.8rem;
  color: #a7afbe;
  padding: 2rem 0 1.5rem;
  line-height: 1;
}
@media (max-width: 1024px) {
  .footer-content .ft-info .tel {
    padding: 1rem 0 0.5rem;
  }
}
.footer-content .ft-info .tel strong {
  color: #fff;
  font-weight: 700;
}
.footer-content .ft-info .tel a {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  gap: 0 0.5rem;
  color: #fff;
  font-weight: 700;
}
.footer-content .ft-info .tel a::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: url("/UII/images/mn/ico-tell.png") no-repeat center center/contain;
}
.footer-content .ft-info .mail {
  color: #a7afbe;
}
.footer-content .ft-info .mail strong {
  font-weight: 700;
}
.footer-content .ft-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #5c616b;
  padding-top: 2rem;
}
@media (max-width: 1024px) {
  .footer-content .ft-links {
    flex-direction: column;
    gap: 1rem 0;
  }
}
.footer-content .ft-links-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2rem;
}
@media (max-width: 1024px) {
  .footer-content .ft-links-inner {
    font-size: var(--font-size-mobile-base);
  }
}
@media (max-width: 768px) {
  .footer-content .ft-links-inner {
    font-size: var(--font-size-mobile-sm);
  }
}
.footer-content .ft-links-inner a {
  color: #a7afbe;
}
.footer-content .copyright {
  color: #a7afbe;
}
@media (max-width: 1024px) {
  .footer-content .copyright {
    font-size: var(--font-size-mobile-base);
  }
}
@media (max-width: 768px) {
  .footer-content .copyright {
    font-size: var(--font-size-mobile-sm);
  }
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}
.loading-overlay .spinner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.loading-overlay .spinner .circle {
  width: 90px;
  height: 90px;
  border: 4px solid rgba(255, 255, 255, 0.7);
  border-top: 4px solid #17a496;
  border-radius: 50%;
  box-shadow: 0 0 25px #17a496, 0 0 60px rgba(53, 89, 210, 0.4);
}
.loading-overlay .spinner .glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(to right, #17a496 0%, #3559d2 100%);
  filter: blur(40px);
  z-index: -1;
}
.loading-overlay .spinner p {
  margin-top: 20px;
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 8px #00ffe0, 0 0 20px rgba(0, 255, 224, 0.5);
}

body, html {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.header {
  position: relative;
  z-index: 100;
}

.sublayout__header {
  position: relative;
  height: 25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  transform-origin: center;
}
@media screen and (max-width: 1024px) {
  .sublayout__header {
    height: 22rem;
  }
}
.sublayout .image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 0 0 80px 0;
  overflow: hidden;
}
.sublayout .image-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.sublayout .image-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sublayout__breadcrumb {
  position: absolute;
  top: 4.8rem;
  left: 6rem;
  color: #fff;
  opacity: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .sublayout__breadcrumb {
    top: 4rem;
    left: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .sublayout__breadcrumb {
    top: 2rem;
    left: 2rem;
  }
}
.sublayout__breadcrumb li + li {
  padding-left: 2rem;
  background: url("/UII/images/mn/ico-bread.png") no-repeat 0 50%;
}
.sublayout__breadcrumb .first a {
  display: inline-block;
  padding-left: 1.7rem;
  background: url("/UII/images/mn/ico-home.png") no-repeat 0 50%;
}
.sublayout__breadcrumb a span {
  text-decoration: underline;
}
.sublayout__breadcrumb strong {
  text-decoration: underline;
}
.sublayout__page {
  font-size: 40px;
  font-weight: 700;
  z-index: 2;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .sublayout__page {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .sublayout__page {
    font-size: 2.4rem;
  }
}
.sublayout__desc {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.95;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .sublayout__desc {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .sublayout__desc {
    font-size: 1.4rem;
  }
}
.sublayout__body {
  width: 100%;
  margin: 0 auto;
  padding: 8rem var(--gutter-md) 12rem;
}
.sublayout__title {
  font-weight: 600;
  color: #1d1d1d;
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .sublayout__title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .sublayout__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.sublayout__title._white {
  color: #fff;
}
.sublayout__title._white span::after {
  background-color: #fff;
}
.sublayout__title span {
  display: inline-block;
  position: relative;
  padding-left: 14px;
}
.sublayout__title span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #1764dc;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .sublayout__title span::after {
    width: 6px;
    height: 6px;
  }
}
.sublayout__title .point {
  color: #17a495;
  font-style: normal;
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
.sublayout__title .point b {
  display: inline-block;
  vertical-align: top;
}

.board-list__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .board-list__header {
    margin-bottom: 0.5rem;
  }
}
.board-list__header-info {
  font-size: 1.9rem;
  font-weight: 700;
}
.board-list__header-info b {
  color: var(--text-color-primary);
}
@media (max-width: 768px) {
  .board-list__header-info {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .board-list__file-icon .ico-file {
    width: 1.8rem;
    height: 1.8rem;
    mask-size: 100% 100%;
  }
}
.board-list__body {
  border-top: 2px solid #1d1d1d;
}
.board-list__body table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
@media (max-width: 768px) {
  .board-list__body table colgroup {
    display: none;
  }
}
.board-list__body table thead tr th {
  padding: 1.6rem 0;
  background-color: #f8f8f8;
  font-size: 1.7rem;
}
@media (max-width: 768px) {
  .board-list__body table thead {
    display: none;
  }
}
.board-list__body table tbody tr {
  border-top: 1px solid #c6c6c6;
}
.board-list__body table tbody tr:last-child {
  border-bottom: 1px solid #c6c6c6;
}
.board-list__body table tbody tr td {
  padding: 1.6rem 1rem;
  font-size: var(--font-size-lg);
  color: var(--text-color-tertiary);
  text-align: center;
}
.board-list__body table tbody tr td.text-left {
  text-align: left;
}
.board-list__body table tbody tr td .ellipsis {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}
@media (max-width: 768px) {
  .board-list__body table tbody tr {
    display: block;
    padding: 1rem;
  }
  .board-list__body table tbody tr td {
    display: block;
    text-align: left;
    padding: 0.5rem 0.5rem;
    font-size: 1.3rem;
  }
  .board-list__body table tbody tr td.number {
    display: none;
  }
}
.board-list__body .mobile-label {
  display: none;
  font-weight: 600;
  color: #333;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .board-list__body .mobile-label {
    display: inline;
  }
}

body:has([data-page=islands-status]) {
  background-color: #f3f6f9;
}

/* 무인도서 현황 */
[data-page=islands-status] .image-background::after {
  display: none;
}
[data-page=islands-status] .sublayout__content {
  position: relative;
  margin: 0 -2rem;
  padding: 0 2rem;
}
[data-page=islands-status] .sublayout__content::after {
  content: "";
  position: absolute;
  top: 25.5rem;
  left: 0;
  width: 100%;
  bottom: 23rem;
  background: #3976d6 url("/UII/images/mn/bgImage.png") no-repeat center top;
  border-radius: 24rem 0 0 0;
  overflow: hidden;
  z-index: -1;
}
@media (max-width: 1024px) {
  [data-page=islands-status] .sublayout__content::after {
    display: none;
  }
}
[data-page=islands-status] .sublayout__content .container {
  position: relative;
}

@media (max-width: 1024px) {
  [data-page=islands-status] .sublayout__title._white {
    color: #000;
  }
  [data-page=islands-status] .sublayout__title._white span::after {
    background-color: var(--color-primary);
  }
}

.islands-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 4rem;
}
@media (max-width: 1024px) {
  .islands-status-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
  }
}

.islands-card {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  padding: 5rem 4rem 0;
  height: 46.2rem;
}
@media (max-width: 1024px) {
  .islands-card {
    height: 36.2rem;
    padding: 3rem 2rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  }
}
.islands-card .label {
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 1.5rem;
  font-size: 2.1rem;
}
@media (max-width: 1024px) {
  .islands-card .label {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.islands-card .value-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 6rem;
  font-weight: 700;
}
.islands-card .value-area .value-1 {
  color: var(--text-color-primary);
}
.islands-card .value-area .value-1 em {
  font-weight: 400;
  color: var(--text-color-tertiary);
  font-size: 1.9rem;
}
.islands-card .value-area .value-2 {
  color: #ebebeb;
}
@media (max-width: 1024px) {
  .islands-card .value-area {
    font-size: 4rem;
  }
}
.islands-card .desc {
  color: #8e8e8e;
}
@media (max-width: 1024px) {
  .islands-card .desc {
    font-size: var(--font-size-mobile-base);
  }
}
.islands-card .text {
  font-size: var(--font-size-lg);
  padding-top: 4rem;
}
.islands-card .text em {
  color: var(--text-color-primary);
}
@media (max-width: 1024px) {
  .islands-card .text {
    font-size: var(--font-size-mobile-base);
    padding-top: 2rem;
  }
}
.islands-card .image {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}
.islands-status-grid--1 {
  margin-bottom: 8rem;
}
@media (max-width: 1024px) {
  .islands-status-grid--1 {
    margin-bottom: 4rem;
  }
}

.islands-status-grid--2 .sublayout__title {
  margin-bottom: 6rem;
}
@media (max-width: 1024px) {
  .islands-status-grid--2 .sublayout__title {
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .islands-status-grid--2 .sublayout__title {
    margin-bottom: 2rem;
  }
}

.island-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 4rem;
}
@media (max-width: 1024px) {
  .island-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
  }
}

.island-card {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  padding: 5rem 4rem 5rem;
}
@media (max-width: 1024px) {
  .island-card {
    padding: 3rem 2rem;
  }
}
.island-card .label {
  font-weight: 700;
  line-height: 1;
  font-size: 2.1rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .island-card .label {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}

.label-desc {
  color: var(--text-color-tertiary);
  font-size: var(--font-size-lg);
}
.label-desc.right {
  text-align: right;
}
@media (max-width: 1024px) {
  .label-desc {
    font-size: var(--font-size-mobile-base);
  }
}

.island-count-viewmap {
  text-align: center;
}
@media (max-width: 768px) {
  .island-count-viewmap {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .island-count-viewmap .img {
    display: block;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .island-count-viewmap .img .pc {
    display: none;
  }
}
.island-count-viewmap .img .mobile {
  display: none;
}
@media (max-width: 768px) {
  .island-count-viewmap .img .mobile {
    display: block;
  }
}
.island-count-viewmap div {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .island-count-viewmap div {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .island-count-viewmap div img {
    width: 100%;
  }
}
.island-count-viewmap .label-counting {
  position: absolute;
  box-shadow: 1.37px 3.76px 0px rgba(237, 237, 237, 0.7);
  border: 1px solid #cecece;
  border-radius: 1.6rem;
  padding: 0.8rem 1.5rem;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  font-size: 1.7rem;
  background-color: #fff;
}
.island-count-viewmap .label-counting em {
  color: #17a495;
}
@media (max-width: 768px) {
  .island-count-viewmap .label-counting {
    position: static;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    text-align: center;
    width: 30%;
  }
}
.island-count-viewmap .label-counting--1 {
  top: 13%;
  left: -30%;
}
.island-count-viewmap .label-counting--2 {
  top: 26%;
  left: -25%;
}
.island-count-viewmap .label-counting--3 {
  top: 12%;
  right: -20%;
}
.island-count-viewmap .label-counting--4 {
  top: 39.5%;
  left: -25%;
}
.island-count-viewmap .label-counting--5 {
  top: 52%;
  left: -24%;
}
.island-count-viewmap .label-counting--6 {
  top: 69.5%;
  left: -42%;
}
.island-count-viewmap .label-counting--7 {
  top: 39%;
  right: -32%;
}
.island-count-viewmap .label-counting--8 {
  top: 56.3%;
  right: -34%;
}
.island-count-viewmap .label-counting--9 {
  top: 66%;
  right: -22%;
}
.island-count-viewmap .label-counting--10 {
  top: 79%;
  right: 0;
}
.island-count-viewmap .label-counting--11 {
  bottom: 2.5%;
  left: 41%;
}

.chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: flex-end;
  position: relative;
  gap: 0 3rem;
  padding: 0 2rem;
  height: 44rem;
}
@media (max-width: 768px) {
  .chart {
    gap: 0 1.5rem;
    padding: 0 1rem;
  }
}
.chart .bar-wrapper {
  z-index: 2;
  position: relative;
  text-align: center;
}
.chart .bar-wrapper .percent {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--font-size-lg);
  color: var(--text-color-quaternary);
}
@media (max-width: 768px) {
  .chart .bar-wrapper .percent {
    font-size: 1.4rem !important;
    top: -20px;
  }
}
.chart .bar-wrapper .percent.percent1 {
  color: #13b7a2;
  font-size: 2.1rem;
}
.chart .bar-wrapper .percent.percent2, .chart .bar-wrapper .percent.percent3, .chart .bar-wrapper .percent.percent4, .chart .bar-wrapper .percent.percent5 {
  color: #666;
}
.chart .bar-wrapper .bar {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-weight: 700;
  padding-top: 2rem;
  font-size: 1.9rem;
  height: 100%;
}
@media (max-width: 768px) {
  .chart .bar-wrapper .bar {
    font-size: 1.3rem;
  }
}
.chart .bar-wrapper .bar.bar1 {
  background: #17a495;
  color: #fff;
  height: 37.7rem;
}
.chart .bar-wrapper .bar.bar2 {
  height: 26.7rem;
}
.chart .bar-wrapper .bar.bar3 {
  height: 23.7rem;
}
.chart .bar-wrapper .bar.bar4 {
  height: 15.3rem;
}
.chart .bar-wrapper .bar.bar5 {
  height: 9.6rem;
}
.chart .bar-wrapper .bar.bar2, .chart .bar-wrapper .bar.bar3, .chart .bar-wrapper .bar.bar4, .chart .bar-wrapper .bar.bar5 {
  background: linear-gradient(to bottom, #d2e6ff, #f1f7fe);
  color: #000;
}
.chart .bar-wrapper .distance {
  margin-top: 8px;
  font-size: 1.6rem;
  color: var(--text-color-tertiary);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .chart .bar-wrapper .distance {
    font-size: 1.2rem;
  }
}
.chart .line-wraps {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  bottom: 3rem;
  top: 4rem;
}
@media (max-width: 768px) {
  .chart .line-wraps {
    bottom: 2.2rem;
    top: 4.2rem;
  }
}
.chart .lines {
  height: 0.3rem;
  background: url("/UII/images/mn/repeat-line.png") repeat 0 0;
}

.islands-status-grid--3 {
  margin-top: 4rem;
}
.islands-status-grid--3 .island-card {
  grid-column: 1/-1;
}

.bysize__chart {
  display: grid;
  justify-content: space-between;
  align-items: flex-end;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .bysize__chart {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
  }
}
.bysize__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .bysize__item {
    flex: none;
    width: 100%;
  }
}
.bysize__visual {
  margin-bottom: 1.5rem;
}
.bysize__visual img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .bysize__visual img {
    max-width: 10rem;
  }
}
.bysize__label {
  color: var(--text-color-tertiary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.bysize__count {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1ca7a6;
  margin-bottom: 0.5rem;
}
.bysize__count small {
  font-size: 1.9rem;
  color: var(--text-color-tertiary);
  vertical-align: middle;
}
@media (max-width: 768px) {
  .bysize__count {
    font-size: 1.7rem;
  }
}
.bysize__percent {
  font-size: 4rem;
  font-weight: 700;
  color: #ebebeb;
}
@media (max-width: 768px) {
  .bysize__percent {
    font-size: 1.3rem;
  }
}

body {
  overflow-x: hidden;
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
[data-page=islands-as] .image-background::after {
  display: none;
}

.islands-as-grid-1 .island-as-card {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .islands-as-grid-1 .island-as-card {
    margin-bottom: 3rem;
  }
}
.islands-as-grid-1 .island-as-card:last-child {
  margin-bottom: 0;
}

.island-as-card {
  display: flex;
  position: relative;
  gap: 0 3.3%;
  background-color: #f3f6f9;
  border: 1px solid #e1e1e1;
  padding: 1.5rem;
  border-radius: 1.6rem;
}
@media (max-width: 1024px) {
  .island-as-card {
    flex-direction: column;
    text-align: center;
    padding-bottom: 3rem;
  }
  .island-as-card .thumb {
    width: 100%;
  }
  .island-as-card .details {
    padding-top: 2rem;
  }
}
@media (max-width: 768px) {
  .island-as-card {
    padding: 1.5rem;
  }
}
.island-as-card.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .island-as-card.reverse {
    flex-direction: column;
  }
}
.island-as-card.reverse .details {
  text-align: right;
}
@media (max-width: 1024px) {
  .island-as-card.reverse .details {
    text-align: center;
  }
}
.island-as-card .thumb {
  width: 43.1666%;
}
.island-as-card .thumb img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .island-as-card .thumb {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .island-as-card .thumb {
    width: 100%;
  }
}
.island-as-card .details {
  padding-top: 4.5rem;
}
.island-as-card .details strong {
  display: block;
  font-weight: 700;
  line-height: 1;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 1024px) {
  .island-as-card .details strong {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .island-as-card .details strong {
    font-size: 1.6rem;
  }
}
.island-as-card .details p {
  font-size: var(--font-size-lg);
  color: var(--text-color-tertiary);
  line-height: 1.5;
  letter-spacing: -0.02em;
}
@media (max-width: 1024px) {
  .island-as-card .details p {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .island-as-card .details p {
    font-size: 1.4rem;
  }
  .island-as-card .details p br {
    display: none;
  }
}
.island-as-card .details p span {
  display: block;
  font-size: var(--font-size-base);
  color: var(--text-color-tertiary);
  padding-top: 1.5rem;
}
@media (max-width: 768px) {
  .island-as-card .details p span {
    padding-top: 1rem;
    font-size: var(--font-size-mobile-base);
    padding-top: 1rem;
  }
}
.island-as-card .object {
  position: absolute;
  right: 0;
  bottom: 0;
}
.island-as-card .object img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1240px) {
  .island-as-card .object {
    transform: scale(0.8);
  }
}
@media (max-width: 1024px) {
  .island-as-card .object {
    transform: scale(1);
    position: static;
    text-align: center;
  }
  .island-as-card .object img {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .island-as-card .object {
    display: none;
    transform: scale(0.6);
  }
}

.islands-as-grid-1-1 .object {
  right: 4rem;
  bottom: -5rem;
}

.islands-as-grid-1-2 .object {
  left: 4rem;
  bottom: -5rem;
}

.islands-as-grid-1-3 .object {
  right: 1rem;
  bottom: -6rem;
}

.islands-as-grid-2 {
  position: relative;
  margin-top: 8rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.islands-as-grid-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2rem;
  bottom: 0;
  right: -2rem;
  background-color: #f3f6f9;
  border-radius: 16rem 0 0 0;
  z-index: -1;
}
.islands-as-grid-2 .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
}
@media (max-width: 1024px) {
  .islands-as-grid-2 .container {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
}
@media (max-width: 768px) {
  .islands-as-grid-2 {
    margin-top: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .islands-as-grid-2::before {
    border-radius: 10rem 0 0 0;
  }
}

.island-as-card2 {
  padding: 4rem;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 6rem 0 6rem 0;
}
@media (max-width: 768px) {
  .island-as-card2 {
    padding: 2rem;
    border-radius: 3rem 0 3rem 0;
  }
}
.island-as-card2 .thumb-list {
  display: flex;
  justify-content: center;
  gap: 0 2rem;
  padding-bottom: 3rem;
}
@media (max-width: 768px) {
  .island-as-card2 .thumb-list {
    padding-bottom: 2rem;
    gap: 0 1rem;
  }
}
.island-as-card2 .thumb-list .img img {
  max-width: 100%;
  height: auto;
}
.island-as-card2 .details .subject {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .island-as-card2 .details .subject {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.island-as-card2 .details .desc {
  color: var(--text-color-tertiary);
  letter-spacing: -0.02em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .island-as-card2 .details .desc {
    font-size: 1.4rem;
  }
  .island-as-card2 .details .desc br {
    display: none;
  }
}

.islands-as-grid-3 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 768px) {
  .islands-as-grid-3 {
    padding-top: 4rem;
    padding-bottom: 0;
  }
}
.islands-as-grid-3 .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
}
@media (max-width: 1024px) {
  .islands-as-grid-3 .container {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
}

.island-as-card3,
.island-as-card4 {
  position: relative;
  height: 42rem;
}
@media (max-width: 768px) {
  .island-as-card3,
  .island-as-card4 {
    height: auto;
  }
}
.island-as-card3::after,
.island-as-card4::after {
  display: block;
  position: absolute;
  content: "";
  width: 21.1rem;
  height: 21.1rem;
  background: url("/UII/images/mn/as-rotate.png") no-repeat center center/contain;
  animation: rotate 10s linear infinite;
}
@media (max-width: 1024px) {
  .island-as-card3::after,
  .island-as-card4::after {
    width: 10rem;
    height: 10rem;
    background-size: cover;
  }
}
.island-as-card3 .btn-group,
.island-as-card4 .btn-group {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  display: flex;
  gap: 0 1rem;
}
@media (max-width: 1024px) {
  .island-as-card3 .btn-group,
  .island-as-card4 .btn-group {
    position: static;
    padding-top: 2rem;
  }
}
.island-as-card3 .btn-group .btn,
.island-as-card4 .btn-group .btn {
  display: flex;
  align-items: center;
  gap: 0 0.6rem;
  border: 1px solid #e4e4e4;
  background-color: #fff;
  padding: 0 2.3rem;
  height: 4rem;
  border-radius: 999rem;
}

.island-as-card3 {
  background: url("/UII/images/mn/as-img-1.png") no-repeat center center/100% 100%;
  padding: 15rem 0 0 4rem;
}
@media (max-width: 1024px) {
  .island-as-card3 {
    margin: 0 auto;
    width: 58rem;
  }
}
@media (max-width: 768px) {
  .island-as-card3 {
    width: 100%;
    padding: 25% 2rem 14%;
  }
}
.island-as-card3::after {
  top: -3rem;
  left: -4rem;
  z-index: -1;
}
@media (max-width: 768px) {
  .island-as-card3::after {
    display: none;
  }
}
.island-as-card3 .subject {
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .island-as-card3 .subject {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.island-as-card3 .year {
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 1.7rem;
}
@media (max-width: 1024px) {
  .island-as-card3 .year {
    font-size: 1.4rem;
  }
}

.island-as-card4 {
  background-color: #f0f1f4;
  border: 1px solid #e1e1e1;
  border-radius: 6rem;
  padding: 6rem 4rem 0 4rem;
}
@media (max-width: 1024px) {
  .island-as-card4 {
    padding: 2rem;
    border-radius: 3rem;
    margin: 0 auto;
  }
}
.island-as-card4::after {
  bottom: -10rem;
  right: -12rem;
  z-index: -1;
}
@media (max-width: 1024px) {
  .island-as-card4::after {
    bottom: -2rem;
    right: -2rem;
  }
}
@media (max-width: 768px) {
  .island-as-card4::after {
    display: none;
  }
}
.island-as-card4 .subject {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .island-as-card4 .subject {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .island-as-card4 .subject {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.island-as-card4 .thumb {
  position: relative;
}
.island-as-card4 .thumb .count {
  position: absolute;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  top: 1rem;
  left: 2rem;
  font-size: 12rem;
}
@media (max-width: 1024px) {
  .island-as-card4 .thumb .count {
    font-size: 8rem;
  }
}
@media (max-width: 768px) {
  .island-as-card4 .thumb .count {
    font-size: 6rem;
  }
}

[data-page=islands-guide] .image-background::after {
  display: none;
}

.islands-guide-notice .alert {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  background-color: #f3f6f9;
  padding: 3rem 6rem;
  border-radius: 1.6rem;
  border: 1px solid #e1e1e1;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .islands-guide-notice .alert {
    padding: 3rem;
  }
  .islands-guide-notice .alert .icon {
    width: 6rem;
  }
}
@media (max-width: 768px) {
  .islands-guide-notice .alert {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem 0;
    padding: 2rem;
  }
}
.islands-guide-notice .alert .details .title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .islands-guide-notice .alert .details .title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .islands-guide-notice .alert .details .title {
    font-size: 1.8rem;
  }
}
.islands-guide-notice .alert .details .desc {
  font-size: var(--font-size-lg);
  line-height: 1.5;
  color: var(--text-color-tertiary);
}
@media (max-width: 1024px) {
  .islands-guide-notice .alert .details .desc {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .islands-guide-notice .alert .details .desc {
    font-size: 1.4rem;
  }
}

.islands-guide-read {
  position: relative;
  margin: 8rem -2rem;
  padding: 8rem 0;
}
@media (max-width: 1240px) {
  .islands-guide-read {
    padding: 6rem 2rem;
  }
}
@media (max-width: 768px) {
  .islands-guide-read {
    margin: 4rem -2rem;
    padding: 4rem 0;
  }
}
.islands-guide-read::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2rem;
  bottom: 0;
  right: -2rem;
  background-color: #f3f6f9;
  border-radius: 16rem 0 0 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .islands-guide-read::before {
    border-radius: 8rem 0 0 0;
  }
}

.islands-guide-read .container {
  position: relative;
  overflow: hidden;
}
.islands-guide-card {
  display: flex;
  gap: 0 4rem;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 1.6rem;
  margin-bottom: 3rem;
  padding: 4rem;
}
@media (max-width: 1024px) {
  .islands-guide-card {
    flex-direction: column;
    gap: 1rem 0;
    padding: 2rem;
  }
}
.islands-guide-card:last-child {
  margin-bottom: 0;
}
.islands-guide-card .thumb {
  width: 70rem;
  border: 1px solid #eee;
}
@media (max-width: 1024px) {
  .islands-guide-card .thumb {
    width: 100%;
  }
}
.islands-guide-card .details {
  padding-top: 4rem;
}
@media (max-width: 1024px) {
  .islands-guide-card .details {
    padding-top: 2rem;
  }
}
.islands-guide-card .details .title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .islands-guide-card .details .title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.islands-guide-card .details .title b {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--text-color-primary);
}
@media (max-width: 1024px) {
  .islands-guide-card .details .title b {
    font-size: 4rem;
  }
}
.islands-guide-card .details .desc {
  font-size: var(--font-size-lg);
  line-height: 1.5;
  color: var(--text-color-tertiary);
}
@media (max-width: 1024px) {
  .islands-guide-card .details .desc {
    font-size: 1.5rem;
  }
}
.islands-guide-card .details .desc span {
  color: var(--text-color-primary);
  text-decoration: none;
}

.table-mobile-scroll {
  overflow-x: auto;
  min-height: 0.1rem;
}
.table-mobile-scroll .info-text {
  font-weight: 500;
  color: var(--text-color-tertiary);
  text-align: center;
  margin-bottom: 1rem;
  display: none;
}
@media (max-width: 1024px) {
  .table-mobile-scroll {
    padding: 2rem 0;
  }
  .table-mobile-scroll .info-text {
    display: block;
  }
  .table-mobile-scroll table th,
  .table-mobile-scroll table td {
    white-space: nowrap;
  }
}

.islands-guide-fine .container {
  text-align: center;
}
.islands-guide-fine .container img {
  display: inline-block;
}

.islands-guide-fine-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e1e1e1;
}
.islands-guide-fine-table table thead th {
  background-color: #439cd6;
  color: #fff;
  padding: 1.5rem 0;
  font-weight: 500;
  border-left: 1px solid #cecece;
}
.islands-guide-fine-table table thead th:first-child {
  border-left: 0;
}
.islands-guide-fine-table table tbody tr td {
  border: 1px solid #e1e1e1;
  padding: 1.5rem 0;
  font-weight: 500;
  text-align: center;
}

.sublayout__body:has(.islands-guide-suggest) {
  padding-bottom: 0;
}

.islands-guide-suggest {
  padding-top: 8rem;
  padding-bottom: 8rem;
  margin-top: 8rem;
  background: url("/UII/images/mn/bg-suggest.png") no-repeat center center/cover;
  margin-left: -2rem;
  margin-right: -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.islands-guide-suggest .container {
  position: relative;
}
@media (max-width: 1024px) {
  .islands-guide-suggest {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: 4rem;
  }
}

.islands-map {
  position: relative;
  max-width: 68.8rem;
}
.islands-map .fn-open {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #fc6b88;
  background-color: rgba(252, 107, 136, 0.5);
  width: 5.4rem;
  height: 5.4rem;
}
@media (max-width: 768px) {
  .islands-map .fn-open {
    width: auto;
    height: auto;
    padding: 0.2rem 0.5rem;
    border-radius: 0.4rem;
    background-color: #fc6b88;
  }
}
.islands-map .fn-open:nth-of-type(odd) {
  border-color: #5aa9f3;
  background-color: rgba(90, 169, 243, 0.5);
}
@media (max-width: 768px) {
  .islands-map .fn-open:nth-of-type(odd) {
    background-color: #5aa9f3;
  }
}
.islands-map .fn-open span {
  display: inline-block;
  position: relative;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translate(0%, 0%);
  white-space: nowrap;
  font-weight: 700;
  font-size: 2.1rem;
}
@media (max-width: 768px) {
  .islands-map .fn-open span {
    font-size: 1.1rem;
    opacity: 1;
    color: #fff;
  }
}
.islands-map .fn-open:hover span {
  transform: translate(-100%, -100%);
  opacity: 1;
}
@media (max-width: 768px) {
  .islands-map .fn-open:hover span {
    transform: translate(0%, 0%);
  }
}
.islands-map .fn-1 {
  top: 15%;
  left: 10%;
}
.islands-map .fn-2 {
  top: 23%;
  left: 4%;
}
.islands-map .fn-3 {
  top: 33%;
  left: -1%;
}
.islands-map .fn-4 {
  top: 45%;
  left: 8%;
}
.islands-map .fn-5 {
  top: 66%;
  left: -2%;
}
.islands-map .fn-6 {
  top: 89%;
  left: 1%;
}
.islands-map .fn-7 {
  top: 80%;
  left: 27%;
}
.islands-map .fn-8 {
  top: 81%;
  left: 45%;
}
.islands-map .fn-9 {
  top: 79%;
  left: 60%;
}
.islands-map .fn-10 {
  top: 74%;
  left: 70%;
}

.islands-guide-details {
  position: absolute;
  top: 20%;
  right: 0%;
  width: 100%;
  max-width: 38rem;
}
@media screen and (max-width: 1024px) {
  .islands-guide-details {
    top: 10%;
  }
}
@media screen and (max-width: 768px) {
  .islands-guide-details {
    max-width: 100%;
    display: none;
    top: 0;
  }
  .islands-guide-details.is-open {
    display: block;
  }
}
.islands-guide-details .details-card {
  border: 1px solid #e1e1e1;
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 4rem;
}
@media screen and (max-width: 1024px) {
  .islands-guide-details .details-card {
    padding: 2rem;
  }
}
.islands-guide-details .details-card .btn-close {
  width: 2.4rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: none;
  justify-self: flex-end;
}
.islands-guide-details .details-card .btn-close i {
  background-color: #000;
}
@media screen and (max-width: 1024px) {
  .islands-guide-details .details-card .btn-close {
    opacity: 1;
    visibility: visible;
    display: block;
  }
}
.islands-guide-details .details-card .thumb {
  width: 100%;
  border-radius: 1.6rem;
  overflow: hidden;
}
.islands-guide-details .details-card .thumb img {
  width: 100%;
}
.islands-guide-details .details-card .name {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .islands-guide-details .details-card .name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .islands-guide-details .details-card .name {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .islands-guide-details .details-card .desc {
    font-size: var(--font-size-mobile-sm);
  }
}
.islands-guide-details .details-card .link {
  text-align: right;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .islands-guide-details .details-card .link {
    margin-top: 1rem;
  }
}
.islands-guide-details .details-card .link a {
  display: inline-flex;
  align-items: center;
  gap: 0 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .islands-guide-details .details-card .link a {
    font-size: var(--font-size-mobile-sm);
  }
}
.islands-guide-details .details-card .link a i {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  background: url("/UII/images/mn/icon-blank.png") no-repeat center center/contain;
  transition: all 0.3s ease;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .islands-guide-details .details-card .link a i {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.islands-guide-details .details-card .link a:hover {
  color: var(--text-color-primary);
}
.islands-guide-details .details-card .link a:hover i {
  opacity: 0.8;
}
.islands-guide-details .details-status {
  border: 1px solid #e1e1e1;
  border-radius: 1.6rem;
  padding: 2rem 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .islands-guide-details .details-status {
    gap: 0 2rem;
  }
}
.islands-guide-details .details-status .line {
  height: 28px;
  width: 1px;
  background-color: #e4e4e4;
}
@media screen and (max-width: 768px) {
  .islands-guide-details .details-status .line {
    height: 16px;
  }
}
.islands-guide-details .details-status .status span {
  display: flex;
  align-items: center;
  gap: 0 1.5rem;
  font-weight: 700;
  font-size: var(--font-size-lg);
}
@media screen and (max-width: 768px) {
  .islands-guide-details .details-status .status span {
    font-size: 1.3rem;
    gap: 0 0.5rem;
  }
}
.islands-guide-details .details-status .status span:before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .islands-guide-details .details-status .status span:before {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.islands-guide-details .details-status .available span::before {
  background-color: #3192f1;
}
.islands-guide-details .details-status .not-available span::before {
  background-color: #fc6b88;
}

.islands-guide-fine .table-desc {
  text-align: left;
  font-size: var(--font-size-lg);
  color: var(--text-color-tertiary);
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .islands-guide-fine .table-desc {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .islands-guide-fine .table-desc {
    font-size: 1.2rem;
  }
  .islands-guide-fine .table-desc br {
    display: none;
  }
}
@media (max-width: 1024px) {
  .islands-guide-fine .table-wrap {
    overflow-x: auto;
    width: 100%;
  }
}
.islands-guide-fine table {
  border-collapse: collapse;
  width: 100%;
  white-space: nowrap;
}
.islands-guide-fine table thead th {
  background-color: #439cd6;
  color: #fff;
  padding: 1.5rem 0.5rem;
  font-weight: 500;
  border-left: 1px solid #cecece;
}
@media (max-width: 1024px) {
  .islands-guide-fine table thead th {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .islands-guide-fine table thead th {
    font-size: 1.2rem;
  }
}
.islands-guide-fine table tbody tr td {
  border: 1px solid #e1e1e1;
  padding: 1.5rem 0.5rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 1024px) {
  .islands-guide-fine table tbody tr td {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .islands-guide-fine table tbody tr td {
    font-size: 1.2rem;
  }
}
.islands-guide-fine table tbody tr td b {
  color: #439cd6;
  font-weight: 700;
}

[data-page=islands-statistics] .sublayout__body {
  position: relative;
}
[data-page=islands-statistics] .sublayout__body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 52rem;
  background-color: #f3f6f9;
  z-index: -1;
}
[data-page=islands-statistics] .sublayout__header {
  background-color: #f3f6f9;
}

.statistics {
  background-color: #fff;
  border-radius: 1.6rem;
  border: 1px solid #e1e1e1;
  padding: 4rem;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
}
@media (max-width: 768px) {
  .statistics {
    padding: 2rem;
  }
}
.statistics-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6rem;
}
.statistics-filters div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .statistics-filters {
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 2rem;
    gap: 0.5rem;
  }
  .statistics-filters div {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }
  .statistics-filters .form-select {
    width: 100%;
  }
}

.statistics-chart {
  height: 54rem;
}

.statistics-chart .highcharts-credits{
  display: none;
}

@media (max-width: 1024px) {
  .statistics-chart {
    height: 35rem;
  }
}
@media (max-width: 768px) {
  .statistics-chart {
    height: 30rem;
  }
}

.statistics-regions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 1rem;
  padding: 4rem 0 9rem;
}
@media (max-width: 768px) {
  .statistics-regions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 2rem 0 4rem;
  }
}
.statistics-regions button {
  border-radius: 0.6rem;
  background-color: #f0f1f4;
  border: 1px solid #e1e1e1;
  padding: 1.7rem 0;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  font-size: 1.4rem;
  color: #1d1d1d;
}
@media (max-width: 768px) {
  .statistics-regions button {
    padding: 1.2rem 0;
    font-size: 1.2rem;
    gap: 0.8rem;
  }
}
.statistics-regions button span {
  line-height: 1;
}
.statistics-regions button.active {
  background-color: #fff;
  border-color: #1764dc;
}
.statistics-regions button.active span {
  color: #1764dc;
}
.statistics-regions button .chart-type {
  color: var(--text-color-tertiary);
  font-size: 1.7rem;
}
@media (max-width: 768px) {
  .statistics-regions button .chart-type {
    font-size: 1.4rem;
  }
}
.statistics-regions button .count {
  font-size: 2.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .statistics-regions button .count {
    font-size: 1.8rem;
  }
}

.api-exlain-gate {
  background-color: #f8f8f8;
  padding: 4rem 2rem;
  border-radius: 1rem;
  border: 1px solid #e0e0e0;
  margin-bottom: 6rem;
}
.api-exlain-gate div {
  position: relative;
  padding-left: 1.2rem;
}
.api-exlain-gate div::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 3px;
  height: 3px;
  background: #1d1d1d;
}
@media (max-width: 768px) {
  .api-exlain-gate {
    margin-bottom: 3rem;
  }
}

.api-explain-section {
  margin-bottom: 6rem;
}
.api-explain-section:last-child {
  margin-bottom: 0;
}

.apiTable {
  border-top: 2px solid #000;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.apiTable thead tr {
  background-color: #F8F8F8;
  border-bottom: 1px solid #C6C6C6;
}
.apiTable thead th {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1.2rem 0;
}
.apiTable tbody tr {
  border-bottom: 1px solid #C6C6C6;
}
.apiTable tbody td {
  text-align: center;
  padding: 1.2rem 0;
}
.apiTable.border tbody td {
  border-left: 1px solid #c6c6c6;
}
.apiTable.border tbody td.bdl0 {
  border-left: 0;
}

.api-in-list-title {
  margin-bottom: 1rem;
}

.api-in-list {
  display: flex;
  justify-content: center;
}
.api-in-list ul li {
  margin-bottom: 1rem;
}
.api-in-list ul li:last-child {
  margin-bottom: 0;
}
.api-in-list ul li .item {
  display: flex;
  align-items: center;
  gap: 0 2rem;
}
.api-in-list ul li .item .badge {
  display: inline-flex;
  background-color: #f8f8f8;
  width: 15rem;
  height: 28px;
  border-radius: 99rem;
  font-size: 1.4rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}
.api-in-list ul li .item .badge b {
  font-weight: 400;
}

.api-code-nav {
  background-color: #f8f8f8;
}
.api-code-nav ul {
  display: flex;
}
.api-code-nav ul li button {
  display: block;
  padding: 1.2rem 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  border: 1px solid #f8f8f8;
}
.api-code-nav ul li button.active {
  background-color: #fff;
  color: var(--text-color-primary);
  border-color: var(--text-color-primary);
}

.api-code-section .line-numbers {
  margin-top: 0;
}

.api-code-apply {
  padding-top: 3rem;
  display: flex;
  justify-content: center;
}
.api-code-apply .btn-apply {
  border-radius: 1rem;
  background-color: var(--text-color-primary);
  color: #fff;
  padding: 2rem 5rem;
  font-size: 2rem;
  transition: all 0.4s;
  opacity: 1;
}
.api-code-apply .btn-apply:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .api-code-apply .btn-apply {
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
  }
}

.action-util {
  text-align: right;
  margin-bottom: 2rem;
}

.api-explain-url {
  display: inline-flex;
  align-items: center;
  gap: 0 1rem;
  height: 4.8rem;
  border: 1px solid var(--text-color-primary);
  border-radius: 0.6rem;
  padding: 0 2.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color-primary);
}
@media (max-width: 768px) {
  .mobile-table-scroll {
    overflow-x: auto;
  }
  .mobile-table-scroll table th,
  .mobile-table-scroll table td {
    white-space: nowrap;
    font-size: 1.2rem;
  }
}
.api-terms {
  border: 1px solid #eee;
  padding: 3rem;
  font-size: 1.5rem;
  line-height: 1.5;
  background-color: #f8f8f8;
  overflow-y: auto;
  height: 25rem;
  border-radius: 1.2rem 1.2rem 0 0;
}
.api-terms h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .api-terms {
    height: 25rem;
    padding: 2rem;
    font-size: 1.2rem;
  }
}

.api-terms-agree {
  border: 1px solid #eee;
  border-top: 0;
  padding: 2rem 3rem;
  margin-bottom: 6rem;
}
.api-terms-agree label {
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
.api-terms-agree label input {
  position: absolute;
  left: -999em;
  opacity: 0;
  z-index: -1;
}
.api-terms-agree label input:checked + i {
  background-color: var(--text-color-primary);
  border-color: var(--text-color-primary);
}
.api-terms-agree label input:checked + i:after {
  border-color: #fff;
}
.api-terms-agree label i {
  display: inline-block;
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid #ddd;
  border-radius: 0.3rem;
  position: relative;
  transition: all 0.4s;
}
.api-terms-agree label i:after {
  content: "";
  border: solid transparent;
  position: absolute;
  transform: rotate(-45deg);
  border-width: 0 0 2px 2px !important;
  height: 5px;
  width: 10px;
  margin: 3px 0 0 3px;
  transition: all 0.4s;
}
.api-terms-agree label span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color-primary);
}

.api-form {
  border: 1px solid #ddd;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.api-form__row {
  display: flex;
  gap: 0 2rem;
}
.api-form__row:not(:last-child) {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .api-form__row {
    flex-direction: column;
    gap: 0;
  }
  .api-form__row:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.api-form__item {
  width: 50%;
}
.api-form__item strong,
.api-form__item label {
  display: inline-block;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .api-form__item strong,
  .api-form__item label {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
}
.api-form__item textarea:read-only,
.api-form__item input:read-only {
  background-color: #f8f8f8;
  color: #666;
}
.api-form__item input,
.api-form__item select,
.api-form__item textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  padding: 1rem;
}
@media (max-width: 768px) {
  .api-form__item input,
  .api-form__item select,
  .api-form__item textarea {
    padding: 0.8rem;
    font-size: 1.4rem;
  }
}
.api-form__item textarea {
  resize: none;
  overflow-y: auto;
  max-height: 20rem;
}
@media (max-width: 768px) {
  .api-form__item textarea {
    max-height: 15rem;
  }
}
.api-form__item.w-full {
  width: 100%;
}
@media (max-width: 768px) {
  .api-form__item {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .api-form__item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .api-form {
    padding: 2rem;
    margin: 0 -1rem;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
}

.api-form-fab {
  display: flex;
  justify-content: center;
  gap: 0 2rem;
  margin-top: 3rem;
}
.api-form-fab a,
.api-form-fab button {
  align-items: center;
  justify-content: center;
  height: 5.4rem;
  padding: 0 2rem;
  font-size: 1.9rem;
}
@media (max-width: 768px) {
  .api-form-fab {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  .api-form-fab a,
  .api-form-fab button {
    height: 4.8rem;
    padding: 0 1.5rem;
    font-size: 1.6rem;
  }
}

.limit-text {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  font-size: 1.4rem;
  gap: 0 0.3rem;
}
.limit-text .count {
  font-weight: 500;
  color: var(--text-color-primary);
}

.alert-required {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: right;
  color: var(--text-color-primary);
}
.alert-required span {
  color: var(--color-error);
}

.required::before {
  font-style: normal;
  content: "*";
  color: var(--color-error);
  display: inline-block;
  margin-right: 0.3rem;
  font-size: 1.4rem;
  font-weight: 500;
}

[data-page=islands-community] .image-background::after {
  display: none;
}

.search-form {
  margin-bottom: 6rem;
  background-color: #EEF2F7;
  border-radius: 1.2rem;
  padding: 4rem;
}
@media (max-width: 768px) {
  .search-form {
    padding: 2rem;
    margin-bottom: 3rem;
  }
}
.search-form .search-row {
  display: flex;
  align-items: center;
  gap: 0 1.6rem;
}
@media (max-width: 768px) {
  .search-form .search-row {
    flex-direction: column;
    gap: 1rem;
  }
}
.search-form .form-select,
.search-form .form-input {
  height: 4.8rem;
}
@media (max-width: 768px) {
  .search-form .form-select,
  .search-form .form-input {
    height: 4rem;
    width: 100%;
    font-size: 1.4rem;
  }
}
.search-form .btn {
  height: 4.8rem;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  gap: 0 0.4rem;
  border-color: #325EE6;
  background: rgba(50, 94, 230, 0.1);
  width: 8.6rem;
  color: #325EE6;
  font-size: 1.7rem;
  padding: 0;
}
@media (max-width: 768px) {
  .search-form .btn {
    height: 4rem;
    width: 100%;
    font-size: 1.4rem;
  }
}
.search-form .btn i {
  display: inline-block;
  vertical-align: top;
  width: 2rem;
  height: 2rem;
  background: url("/UII/images/mn/ico-search.png") no-repeat center center/100% 100%;
}

.notice-detail {
  width: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 1.2rem;
  overflow: hidden;
}
.notice-detail__header {
  background: #f8f9fa;
  color: #333;
  padding: 4rem 3rem;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .notice-detail__header {
    padding: 1.4rem;
  }
}
.notice-detail__category {
  display: inline-block;
  background: #e9ecef;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #495057;
}
@media (max-width: 768px) {
  .notice-detail__category {
    font-size: 1.2rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }
}
.notice-detail__title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: #212529;
}
@media (max-width: 768px) {
  .notice-detail__title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
}
.notice-detail__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notice-detail__info {
  display: flex;
  gap: 2rem;
  font-size: 1.4rem;
  color: #6c757d;
}
.notice-detail__date, .notice-detail__views {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.notice-detail__date::before, .notice-detail__views::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background: #adb5bd;
  border-radius: 50%;
}
.notice-detail__content {
  padding: 4rem 3rem;
  line-height: 1.8;
  font-size: 1.6rem;
  color: #333;
}
@media (max-width: 768px) {
  .notice-detail__content {
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 2rem;
  }
}
.notice-detail__attachments {
  background: #f8f9fa;
  padding: 3rem;
  border-top: 1px solid #e9ecef;
}
@media (max-width: 768px) {
  .notice-detail__attachments {
    padding: 2rem;
  }
}
.notice-detail__attachments-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .notice-detail__attachments-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.notice-detail__attachments-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.notice-detail__attachments .attachment-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
}
.notice-detail__attachments .attachment-item:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
}
.notice-detail__attachments .attachment-item i {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  mask-image: url("/UII/images/mn/ico-file.svg");
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: 100% 100%;
  background-color: #555;
  vertical-align: top;
}
.notice-detail__attachments .attachment-item .attachment-name {
  flex: 1;
  font-weight: 500;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.notice-detail__attachments .attachment-item .attachment-size {
  color: #6c757d;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .notice-detail__attachments {
    padding: 2rem;
  }
  .notice-detail__attachments .attachment-item {
    padding: 1.2rem 1.5rem;
    gap: 1rem;
  }
  .notice-detail__attachments .attachment-item i {
    font-size: 1.8rem;
  }
  .notice-detail__attachments .attachment-item .attachment-name {
    font-size: 1.4rem;
  }
  .notice-detail__attachments .attachment-item .attachment-size {
    font-size: 1.2rem;
  }
}
.notice-detail__navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e9ecef;
  border-top: 1px solid #e9ecef;
}
.notice-detail__navigation .notice-detail__nav-item {
  background: #fff;
}
.notice-detail__navigation .notice-detail__nav-item .nav-link {
  display: block;
  padding: 2rem;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}
.notice-detail__navigation .notice-detail__nav-item .nav-link:hover {
  background: #f8f9fa;
}
.notice-detail__navigation .notice-detail__nav-item .nav-label {
  display: block;
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.notice-detail__navigation .notice-detail__nav-item .nav-title {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}
.notice-detail__navigation .notice-detail__nav-item.notice-detail__nav-prev .nav-link {
  text-align: left;
}
.notice-detail__navigation .notice-detail__nav-item.notice-detail__nav-next .nav-link {
  text-align: right;
}
@media (max-width: 768px) {
  .notice-detail__navigation {
    grid-template-columns: 1fr;
  }
  .notice-detail__navigation .notice-detail__nav-item .nav-link {
    padding: 1.5rem;
    text-align: left;
  }
  .notice-detail__navigation .notice-detail__nav-item.notice-detail__nav-next .nav-link {
    text-align: left;
  }
}
.notice-detail__actions {
  padding-top: 4rem;
  text-align: right;
}
@media (max-width: 768px) {
  .notice-detail__actions {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .notice-detail {
    border-left: 0;
    border-right: 0;
  }
}

.faq-section {
  margin-bottom: 4rem;
}

.faq-list .faq-item {
  border: 1px solid #e0e0e0;
  overflow: hidden;
  border-radius: 1.2rem;
}
.faq-list .faq-item + .faq-item {
  margin-top: 2.4rem;
}
.faq-list .faq-item:has(.active) {
  border-color: var(--color-primary);
}
.faq-list .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.4rem;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}
.faq-list .faq-question.active .faq-text {
  color: var(--color-primary);
}
.faq-list .faq-question.active .faq-text::before {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.faq-list .faq-question.active .faq-icon {
  transform: rotate(180deg);
}
.faq-list .faq-question .faq-text {
  font-size: 1.9rem;
  font-weight: 500;
  color: #212529;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 0 1.6rem;
}
.faq-list .faq-question .faq-text::before {
  transition: all 0.3s ease;
  content: "Q";
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid #555;
  background-color: #717171;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.9rem;
}
@media (max-width: 768px) {
  .faq-list .faq-question .faq-text {
    gap: 0 0.5rem;
    font-size: 1.4rem;
  }
  .faq-list .faq-question .faq-text::before {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.4rem;
  }
}
.faq-list .faq-question .faq-icon {
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 2rem;
  background: url("/UII/images/mn/icon_size.png") no-repeat;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .faq-list .faq-question .faq-icon {
    width: 2rem;
    height: 2rem;
    background-size: 100% auto;
  }
}
@media (max-width: 768px) {
  .faq-list .faq-question {
    padding: 1.5rem 2rem;
  }
  .faq-list .faq-question .faq-text {
    font-size: 1.4rem;
  }
  .faq-list .faq-question .faq-icon {
    width: 1.4rem;
    height: 1.4rem;
    margin-left: 1rem;
  }
}
.faq-list .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-list .faq-answer.active {
  max-height: 150rem;
}
.faq-list .faq-answer-text {
  font-size: 1.9rem;
  color: #212529;
  line-height: 1.4;
  display: flex;
  gap: 0 1.6rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}
.faq-list .faq-answer-text::before {
  transition: all 0.3s ease;
  content: "A";
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid #17A595;
  background-color: #17A595;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.9rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .faq-list .faq-answer-text {
    gap: 0 0.5rem;
    font-size: 1.4rem;
  }
  .faq-list .faq-answer-text::before {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.4rem;
  }
}
.faq-list .faq-answer .faq-content {
  padding: 0 3rem 2rem 2.4rem;
}
@media (max-width: 768px) {
  .faq-list .faq-answer .faq-content {
    padding: 0 2rem 1.5rem 2rem;
  }
}

.ofmonth-islands {
  border: 1px solid #e1e1e1;
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 1.5rem;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  display: flex;
  gap: 4rem;
}
@media (max-width: 768px) {
  .ofmonth-islands {
    flex-direction: column;
    gap: 2rem;
  }
}
.ofmonth-islands .image {
  width: 45%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .ofmonth-islands .image {
    width: 100%;
  }
  .ofmonth-islands .image img {
    width: 100%;
  }
}
.ofmonth-islands .details {
  padding-top: 3.5rem;
  flex: 1;
}
@media (max-width: 768px) {
  .ofmonth-islands .details {
    padding-top: 0;
  }
}
.ofmonth-islands .details .hgroup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #e4e4e4;
  line-height: 1;
}
@media (max-width: 768px) {
  .ofmonth-islands .details .hgroup {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
.ofmonth-islands .details .hgroup .title {
  color: var(--color-primary);
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .ofmonth-islands .details .hgroup .title {
    font-size: 2rem;
  }
}
.ofmonth-islands .details .hgroup .swiper-button-prev,
.ofmonth-islands .details .hgroup .swiper-button-next {
  position: static;
  border-radius: 50%;
  border: 1px solid #ececec;
  width: 4rem;
  height: 4rem;
  margin: 0;
}
@media (max-width: 768px) {
  .ofmonth-islands .details .hgroup .swiper-button-prev,
  .ofmonth-islands .details .hgroup .swiper-button-next {
    width: 3rem;
    height: 3rem;
  }
}
.ofmonth-islands .details .hgroup .swiper-button-prev::after,
.ofmonth-islands .details .hgroup .swiper-button-next::after {
  font-size: 0;
  width: 9px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .ofmonth-islands .details .hgroup .swiper-button-prev::after,
  .ofmonth-islands .details .hgroup .swiper-button-next::after {
    width: 6px;
    height: 10px;
  }
}
.ofmonth-islands .details .hgroup .swiper-button-prev::after {
  background-image: url("/UII/images/mn/prev.png");
}
.ofmonth-islands .details .hgroup .swiper-button-next::after {
  background-image: url("/UII/images/mn/next.png");
}
.ofmonth-islands .details .desc .subject {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .ofmonth-islands .details .desc .subject {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.ofmonth-islands .details .desc .text {
  line-height: 1.4;
  font-size: var(--font-size-lg);
  color: var(--text-color-secondary);
}
@media (max-width: 768px) {
  .ofmonth-islands .details .desc .text {
    font-size: 1.3rem;
  }
}

.search-form--promotion {
  margin: 8rem 0 4.5rem;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .search-form--promotion {
    margin: 4rem 0 2.5rem;
  }
}
@media (max-width: 768px) {
  .search-form--promotion {
    margin: 2rem 0 1.5rem;
  }
}
.search-form--promotion .search-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .search-form--promotion .search-row strong {
    display: none;
  }
  .search-form--promotion .search-row .data-selectors {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    width: 100%;
  }
  .search-form--promotion .search-row .separator {
    width: 100%;
    text-align: center;
  }
  .search-form--promotion .search-row .form-select {
    width: calc(50% - 0.5rem);
  }
}
.search-form--promotion .md-rows {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1240px) {
  .search-form--promotion .md-rows {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .search-form--promotion .md-rows {
    justify-content: flex-start;
  }
  .search-form--promotion .md-rows strong {
    display: none;
  }
  .search-form--promotion .md-rows .form-select {
    width: 50%;
  }
}
.search-form--promotion .form-select {
  width: 14rem;
}
.search-form--promotion .search-desc {
  font-size: var(--font-size-lg);
  color: var(--text-color-secondary);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e4e4e4;
}
@media (max-width: 768px) {
  .search-form--promotion .search-desc {
    font-size: 1.3rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
}
.search-form--promotion strong {
  flex-shrink: 0;
  font-size: var(--font-size-lg);
  font-weight: 700;
}

.board-list.gall .board-list__body {
  border-top: 0;
}

#gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}
@media (max-width: 1024px) {
  #gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  #gallery {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
#gallery .gallery-item {
  border: 1px solid #e1e1e1;
  border-radius: 1.6rem;
  overflow: hidden;
  padding: 4rem;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  #gallery .gallery-item {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  #gallery .gallery-item {
    padding: 1.5rem;
  }
}
#gallery .gallery-item:hover {
  border-color: var(--color-primary);
}
#gallery .gallery-item .image a {
  display: block;
  border-radius: 1.6rem;
  overflow: hidden;
}
#gallery .gallery-item .image a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#gallery .gallery-item .info {
  padding-top: 3rem;
}
@media (max-width: 1024px) {
  #gallery .gallery-item .info {
    padding-top: 2rem;
  }
}
@media (max-width: 768px) {
  #gallery .gallery-item .info {
    padding-top: 1.5rem;
  }
}
#gallery .gallery-item .info .hgroup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 1rem;
}
#gallery .gallery-item .info .hgroup .title {
  flex: 1 1 auto;
  overflow: hidden;
}
#gallery .gallery-item .info .hgroup .title a {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
  font-size: 2.1rem;
}
@media (max-width: 1024px) {
  #gallery .gallery-item .info .hgroup .title a {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  #gallery .gallery-item .info .hgroup .title a {
    font-size: 1.5rem;
  }
}
#gallery .gallery-item .info .hgroup .date {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--text-color-secondary);
}
@media (max-width: 1024px) {
  #gallery .gallery-item .info .hgroup .date {
    font-size: 1.2rem;
  }
}
#gallery .gallery-item .info .desc {
  height: 4.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#gallery .gallery-item .info .desc a {
  font-size: var(--font-size-lg);
  color: var(--text-color-secondary);
}
@media (max-width: 1024px) {
  #gallery .gallery-item .info .desc a {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  #gallery .gallery-item .info .desc a {
    font-size: 1.3rem;
  }
}

/* 무인도서 홍보 상세 */
.ofmonth-view-islands {
  position: relative;
}
.ofmonth-view-islands::before {
  content: "";
  position: absolute;
  top: 60rem;
  left: -2rem;
  right: -2rem;
  height: 100%;
  background-color: #f3f6f9;
  z-index: -1;
}
.ofmonth-view-islands .container {
  border: 1px solid #e2e3e3;
  border-radius: 1.6rem;
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
}
.ofmonth-view-islands .swiper .swiper-slide {
  text-align: center;
}
.ofmonth-view-islands .swiper .swiper-slide img {
  overflow: hidden;
  border-radius: 1.6rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.ofmonth-view-islands .swiper .swiper-button-prev,
.ofmonth-view-islands .swiper .swiper-button-next {
  border-radius: 50%;
  border: 1px solid #ececec;
  background-color: #fff;
  width: 4rem;
  height: 4rem;
}
@media (max-width: 768px) {
  .ofmonth-view-islands .swiper .swiper-button-prev,
  .ofmonth-view-islands .swiper .swiper-button-next {
    width: 3rem;
    height: 3rem;
  }
}
.ofmonth-view-islands .swiper .swiper-button-prev::after,
.ofmonth-view-islands .swiper .swiper-button-next::after {
  font-size: 0;
  width: 9px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .ofmonth-view-islands .swiper .swiper-button-prev::after,
  .ofmonth-view-islands .swiper .swiper-button-next::after {
    width: 6px;
    height: 10px;
  }
}
.ofmonth-view-islands .swiper .swiper-button-prev::after {
  background-image: url("/UII/images/mn/prev.png");
}
.ofmonth-view-islands .swiper .swiper-button-next::after {
  background-image: url("/UII/images/mn/next.png");
}

.sublayout__body:has(.background-put) {
  padding-bottom: 0;
}

.background-put {
  margin-top: 4rem;
  position: relative;
  padding-bottom: 12rem;
  z-index: 2;
}
.background-put::after {
  content: "";
  position: absolute;
  top: 25.5rem;
  left: -2rem;
  right: -2rem;
  bottom: 0;
  background: #3976d6 url(/UII/images/mn/bgImage.png) no-repeat center top;
  border-radius: 24rem 0 0 0;
  overflow: hidden;
  z-index: -1;
}

.ofmonth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
}
@media (max-width: 768px) {
  .ofmonth-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.ofmonth-grid .islands-card .label {
  margin-bottom: 2.5rem;
}
.ofmonth-grid .islands-card ul li {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
  font-size: var(--font-size-lg);
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .ofmonth-grid .islands-card ul li {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}
.ofmonth-grid .islands-card ul li:last-child {
  margin-bottom: 0;
}
.ofmonth-grid .islands-card ul li::before {
  content: "-";
}
.ofmonth-grid .islands-card ul li span:first-child {
  color: #111;
}
.ofmonth-grid .islands-card ul li span:last-child {
  color: var(--text-color-secondary);
}
.ofmonth-grid .islands-card .hgroup {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.ofmonth-grid .islands-card .hgroup a {
  display: inline-flex;
  align-items: center;
  gap: 0 1rem;
  color: #555;
}
.ofmonth-grid .islands-card .hgroup a i {
  width: 1.6rem;
  height: 1.6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/UII/images/mn/blank.png");
}
@media (max-width: 768px) {
  .ofmonth-grid .islands-card:has(.map-area) {
    display: flex;
    flex-direction: column;
  }
  .ofmonth-grid .islands-card:has(.map-area) .map-area {
    flex: 1 1 auto;
  }
}
.ofmonth-grid .islands-card .map-area {
  overflow: hidden;
  background-color: #f8f8f8;
  border-radius: 1.6rem;
  padding-bottom: 64.25%;
  position: relative;
}
.ofmonth-grid .islands-card .map-area .map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ofmonth-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f3f6f9;
  padding: 6rem;
  border-radius: 3.4rem;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.03);
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .ofmonth-social {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 2rem;
    margin-top: 4rem;
  }
}
.ofmonth-social .ofmonth-social__desc h3 {
  line-height: 1;
  color: var(--color-primary);
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .ofmonth-social .ofmonth-social__desc h3 {
    font-size: 2rem;
  }
}
.ofmonth-social .ofmonth-social__desc p {
  line-height: 1.3;
  font-size: var(--font-size-lg);
  color: var(--text-color-secondary);
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .ofmonth-social .ofmonth-social__desc p {
    font-size: 1.5rem;
    padding-top: 1.5rem;
  }
}
.ofmonth-social .ofmonth-social__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .ofmonth-social .ofmonth-social__links {
    gap: 1rem;
  }
}
.ofmonth-social .ofmonth-social__links a {
  display: block;
  width: 4.1rem;
  height: 4rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .ofmonth-social .ofmonth-social__links a {
    width: 3.5rem;
    height: 3.5rem;
    background-size: 100%;
  }
}
.ofmonth-social .ofmonth-social__links a:first-child {
  background-image: url("/UII/images/mn/facebook.png");
}
.ofmonth-social .ofmonth-social__links a:last-child {
  background-image: url("/UII/images/mn/blog.png");
}

.ofmonth-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .ofmonth-footer {
    margin-top: 2rem;
  }
}
.ofmonth-footer .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  font-size: 1.9rem;
}
@media (max-width: 768px) {
  .ofmonth-footer .btn {
    height: 4.5rem;
    font-size: 1.5rem;
  }
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .dialog {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.dialog-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 804px;
  border-radius: 1.6rem;
  overflow: hidden;
}
.dialog-content__header {
  background: linear-gradient(to right, #17a496 0%, #3559d2 100%);
  position: relative;
  padding: 2.2rem 3rem;
  line-height: 1;
  text-align: center;
}
@media (max-width: 1024px) {
  .dialog-content__header {
    padding: 2.2rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .dialog-content__header {
    padding: 2.2rem 1rem;
    text-align: left;
  }
}
.dialog-content__header span {
  color: #fff;
  font-weight: 700;
  font-size: 2.1rem;
}
@media (max-width: 1024px) {
  .dialog-content__header span {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .dialog-content__header span {
    font-size: 1.2rem;
  }
}
.dialog-content__header button {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  background: url("/UII/images/mn/close.png") no-repeat center center;
  border: none;
  width: 2rem;
  height: 2rem;
  font-size: 0;
}
@media (max-width: 768px) {
  .dialog-content__header button {
    right: 1rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.dialog-content__body {
  padding: 4rem;
  background-color: #f3f6f9;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .dialog-content__body {
    padding: 3rem;
  }
}
@media (max-width: 768px) {
  .dialog-content__body {
    padding: 2rem;
  }
}
.dialog-content__footer {
  background-color: #000;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 3rem;
}
@media (max-width: 1024px) {
  .dialog-content__footer {
    padding: 0 1.5rem;
  }
}
@media (max-width: 768px) {
  .dialog-content__footer {
    padding: 0 1rem;
  }
}
.dialog-content__footer-left {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.dialog-content__footer-left label {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 0 0.5rem;
}
.dialog-content__footer-left button {
  color: #fff;
}
@media (max-width: 1024px) {
  .dialog-content__footer-left {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .dialog-content__footer-left {
    gap: 1rem;
    font-size: 1.2rem;
  }
}
.dialog-dimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.dialog .deco {
  position: absolute;
}
@media (max-width: 1024px) {
  .dialog .deco {
    display: none;
  }
}
.dialog .deco-1 {
  top: 5rem;
  left: 1rem;
}
.dialog .deco-2 {
  top: 0;
  right: 4rem;
  transform: translateY(-65%);
}
.dialog .deco-3 {
  bottom: 0;
  right: 0;
  transform: translate(45%, 0%);
}

.dialog-survey__title {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .dialog-survey__title {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .dialog-survey__title {
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
  }
}

.dialog-survey__content .bg {
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 4rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .dialog-survey__content .bg {
    padding: 3rem;
  }
}
@media (max-width: 768px) {
  .dialog-survey__content .bg {
    padding: 2rem;
  }
}
.dialog-survey__content p {
  color: var(--text-color-secondary);
  line-height: 1.34;
  font-size: 1.7rem;
  margin-bottom: 1.8rem;
}
@media (max-width: 1024px) {
  .dialog-survey__content p {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .dialog-survey__content p {
    font-size: 1.3rem;
    margin-bottom: 1.4rem;
  }
}
.dialog-survey__content .right-text {
  text-align: right;
  color: var(--text-color-secondary);
  margin-bottom: 1.8rem;
}
@media (max-width: 1024px) {
  .dialog-survey__content .right-text {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .dialog-survey__content .right-text {
    font-size: 1.3rem;
    margin-bottom: 1.4rem;
  }
}
.dialog-survey__content .center-text {
  text-align: center;
  font-size: 1.9rem;
}
@media (max-width: 1024px) {
  .dialog-survey__content .center-text {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .dialog-survey__content .center-text {
    font-size: 1.5rem;
  }
}

.dialog-survey__link {
  text-align: center;
  margin-top: 2.5rem;
}
@media (max-width: 1024px) {
  .dialog-survey__link {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .dialog-survey__link {
    margin-top: 1.5rem;
  }
}
.dialog-survey__link a {
  display: inline-flex;
  border-radius: 0.8rem;
  background-color: #fff;
  padding: 1.5rem 2rem;
  font-size: 1.7rem;
  color: #555555;
  border: 1px solid #555555;
}
@media (max-width: 1024px) {
  .dialog-survey__link a {
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .dialog-survey__link a {
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
  }
}

.home-links {
  padding: 4rem 0;
}
.home-links__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
.home-links__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.home-links__text {
  font-size: 17px;
  font-weight: 400;
  text-align: center;
}
.home-links__text b {
  text-align: center;
  display: block;
}
.home-title {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  padding-bottom: 5rem;
}
.home-title b {
  color: var(--color-secondary);
  font-weight: 700;
}

.home-visual {
  height: 70rem;
  display: flex;
  position: relative;
}
@media (max-width: 1024px) {
  .home-visual {
    display: block;
    height: auto;
  }
}
.home-visual::after {
  content: "";
  display: block;
  background: url("/UII/images/mn/visual-deco.png") no-repeat center bottom;
  width: 54.83%;
  height: 38%;
  position: absolute;
  bottom: 0;
  right: 4vw;
  z-index: 4;
  background-size: 100% auto;
  z-index: 4;
}
@media (max-width: 1024px) {
  .home-visual::after {
    opacity: 0;
    visibility: hidden;
  }
}
.home-visual__slide {
  flex: 1;
  position: relative;
  height: 100%;
  width: 60%;
  z-index: 1;
}
@media (max-width: 1024px) {
  .home-visual__slide {
    width: 100%;
    height: calc(100dvh - 12rem);
  }
}
.home-visual__slide .swiper {
  width: 100%;
  height: 100%;
}
.home-visual__slide .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-visual__caption {
  position: absolute;
  top: 0;
  right: -11rem;
  background-color: #26293d;
  z-index: 2;
  padding: 3rem 11rem 3rem 3.5rem;
  border-radius: 0 0 0 6rem;
  color: #fff;
}
@media (max-width: 1024px) {
  .home-visual__caption {
    top: 0;
    padding: 2rem;
    width: 100%;
    right: 0;
    padding: 2rem;
    border-radius: 0;
  }
}
.home-visual__caption .inwrap {
  position: relative;
  padding-right: 8.5rem;
}
@media (max-width: 1024px) {
  .home-visual__caption .inwrap {
    padding-right: 0;
  }
}
.home-visual__caption .slide__subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "HANAMDAUM_body";
}
@media (max-width: 1024px) {
  .home-visual__caption .slide__subtitle {
    font-size: 1.3rem;
  }
}
.home-visual__caption .slide__title {
  font-size: 3.6rem;
  font-weight: 700;
  font-family: "HANAMDAUM";
  line-height: 1;
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .home-visual__caption .slide__title {
    font-size: 2.5rem;
  }
}
.home-visual__caption .flaking {
  display: flex;
  align-items: center;
  position: absolute;
  right: 1rem;
  bottom: 0;
  gap: 0.2rem;
  font-size: 1.7rem;
  color: #858793;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .home-visual__caption .flaking {
    position: static;
    margin-top: 1rem;
    font-size: 1.3rem;
  }
}
.home-visual__caption .flaking b {
  color: #fff;
}
.home-visual__caption .flaking .number {
  color: #fff;
}
.home-visual__search {
  position: relative;
  z-index: 3;
  width: 40%;
  border-radius: 6rem 0 0 0;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(to right, #17a496 0%, #355ad2 100%);
}
@media (max-width: 1024px) {
  .home-visual__search {
    width: 100%;
    border-radius: 0;
    border-radius: 0;
  }
}
.home-visual__search .inwrap {
  padding: 11rem 5% 0 4.43%;
}
@media (max-width: 1024px) {
  .home-visual__search .inwrap {
    padding: 2rem;
  }
}
.home-visual__search .subject {
  padding-left: 4.5rem;
  padding-bottom: 4rem;
}
@media (max-width: 1024px) {
  .home-visual__search .subject {
    padding: 0;
  }
}
.home-visual__search .search__form {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 6px solid #fff;
  background-color: #fff;
  border-radius: 5rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1024px) {
  .home-visual__search .search__form {
    padding: 0;
    margin-top: 2rem;
  }
}
.home-visual__search .search__form input {
  flex: 1;
  width: 100%;
  height: 5rem;
  background: transparent;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0 4rem;
}
@media (max-width: 1024px) {
  .home-visual__search .search__form input {
    height: 4rem;
    font-size: 1.5rem;
    padding: 0 2rem;
  }
}
.home-visual__search .search__form button {
  background: #1764dc url("/UII/images/mn/search.png") no-repeat center center;
  border-radius: 50%;
  font-size: 0;
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .home-visual__search .search__form button {
    width: 3.5rem;
    height: 3.5rem;
    background-size: 1.9rem;
  }
}
.home-visual__search .search__keyword {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 4rem;
  padding-top: 2.5rem;
}
@media (max-width: 1570px) {
  .home-visual__search .search__keyword {
    padding: 0;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
  }
}
.home-visual__search .search__keyword strong {
  font-weight: 600;
  color: #26293d;
  font-size: 1.6rem;
  padding-right: 1rem;
}
@media (max-width: 1570px) {
  .home-visual__search .search__keyword strong {
    padding: 0;
    font-size: 1.4rem;
    width: 100%;
  }
}
.home-visual__search .search__keyword a {
  display: flex;
  line-height: 1;
  background-color: #fff;
  border-radius: 5rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #555555;
}
@media (max-width: 1024px) {
  .home-visual__search .search__keyword a {
    display: inline-flex;
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
  }
}

.home-slide__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 2rem;
}
.home-slide__nav .home-slide__pagination {
  display: inline-flex;
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 100px;
  width: auto !important;
}
.home-slide__nav .home-slide__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #8e8e8e;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 !important;
}
.home-slide__nav .home-slide__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-radius: 10px;
  width: 20px;
  height: 8px;
  background-color: #26293d;
}
.home-slide__nav .swiper-button-next,
.home-slide__nav .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  top: 0;
  margin-top: 0;
  right: 0;
}
.home-slide__nav .swiper-button-next::after,
.home-slide__nav .swiper-button-prev::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/UII/images/mn/next.png");
  background-repeat: no-repeat;
  background-position: center;
}
.home-slide__nav .swiper-button-next.swiper-button-prev,
.home-slide__nav .swiper-button-prev.swiper-button-prev {
  right: 50px;
  left: inherit;
}
.home-slide__nav .swiper-button-next.swiper-button-prev::after,
.home-slide__nav .swiper-button-prev.swiper-button-prev::after {
  transform: rotate(180deg);
}
.home-slide__nav .swiper-button-next.swiper-button-next::after,
.home-slide__nav .swiper-button-prev.swiper-button-next::after {
  transform: rotate(0deg);
}

.home-month {
  padding: 8rem;
  background-color: #f3f6f9;
}

.home-month-slide__item {
  display: block;
  border: 1px solid #e1e1e1;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  padding: 4rem;
  transition: all 0.3s ease;
}
.home-month-slide__item:hover {
  border-color: var(--color-primary);
}
.home-month-slide__item .thumb {
  width: 100%;
  height: 100%;
}
.home-month-slide__item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-month-slide__item .info {
  padding: 3rem 0 0;
}
.home-month-slide__item .info .title {
  font-size: 21px;
  font-weight: 700;
  color: #1d1d1d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-month-slide__item .info .desc {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-color-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4rem;
  margin-top: 1.2rem;
}

.home-guide {
  padding: 8rem;
  background-color: #fff;
}
.home-guide__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4rem;
}
.home-guide__item {
  background: #f0f1f4 url("/UII/images/mn/guide-bg.png") no-repeat 0 0;
  border-radius: 5rem 0 5rem 0;
  overflow: hidden;
  position: relative;
}
.home-guide__item.large {
  grid-column: 1/-1;
  position: relative;
}
.home-guide__header {
  display: flex;
  align-items: center;
  padding-left: 4rem;
  height: 9rem;
  color: #fff;
  font-size: 2.4rem;
}
.home-guide__header span {
  font-family: "HANAMDAUM";
  font-weight: 400;
}
.home-guide__content {
  padding: 4rem;
  padding-left: 6rem;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.home-guide__info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.home-guide__info h3 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 12px;
  line-height: 1.3;
}
.home-guide__info p {
  font-size: 17px;
  color: var(--text-color-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
}
.home-guide__icon {
  position: absolute;
  right: 6rem;
  top: 4rem;
}

.home__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 8px;
  color: #666;
  font-size: 14px;
}
.home__link i {
  display: block;
  border-radius: 50%;
  background: #fff url("/UII/images/mn/arw.png") no-repeat center center;
  width: 4rem;
  height: 4rem;
}

.home-guide__item.large {
  background: #fff url("/UII/images/mn/guide-bg2.png") no-repeat center center;
  background-size: cover;
  position: relative;
  height: 32rem;
}
@media (max-width: 768px) {
  .home-guide__item.large {
    height: auto;
    padding: 3rem;
  }
}
.home-guide__item.large .home-guide__content {
  padding: 0;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 70rem;
  top: 7rem;
  gap: 0;
}
.home-guide__item.large .home-guide__header {
  padding: 0;
  height: auto;
  margin-bottom: 4.5rem;
}
.home-guide__item.large .home-guide__header span {
  font-weight: 400;
}
.home-guide__item.large h3 {
  color: #fff;
  margin-bottom: 1rem;
}
.home-guide__item.large p {
  color: #fff;
}
.home-guide__item.large .home-guide__link {
  color: #fff;
  position: absolute;
  bottom: 4rem;
  right: 4rem;
}

.home-guide__number {
  position: absolute;
  bottom: -14px;
  left: 0;
  font-size: 12rem;
  font-weight: 700;
  color: #fff;
  font-family: "HANAMDAUM";
  line-height: 1;
  z-index: 1;
}

@keyframes rotate {
  0% {
    transform: translate(50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(50%, -50%) rotate(360deg);
  }
}
@keyframes updown {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(10px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}
.home-statistics {
  padding: 8rem 0 10.5rem;
  background: #f0f1f4 url("/UII/images/mn/statistics-bg.png") no-repeat right bottom;
}
.home-statistics__link {
  text-align: right;
}
.home-statistics__link .home__link i {
  background-color: #f0f1f4;
}
.home-statistics .container {
  position: relative;
}
.home-statistics .container::before, .home-statistics .container::after {
  content: "";
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.home-statistics .container::before {
  left: 0;
  top: 0;
  width: 313px;
  height: 313px;
  background-image: url("/UII/images/mn/statistics-bg-deco.png");
  transform: translate(-50%, -50%);
  animation: updown 20s linear infinite;
}
.home-statistics .container::after {
  right: 0;
  top: 0;
  width: 211px;
  height: 211px;
  transform: translate(50%, -50%) rotate(0deg);
  background-image: url("/UII/images/mn/statistics-bg-deco2.png");
  animation: rotate 20s linear infinite;
}
@media (max-width: 768px) {
  .home-statistics .container::before, .home-statistics .container::after {
    display: none;
  }
}

.home-statistics__item {
  display: block;
  border: 1px solid #e1e1e1;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  padding: 4rem;
}
.home-statistics__item .title {
  font-size: 21px;
  font-weight: 700;
  color: #1d1d1d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-statistics__item .desc {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-color-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4rem;
  margin-top: 1.2rem;
}
.home-statistics__item .chart_area {
  padding: 4rem 0;
}

@media (max-width: 1200px) {
  .home-title {
    font-size: 28px;
    padding-bottom: 4rem;
  }
  .home-guide {
    padding: 6rem 2rem;
  }
  .home-guide__item.large .home-guide__content {
    left: 50rem;
  }
}
@media (max-width: 1024px) {
  .home-links {
    padding: 3rem 0;
  }
  .home-links__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .home-links__text {
    font-size: 15px;
  }
  .home-title {
    font-size: 26px;
    padding-bottom: 3.5rem;
  }
  .home-guide {
    padding: 5rem 2rem;
  }
  .home-guide__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .home-guide__item.large {
    grid-column: 1;
    height: 28rem;
  }
  .home-guide__item.large .home-guide__content {
    left: 35rem;
    top: 5rem;
  }
  .home-guide__header {
    padding-left: 3rem;
    height: 8rem;
    font-size: 2.2rem;
  }
  .home-guide__content {
    padding: 3rem;
    padding-left: 4rem;
  }
  .home-guide__icon {
    right: 4rem;
    top: 3rem;
  }
  .home-guide__number {
    font-size: 9rem;
    bottom: -12px;
  }
  .home-month {
    padding: 5rem 2rem;
  }
  .home-month-slide__item {
    padding: 3rem;
  }
  .home-month-slide__item .info {
    padding: 2rem 0 0;
  }
  .home-month-slide__item .info .title {
    font-size: 19px;
  }
  .home-month-slide__item .info .desc {
    font-size: 15px;
    height: 3.8rem;
  }
  .home-statistics {
    padding: 5rem 2rem;
  }
  .home-statistics__item {
    padding: 3rem;
  }
  .home-statistics__item .title {
    font-size: 19px;
  }
  .home-statistics__item .desc {
    font-size: 15px;
    height: 3.8rem;
  }
  .home-statistics__item .chart_area {
    padding: 3rem 0;
  }
  .home-slide__nav {
    margin-top: 2rem;
  }
  .home-slide__nav .home-slide__pagination {
    padding: 1.2rem;
    gap: 0.7rem;
  }
  .home-slide__nav .swiper-button-next,
  .home-slide__nav .swiper-button-prev {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 768px) {
  .home-links {
    padding: 2.5rem 0;
  }
  .home-links__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .home-links__text {
    font-size: 14px;
  }
  .home-title {
    font-size: 22px;
    padding-bottom: 3rem;
  }
  .home-guide {
    padding: 4rem 1.5rem;
  }
  .home-guide__item {
    background-size: auto 11rem;
  }
  .home-guide__grid {
    gap: 2rem;
  }
  .home-guide__item.large {
    height: auto;
    padding: 2rem;
    padding-bottom: 0;
  }
  .home-guide__item.large .home-guide__header {
    background-color: transparent !important;
    margin-bottom: 2rem;
  }
  .home-guide__item.large .home-guide__content {
    position: static;
  }
  .home-guide__item.large .home-guide__link {
    position: static;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .home-guide__header {
    padding: 2rem;
    height: auto;
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .home-guide__content {
    padding: 2rem;
    padding-left: 3rem;
    flex-direction: column;
    gap: 1rem;
  }
  .home-guide__info h3 {
    font-size: 1.9rem;
  }
  .home-guide__info p {
    font-size: 16px;
  }
  .home-guide__icon {
    right: 3rem;
    top: 5.5rem;
    align-self: center;
    margin-top: 0;
    width: 4.6rem;
  }
  .home-guide__link {
    align-self: flex-start;
    margin-top: 1rem;
  }
  .home-guide__number {
    font-size: 7rem;
    position: static;
  }
  .home-month {
    padding: 4rem 1.5rem;
  }
  .home-month-slide__item {
    padding: 2.5rem;
  }
  .home-month-slide__item .info {
    padding: 2rem 0 0;
  }
  .home-month-slide__item .info .title {
    font-size: 17px;
  }
  .home-month-slide__item .info .desc {
    font-size: 14px;
    height: 3.2rem;
  }
  .home-statistics {
    padding: 4rem 1.5rem;
  }
  .home-statistics__item {
    padding: 2.5rem;
  }
  .home-statistics__item .title {
    font-size: 17px;
  }
  .home-statistics__item .desc {
    font-size: 14px;
    height: 3.2rem;
  }
  .home-statistics__item .chart_area {
    padding: 2.5rem 0;
  }
  .home-slide__nav {
    margin-top: 1.5rem;
  }
  .home-slide__nav .home-slide__pagination {
    padding: 1rem;
    gap: 0.6rem;
  }
  .home-slide__nav .home-slide__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
  .home-slide__nav .home-slide__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 18px;
    height: 7px;
  }
  .home-slide__nav .swiper-button-next,
  .home-slide__nav .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 480px) {
  .home-links {
    padding: 2rem 0;
  }
  .home-links__grid {
    gap: 1rem;
  }
  .home-links__text {
    font-size: 12px;
  }
  .home-title {
    font-size: 18px;
    padding-bottom: 2.5rem;
  }
  .home-guide {
    padding: 3rem 1rem;
  }
  .home-guide__header {
    padding-left: 2rem;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
  }
  .home-guide__content {
    padding: 2rem;
    padding-left: 2rem;
  }
  .home-guide__info h3 {
    font-size: 1.7rem;
  }
  .home-guide__info p {
    font-size: 14px;
  }
  .home-guide__number {
    font-size: 5.5rem;
    transform: translateY(7px);
  }
  .home-month,
  .home-statistics {
    padding: 3rem 1rem;
  }
  .home-month-slide__item, .home-month__item,
  .home-statistics-slide__item,
  .home-statistics__item {
    padding: 2rem;
  }
  .home-month-slide__item .info, .home-month__item .info,
  .home-statistics-slide__item .info,
  .home-statistics__item .info {
    padding: 1.5rem 0 0;
  }
  .home-month-slide__item .info .title, .home-month__item .info .title,
  .home-statistics-slide__item .info .title,
  .home-statistics__item .info .title {
    font-size: 16px;
  }
  .home-month-slide__item .info .desc, .home-month__item .info .desc,
  .home-statistics-slide__item .info .desc,
  .home-statistics__item .info .desc {
    font-size: 13px;
    height: auto;
  }
  .home-month-slide__item .title, .home-month__item .title,
  .home-statistics-slide__item .title,
  .home-statistics__item .title {
    font-size: 16px;
  }
  .home-month-slide__item .desc, .home-month__item .desc,
  .home-statistics-slide__item .desc,
  .home-statistics__item .desc {
    font-size: 13px;
    height: auto;
  }
  .home-month-slide__item .chart_area, .home-month__item .chart_area,
  .home-statistics-slide__item .chart_area,
  .home-statistics__item .chart_area {
    padding: 2rem 0;
  }
  .home-slide__nav {
    margin-top: 1rem;
  }
  .home-slide__nav .home-slide__pagination {
    padding: 0.8rem;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .home-slide__nav .home-slide__pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .home-slide__nav .home-slide__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 16px;
    height: 6px;
  }
  .home-slide__nav .swiper-button-next,
  .home-slide__nav .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
}
.portal-etc .etc-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 3rem;
  padding-top: 3rem;
}
.portal-etc .box-help-info {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  padding: 3rem;
  border: 0.1rem solid #d6e0eb;
  border-radius: 1.2rem;
  background-color: #eef2f7;
  font-size: 1.6rem;
  color: #111;
  line-height: 1.5;
  margin-bottom: 3rem;
}
.portal-etc h2 {
  margin-bottom: 2rem;
}
.portal-etc h2 + p {
  margin-bottom: 3.5rem;
  font-size: 1.6rem;
}
.portal-etc ul {
  padding-left: 2rem;
  margin-bottom: 3.5rem;
}
.portal-etc ul li {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #111;
  line-height: 1.5;
}
.portal-etc .dash {
  position: relative;
  margin-top: 0.8rem;
  padding-left: 2rem;
}
.portal-etc .dash::before {
  display: block;
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 1.2rem;
  width: 0.6rem;
  height: 0.1rem;
  background-color: #9fa5b4;
}
.portal-etc .common {
  text-align: center;
  padding: 3rem 0;
  background-color: #333a46;
  color: #fff;
}
.portal-etc .common ul {
  margin-bottom: 0;
}
.portal-etc .common ul li {
  margin: 0;
  color: #fff;
}
.portal-etc .common p {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .portal-etc .container {
    padding: 0 2rem;
  }
  .portal-etc .etc-title {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
  .portal-etc .box-help-info {
    padding: 2.5rem;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .portal-etc h2 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
  }
  .portal-etc h2 + p {
    margin-bottom: 3rem;
    font-size: 1.5rem;
  }
  .portal-etc ul {
    margin-bottom: 3rem;
  }
  .portal-etc ul li {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .portal-etc .container {
    padding: 0 1.5rem;
  }
  .portal-etc .etc-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    line-height: 1.3;
  }
  .portal-etc .box-help-info {
    padding: 2rem;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
  }
  .portal-etc h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  .portal-etc h2 + p {
    margin-bottom: 2.5rem;
    font-size: 1.4rem;
  }
  .portal-etc ul {
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .portal-etc ul li {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .portal-etc .dash {
    padding-left: 1.5rem;
  }
  .portal-etc .dash::before {
    left: 0.3rem;
    top: 1rem;
  }
  .portal-etc .common {
    padding: 2rem 0;
  }
  .portal-etc .common ul li {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .portal-etc .common p {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .portal-etc .container {
    padding: 0 1rem;
  }
  .portal-etc .etc-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
  }
  .portal-etc .box-help-info {
    padding: 1.5rem;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    gap: 0.8rem 0;
  }
  .portal-etc h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  .portal-etc h2 + p {
    margin-bottom: 2rem;
    font-size: 1.3rem;
  }
  .portal-etc ul {
    padding-left: 1rem;
    margin-bottom: 2rem;
  }
  .portal-etc ul li {
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
  }
  .portal-etc .dash {
    padding-left: 1.2rem;
  }
  .portal-etc .dash::before {
    left: 0.2rem;
    top: 0.9rem;
    width: 0.4rem;
  }
  .portal-etc .common {
    padding: 1.5rem 0;
  }
  .portal-etc .common ul li {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  .portal-etc .common p {
    font-size: 1.1rem;
  }
}