@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css");
@font-face {
  font-family: "GmarketSans";
  font-weight: 300;
  font-style: normal;
  src: url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansLight.eot");
  src: url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansLight.eot?#iefix")
      format("embedded-opentype"),
    url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansLight.woff2")
      format("woff2"),
    url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansLight.woff")
      format("woff"),
    url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansLight.ttf")
      format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "GmarketSans";
  font-weight: 500;
  font-style: normal;
  src: url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansMedium.eot");
  src: url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansMedium.eot?#iefix")
      format("embedded-opentype"),
    url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansMedium.woff2")
      format("woff2"),
    url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansMedium.woff")
      format("woff"),
    url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansMedium.ttf")
      format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "GmarketSans";
  font-weight: 700;
  font-style: normal;
  src: url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.eot");
  src: url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.eot?#iefix")
      format("embedded-opentype"),
    url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.woff2")
      format("woff2"),
    url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.woff")
      format("woff"),
    url("https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.ttf")
      format("truetype");
  font-display: swap;
}

:root {
  /* brandGreen CSS Vars */
  --brandgreen-100: hsl(164, 79%, 95%);
  --brandgreen-200: hsl(165, 75%, 86%);
  --brandgreen-300: hsl(164, 76%, 72%);
  --brandgreen-400: hsl(164, 76%, 57%);
  --brandgreen-500: hsl(164, 100%, 43%);
  --brandgreen-550: hsl(164, 100%, 40%);
  --brandgreen-600: hsl(164, 100%, 32%);
  --brandgreen-700: hsl(164, 100%, 22%);
  --brandgreen-800: hsl(164, 100%, 11%);
  /* gray CSS Vars */
  --gray-50: hsl(210, 20%, 98%);
  --gray-100: hsl(220, 14%, 96%);
  --gray-200: hsl(220, 13%, 91%);
  --gray-300: hsl(216, 12%, 84%);
  --gray-400: hsl(219, 11%, 65%);
  --gray-500: hsl(220, 9%, 46%);
  --gray-600: hsl(215, 14%, 34%);
  --gray-700: hsl(217, 19%, 27%);
  --gray-800: hsl(215, 28%, 17%);
  --gray-900: hsl(221, 39%, 11%);
}

html {
  height: 100%;
  font-size: 16px;
}
body {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
}
.main-wrapper {
  flex-grow: 1;
}
.footer--wrapper {
  flex-shrink: 0;
}

/* 초기화 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Pretendard", 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;
}
a,
a:visited {
  text-decoration: none;
}
ol,
ul,
li {
  list-style: none outside none;
}
body {
  background-color: var(--gray-50);
  max-width: 100%;
  overflow-x: hidden;
}
/* feather icon */
.feather {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
button {
  background: inherit;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  cursor: pointer;
}

/* UI */
/* Button */
.button-primary {
  height: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  gap: 0.375rem;
  background: var(--brandgreen-550);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 1px rgba(0, 200, 0, 0.1);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 150ms ease-out;

  color: white !important;
  font-weight: 600;
  font-size: 1rem;
}
.button-primary:hover {
  background: var(--brandgreen-500);
}
.button-primary.disabled {
  background: var(--brandgreen-200);
  border: unset;
  box-shadow: unset;
  color: white !important;
  cursor: not-allowed;
  pointer-events: none;
}
.button-primary.hide,
.button-secondary.hide,
.button-teritory.hide {
  display: none;
  opacity: 0;
}
.button-primary .feather {
  width: 20px;
  height: 20px;
  color: white;
}
.button-secondary .feather,
.button-teritory .feather {
  width: 20px;
  height: 20px;
  color: var(--gray-300);
}

.button-secondary {
  height: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  gap: 0.375rem;
  background: white;
  border: 1px solid var(--gray-200);
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.04);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 150ms ease-out;
}
.button-secondary:hover {
  background: var(--gray-50);
}
.button-secondary p {
  color: var(--gray-600);
  font-size: 1rem;
}
.button-teritory {
  height: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  gap: 0.375rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 150ms ease-out;
}
.button-teritory:hover {
  background: var(--gray-50);
}
.button-teritory p {
  color: var(--gray-600);
  font-size: 1rem;
}

/* SelectBox */
.select-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.selectbox {
  width: 100%;
  max-width: 200px;
  height: 2.5rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.selectbox__toggle {
  width: 100%;
  height: 2.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 1rem;
  gap: 2px;
  color: var(--gray-600);
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: all 200ms ease-in-out;
}
.selectbox__toggle:focus {
  border-width: 1px;
  border-color: var(--brandgreen-500);
  box-shadow: 0 0 0 2px var(--brandgreen-200);
}
.selectbox__toggle.disabled {
  color: var(--gray-300);
  background-color: var(--gray-50);
  pointer-events: none !important;
}
.selectbox__toggle .feather-chevron-down {
  color: var(--gray-400);
  stroke-width: 2px;
  margin-left: 0.25rem;
  width: 1rem;
  height: 1rem;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-duration: 300ms;
}
.selectbox__toggle .feather-chevron-down.active {
  transform: rotate(180deg);
}
.selectbox__text {
  color: inherit;
  font-size: 0.9rem;
}
.selectbox__option {
  display: flex;
  background-color: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
  max-height: calc(100vh - 0.5rem);
  opacity: 0;
  visibility: hidden;
  padding: 0.5rem;
  position: relative;
  top: 0.5rem;
  width: 12rem;
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(-0.5rem);
  transition: opacity 100ms ease-out, transform 150ms ease-out;
}
.selectbox__option.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.selectbox__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.selectbox__link {
  text-align: start;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 100%;
  color: var(--gray-700);
  transition: 150ms ease-out;
}
.selectbox__link:hover {
  background-color: var(--gray-50);
}

/* checkbox */
.checkbox span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
}

/* radiobutton */
label span {
  vertical-align: middle;
}
[type="radio"] {
  vertical-align: middle;
  appearance: none;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  width: 1.25em;
  height: 1.25em;
  transition: border 100ms linear;
}
[type="radio"]:checked {
  border: 0.4em solid var(--brandgreen-400);
  background-color: white;
}
.radiobutton-wrapper {
  display: flex;
}
.radiobutton-wrapper label {
  font-size: 0.9rem;
  line-height: 1rem;
  padding: 0.2rem 0.4rem;
  display: flex;
  gap: 4px;
}

/* Input */
.inputbox-wrapper {
  width: 100%;
  max-width: 32rem;
  /* height: 100%; */
}
.inputbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;

  width: 100%;
  /* height: 100%; */

  font-weight: 500;
  font-size: 0.9rem;
  line-height: 160%;

  background-color: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;

  transition: 150ms ease-out;
  padding: 0.75rem 1rem;

  color: var(--gray-600);
}
.inputbox:focus {
  outline: none !important;
  border-width: 1px;
  border-color: var(--brandgreen-500);
  box-shadow: 0 0 0 2px var(--brandgreen-200);
}
.inputbox::placeholder {
  color: var(--gray-300);
}
.inputbox.half {
  max-width: 10rem;
}

/* Textarea */
textarea:focus {
  outline: none !important;
  border-width: 1px;
  border-color: var(--brandgreen-500);
  box-shadow: 0 0 0 2px var(--brandgreen-200);
}

/* Table */
.table--wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;

  width: 100%;
}
.table {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
  border-width: 2px 0px;
  border-style: solid;
  border-color: var(--gray-300);
}
.table__header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;

  width: 100%;
  border-bottom: 1px solid var(--gray-300);
}
.table__header__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 0.15rem;
  width: 100%;
}
.table__header__item p {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 100%;
  color: var(--gray-800);
  text-align: center;
}
.table__header__item p br {
  display: none;
}
.table__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
}
.table__body__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
}
.table__body__row:hover {
  background: var(--gray-50);
}
.table__body__column {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 0.15rem;
  width: 100%;
}
.table__body__column p {
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Flextable */

.flextable {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--gray-300);
  background-color: var(--gray-50);
  overflow: hidden;
}
.flextable .flextable__row:last-child {
  border-bottom: unset;
}
.flextable__row {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-bottom: 1px solid var(--gray-300);
}
.flextable__row.header {
  border-bottom: 2px solid var(--gray-200);
}
.flextable__header--wrapper {
  display: flex;
  flex-direction: row;
}
.flextable__body--wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.flextable__body {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-bottom: 1px solid var(--gray-200);
}
.flextable__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--gray-200);
}
.flextable__content {
  display: flex;
  flex-direction: column;
  background-color: white;
  width: 100%;
}
.flextable__header__cell {
  display: flex;
  padding: 0.75rem;
  gap: 0.25rem;
  width: 10rem;
  color: var(--gray-700);
  line-height: 1.5;
  font-weight: 400;
  font-size: 0.9rem;
}
.flextable__header__cell.large {
  width: calc(20rem + 1px);
}
.flextable__header__cell span {
  line-height: 1.5;
}
.flextable__header__cell.header {
  width: calc(20rem + 1px);
  background-color: var(--gray-100);
}
.flextable__content__cell {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0.75rem;
  color: var(--gray-700);
  line-height: 150%;
  font-weight: 400;
  font-size: 0.9rem;
}
.flextable__content__cell.header {
  background-color: var(--brandgreen-100);
}
.flextable__content__cell.address {
  align-items: flex-start;
}
/* 마지막 row border 삭제 */
.flextable__body--wrapper > .flextable__body:last-child {
  border-bottom: unset;
}

.flextable_asterisk {
  color: red;
}

/* Grid */
.contents__grid--wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: white;
}
.grid--wrapper {
  width: 100%;
  max-width: 75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 2.5rem;
}
.grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-width: 1px 0px;
  border-style: solid;
  border-color: var(--gray-300);
}
.grid__row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid var(--gray-200);
  background-color: var(--gray-50);
}
.grid__header {
  width: 12.5rem;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#localarea_header {
	display:block;
}

@media (min-width: 320px) and (max-width: 767px) {

	#localarea_header {
		display:none;
	}

}

.grid__header__row {
  width: 100%;
  height: 100%;
  display: flex;

  padding: 1.3rem 1rem;
}
.grid__body {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: white;
}
.grid__body__row {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem;
}
.contents__grid--bottom {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

/* Application Board */
.application--wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-top: 1px solid var(--gray-200);
}
.application {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 48px 40px;
  gap: 32px;
}
.application__title--wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.application__title {
  font-family: "NanumSquare";
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  color: var(--gray-600);
}
.application__description--wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 20px;
  gap: 4px;
  background: var(--gray-50);
  border-radius: 16px;
}
.application__description--wrapper.hide {
  display: none;
  visibility: hidden;
  opacity: 0;
}
.application__description {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.application__description li {
  color: var(--gray-500);
  margin-left: 16px;
  font-size: 1.1rem;
  line-height: 160%;
  list-style: outside;
}
.application__board--wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: all 300ms ease-in-out;
}
.application__board--title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.application__board--title .feather-user-check {
  width: 24px;
  height: 24px;
  stroke-width: 3px;
  color: var(--brandgreen-500);
}
.application__board--title h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  display: flex;
  align-items: center;
  color: var(--gray-600);
}
.application__board__body__row {
  gap: 8px;
}
.application__button--wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.application__button {
  font-size: 1rem;
}

/* tabNavigator */
.tabNavigator--wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.tabNavigator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 99px;
}

.tabNavigator__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--gray-400);
  border-radius: 99px;
}

.tabNavigator__tab.active {
  background-color: white;
  border: 1px solid var(--gray-200);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04);
  color: var(--gray-600);
}

.tabNavigator__tab a {
  padding: 12px 32px;
  color: inherit;
}

/* 본문 */
.main-wrapper {
  padding: 0;
  margin: 0;
}
.main-nav {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  /* background-color: transparent; */
  background-color: #fff;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  transition: background-color 150ms ease-out;
  z-index: 9;
}
.main-nav.active {
  background-color: white;
  border-bottom: 1px solid var(--gray-100);
}
.main-nav--container {
  width: 100%;
  max-width: 75rem;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-nav__logo {
  font-size: 0;
  width: 103px;
  height: 36px;
  pointer-events: auto;
  z-index: 12;
}
.main-nav__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.main-nav__logo a img{
  width: 100%;
  height: 100%;
}

/* 중앙 */
.main-nav__menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  height: 100%;
  display: flex;

  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.main-nav__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
  font-family: "Pretendard";
  font-weight: 500;
  font-size: 1.06rem;
  line-height: 100%;
  color: var(--gray-600);
  transition: 150ms ease-out;
}
.main-nav__link:hover {
  background-color: var(--gray-50);
}
.main-nav__subnav {
  height: 100%;
  display: flex;
  align-items: flex-start;
}
.main-nav__subnav__toggle {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
}
.main-nav__subnav__toggle .feather-chevron-down {
  color: var(--gray-400);
  stroke-width: 3px;
  margin-left: 0.25rem;
  width: 1rem;
  height: 1rem;

  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-duration: 300ms;
}
.main-nav__subnav__toggle .feather-chevron-down.active {
  transform: rotate(180deg);
}
.main-nav__subnav__dropdown {
  display: flex;

  background-color: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);

  margin-left: -0.25rem;
  max-height: calc(100vh - 0.5rem);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  padding: 0.5rem;
  position: absolute;
  top: 3.6rem;
  width: 12rem;
  z-index: 1;

  flex-direction: column;
  align-items: flex-start;

  transform: translateY(-0.5rem);
  transition: opacity 100ms ease-out, transform 150ms ease-out;
}
.main-nav__subnav__dropdown.active {
  display: flex;
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}
.main-nav__subnav__item,
.main-nav__subnav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.main-nav__subnav__link {
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  font-family: "Pretendard";
  font-weight: 600;
  font-size: 1rem;
  line-height: 100%;
  color: var(--gray-700);
  transition: 150ms ease-out;
}
.main-nav__subnav__link:hover {
  background-color: var(--gray-100);
}

/* 우측 */
.main-nav__tab {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.main-nav__tab--container {
  height: 2.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0.2rem;

  background: var(--gray-50);
  box-shadow: 0 0 0 1px var(--gray-100) inset;
  border-radius: 1.25rem;
}
.main-nav__tab-button {
  height: 100%;
  padding: 0.625rem 1rem;
  gap: 0.25rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
}
.main-nav__tab-button.selected {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.04);
}
.main-nav__tab-button__link {
  font-weight: 700;
  font-size: 1rem;
  line-height: 100%;
  color: var(--gray-600);
	/* color: hsl(0deg 0.61% 2.66%); */
  transition: color 150ms ease-out;
}
.main-nav__tab-button__link:hover {
  color: var(--gray-500);
}
.main-nav__tab-button__link.selected {
  /* color: var(--gray-500); */
  color: hsl(0deg 0.61% 2.66%);
  transition: color 150ms ease-out;
}
.main-nav__tab-button__link--selected:hover {
  color: var(--gray-800);
}
/* Mobile Menu */
.main-nav__menu-button {
  width: 3rem;
  height: 3rem;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  cursor: pointer;
  pointer-events: fill;
  transition: background-color 150ms ease-out;
}
.main-nav__menu-button:hover {
  background-color: var(--gray-200);
}
#hamburgerMenuContainer {
  width: 2.5rem;
  height: 2.5rem;
}

/* APP */
.contents__app--wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--gray-50);
  overflow: hidden;
}
.contents__app {
  margin-top: 4rem;
  width: 100%;
  max-width: 75rem;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  padding: 0 2.5rem;
}
.contents__app__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.25rem;
}
.contents__app__title--wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.contents__app__title {
  font-weight: 600;
  font-size: 2rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--gray-600);
}
.contents__app__links {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.contents__app__link--wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.75rem;
}
.contents__app__qr--wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.75rem;
}
.contents__app__link__text {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 100%;
  color: var(--gray-600);
}
.feather-arrow-right {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-400);
}
.contents__app__qr--wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.75rem;
}
.contents__app__qr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  overflow: hidden;
}
.contents__app__qr__title--wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1rem;
  gap: 0.25rem;
  background-color: white;
}
.contents__app__qr__title {
  font-weight: 500;
  font-size: 1rem;
  line-height: 100%;
  color: var(--gray-400);
}
.contents__app__qr__code--wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 0.25rem;
  width: 100%;
  height: 12.5rem;
  background: white;
  border-top: 1px solid var(--gray-100);
}
.contents__app__qr__code {
  width: 100%;
  height: 100%;
}
.illust_appui {
  width: 36rem;
  bottom: 0;
}

/* Footer */
.footer-top--wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;

  background: var(--gray-800);
  border-top: 1px solid var(--gray-200);
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4.5rem 2.5rem 3rem;
  gap: 1.5rem;

  width: 100%;
  max-width: 75rem;
}
.footer-top__atam {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}
.footer-top__atam__info--container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.footer-top__atam__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.footer-top__atam__info--container p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 150%;
  color: var(--gray-500);
}
.footer-top__yuyukorea__logo {
  height: 1.2rem;
}
.footer-bottom--wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;

  background: var(--gray-800);
  border-top: 1px solid var(--gray-700);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem;
  gap: 1.5rem;

  width: 100%;
  max-width: 75rem;
}
.footer-bottom__inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom__legal {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}
.footer-bottom__tos,
.footer-bottom__privacy,
.footer-bottom__copyright {
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  display: flex;
  align-items: center;

  color: var(--gray-500);
}
.footer-bottom__divider {
  width: 1px;
  height: 0.75rem;
  background: var(--gray-500);
}

.pagination--wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.pagination li {
  cursor: pointer;
}
.pagination__previous,
.pagination__next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  /* gray/200 */
  border: 1px solid var(--gray-200);
  border-radius: 10rem;
}
.pagination__previous.disabled,
.pagination__next.disabled {
  cursor: not-allowed;
}
.pagination__previous .feather,
.pagination__next .feather {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gray-400);
}
.pagination__index {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10rem;
}
.pagination__index a {
  font-weight: 500;
  font-size: 1rem;
  line-height: 100%;
  color: var(--gray-400);
}
.pagination__index.active {
  background: var(--gray-100);
}
.pagination__index.active a {
  color: var(--gray-600);
}

/* 테블릿 가로 (해상도 768px ~ 1023px)*/
@media all and (max-width: 1023px) {
  /* Main Nav */
  .main-nav__tab {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .main-nav__menu-button {
    display: flex;
  }
  .main-nav__menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    width: calc(100% - 2.5rem);
    height: unset;
    /* margin: 0 2.5rem; */
    flex-direction: column;
    align-items: center;

    position: absolute;
    top: calc(100% + 1rem); /* 부모 요소를 기준으로 상대적인 위치 설정 */
    transform: translateX(-50%) translateY(-5%); /* 수평 가운데 정렬을 위해 50% 이동 */

    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    background-color: white;

    box-shadow: 0 4px 8px hsl(0deg 0% 0% / 0.025),
      0 16px 16px hsl(0deg 0% 0% / 0.025);

    z-index: 10;

    transition: all 200ms ease-out;
  }
  .main-nav__menu.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
  }
  .main-nav__item {
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }
  .main-nav__link {
    width: 100%;
    padding: 1.5rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
  }
  .main-nav__link:hover {
    background-color: unset;
  }
  .main-nav__item:last-child {
    border-style: none;
  }
  .main-nav__subnav__dropdown {
    display: flex;
    opacity: 0;
    height: 0;
    position: relative;
    top: calc(100% + 1rem);
    margin-left: unset;
    width: 100%;
    padding: unset;
    border-radius: 0;
    border-style: unset;
    box-shadow: unset;
    transform: translateY(-0.5rem);
  }
  .main-nav__subnav__dropdown.active {
    opacity: 1;
    height: 100%;
    transform: translateY(0);
  }
  .main-nav__subnav__item {
    border-radius: 0;
    background-color: var(--gray-50);
  }
  .main-nav__subnav__link {
    border-radius: 0;
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
  }
  .main-nav__subnav__link:hover {
    background-color: var(--gray-200);
  }
  .main-nav__subnav__toggle .feather-chevron-down {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2px;
  }

  .table__header__item p {
    line-height: 140%;
  }
  .table__header__item p br {
    display: inline;
  }

  /* Flextable */
  .flextable__header__cell {
    width: 7.5rem;
  }
  .flextable__header__cell.header,
  .flextable__header__cell.large {
    width: calc(15rem + 1px);
  }

  /* APP */
  .contents__app {
    flex-direction: column-reverse;
  }
  .contents__app__mockup {
    transform: translateX(-3rem);
  }

  /* Footer */
  .footer-top__company {
    flex-direction: column;
    align-items: start;
  }
  .footer-bottom__inner {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
}

/* 모바일 가로 & 테블릿 세로 (해상도 480px ~ 767px)*/
@media all and (max-width: 767px) {
  html {
    font-size: 14px !important;
  }

  * {
    word-break: keep-all;
  }

  .grid--wrapper {
    padding: 2rem 1.5rem;
  }
  .grid {
    border-width: 0;
  }
  .inputbox.half {
    width: 100%;
    max-width: unset;
  }

  /* Application Board */
  .application {
    padding: 32px 20px;
  }
  .application__board__body__row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  /* tabNavigator */
  .tabNavigator__tab a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px 18px;
    gap: 6px;
  }
  .tabNavigator__tab span {
    display: block;
    font-size: 1rem;
  }
  
  

  /* Footer */
  .footer-top {
    padding: 2.25rem 1.25rem 1.5rem;
  }
  .footer-bottom {
    padding: 1.5rem;
  }

  .footer-top__atam {
    flex-direction: column;
    align-items: flex-start;
  }  
  .footer-top__atam__info--container {
    gap: 0.5rem;
  }

  
  .footer-top__atam__info p {
    font-size: 1.0rem;
        line-height: 100%;
        text-align:center;
  }
  .footer-bottom__divider {
    display: none;
  }
  .footer-bottom__inner {
    flex-direction: column;
  }
  .footer-bottom__inner p,
  .footer-bottom__inner a {
    font-size: 1.0rem;
  }
  .application__button {
    width: 100%;
  }
}

input:read-only{
	background: #ebe7e7;
	color: #a49797;
}


#write_info_header {
	display:flex;
}

#write_form > .flextable__row > .flextable__header--wrapper {
	display:flex;
}
	
.flextable__header__col {
    display: none;
    padding: 0.75rem;
    gap: 0.25rem;
    width: 100%;
    color: var(--gray-700);
    line-height: 1.5;
    font-weight: 600;
    font-size: 0.9rem;
    text-align:center;
    border-bottom: 1px solid var(--gray-200);
}

.footer-top__atam__info--container {
		display:flex;
}
.footer__item {width:100%;display:none;}
.footer__item__header--wrapper {color:var(--gray-500);}
.footer__item__header {float:left;line-height:100%;}
.footer__item__header--wrapper {margin: 0 auto;width: 138px;}
.footer__item__header--chevron {
	float:left;
	margin-top: -6px;
	margin-left:10px;
}
.footer__item__header--chevron.open .feather {
	transform: rotate(180deg);
}
	
@media all and (max-width: 567px) {
	.footer-top__atam__info--container {
		display:none;
	}
	.footer__item {
		display:block;
	}
	.footer-top__company {
    margin:0 auto;
  }
	.footer-top__atam__info--container :nth-child(1) {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  } 
  .footer-top__atam__info--container :nth-child(2) {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
        margin-top: 5px;
  } 
  .footer-top__atam img {
    margin:0 auto;
  }
}
 
/* 모바일 세로 (해상도 ~ 479px)*/
@media all and (max-width: 479px) {
  html {
    font-size: 13px !important;
  }
  br {
    display: none !important;
  }

	.faq__item__body__content br {
		display: block !important;
	}
  /* MainNav */
  .main-nav__logo a {
    background: url(/assets/images/brandSymbolLogo.svg) no-repeat !important;
  }

  .grid--wrapper {
    padding: 0;
  }
  /* Table */
  .table {
    border-width: 1px 0px;
  }

	.footer__item__header--wrapper {width: 132px;}
	
  /* Flextable */
  .flextable__header__cell {
    width: 5rem;
  }
  .flextable__header__cell.header,
  .flextable__header__cell.large {
    width: calc(10rem + 1px);
  }

  .flextable__header__col {
    display: block;
    padding: 0.75rem;
    gap: 0.25rem;
    width: 100%;
    color: var(--gray-700);
    line-height: 1.5;
    font-weight: 600;
    font-size: 0.9rem;
    text-align:center;
    border-bottom: 1px solid var(--gray-200);
	}
	
	#write_info_header {
		display:none;
	}
	
	
	#write_form > .flextable__row > .flextable__header--wrapper {
		display:none;
	}

}

/* 모바일 세로 (해상도 ~ 479px)*/
@media all and (max-width: 400px) {
	.flextable__header__cell.header,
  .flextable__header__cell.large {
    width: calc(4rem + 1px);
    display:none;
  }
}

.spinner {
  border: 1px solid;
  position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 50 50'%3E%3Cpath d='M28.43 6.378C18.27 4.586 8.58 11.37 6.788 21.533c-1.791 10.161 4.994 19.851 15.155 21.643l.707-4.006C14.7 37.768 9.392 30.189 10.794 22.24c1.401-7.95 8.981-13.258 16.93-11.856l.707-4.006z'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E") center / 50px no-repeat;
}

.spinner_back{
	position: absolute;
	content:"";
	width: 100%;
	background: rgba(0,0,0,.6);
	height: 100%;
	left:0;
	top:0;
	z-index:10000;
	opacity: 1;
}

.txtWrap {
	word-wrap: break-word;
	word-break:break-all;
	/* white-space: pre-wrap;*/
	/* white-space: -moz-pre-wrap;*/
	/* white-space: -pre-wrap;*/
	/* white-space: -o-pre-wrap;  */
	
}

.disable {
	background: #ebe7e7;
	color: #a49797;
}