@charset "UTF-8";
:root {
  --font-default: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, system-ui, Roboto,
  'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Malgun Gothic',
  'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

:root {
  --bp-xs: 22rem;
  --bp-sm: 45rem;
  --bp-md: 62rem;
  --bp-lg: 75rem;
  --bp-xl: 90rem;
  --account-form-height: 3.25rem;
  --account-padding-inline: 0.25rem;
  --form-height: 2.5em;
  --unit-abs: 1rem;
  --unit: 1em;
  --radius-ui: var(--unit-abs);
  --sub-ui-gap: 2.5rem;
}

:root {
  --stack-modal: 9999;
  --stack-cookie: 8888;
  --stack-nav: 7777;
  --stack-panel: 6666;
  --stack-popover: 5555;
  --stack-popup: 4444;
}

:root {
  --color-theme: #2196F3;
  --color-cancel: #FF0048;
  --color-confirm: #00b52a;
  --color-secondary: #FFCC00;
  --color-social-kakao: #F7E317;
  --color-social-naver: #03c75a;
  --color-social-apple: #000000;
  --color-social-google: #ffffff;
  --color-base: #FFFFFF;
  --color-font-body: #444444;
  --color-font-heading: #000000;
  --color-form-base: #f4f4f4;
  --color-form-border: hsla(0 0% 0% / 0.05);
  --color-dialog-base: #ffffff;
  --color-dialog-border: #000000;
  --color-scrollbar-track: #fff;
  --color-scrollbar-thumb: #ddd;
  --color-scrollbar-thumb-border: #fff;
  --color-scrollbar-thumb-hover: #888;
}

:root[data-theme=light] {
  color-scheme: light;
}

@media screen {
  :root[data-theme=dark] {
    color-scheme: dark;
    --color-base: #222222;
    --color-font-body: #eeeeee;
    --color-font-heading: #ffffff;
    --color-form-base: #333333;
    --color-form-border: #888888;
    --color-dialog-base: #333333;
    --color-dialog-border: #888888;
  }
}

@layer reset {
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    font: inherit;
  }
  *::before, *::after {
    box-sizing: border-box;
  }
  html, body {
    -webkit-font-smoothing: antialiased;
  }
  html {
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  body {
    min-height: 100vh;
  }
  body::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-block-start: -1px;
  }
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
  }
  input, button, textarea, select {
    border-radius: 0;
    font: inherit;
  }
  input:disabled, button:disabled, textarea:disabled, select:disabled {
    cursor: auto;
  }
  button, select {
    cursor: pointer;
  }
  h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    text-wrap: balance;
  }
  h1, h2, h3, h4, h5, h6, p {
    overflow-wrap: break-word;
  }
  h1, h2, h3, h4, h5, h6, button, input, label {
    line-height: 1.1;
  }
  dialog {
    margin: auto;
  }
  ol:not([role=list]), ul:not([role=list]) {
    list-style: none;
    padding-inline-start: 0;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
}
body {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-display: swap;
  line-height: 1.5;
  color: var(--color-font-body);
  min-width: 20rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  scrollbar-gutter: stable;
}

main {
  flex: 1;
}

h1 {
  --step: 3;
}

h2 {
  --step: 2;
}

h3 {
  --step: 1;
}

h4 {
  --step: 0;
}

h1, h2, h3, h4 {
  font-size: calc(1em + var(--step, 0) * 0.25em);
  font-weight: 700;
  margin-block-start: 1em;
  margin-block-end: 0.5em;
  color: var(--color-font-heading);
}

p {
  margin-block: 0.5em;
}

a {
  color: inherit;
}
a:hover, a:active {
  color: var(--color-primary);
}

ol[role=list], ul[role=list] {
  padding-inline-start: 1em;
}

@page {
  size: A4 portrait;
  margin: 0mm;
}
@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
dialog {
  display: none;
  background-color: var(--color-dialog-base);
  border: 1px solid var(--color-dialog-border);
  color: inherit;
  min-width: 20rem;
  overflow: hidden;
}
dialog[open] {
  display: block;
}
dialog[open], dialog[open]::backdrop {
  animation: fadeIn 0.2s;
}
dialog .header, dialog .footer {
  display: flex;
  align-items: center;
}
dialog .header {
  justify-content: space-between;
}
dialog .body {
  padding: 1rem;
}
dialog.modal {
  max-width: calc(100% - 2rem);
  max-height: calc(100% - 2rem);
  z-index: var(--stack-modal);
}
dialog.modal .body {
  flex: 1;
  overflow-y: auto;
}
dialog.modal.expand {
  border-radius: 0;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
dialog.cookie, dialog.panel {
  position: fixed;
  inset: 0;
}
dialog.cookie {
  margin-block-end: 0;
  width: 100%;
  z-index: var(--stack-cookie);
}
dialog.panel {
  margin-inline-end: 0;
  height: 100%;
  min-width: 19rem;
  max-width: 44rem;
  z-index: var(--stack-panel);
}
dialog.panel .container {
  min-height: 100%;
}
dialog.panel.on-left {
  margin-block-start: 0;
}
dialog.popup {
  position: absolute;
  inset: 0;
  z-index: var(--stack-popup);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body:has(.modal[open]) {
  overflow: hidden;
}

.modal {
  border: none;
  border-radius: var(--radius-ui);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.modal .header {
  border-bottom: 1px solid #eee;
  padding: 0.5rem;
  padding-inline-start: 1.125em;
  font-size: 1.24em;
  font-weight: 700;
}
.modal .header button {
  background-color: transparent;
  border: none;
  border-radius: 100%;
  padding: 0.5rem;
}
.modal .header button:hover {
  background-color: #eee;
}
.modal .footer {
  gap: 0.25em;
  padding: 0.5rem;
}
.modal .footer button {
  border: none;
  border-radius: 0.5rem;
  flex: 1 1 auto;
  height: var(--form-height);
  color: #888;
}
.modal .footer button:last-child {
  background-color: var(--color-theme);
  color: #fff;
  font-weight: 500;
}

dialog[open]::backdrop {
  background-color: rgba(100, 100, 100, 0.6);
  backdrop-filter: blur(1rem);
}

#modal-delete-account .body {
  padding: 2rem;
}
#modal-delete-account .body p {
  margin-block: 0;
}
#modal-delete-account .for-email-user {
  font-size: 0.875em;
}
#modal-delete-account .for-email-user p {
  margin-block-start: 1rem;
  margin-block-end: 0.5em;
}
#modal-delete-account .for-email-user input {
  width: 100%;
}

#modal-logout .body {
  text-align: center;
  padding-block: 3rem;
}

#modal-terms {
  width: 720px;
}
#modal-terms iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
#modal-terms .header {
  border-bottom: none;
}
#modal-terms .body {
  padding-block-start: 0;
}

.flex-space {
  margin-inline: auto;
}

.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  fill: none;
  vertical-align: middle;
  stroke: #000;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.icon.small {
  width: 16px;
  height: 16px;
}
.icon.medium {
  width: 24px;
  height: 24px;
}
.icon.large {
  width: 32px;
  height: 32px;
}

.img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.img.square {
  aspect-ratio: 1;
}
.img.landscape.paper {
  aspect-ratio: 1.414/1;
}
.img.landscape.ratio-3-2 {
  aspect-ratio: 3/2;
}
.img.landscape.ratio-4-3 {
  aspect-ratio: 4/3;
}
.img.landscape.ratio-16-9 {
  aspect-ratio: 16/9;
}
.img.portrait.paper {
  aspect-ratio: 1/1.414;
}
.img.portrait.ratio-3-2 {
  aspect-ratio: 2/3;
}
.img.portrait.ratio-4-3 {
  aspect-ratio: 3/4;
}
.img.portrait.ratio-16-9 {
  aspect-ratio: 9/16;
}
.img.top {
  -o-object-position: top;
     object-position: top;
}
.img.bottom {
  -o-object-position: bottom;
     object-position: bottom;
}
.img.left {
  -o-object-position: left;
     object-position: left;
}
.img.right {
  -o-object-position: right;
     object-position: right;
}

.loading {
  --loader-color: #888;
  --loader-size: 2rem;
  width: var(--loader-size);
  padding: calc(var(--loader-size) / 6);
  background: var(--loader-color);
  aspect-ratio: 1;
  border-radius: 50%;
  -webkit-mask: conic-gradient(rgba(0, 0, 0, 0), #000), conic-gradient(#000 0 0) content-box;
  -webkit-mask-composite: source-out;
          mask: conic-gradient(rgba(0, 0, 0, 0), #000) subtract, conic-gradient(#000 0 0) content-box;
  animation: loading 1s linear infinite;
}

@keyframes loading {
  to {
    rotate: 1turn;
  }
}
.table-search {
  display: inline-flex;
  align-items: center;
  background-color: #f4f4f4;
  border: 1px solid transparent;
  border-radius: 100vw;
  font-size: 0.875em;
}
.table-search select, .table-search input, .table-search button {
  height: 2.5em;
  background-color: transparent;
  border: none;
}
.table-search select {
  padding-inline-start: 0.75em;
  padding-inline-end: 1.5em;
}
.table-search input {
  padding-inline: 0.75em;
}
.table-search button {
  padding-inline-end: 0.75em;
}
.table-search button svg {
  stroke: #888;
}
.table-search button:hover svg {
  stroke: var(--color-theme);
  stroke-width: 2;
}
.table-search + .table-container {
  margin-block-start: 0.5rem;
}
.table-search:has(input:focus) {
  background-color: #fff;
  border-color: var(--color-theme);
}

.table-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  height: auto;
  width: 100%;
  margin-block-start: 1rem;
}
.table-container::-webkit-scrollbar {
  height: 0.75em;
  margin-block: 0.25em;
}
.table-container::-webkit-scrollbar-track {
  background-color: var(--color-scrollbar-track);
  border-radius: 100vw;
}
.table-container::-webkit-scrollbar-thumb {
  background-color: var(--color-scrollbar-thumb);
  border-radius: 100vw;
  border: 0.25em solid var(--color-scrollbar-thumb-border);
}
.table-container::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-scrollbar-thumb-hover);
}
.table-container table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  border-block: 1px solid #ddd;
}
.table-container table th {
  padding: 0.5rem;
}
.table-container table td {
  padding: 0.75rem;
}
.table-container table thead th {
  border-bottom: 1px solid #aaa;
  font-weight: 600;
  font-size: 0.75em;
  height: 2.5em;
}
.table-container table tbody td {
  border-bottom: 1px solid #eee;
  font-size: 0.875em;
}
.table-container table tbody td a {
  color: #000;
  text-decoration: none;
}
.table-container table tbody td a:hover {
  color: hsl(from var(--color-theme) h s 45%);
  text-decoration: underline;
}
.table-container table tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}
.table-container table tbody tr:last-child td {
  border-bottom: #ddd;
}
@media screen and (max-width: 767px) {
  .table-container table th, .table-container table td {
    max-width: 30rem;
    overflow: hidden; /* 넘치는 내용 숨김 */
    text-overflow: ellipsis; /* 말줄임표 */
    white-space: nowrap; /* 줄바꿈 금지 */
  }
}

.table-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.75em;
  margin-block-start: 1rem;
}
.table-pagination a {
  display: block;
  border-radius: 100vw;
  color: #666;
  line-height: 1;
  min-width: 1.75em;
  padding-block: 0.375em;
  padding-inline: 0.5em;
  text-align: center;
  text-decoration: none;
}
.table-pagination a:hover {
  background-color: #f4f4f4;
  color: #000;
}
.table-pagination a:hover svg {
  stroke: #000;
}
.table-pagination a.active {
  background-color: var(--color-theme);
  color: #fff;
  font-weight: 500;
}
.table-pagination a svg {
  stroke: #666;
}

.goto-board-list {
  display: flex;
  align-items: center;
  height: 2.125rem;
  font-size: 0.75rem;
  text-decoration: none;
  color: var(--color-theme);
}
.goto-board-list svg {
  stroke-width: 1.5;
  stroke: var(--color-theme);
}
.goto-board-list:hover {
  color: hsl(from var(--color-theme) h s 40%);
}

.post-info, .post-attachments {
  font-size: 0.75em;
  color: #888;
}

.post-attachments {
  font-size: 0.75em;
  margin-block-start: 1rem;
}
.post-attachments a {
  display: inline-block;
  padding: 0.25em 0.5em;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 0.5em;
  color: inherit;
  text-decoration: none;
}
.post-attachments a:hover {
  border-color: #ccc;
  color: #000;
}

.post-content {
  border-block: 1px solid #eee;
  margin-block: 1rem;
  padding-block: 1rem;
}

.post-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875em;
}
.post-nav a {
  display: flex;
  align-items: center;
  gap: 0.25em;
  background-color: #f4f4f4;
  color: #888;
  text-decoration: none;
  padding: 0.5em;
  border-radius: 100vw;
  font-size: 0.875em;
}
.post-nav a svg {
  stroke-width: 1.5;
  stroke: #999;
}
.post-nav a.prev-post {
  padding-inline-end: 1em;
}
.post-nav a.next-post {
  padding-inline-start: 1em;
}
.post-nav a:hover {
  color: #000;
}
.post-nav a:hover svg {
  stroke: #000;
}

button,
input:not([type=checkbox], [type=radio], [type=range]),
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button.form,
input.form:not([type=checkbox], [type=radio], [type=range]),
label.form:has([type=checkbox], [type=radio], [type=range]),
select.form {
  min-height: 1.75em;
  padding-inline: 0.75em;
  vertical-align: middle;
  border-radius: 0.5em;
  height: var(--form-height);
}
button.form:focus,
input.form:not([type=checkbox], [type=radio], [type=range]):focus,
label.form:has([type=checkbox], [type=radio], [type=range]):focus,
select.form:focus {
  background-color: #fff;
  border-color: var(--color-theme);
  transition: all 0.1s ease-in-out;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-down-icon lucide-chevron-down'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 0.5em center;
  background-repeat: no-repeat;
  background-size: 0.75em;
}
select.form {
  padding-inline-end: 1.5em;
}

button.form,
input.form:not([type=checkbox], [type=radio], [type=range]),
select.form,
textarea.form {
  background-color: var(--color-form-base);
  border: 1px solid var(--color-form-border);
}

label.form:has([type=radio], [type=checkbox]) input {
  margin-inline-end: 0.25em;
}
label.form:has([type=radio], [type=checkbox]) + label:has([type=radio], [type=checkbox]) {
  margin-inline-start: 0.5em;
}
label.form:has([type=radio], [type=checkbox]):hover {
  text-decoration: underline;
}

button.form,
label.form:has([type=checkbox], [type=radio], [type=range]) {
  display: inline-flex;
  align-items: center;
  color: inherit;
  cursor: pointer;
}

input:is([type=checkbox], [type=radio], [type=range]) {
  accent-color: var(--color-theme);
}

.container {
  max-width: var(--bp-md);
  margin: 0 auto;
  padding-inline: 1rem;
}

.banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 10rem;
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: var(--radius-ui);
  background-size: cover;
  max-width: calc(var(--bp-md) - 2rem);
  margin-block-start: 0;
  margin-block-end: var(--sub-ui-gap);
  margin-inline: auto;
  padding-inline: 4rem;
}
.banner h1 {
  margin-block-start: 0;
  margin-block-end: 0.25em;
}
.banner span {
  display: inline-block;
  font-size: 0.75em;
  font-weight: 600;
}
@media screen and (max-width: 719px) {
  .banner {
    padding-inline: 2rem;
  }
}

.sub-container {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: var(--sub-ui-gap);
  height: 100%;
}
@media screen and (max-width: 920px) {
  .sub-container {
    display: block;
  }
}

.sub-nav {
  align-self: start;
  position: sticky;
  top: var(--sub-ui-gap);
  font-size: 0.875em;
}
.sub-nav .sub-nav-title {
  display: flex;
  align-items: center;
  height: 2.125rem;
  background-color: var(--color-theme);
  background: linear-gradient(90deg, var(--color-theme) 0%, hsl(from var(--color-theme) h s 65%) 100%);
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding-inline: 1rem;
}
.sub-nav ul {
  display: flex;
  flex-direction: column;
  margin-block-start: 0.5rem;
}
.sub-nav ul li a {
  display: block;
  border-radius: 0.5rem;
  color: #666;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  text-decoration: none;
}
.sub-nav ul li a:hover {
  color: #000;
}
.sub-nav ul li a.active {
  background-color: #f4f4f4;
  color: #000;
  font-weight: 500;
}
@media screen and (max-width: 920px) {
  .sub-nav {
    display: none;
  }
}

.sub-content h2:first-child {
  margin-block-start: 0.125rem;
  margin-block-end: 2rem;
}

main {
  padding-block-end: 3rem;
}

.account {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.account .container {
  padding-inline: 1rem;
  width: clamp(320px, 100%, 400px);
}
.account h1 {
  font-weight: 700;
  margin-block-start: 0;
  margin-block-end: 3rem;
  padding-inline: var(--account-padding-inline);
  text-align: center;
}
@media screen and (max-width: 719px) {
  .account h1 {
    margin-block-start: 3rem;
  }
}
.account p {
  text-align: center;
}
.account label, .account input {
  display: block;
}
.account input, .account button {
  width: 100%;
  height: var(--account-form-height);
  border-radius: 100vw;
}
.account label {
  font-size: 0.75em;
  font-weight: 600;
  margin-block-start: 1rem;
  padding-inline: var(--account-padding-inline);
  padding-block: 0.5rem;
}
.account input:not([type=checkbox], [type=radio], [type=range]) {
  background-color: var(--color-form-base);
  border: 1px solid var(--color-form-border);
  padding-inline: 1.5rem;
}
.account input:not([type=checkbox], [type=radio], [type=range]):focus {
  outline: none;
  background-color: #fff;
  border-color: var(--color-theme);
  transition: all 0.1s ease-in-out;
}
.account button {
  justify-content: center;
  background-color: var(--color-theme);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
  margin-block-start: 1.5rem;
  transition: background-color 0.1s ease-in-out;
}
.account button:hover {
  background-color: hsl(from var(--color-theme) h s 45%);
}
.account .options {
  display: flex;
  justify-content: space-between;
  padding-inline: var(--account-padding-inline);
  padding-block-start: 2rem;
}
.account .options a {
  font-size: 0.875em;
  color: #888;
  text-decoration: none;
}
.account .options a:hover {
  color: #000;
}
.account .social-buttons {
  display: flex;
  justify-content: space-between;
}
.account .social-buttons .social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin: 0;
  width: var(--account-form-height);
  height: var(--account-form-height);
  border: 1px solid transparent;
  transition: scale 0.1s ease-in-out;
}
.account .social-buttons .social-button img {
  height: 1.5rem;
}
.account .social-buttons .social-button.for-kakao {
  background-color: #F7E317;
  color: #000;
}
.account .social-buttons .social-button.for-naver {
  background-color: #03c75a;
}
.account .social-buttons .social-button.for-apple {
  background-color: #000000;
}
.account .social-buttons .social-button.for-google {
  background-color: #ffffff;
  border-color: #ddd;
  color: #000;
}
.account .social-buttons .social-button:hover {
  scale: 1.1;
}
.account .for-signup h1 {
  margin-block-end: 2rem;
}
.account .for-signup p {
  font-size: 0.75em;
  padding-inline: var(--account-padding-inline);
  margin-block-end: 2rem;
}
.account .for-signup .social-buttons {
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.account .for-signup .social-buttons .social-button {
  font-size: 0.875em;
  width: 100%;
  padding-inline-start: 2.75rem;
  padding-inline-end: 2rem;
  justify-content: flex-start;
  gap: 1rem;
}
.account .for-signup .social-buttons .social-button img {
  transition: all 0.1s ease-in-out;
}
.account .for-signup .social-buttons .social-button span {
  display: block;
  text-align: left;
}
.account .for-signup .social-buttons .social-button:hover {
  scale: 1;
  text-decoration: underline;
}
.account .for-signup .social-buttons .social-button:hover img {
  scale: 1.1;
}
.account .for-signup .options {
  justify-content: center;
}
.account .for-signup-social {
  max-width: 640px;
}
.account .for-signup-social h1 {
  text-align: left;
  margin-block: 1rem;
}
.account .for-signup-social .signup-info label {
  font-size: 1rem;
  padding: 0;
}
.account .for-signup-social .signup-info label span {
  display: block;
  font-size: 0.75em;
  padding-inline: var(--account-padding-inline);
  padding-block: 0.5rem;
}
.account .for-signup-social .signup-info input[type=text], .account .for-signup-social .signup-info input[type=tel] {
  width: 100%;
  height: 2.5rem;
  border-radius: 0.5rem;
  font-weight: 400;
  padding-block: 0.5em;
  padding-inline: 0.75rem;
}
.account .for-find-id-pw {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
.account .for-find-id-pw h1 {
  margin-block-end: 2rem;
}
.account .for-find-id-pw h1 > label {
  font-size: 1em;
  font-weight: 700;
  display: inline;
  padding: 0;
  padding-inline-end: 0.25em;
}
.account .for-find-id-pw .find {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.account .for-find-id-pw .find p {
  color: #666;
  font-size: 0.75em;
  margin-block-start: 1rem;
  padding-inline: var(--account-padding-inline);
  text-align: center;
}
.account .for-find-id-pw .find p:first-child {
  margin-block-start: 0;
  margin-block-end: 2rem;
}
.account .for-find-id-pw input[type=radio] {
  display: none;
}
.account .for-find-id-pw input[type=radio]:checked + .find {
  opacity: 1;
  position: static;
  z-index: 1;
}
.account .for-find-id-pw input[id=find-id]:checked ~ h1 > label[for=find-pw],
.account .for-find-id-pw input[id=find-pw]:checked ~ h1 > label[for=find-id] {
  cursor: pointer;
  font-weight: 400;
  color: #ccc;
  transition: color 0.1s ease-in-out;
}
.account .for-find-id-pw input[id=find-id]:checked ~ h1 > label[for=find-pw]:hover,
.account .for-find-id-pw input[id=find-pw]:checked ~ h1 > label[for=find-id]:hover {
  color: var(--color-theme);
}

.personal-info {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}

.children-info .child {
  font-size: 0.875em;
}
.children-info .child input[type=radio] {
  display: none;
}
.children-info .child .form {
  border-radius: 0.5rem;
  font-size: inherit;
  height: var(--form-height);
  margin: 0;
}
.children-info .child label.form {
  background-color: #f4f4f4;
  border: 1px solid var(--color-form-border);
  cursor: pointer;
  font-size: inherit;
  font-weight: 400;
  margin: 0 !important;
  padding-inline: 0.75em;
  white-space: nowrap;
}
.children-info .child label.form:has(input[type=radio]:checked) {
  background-color: hsl(from var(--color-theme) h s 95%);
  border-color: hsla(from var(--color-theme) h s l/0.5);
  color: var(--color-theme);
  font-weight: 500;
}
.children-info .child + .child, .children-info .child + .add-child {
  margin-block-start: 0.75em;
  border-top: 1px dashed #eee;
  padding-block-start: 0.75em;
}
.children-info .school-info, .children-info .child-info {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.25rem;
  background-color: #fff;
}
.children-info .school-info input[type=text], .children-info .child-info input[type=text] {
  width: 100%;
}
.children-info .child-info {
  margin-top: 0.25rem;
}
.children-info .add-child {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.children-info .add-child::before {
  content: "";
  display: block;
  height: var(--form-height);
  flex: 1;
  background: linear-gradient(90deg, rgb(244, 244, 244) 0%, rgb(255, 255, 255) 100%);
  border-radius: 0.5rem;
}
.children-info button {
  background-color: hsl(from var(--color-confirm) h s 95%);
  border: 1px solid hsl(from var(--color-confirm) h s l/0.2);
  border-radius: 0.5em;
  color: hsl(from var(--color-confirm) h s 30%);
  font-size: 0.875rem;
  font-weight: 400;
  height: var(--form-height);
  margin: 0;
  padding-inline: 0.75rem;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.children-info button:hover {
  background-color: var(--color-confirm);
}
.children-info button.btn-delete-child {
  background-color: hsl(from var(--color-cancel) h s 95%);
  border: 1px solid hsl(from var(--color-cancel) h s l/0.1);
  color: var(--color-cancel);
}
.children-info button.btn-delete-child:hover {
  background-color: var(--color-cancel);
}
.children-info button:hover {
  color: #fff;
  font-weight: 500;
}

.edit-confirm {
  margin-block-start: 2rem;
}
.edit-confirm .btn {
  border-radius: 0.5rem;
  font-size: 0.875em;
  height: 3rem;
  margin: 0;
}
.edit-confirm .btn.for-kakao {
  background-color: #F7E317;
  color: #000;
}
.edit-confirm .btn.for-naver {
  background-color: #03c75a;
}
.edit-confirm .btn.for-apple {
  background-color: #000000;
}
.edit-confirm .btn.for-google {
  background-color: var(--color-theme);
}
.edit-confirm .btn:hover {
  text-decoration: underline;
}
.edit-confirm label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  color: #888;
  font-size: 0.75em;
  font-weight: 400;
  line-height: 1;
}
.edit-confirm label input[type=checkbox] {
  width: 1.125em;
  height: 1.125em;
}
.edit-confirm label a:hover {
  color: #000;
}

.retest {
  width: clamp(320px, 100%, 640px);
  margin-inline: auto;
  padding: 1rem;
}
.retest h1 span {
  display: inline;
  font-weight: 300;
}
.retest label {
  color: #000;
}
.retest label:has([type=radio]) {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  font-weight: 400;
}
.retest label:has([type=radio]) input {
  margin-inline-end: 0.25em;
  width: 1rem;
  height: 1rem;
}
.retest label:has([type=radio]) + label:has([type=radio]) {
  margin-inline-start: 0.5em;
}
.retest label:has([type=radio]:checked) {
  font-weight: 700;
}
.retest .btn {
  height: var(--account-form-height);
  border-radius: 100vw;
  font-size: 1em;
}
.retest .btn:disabled {
  color: hsla(0, 100%, 100%, 0.5);
}
.retest .btn:disabled:hover {
  text-decoration: none;
  background-color: var(--color-theme);
}
.retest .none {
  display: none !important;
}
.retest .label-for-name.error, .retest .label-for-terms.error, .retest .label-for-gender.error {
  color: #f00;
}
.retest .label-for-terms.error {
  color: #f00;
}
.retest #prevented-msg {
  display: none;
}
.retest.prevented #prevented-msg {
  display: block;
}
.retest.prevented .container {
  display: none !important;
}

#retest-login input[type=text] {
  font-weight: 700;
}
#retest-login input[type=text]::-moz-placeholder {
  color: #888;
  font-weight: 400;
}
#retest-login input[type=text]::placeholder {
  color: #888;
  font-weight: 400;
}
#retest-login .label {
  font-size: 0.75em;
  font-weight: 600;
  margin-block-start: 1rem;
  padding-inline: var(--account-padding-inline);
  padding-block: 0.5rem;
  text-align: left;
}
#retest-login .gender {
  display: flex;
  align-items: center;
  background-color: var(--color-form-base);
  border: 1px solid var(--color-form-border);
  border-radius: 100vw;
  padding: 0.25rem;
}
#retest-login .gender input {
  display: none;
}
#retest-login .gender label {
  flex: 1 1 auto;
  color: #888;
  cursor: pointer;
  margin: 0;
  height: 2.625rem;
  border-radius: 100vw;
  justify-content: center;
  font-weight: 400;
}
#retest-login .gender label:has([type=radio]:checked) {
  background-color: #fff;
  box-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.05);
  color: #000;
}
#retest-login .gender label + label {
  margin-inline-start: 0 !important;
}
#retest-login .edit-confirm {
  margin-block-start: 2.5rem;
}

#retest-test {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  padding-inline: 0 !important;
  width: 100% !important;
}
#retest-test .number {
  display: inline-block;
  border: 1px solid #888;
  border-radius: 100vw;
  color: #666;
  font-size: 0.75em;
  font-weight: 700;
  padding-block: 0.5rem;
  padding-inline: 0.75rem;
}
#retest-test .question {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #f4f4f4;
  border-radius: 1.5rem;
  color: #000;
  font-size: 1.125em;
  font-weight: 500;
  min-height: 10rem;
  padding-inline: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 639px) {
  #retest-test .question {
    flex: 1;
  }
}
#retest-test .answers {
  width: 100%;
}
#retest-test .answers .answer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--color-theme) 0%, hsl(from var(--color-theme) h s 60%) 100%);
  font-weight: 500;
  margin-block-start: 1px;
  border-radius: 0;
  width: 100%;
}
#retest-test .answers .answer:first-child {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
#retest-test .answers .answer:last-child {
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
#retest-test .answers .answer:hover {
  background: linear-gradient(90deg, hsl(from var(--color-theme) h s 45%) 0%, hsl(from var(--color-theme) h s 50%) 100%);
}
#retest-test .answers .answer .loading {
  --loader-color: #fff;
  --loader-size: 1.5rem;
  display: none;
  padding: calc(var(--loader-size) / 8);
}
#retest-test .answers .picked .answer-text {
  display: none;
}
#retest-test .answers .picked .loading {
  display: block;
}
#retest-test .finished {
  display: none;
}
#retest-test.done .question {
  border: 1px solid hsl(from var(--color-confirm) h 50% 80%);
  background-color: hsl(from var(--color-confirm) h 50% 95%);
}
#retest-test.done .answers, #retest-test.done .number, #retest-test.done .in-progress {
  display: none;
}
#retest-test.done .finished {
  display: inline;
}

#retest-report {
  --gap: 0.75rem;
  --primary: #4153A1;
  padding-inline: 0 !important;
  width: 100% !important;
}
#retest-report body {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  margin: 0;
  padding: var(--gap);
}
#retest-report .type-table {
  border-bottom: 1px solid #eee;
  padding-block: var(--gap);
}
#retest-report .type-table img {
  width: 100%;
  height: auto;
}
#retest-report .category {
  border-bottom: 1px solid #eee;
  margin-top: var(--gap);
}
#retest-report .category .heading {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  font-weight: bold;
  padding-left: var(--gap);
}
#retest-report .category .desc {
  border: 1px solid var(--primary);
  border-radius: var(--gap);
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.875em;
  margin-block-start: var(--gap);
  margin-block-end: 1rem;
  text-align: left;
}
#retest-report .category .desc p {
  text-align: left;
}
#retest-report .title {
  color: var(--primary);
  font-size: 0.875em;
}
#retest-report .type {
  display: flex;
  align-items: center;
  gap: 0.25em;
  font-size: 1.25em;
}
#retest-report .type span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: #fff;
  font-size: 0.75em;
  border-radius: 100vw;
  height: 1.5rem;
  padding-inline: 0.5em;
}
#retest-report .char, #retest-report .tip {
  padding: var(--gap);
}
#retest-report .char p, #retest-report .tip p {
  margin-block-start: 0.5em;
  margin-block-end: 0;
}
#retest-report .char::before, #retest-report .tip::before {
  color: var(--primary);
  font-size: 0.75em;
  font-weight: 900;
  padding-block: 0.25em;
  margin-bottom: 0.5em;
}
#retest-report .char::before {
  content: "CHARACTERISTIC";
}
#retest-report .tip::before {
  content: "COACHING TIP";
}
#retest-report .tip {
  background-color: #E9ECF6;
  border-bottom-left-radius: var(--gap);
  border-bottom-right-radius: var(--gap);
}/*# sourceMappingURL=style.css.map */