@charset "utf-8";

.sub-visual {
  position: relative;
  padding: 12rem 0;
  background: #eee;
}

.page-title {
  font-size: 4rem;
  font-weight: 700;
}

.lnb {
  margin-top: 4rem;
}

/* ===========================
   SUB COMMON
=========================== */

.sub-main {
  background: #fff;
}

.sub-visual {
  display: flex;
  align-items: center;
  min-height: 18rem;
  background: #f4f7fb;
  border-bottom: 1px solid #e5e8ef;
}

.sub-visual__title {
  font-size: 3.6rem;
  font-weight: 800;
  color: #111;
}

/* ===========================
   SUB LAYOUT
=========================== */

.sub-layout {
  display: grid;
  grid-template-columns: 28rem minmax(0, 1fr);
  gap: 6rem;
  padding-top: 6rem;
  padding-bottom: 10rem;
}

.sub-layout > * {
  min-width: 0;
}

/* ===========================
   LNB
=========================== */

.sub-lnb {
  align-self: start;
  border: 1px solid #ebebeb;
  border-radius: 1.6rem;
  background: #fff;
  overflow: hidden;
}

.sub-lnb__title {
  padding: 3.4rem 2.4rem;
  background-color: var(--sublnb-primary);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.3;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}


.sub-lnb__list {
  padding: 1rem;
}

.sub-lnb__item {
  border-bottom: 1px solid #edf0f5;
}

.sub-lnb__item:last-child {
  border-bottom: 0;
}

.sub-lnb__depth2-row {
  display: flex;
  align-items: stretch;
}

.sub-lnb__link {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 5.6rem;
  padding: 0 1.6rem;
  border-radius: 1rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: #333;
  transition: 0.25s ease;
}

.sub-lnb__link:hover,
.sub-lnb__link:focus-visible,
.sub-lnb__link.is-active {
  color: var(--sublnb-primary);
}

.sub-lnb__toggle {
  position: relative;
  flex-shrink: 0;
  width: 5.2rem;
  min-height: 5.6rem;
  border-radius: 1rem;
}

.sub-lnb__toggle::before,
.sub-lnb__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #555;
  transform: translate(-50%, -50%);
}

.sub-lnb__toggle::before {
  width: 1.4rem;
  height: 2px;
}

.sub-lnb__toggle::after {
  width: 2px;
  height: 1.4rem;
}

.sub-lnb__toggle[aria-expanded="true"]::after {
  display: none;
}

.sub-lnb__depth3-list {
  padding: 0.6rem 1rem 1.2rem;
  background: var(--sublnb-bg);
  border-radius: 1.2rem;
}

.sub-lnb__depth3-list[hidden] {
  display: none;
}

.sub-lnb__depth3-link {
  position: relative;
  display: block;
  padding: 1rem 1.2rem 1rem 2.2rem;
  font-size: 1.5rem;
  color: #555;
  border-radius: 0.8rem;
  transition: 0.25s ease;
}

.sub-lnb__depth3-link::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #b2ab9a;
  transform: translateY(-50%);
}

.sub-lnb__depth3-link:hover,
.sub-lnb__depth3-link:focus-visible,
.sub-lnb__depth3-link[aria-current="page"] {
  color: var(--sublnb-primary);
  background: #fff;
  font-weight: 700;
}

/* ===========================
   CONTENT WRAP
=========================== */

.sub-content-wrap {
  min-width: 0;
}

.sub-page-header,
.sub-content-head {
  padding-bottom: 2.4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #dfe4ec;
}

/* ===========================
   BREADCRUMB
=========================== */

.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 1.5rem;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.8rem;
  border-top: 1px solid #aaa;
  border-right: 1px solid #aaa;
  transform: rotate(45deg);
}

.breadcrumb__link:hover,
.breadcrumb__link:focus-visible {
  color: var(--sublnb-primary);
  text-decoration: underline;
}

.breadcrumb__current {
  color: #222;
  font-weight: 700;
}

/* ===========================
   PAGE TITLE / UTIL
=========================== */

.sub-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.sub-page-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text);
}

.sub-page-util {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.sub-page-util__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  height: 4.4rem;
  /* padding: 0 1.4rem; */
  border: 1px solid #dfe4ec;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.sub-page-util__btn:hover,
.sub-page-util__btn:focus-visible {
  border-color: var(--sublnb-primary);
  color: var(--sublnb-primary);
  background: var(--sublnb-bg);
}

.sub-share-panel {
  margin-top: 1.6rem;
  padding: 1.6rem;
  border: 1px solid #dfe4ec;
  border-radius: 1.2rem;
  background: #fff;
}

.sub-share-panel[hidden] {
  display: none;
}

.sub-share-panel__list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sub-share-panel__link {
  display: inline-flex;
  align-items: center;
  min-height: 3.8rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: #f4f7fb;
  font-size: 1.4rem;
  font-weight: 700;
}

.sub-share-panel__link:hover,
.sub-share-panel__link:focus-visible {
  background: var(--sublnb-primary);
  color: #fff;
}

/* ===========================
   CONTENT
=========================== */

.sub-content {
  min-height: 40rem;
  font-size: 1.7rem;
  line-height: 1.75;
  color: #333;
}

.sub-content img {
  max-width: 100%;
  height: auto;
}

.sub-content table {
  width: 100%;
  border-collapse: collapse;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1279px) {
  .sub-layout {
    grid-template-columns: 26rem minmax(0, 1fr);
    gap: 4rem;
  }

  .sub-page-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 1024px) {
  .sub-visual {
    min-height: 14rem;
  }

  .sub-visual__title {
    font-size: 3rem;
  }

  .sub-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 7rem;
  }

  .sub-lnb {
    border-radius: 1.4rem;
  }

  .sub-lnb__title {
    position: relative;
    padding: 1.8rem 2rem;
    font-size: 2rem;
  }

  .sub-lnb__list {
    display: block;
    padding: 0.8rem;
  }

  .sub-lnb__link {
    min-height: 5.2rem;
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .sub-visual {
    min-height: 11rem;
  }

  .sub-visual__title {
    font-size: 2.6rem;
  }

  .sub-layout {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }

  .sub-page-header,
  .sub-content-head {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }

  .breadcrumb {
    margin-bottom: 1.4rem;
  }

  .breadcrumb__item {
    font-size: 1.3rem;
  }

  .sub-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.6rem;
  }

  .sub-page-title {
    font-size: 2.8rem;
  }

  .sub-page-util {
    width: 100%;
    justify-content: flex-end;
  }

  .sub-page-util__btn {
    min-width: 4rem;
    height: 4rem;
    padding: 0 1.2rem;
  }

  .sub-content {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .sub-visual {
    min-height: 9rem;
  }

  .sub-visual__title {
    font-size: 2.2rem;
  }

  .sub-lnb__title {
    font-size: 1.8rem;
  }

  .sub-lnb__link {
    min-height: 4.8rem;
    font-size: 1.5rem;
  }

  .sub-lnb__depth3-link {
    font-size: 1.4rem;
  }

  .sub-page-title {
    font-size: 2.4rem;
  }

  .sub-share-panel__list {
    flex-direction: column;
  }

  .sub-share-panel__link {
    justify-content: center;
    width: 100%;
  }
}


/* ===========================
   FOOTER
=========================== */

.footer {
  padding: 3rem 0 4rem;
  background: #3a3a3a;
  color: #fff;
}

.footer__list {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.footer__list a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer__list a:hover,
.footer__list a:focus-visible {
  text-decoration: underline;
}

.footer__address {
  margin-top: 2.4rem;

  font-style: normal;
  font-size: 1.4rem;
  color: #ddd;
}

.footer__address span {
  margin-left: 2rem;
}

.footer__copy {
  margin-top: 1rem;

  font-size: 1.3rem;
  color: #ddd;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 768px) {

  .footer__list {
    flex-wrap: wrap;
    gap: 1.4rem 2rem;
  }

  .footer__address span {
    display: block;
    margin-left: 0;
    margin-top: 0.6rem;
  }
}

@media (max-width: 480px) {

  .footer {
    padding: 2.4rem 0 3rem;
  }
}



/* ===========================
   AUTH GUIDE
=========================== */

.auth-guide {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 46rem;
  padding: 6rem 2rem;

  border-radius: 2rem;

  background:
   linear-gradient(135deg, #fcfbf5 0%, #eefbef 100%);
}

.auth-guide__card {
  width: 100%;
  max-width: 64rem;

  padding: 5.2rem 4.8rem;

  border: 1px solid #dfe7f1;
  border-radius: 2.4rem;

  background: #fff;

  text-align: center;

  box-shadow: 0 1.2rem 3rem rgba(16, 42, 67, 0.08);
}

.auth-guide__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 8.4rem;
  height: 8.4rem;

  margin-bottom: 2.4rem;

  border-radius: 50%;

  background: var(--sublnb-bg);
}

.auth-guide__icon-symbol {
  position: relative;

  display: block;

  width: 3.6rem;
  height: 3.7rem;

  border: 3px solid var(--sublnb-primary);
  border-radius: 0.8rem;
}

.auth-guide__icon-symbol::before {
  content: "";

  position: absolute;
  left: 50%;
  top: -1.6rem;

  width: 1.8rem;
  height: 1.3rem;

  border: 3px solid var(--sublnb-primary);
  border-bottom: 0;
  border-radius: 1.4rem 1.4rem 0 0;

  transform: translateX(-50%);
}

.auth-guide__icon-symbol::after {
  content: "";

  position: absolute;
  left: 50%;
  top: 1.2rem;

  width: 0.8rem;
  height: 0.8rem;

  border-radius: 50%;

  background: var(--sublnb-primary);

  transform: translateX(-50%);
}

.auth-guide__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
  color: #111;
}

.auth-guide__desc {
  margin-top: 1.6rem;

  font-size: 1.7rem;
  line-height: 1.75;
  color: #444;
}

.auth-guide__desc p + p {
  margin-top: 0.4rem;
}

.auth-guide__notice {
  margin-top: 3rem;
  padding: 2rem 2.4rem;

  border: 1px solid #f7e3d7;
  border-radius: 1.6rem;

  background: var(--sublnb-bg);

  text-align: left;
}

.auth-guide__notice-title {
  display: block;

  margin-bottom: 0.8rem;

  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sublnb-primary);
}

.auth-guide__notice p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #555;
}

.auth-guide__button-area {
  margin-top: 3.2rem;
}

.auth-guide__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 20rem;
  min-height: 5.2rem;
  padding: 0 3rem;

  border-radius: 999px;

  background: var(--sublnb-primary);
  color: #fff;

  font-size: 1.7rem;
  font-weight: 800;

  transition: 0.25s ease;
}

.auth-guide__button:hover,
.auth-guide__button:focus-visible {
  background: #7b5234;
  transform: translateY(-0.2rem);
}

.auth-guide__button:focus-visible {
  outline: 3px solid rgba(10, 90, 227, 0.35);
  outline-offset: 3px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {
  .auth-guide {
    min-height: 42rem;
    padding: 5rem 2rem;
  }

  .auth-guide__card {
    padding: 4.4rem 4rem;
  }
}

@media (max-width: 768px) {
  .auth-guide {
    align-items: flex-start;

    min-height: auto;
    padding: 3rem 1.6rem;

    border-radius: 1.6rem;
  }

  .auth-guide__card {
    max-width: none;
    padding: 3.6rem 2.4rem;

    border-radius: 1.8rem;
  }

  .auth-guide__icon {
    width: 7.2rem;
    height: 7.2rem;

    margin-bottom: 2rem;
  }

  .auth-guide__icon-symbol {
    width: 3.2rem;
    height: 3.8rem;
  }

  .auth-guide__title {
    font-size: 2.5rem;
  }

  .auth-guide__desc {
    font-size: 1.6rem;
  }

  .auth-guide__notice {
    margin-top: 2.4rem;
    padding: 1.8rem;
  }

  .auth-guide__button {
    width: 100%;
    min-height: 5.2rem;
  }
}

@media (max-width: 480px) {
  .auth-guide {
    padding: 2rem 1.2rem;
  }

  .auth-guide__card {
    padding: 3rem 2rem;
  }

  .auth-guide__title {
    font-size: 2.2rem;
  }

  .auth-guide__desc {
    font-size: 1.5rem;
    line-height: 1.7;
  }

  .auth-guide__notice p {
    font-size: 1.4rem;
  }

  .auth-guide__button {
    font-size: 1.6rem;
  }
}


/* ===========================
   COMPLETE PAGE
=========================== */

.complete-page {
  padding: 5.6rem 4rem;

  border-radius: 2rem;

  background: var(--sub-bg-light);
}

/* ===========================
   COMPLETE PAGE-HERO
=========================== */

.complete-page__hero {
  text-align: center;
}

.complete-page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 6.5rem;
  height: 6.5rem;

  margin-bottom: 2.4rem;

  border-radius: 50%;

  background: var(--sub-secondary);
}

.complete-page__icon span {
  position: relative;

  display: block;

  width: 3.8rem;
  height: 2.2rem;

  border-left: 0.5rem solid #fff;
  border-bottom: 0.5rem solid #fff;

  transform: rotate(-45deg);
}

.complete-page__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.35;
  color: #111;
}

.complete-page__desc {
  margin-top: 1.6rem;

  font-size: 1.7rem;
  line-height: 1.75;
  color: #444;
}

.complete-page__desc p + p {
  margin-top: 0.4rem;
}

/* ===========================
   COMPLETE PAGE-SUMMARY
=========================== */

.complete-summary {
  max-width: 86rem;

  margin: 4rem auto 0;
}

.complete-summary__title,
.complete-notice__title {
  position: relative;

  margin-bottom: 1.6rem;
  padding-left: 1.6rem;

  font-size: 2.2rem;
  font-weight: 800;
  color: #222;
}

.complete-summary__title::before,
.complete-notice__title::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0.7em;

  width: 0.7rem;
  height: 0.7rem;

  background: var(--sub-primary);
}

.complete-summary__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  border-top: 2px solid var(--sub-primary);

  background: #fff;
}

.complete-summary__item {
  display: grid;
  grid-template-columns: 14rem minmax(0, 1fr);

  border-bottom: 1px solid var(--table-border);
}

.complete-summary__item:nth-child(odd) {
  border-right: 1px solid var(--table-border);
}

.complete-summary__item dt {
  display: flex;
  align-items: center;

  padding: 1.5rem 1.6rem;

  background: var(--table-bg);

  font-size: 1.5rem;
  font-weight: 800;
  color: #333;
}

.complete-summary__item dd {
  min-width: 0;

  padding: 1.5rem 1.6rem;

  font-size: 1.5rem;
  line-height: 1.6;
  color: #444;

  overflow-wrap: anywhere;
}

/* ===========================
   COMPLETE PAGE-STATUS
=========================== */

.complete-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 2.8rem;
  padding: 0 1rem;

  border-radius: 999px;

  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;

  color: #fff;
}

.complete-status--received {
  background: var(--sub-secondary);
}

.complete-status--waiting {
  background: var(--sub-primary);
}

.complete-status--closed {
  background: #333;
}

/* ===========================
   COMPLETE PAGE-NOTICE
=========================== */

.complete-notice {
  max-width: 86rem;

  margin: 3.2rem auto 0;
  padding: 2.4rem 2.8rem;

  border: 1px solid #ded6ce;
  border-radius: 1.6rem;

  background: #fff;
}

.complete-notice__list {
  display: grid;
  gap: 0.8rem;

  font-size: 1.6rem;
  line-height: 1.7;
  color: #444;
}

.complete-notice__list li {
  position: relative;

  padding-left: 1.8rem;
}

.complete-notice__list li::before {
  content: "";

  position: absolute;
  left: 0.4rem;
  top: 0.75em;

  width: 0.5rem;
  height: 0.5rem;

  border-radius: 50%;

  background: var(--sub-primary);
}

/* ===========================
   COMPLETE PAGE-ACTIONS
=========================== */

.complete-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;

  margin-top: 4rem;
}

.complete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 14rem;
  min-height: 4.8rem;
  padding: 0 2.4rem;

  border: 1px solid transparent;
  border-radius: 0.8rem;

  font-size: 1.6rem;
  font-weight: 800;

  transition: 0.25s ease;
}

.complete-button--primary {
  background: var(--sub-btn-primary);
  border-color: var(--sub-btn-primary);
  color: #fff;
}

.complete-button--primary:hover,
.complete-button--primary:focus-visible {
  background: #c95509;
  border-color: #c95509;
}

.complete-button--basic {
  background: var(--sub-btn-basic);
  border-color: var(--sub-btn-basic);
  color: #fff;
}

.complete-button--basic:hover,
.complete-button--basic:focus-visible {
  background: #2f2925;
  border-color: #2f2925;
}

.complete-button--outline {
  background: #fff;
  border-color: #cfc7bf;
  color: #333;
}

.complete-button--outline:hover,
.complete-button--outline:focus-visible {
  border-color: var(--sub-primary);
  color: var(--sub-primary);
  background: var(--sub-bg);
}

/* ===========================
   COMPLETE PAGE-RESPONSIVE
=========================== */

@media (max-width: 1024px) {
  .complete-page {
    padding: 4.8rem 3rem;
  }

  .complete-summary,
  .complete-notice {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .complete-page {
    padding: 4rem 2rem;
    border-radius: 1.6rem;
  }

  .complete-page__icon {
    width: 7.6rem;
    height: 7.6rem;
  }

  .complete-page__title {
    font-size: 2.5rem;
  }

  .complete-page__desc {
    font-size: 1.6rem;
  }

  .complete-summary__list {
    grid-template-columns: 1fr;
  }

  .complete-summary__item:nth-child(odd) {
    border-right: 0;
  }

  .complete-notice {
    padding: 2rem;
  }

  .complete-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .complete-page {
    padding: 3.2rem 1.6rem;
  }

  .complete-page__title {
    font-size: 2.2rem;
  }

  .complete-page__desc {
    font-size: 1.5rem;
    line-height: 1.7;
  }

  .complete-summary__item {
    grid-template-columns: 1fr;
  }

  .complete-summary__item dt {
    padding: 1.2rem 1.4rem 0.5rem;
  }

  .complete-summary__item dd {
    padding: 0.5rem 1.4rem 1.3rem;
  }

  .complete-actions {
    flex-direction: column;
  }

  .complete-button {
    width: 100%;
  }
}

/* ===========================
   MYPAGE COMMON
=========================== */

.mypage {
  color: #333;
}

/* header */

.mypage__header {
  padding: 3.2rem 3.6rem;
  border-radius: 1.8rem;
  background: var(--sub-bg-light);
  border: 1px solid var(--table-border);
}

.mypage__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.35;
  color: #111;
}

.mypage__desc {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #555;
}

.mypage__desc strong {
  color: var(--sub-primary);
  font-weight: 800;
}

.mypage__desc a {
  color: var(--sub-btn-primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/* ===========================
   MYPAGE COMMON-SUMMARY
=========================== */

.mypage-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}

.mypage-summary__item {
  position: relative;
  min-width: 0;
  padding: 2.4rem;
  border: 1px solid #e3ddd7;
  border-radius: 1.6rem;
  background: #fff;
}

.mypage-summary__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1.6rem;
  border-radius: 1.2rem;
  background: var(--sub-bg);
}

.mypage-summary__icon img {
  transform: scale(0.9);
}


.mypage-summary__label {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #333;
}

.mypage-summary__count {
  display: block;
  margin-top: 0.8rem;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--sub-primary);
}

.mypage-summary__count span {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  color: #555;
}

/* ===========================
   MYPAGE COMMON-NOTICE
=========================== */

.mypage-notice {
  margin-top: 3rem;
  padding: 2.4rem 2.8rem;
  border: 1px solid #ded6ce;
  border-radius: 1.6rem;
  background: #fff;
}

.mypage-notice__title {
  position: relative;
  margin-bottom: 1.2rem;
  padding-left: 1.6rem;
  font-size: 2rem;
  font-weight: 800;
  color: #222;
}

.mypage-notice__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--sub-primary);
}

.mypage-notice__list {
  display: grid;
  gap: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #555;
}

.mypage-notice__list li {
  position: relative;
  padding-left: 1.6rem;
}

.mypage-notice__list li::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.75em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sub-secondary);
}

/* ===========================
   MYPAGE COMMON-HISTORY
=========================== */

.mypage-history {
  margin-top: 4rem;
}

.mypage-history__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.6rem;
}

.mypage-history__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #222;
}

.mypage-history__count {
  font-size: 1.5rem;
  color: #666;
}

.mypage-history__count strong {
  color: var(--sub-primary);
  font-weight: 900;
}

/* ===========================
   MYPAGE COMMON-TABLE
=========================== */

.mypage-table-wrap {
  width: 100%;
}

.mypage-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--sub-primary);
  font-size: 1.5rem;
}

.mypage-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.mypage-table th,
.mypage-table td {
  padding: 1.5rem 1.2rem;
  border-bottom: 1px solid var(--table-border);
  text-align: center;
  vertical-align: middle;
}

.mypage-table th {
  background: var(--table-bg);
  color: #222;
  font-weight: 800;
}

.mypage-table tbody tr {
  transition: background 0.2s ease;
}

.mypage-table tbody tr:hover {
  background: var(--sub-bg-light);
}

.mypage-table__title {
  text-align: left;
}

.mypage-table__title a {
  display: inline-block;
  max-width: 100%;
  color: #222;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.mypage-table__title a:hover,
.mypage-table__title a:focus-visible {
  color: var(--sub-btn-primary);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/* ===========================
   MYPAGE COMMON-BADGE
=========================== */

.status-badge,
.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0 1rem;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.status-badge--apply {
  background: #e65629;
  color: #fff;
}

.status-badge--approved {
  background: var(--sub-secondary);
  color: #fff;
}

.status-badge--rejected {
  background: #8b3a2b;
  color: #fff;
}

.status-badge--cancel {
  background: #555;
  color: #fff;
}

.status-badge--wait {
  background: var(--sub-primary);
  color: #fff;
}

.pay-badge--waiting {
  background: #fff4e8;
  color: #c95509;
  border: 1px solid #f2c79e;
}

.pay-badge--paid {
  background: #eef7ef;
  color: var(--sub-secondary);
  border: 1px solid #c9dfcc;
}

.pay-badge--free {
  background: #f1f1f1;
  color: #333;
  border: 1px solid #ddd;
}

.pay-badge--refund,
.pay-badge--none {
  background: #f5f5f5;
  color: #666;
  border: 1px solid #ddd;
}

/* ===========================
   MYPAGE COMMON-ACTIONS
=========================== */

.history-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.history-actions__btn,
.history-actions__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0 1rem;
  border-radius: 0.6rem;
  font-size: 1.3rem;
  font-weight: 800;
  white-space: nowrap;
}

.history-actions__btn {
  border: 1px solid #d6d0ca;
  background: #fff;
  color: #333;
  transition: 0.2s ease;
}

.history-actions__btn:hover,
.history-actions__btn:focus-visible {
  border-color: var(--sub-primary);
  color: var(--sub-primary);
  background: var(--sub-bg-light);
}

.history-actions__btn--primary {
  border-color: var(--sub-btn-primary);
  background: var(--sub-btn-primary);
  color: #fff;
}

.history-actions__btn--primary:hover,
.history-actions__btn--primary:focus-visible {
  background: #c95509;
  color: #fff;
}

.history-actions__text {
  background: #f3f3f3;
  color: #777;
}

/* ===========================
   MYPAGE COMMON-EMPTY STATE
=========================== */

.empty-state {
  margin-top: 3rem;
  padding: 6rem 2rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
  text-align: center;
}

.empty-state__icon {
  display: inline-flex;
  width: 7.2rem;
  height: 7.2rem;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: var(--sub-bg);
}

.empty-state__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #222;
}

.empty-state__desc {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #666;
}

.empty-state__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16rem;
  min-height: 4.8rem;
  margin-top: 2.4rem;
  padding: 0 2rem;
  border-radius: 0.8rem;
  background: var(--sub-btn-primary);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
}

/* ===========================
   MYPAGE COMMON-RESPONSIVE
=========================== */

@media (max-width: 1280px) {
  .mypage-summary {
    gap: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .mypage-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mypage__header {
    padding: 2.8rem;
  }
}

@media (max-width: 768px) {
  .mypage__title {
    font-size: 2.4rem;
  }

  .mypage-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mypage-summary__item {
    padding: 2rem;
  }

  .mypage-table,
  .mypage-table thead,
  .mypage-table tbody,
  .mypage-table tr,
  .mypage-table th,
  .mypage-table td {
    display: block;
  }

  .mypage-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .mypage-table {
    border-top: 0;
  }

  .mypage-table tbody {
    display: grid;
    gap: 1.2rem;
  }

  .mypage-table tr {
    padding: 1.8rem;
    border: 1px solid var(--table-border);
    border-radius: 1.4rem;
    background: #fff;
  }

  .mypage-table td {
    display: grid;
    grid-template-columns: 8rem minmax(0, 1fr);
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 0;
    text-align: left;
  }

  .mypage-table td::before {
    content: attr(data-label);
    font-weight: 800;
    color: #333;
  }

  .mypage-table__title a {
    white-space: normal;
  }

  .history-actions {
    justify-content: flex-start;
  }

  .mypage-history__head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .mypage__header {
    padding: 2.4rem 2rem;
  }

  .mypage-summary {
    grid-template-columns: 1fr;
  }

  .mypage-notice {
    padding: 2rem;
  }

  .mypage-table tr {
    padding: 1.6rem;
  }

  .mypage-table td {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .history-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .history-actions__btn,
  .history-actions__text {
    width: 100%;
  }

  .empty-state {
    padding: 4rem 1.6rem;
  }

  .empty-state__button {
    width: 100%;
  }
}

/* ===========================
   HISTORY DETAIL
=========================== */

.history-detail {
  color: #333;
}

/* header */

.history-detail__header {
  padding: 3.2rem 3.6rem;
  border: 1px solid var(--table-border);
  border-radius: 1.8rem;
  background: var(--sub-bg-light);
}

.history-detail__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.35;
  color: #111;
}

.history-detail__desc {
  margin-top: 1.4rem;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #555;
}

.history-detail__desc strong {
  color: var(--sub-primary);
  font-weight: 800;
}

/* status */

.history-status {
  margin-top: 3rem;
}

.history-status__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--sub-primary);
  background: #fff;
}

.history-status__item {
  padding: 2rem;
  border-right: 1px solid var(--table-border);
  border-bottom: 1px solid var(--table-border);
}

.history-status__item:last-child {
  border-right: 0;
}

.history-status__item dt {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #333;
}

.history-status__item dd {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #444;
  overflow-wrap: anywhere;
}

/* section */

.history-info__section,
.history-file,
.history-notice {
  margin-top: 4rem;
}

.history-info__title,
.history-notice__title {
  position: relative;
  margin-bottom: 1.6rem;
  padding-left: 1.6rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: #222;
}

.history-info__title::before,
.history-notice__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--sub-primary);
}

/* info */

.history-info__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--sub-primary);
  background: #fff;
}

.history-info__item {
  display: grid;
  grid-template-columns: 14rem minmax(0, 1fr);
  border-bottom: 1px solid var(--table-border);
}

.history-info__item:nth-child(odd) {
  border-right: 1px solid var(--table-border);
}

.history-info__item--full {
  grid-column: 1 / -1;
  border-right: 0 !important;
}

.history-info__item dt {
  display: flex;
  align-items: center;
  padding: 1.5rem 1.6rem;
  background: var(--table-bg);
  font-size: 1.5rem;
  font-weight: 800;
  color: #333;
}

.history-info__item dd {
  min-width: 0;
  padding: 1.5rem 1.6rem;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #444;
  overflow-wrap: anywhere;
}

.history-info__item a {
  color: var(--sub-btn-primary);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/* file */

.history-file__list {
  display: grid;
  gap: 1rem;
}

.history-file__link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--table-border);
  border-radius: 1.2rem;
  background: var(--sub-bg-light);
  color: #333;
}

.history-file__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 2.6rem;
  border-radius: 0.4rem;
  background: var(--sub-btn-primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.history-file__name {
  min-width: 0;
  font-size: 1.5rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-file__size {
  color: #777;
  font-size: 1.4rem;
  white-space: nowrap;
}

.history-file__link:hover .history-file__name,
.history-file__link:focus-visible .history-file__name {
  color: var(--sub-btn-primary);
  text-decoration: underline;
}

.history-file__empty {
  padding: 2.4rem;
  border: 1px solid var(--table-border);
  border-radius: 1.2rem;
  background: var(--sub-bg-light);
  color: #777;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

/* notice */

.history-notice {
  padding: 2.4rem 2.8rem;
  border: 1px solid #ded6ce;
  border-radius: 1.6rem;
  background: #fff;
}

.history-notice__list {
  display: grid;
  gap: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #555;
}

.history-notice__list li {
  position: relative;
  padding-left: 1.6rem;
}

.history-notice__list li::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.75em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sub-secondary);
}

/* badge */

.status-badge,
.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0 1rem;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.status-badge--apply {
  background: #e65629;
  color: #fff;
}

.status-badge--approved {
  background: var(--sub-secondary);
  color: #fff;
}

.status-badge--rejected {
  background: #8b3a2b;
  color: #fff;
}

.status-badge--cancel {
  background: #555;
  color: #fff;
}

.status-badge--wait {
  background: var(--sub-primary);
  color: #fff;
}

.pay-badge--waiting {
  background: #fff4e8;
  color: #c95509;
  border: 1px solid #f2c79e;
}

.pay-badge--paid {
  background: #eef7ef;
  color: var(--sub-secondary);
  border: 1px solid #c9dfcc;
}

.pay-badge--free {
  background: #f1f1f1;
  color: #333;
  border: 1px solid #ddd;
}

/* buttons */

.history-actions--bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 4rem;
}

.history-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  min-height: 4.8rem;
  padding: 0 2rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.history-button--primary {
  background: var(--sub-btn-primary);
  border-color: var(--sub-btn-primary);
  color: #fff;
}

.history-button--primary:hover,
.history-button--primary:focus-visible {
  background: #c95509;
}

.history-button--basic {
  background: var(--sub-btn-basic);
  border-color: var(--sub-btn-basic);
  color: #fff;
}

.history-button--basic:hover,
.history-button--basic:focus-visible {
  background: #2f2925;
}

.history-button--danger {
  background: #fff;
  border-color: #d94b3d;
  color: #b9362a;
}

.history-button--danger:hover,
.history-button--danger:focus-visible {
  background: #fff4f2;
}

.history-button--outline {
  background: #fff;
  border-color: #cfc7bf;
  color: #333;
}

.history-button--outline:hover,
.history-button--outline:focus-visible {
  border-color: var(--sub-primary);
  color: var(--sub-primary);
  background: var(--sub-bg);
}

/* accessibility */

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* responsive */

@media (max-width: 1024px) {
  .history-status__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .history-status__item:nth-child(2) {
    border-right: 0;
  }

  .history-info__list {
    grid-template-columns: 1fr;
  }

  .history-info__item:nth-child(odd) {
    border-right: 0;
  }
}

@media (max-width: 768px) {
  .history-detail__header {
    padding: 2.6rem 2.4rem;
  }

  .history-detail__title {
    font-size: 2.4rem;
  }

  .history-status__list {
    grid-template-columns: 1fr;
  }

  .history-status__item {
    border-right: 0;
  }

  .history-info__section,
  .history-file,
  .history-notice {
    margin-top: 3.2rem;
  }

  .history-file__link {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .history-file__size {
    grid-column: 2 / 3;
  }

  .history-file__name {
    white-space: normal;
  }

  .history-actions--bottom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .history-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .history-detail__title {
    font-size: 2.1rem;
  }

  .history-info__item {
    grid-template-columns: 1fr;
  }

  .history-info__item dt {
    padding: 1.2rem 1.4rem 0.5rem;
  }

  .history-info__item dd {
    padding: 0.5rem 1.4rem 1.3rem;
  }

  .history-actions--bottom {
    grid-template-columns: 1fr;
  }

  .history-notice {
    padding: 2rem;
  }
}


/* ===========================
   CLUB INTRO CONTENT
=========================== */

.club-intro {
  color: #333;
}

/* hero */
.intro__hero {padding: 3rem;border: 1px solid #ded6ce;border-radius: 2rem;background:linear-gradient(135deg, var(--sub-bg-light) 0%, var(--sub-bg) 100%);}

.intro__title {
  position: relative;
  margin-bottom: 2rem;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.35;
  color: #111;
}

.intro__desc {
  font-size: 1.7rem;
  line-height: 1.85;
  color: #444;
}

.intro__desc strong {
  color: var(--sub-primary);
  font-weight: 800;
}

/* section */
.content-section {
  margin-top: 5.6rem;
}

.content-heading {
  position: relative;

  margin-bottom: 2.4rem;
  padding-left: 1.8rem;

  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.35;
  color: #111;
}

.content-heading::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0.5em;

  width: 0.8rem;
  height: 0.8rem;

  background: var(--sub-secondary);
}

/* card */

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.content-card {
  min-width: 0;

  padding: 2.8rem;

  border: 1px solid var(--table-border);
  border-radius: 1.8rem;

  background: #fff;
}

.content-card__title {
  margin-bottom: 1.6rem;

  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--sub-primary);
}

.content-card__block + .content-card__block {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px dashed #ded6ce;
}

.content-card__subtitle {
  display: block;

  margin-bottom: 1rem;

  font-size: 1.7rem;
  font-weight: 800;
  color: #222;
}

/* list */

.content-list {
  display: grid;
  gap: 0.9rem;

  font-size: 1.6rem;
  line-height: 1.75;
  color: #444;
}

.content-list > li {
  position: relative;
  padding-left: 1.8rem;
}

.content-list--dot > li::before {
  content: "";

  position: absolute;
  left: 0.4rem;
  top: 0.78em;

  width: 0.5rem;
  height: 0.5rem;

  border-radius: 50%;

  background: var(--sub-primary);
}

.content-list--dash > li::before {
  content: "";

  position: absolute;
  left: 0.2rem;
  top: 0.8em;

  width: 0.7rem;
  height: 2px;

  background: #777;
}

.content-list--check > li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sub-primary);
  font-weight: 800;
}


/* text */

.text-primary {
  color: var(--sub-primary);
  font-weight: 800;
}

/* contact */

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  padding: 2.8rem 3.2rem;

  border: 1px solid var(--table-border);
  border-radius: 1.6rem;

  background: #fff;
}

.contact-box__title {
  display: block;

  font-size: 2rem;
  font-weight: 800;
  color: #222;
}

.contact-box__text {
  margin-top: 0.8rem;

  font-size: 1.6rem;
  line-height: 1.7;
  color: #555;
}

.contact-box__tel {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 4.8rem;
  padding: 0 2.4rem;

  border-radius: 999px;

  background: var(--sub-btn-basic);
  color: #fff;

  font-size: 1.7rem;
  font-weight: 800;
}

.contact-box__tel:hover,
.contact-box__tel:focus-visible {
  background: #2f2925;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {
  .intro__hero {
    padding: 3.4rem;
  }

  .content-card-grid {
    gap: 1.6rem;
  }

  .content-card {
    padding: 2.4rem;
  }
}

@media (max-width: 768px) {
  .intro__hero {
    padding: 3rem 2.4rem;
    border-radius: 1.6rem;
  }

  .intro__title {
    font-size: 2.4rem;
  }

  .intro__desc {
    font-size: 1.6rem;
    line-height: 1.75;
  }

  .content-section {
    margin-top: 4.4rem;
  }

  .content-heading {
    margin-bottom: 1.8rem;
    font-size: 2.3rem;
  }

  .content-card-grid {
    grid-template-columns: 1fr;
  }

  .content-card__title {
    font-size: 2rem;
  }

  .contact-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 2.4rem;
  }

  .contact-box__tel {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .intro__hero {
    padding: 2.4rem 2rem;
  }

  .intro__title {
    font-size: 2.1rem;
  }

  .intro__desc {
    font-size: 1.5rem;
  }

  .content-heading {
    font-size: 2rem;
  }

  .content-card {
    padding: 2rem;
    border-radius: 1.4rem;
  }

  .content-card__title {
    font-size: 1.8rem;
  }

  .content-list {
    font-size: 1.5rem;
  }

  .contact-box__title {
    font-size: 1.8rem;
  }

  .contact-box__text {
    font-size: 1.5rem;
  }
}


/* ===========================
   INSTRUCTOR BANK
=========================== */

.instructor-bank {
  color: #333;
}

/* ===========================
   PROCESS DIAGRAM
=========================== */

.process-diagram {
  padding: 4rem;
  border: 1px solid var(--table-border);
  border-radius: 2rem;
  background: #fff;
}

.process-diagram__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
  margin-bottom: 5rem;
}

.process-diagram__step {
  position: relative;
  display: flex;
  justify-content: center;
}

.process-diagram__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.2rem;
  width: 1.4rem;
  height: 1.4rem;
  border-top: 2px solid var(--sub-primary);
  border-right: 2px solid var(--sub-primary);
  transform: translateY(-50%) rotate(45deg);
}

.process-diagram__node {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13rem;
  height: 13rem;
  padding: 1.6rem;
  border-radius: 50%;
  background: var(--sub-bg-light);
  border: 2px solid #ded6ce;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.35;
  color: #333;
}

.process-diagram__node--main {
  background: var(--sub-primary);
  border-color: var(--sub-primary);
  color: #fff;
}

.process-diagram__bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 18rem 1fr;
  align-items: center;
  gap: 3rem;
}

.process-diagram__bottom::before,
.process-diagram__bottom::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  background: #d7ccc3;
}

.process-diagram__bottom::before {
  left: 26%;
  right: 50%;
}

.process-diagram__bottom::after {
  left: 50%;
  right: 26%;
}

.process-diagram__group,
.process-diagram__center {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-diagram__box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7.2rem;
  padding: 1.6rem 2rem;
  border-radius: 1.4rem;
  border: 1px solid #ded6ce;
  background: var(--sub-bg-light);
  font-size: 1.7rem;
  font-weight: 800;
  color: #333;
}

.process-diagram__box--main {
  background: var(--sub-secondary);
  border-color: var(--sub-secondary);
  color: #fff;
}

.process-diagram__label {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #666;
}

/* ===========================
   INFO / FEATURE / CONTACT
=========================== */

.info-box {
  padding: 2.8rem;
  border: 1px solid #ded6ce;
  border-radius: 1.8rem;
  background: var(--sub-bg-light);
  font-size: 1.7rem;
  line-height: 1.8;
  color: #444;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.feature-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 9.6rem;
  padding: 1.6rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.45;
  color: #333;
}

.feature-list__item::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 0.8rem;
  border-radius: 50%;
  background: var(--sub-secondary);
}

.contact-box__title {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #222;
}

.contact-box__text {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #555;
}

.contact-box__tel {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 0 2.4rem;
  border-radius: 999px;
  background: var(--sub-btn-basic);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {
  .process-diagram {
    padding: 3rem;
  }

  .process-diagram__top {
    gap: 2rem;
  }

  .process-diagram__node {
    width: 11.5rem;
    height: 11.5rem;
    font-size: 1.5rem;
  }

  .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .instructor-bank__hero {
    padding: 3rem 2.4rem;
    border-radius: 1.6rem;
  }

  .instructor-bank__title,
  .content-heading {
    font-size: 2.3rem;
  }

  .instructor-bank__desc,
  .content-desc,
  .info-box {
    font-size: 1.6rem;
    line-height: 1.75;
  }

  .process-diagram__top {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    margin-bottom: 4rem;
  }

  .process-diagram__step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .process-diagram__bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-diagram__bottom::before,
  .process-diagram__bottom::after {
    display: none;
  }

  .process-diagram__box {
    min-height: 6.4rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .contact-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 2.4rem;
  }

  .contact-box__tel {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .instructor-bank__hero,
  .process-diagram,
  .info-box {
    padding: 2.4rem 2rem;
  }

  .instructor-bank__title,
  .content-heading {
    font-size: 2rem;
  }

  .process-diagram__node {
    width: 10rem;
    height: 10rem;
    font-size: 1.4rem;
  }

  .feature-list__item {
    min-height: 7.6rem;
    font-size: 1.5rem;
  }
}



/* ===========================
   GUIDE PAGE
=========================== */

.guide-page {
  color: #333;
}

/* section */

.guide-section {
  margin-top: 5.2rem;
}

/* info */

.guide-info {
  border-top: 2px solid var(--sub-primary);
  background: #fff;
}

.guide-info__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-info__item {
  display: grid;
  grid-template-columns: 13rem minmax(0, 1fr);

  min-width: 0;

  border-right: 1px solid var(--table-border);
  border-bottom: 1px solid var(--table-border);
}

.guide-info__item:nth-child(2n) {
  border-right: 0;
}

.guide-info__title {
  display: flex;
  align-items: center;

  padding: 1.6rem;

  background: var(--table-bg);

  font-size: 1.5rem;
  font-weight: 800;
  color: #333;
}

.guide-info__desc {
  min-width: 0;

  padding: 1.6rem;

  font-size: 1.5rem;
  line-height: 1.7;
  color: #444;

  overflow-wrap: anywhere;
}

.guide-info__desc a {
  color: var(--sub-btn-primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/* list */

.guide-list {
  display: grid;
  gap: 0.8rem;
}

.guide-list > li {
  position: relative;
  padding-left: 1.6rem;
}

.guide-list--dot > li::before {
  content: "";

  position: absolute;
  left: 0.3rem;
  top: 0.75em;

  width: 0.5rem;
  height: 0.5rem;

  border-radius: 50%;

  background: var(--sub-secondary);
}

/* ===========================
   STEP LIST
=========================== */

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;

  counter-reset: step;
}

.step-list__item {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  min-height: 15rem;
  padding: 2.8rem 2rem;

  border: 1px solid #ded6ce;
  border-radius: 1.8rem;

  background: #fff;

  text-align: center;
}

.step-list__item:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 50%;
  right: -1.6rem;

  width: 1.2rem;
  height: 1.2rem;

  border-top: 2px solid var(--sub-primary);
  border-right: 2px solid var(--sub-primary);

  transform: translateY(-50%) rotate(45deg);
}

.step-list__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 5.6rem;
  height: 5.6rem;

  margin-bottom: 1.4rem;

  border-radius: 50%;

  background: var(--sub-primary);
  color: #fff;

  font-size: 1.6rem;
  font-weight: 900;
}

.step-list__title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #222;
}

.step-list__desc {
  margin-top: 0.8rem;

  font-size: 1.5rem;
  line-height: 1.6;
  color: #666;
}

.step-list--5col {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.6rem;
}

.step-list--5col .step-list__number {
  width: 4.8rem;
  height: 4.8rem;
  font-size: 1.5rem;
}

.step-list--5col .step-list__title {
  font-size: 1.7rem;
}

.step-list--5col .step-list__desc {
  font-size: 1.4rem;
}

/* ===========================
   FILE DOWNLOAD
=========================== */

.file-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  padding: 2.8rem 3.2rem;

  border: 1px solid #ded6ce;
  border-radius: 1.8rem;

  background: var(--sub-bg-light);
}

.file-download__title {
  display: block;

  font-size: 2rem;
  font-weight: 800;
  color: #222;
}

.file-download__desc {
  margin-top: 0.8rem;

  font-size: 1.5rem;
  line-height: 1.7;
  color: #555;
}

/* ===========================
   BUTTON
=========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 4.8rem;
  padding: 0 2.4rem;

  border: 1px solid transparent;
  border-radius: 0.8rem;

  font-size: 1.6rem;
  font-weight: 800;

  transition: 0.25s ease;
}

.btn--primary {
  background: var(--sub-btn-primary);
  border-color: var(--sub-btn-primary);
  color: #fff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #c95509;
  border-color: #c95509;
}

.btn--download {
  flex-shrink: 0;

  background: var(--sub-btn-basic);
  border-color: var(--sub-btn-basic);
  color: #fff;
}

.btn--download:hover,
.btn--download:focus-visible {
  background: #2f2925;
  border-color: #2f2925;
}

.guide-actions {
  display: flex;
  justify-content: center;

  margin-top: 4rem;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {
  .guide-page__hero {
    padding: 3.4rem;
  }

  .guide-info__list {
    grid-template-columns: 1fr;
  }

  .guide-info__item {
    border-right: 0;
  }

  .step-list {
    gap: 1.6rem;
  }

  .file-download {
    padding: 2.4rem;
  }
}

@media (max-width: 768px) {
  .guide-page__hero {
    padding: 3rem 2.4rem;
    border-radius: 1.6rem;
  }

  .guide-page__title,
  .guide-heading {
    font-size: 2.3rem;
  }

  .guide-page__desc {
    font-size: 1.6rem;
  }

  .guide-section {
    margin-top: 4.4rem;
  }

  .guide-info__item {
    grid-template-columns: 1fr;
  }

  .guide-info__title {
    padding: 1.4rem 1.6rem 0.6rem;
    background: #fff;
    color: var(--sub-primary);
  }

  .guide-info__desc {
    padding: 0.6rem 1.6rem 1.4rem;
  }

  .step-list {
    grid-template-columns: 1fr;
  }

  .step-list__item:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -1.4rem;
    left: 50%;

    transform: translateX(-50%) rotate(135deg);
  }

  .file-download {
    align-items: flex-start;
    flex-direction: column;
  }

  .file-download .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .guide-page__hero {
    padding: 2.4rem 2rem;
  }

  .guide-page__title,
  .guide-heading {
    font-size: 2rem;
  }

  .guide-page__desc {
    font-size: 1.5rem;
  }

  .step-list__item {
    min-height: auto;
    padding: 2.4rem 1.8rem;
  }

  .step-list__title {
    font-size: 1.7rem;
  }

  .file-download {
    padding: 2rem;
  }

  .guide-actions .btn {
    width: 100%;
  }
}

/* 시설안내 */
.facility-guide {
  display: grid;
  gap: 4rem;
}

/* 상단 */

.facility-guide__hero {
  padding: 3rem;
}

.facility-guide__title {
  margin-bottom: 1rem;
  font-size: 2.8rem;
  font-weight: 700;
}

.facility-guide__time {
  display: inline-block;
  margin-left: 1.6rem;
  color: #666;
  font-size: 1.6rem;
  font-weight: 500;
  vertical-align: middle;
}

.facility-guide__desc {
  color: #666;
  line-height: 1.8;
}

/* 탭 */

.floor-tabs {
  display: flex;
  gap: .8rem;
  margin-bottom: 2.4rem;
}

.floor-tabs__button {
  min-width: 10rem;
  height: 5rem;
  border: 1px solid var(--table-border);
  border-radius: 1rem;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.floor-tabs__button.is-active {
  background: var(--sub-primary);
  color: #fff;
}

.floor-tabs__button:focus-visible {
  outline: 3px solid #005fcc;
}

/* 배치도 */

.floor-map {
  padding: 2rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
}

.floor-map__image {
  display: block;
  width: 100%;
  height: auto;
}

/* 시설정보 */

.floor-info {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.floor-info__card {
  padding: 1.8rem;
  border-radius: 1rem;
  background: var(--sub-bg-light);
  border: 1px solid var(--table-border);
  text-align: center;
}

/* 범례 */

.facility-legend__list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.2rem;
}

.facility-legend__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--table-border);
  border-radius: 1rem;
}

.facility-legend__item img {
  width: 2.4rem;
  height: 2.4rem;
}

/* ===========================
   찾아오시는길-LOCATION INFO
=========================== */

.location-info__list {display: grid;grid-template-columns: repeat(2, minmax(0, 1fr));gap: 1.6rem;}
.location-info__item {display: flex;gap: 1.4rem;padding: 2.4rem;border: 1px solid var(--table-border);border-radius: 1.6rem;background: #fff;}
.location-info__icon {flex-shrink: 0;display: inline-flex;align-items: center;justify-content: center;width: 4.8rem;height: 4.8rem;border-radius: 50%;background: var(--sub-bg);}
.location-info__icon img {max-width: 16px;}
.location-info__item strong {display: block;margin-bottom: 0.6rem;font-size: 1.6rem;font-weight: 800;color: #222;}
.location-info__item p,.location-info__item a {font-size: 1.6rem;line-height: 1.6;color: #555;}
.location-info__item a {color: var(--sub-btn-primary);font-weight: 800;text-decoration: underline;text-underline-offset: 0.3rem;}



/* 반응형 */

@media (max-width:1024px){

  .facility-legend__list{
    grid-template-columns:repeat(2,1fr);
  }

  .floor-info{
    grid-template-columns:repeat(2,1fr);
  }

  .location-info__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px){

  .floor-tabs{
    overflow-x:auto;
    padding-bottom:.4rem;
  }

  .floor-tabs__button{
    flex-shrink:0;
    min-width: 8rem;
  }

  .floor-info{
    grid-template-columns:1fr;
  }

  .facility-legend__list{
    grid-template-columns:repeat(2,1fr);
  }

  .location-info__item {
    padding: 2.2rem;
  }
}

@media (max-width:480px){

  .facility-guide__hero{
    padding:2rem;
  }

  .facility-guide__title{
    font-size:2.2rem;
  }
  
  .facility-guide__time {
	  display: block;
	  margin-left: 0;
	  margin-top: .6rem;
	  font-size: 1.4rem;
	}

  .facility-legend__list{
    grid-template-columns:1fr 1fr;
  }

  .floor-map{
    padding:1.2rem;
  }

  .location-info__item {
    flex-direction: column;
  }

  .location-info__icon {
    width: 4.4rem;
    height: 4.4rem;
  }
}

/* ===========================
   찾아오시는길
=========================== */
.location-guide {color: #333;}

/* ===========================
   찾아오시는길-MAP
=========================== */
.location-map {border: 1px solid var(--table-border);border-radius: 1.8rem;overflow: hidden;background: #fff;}
.location-map__inner {display: flex;flex-direction: column;align-items: center;justify-content: center;width: 100%;height: 56rem;background:linear-gradient(135deg, #f6f6f6 25%, transparent 25%) -1rem 0/2rem 2rem,linear-gradient(225deg, #f6f6f6 25%, transparent 25%) -1rem 0/2rem 2rem,linear-gradient(315deg, #f6f6f6 25%, transparent 25%) 0 0/2rem 2rem,linear-gradient(45deg, #f6f6f6 25%, #fff 25%) 0 0/2rem 2rem;color: #555;text-align: center;}
.location-map__inner p {font-size: 2.2rem;font-weight: 800;color: var(--sub-primary);}
.location-map__inner span {margin-top: 0.8rem;font-size: 1.5rem;}

/* ===========================
   찾아오시는길-ROUTE BUTTON
=========================== */
.route-button-wrap {display: flex;justify-content: flex-end;gap: 1rem;margin-top: 1.6rem;}
.route-button {display: inline-flex;align-items: center;justify-content: center;min-height: 4.8rem;padding: 0 2rem;border-radius: 0.8rem;font-size: 1.6rem;font-weight: 800;color: #fff;}
.route-button--kakao {background: #453c35;}
.route-button--naver {background: var(--sub-secondary);}
.route-button:hover,.route-button:focus-visible {text-decoration: underline;}

/* ===========================
   찾아오시는길-TRANSPORT
=========================== */
.transport-guide {display: grid;grid-template-columns: repeat(2, minmax(0, 1fr));gap: 1.6rem;}
.transport-guide__card,.info-card,.parking-guide__notice {padding: 2.8rem;border: 1px solid var(--table-border);border-radius: 1.6rem;background: #fff;}
.transport-guide__title {margin-bottom: 1.4rem;font-size: 2rem;font-weight: 800;color: var(--sub-primary);}

/* ===========================
   찾아오시는길-LIST
=========================== */
.list-dot {display: grid;gap: 0.8rem;font-size: 1.6rem;line-height: 1.7;color: #444;}
.list-dot > li {position: relative;padding-left: 1.6rem;}
.list-dot > li::before {content: "";position: absolute;left: 0.3rem;top: 0.75em;width: 0.5rem;height: 0.5rem;border-radius: 50%;background: var(--sub-primary);}

/* ===========================
   찾아오시는길-CONTACT BOX
=========================== */
.contact-box__links {display: flex;flex-direction: column;gap: 0.8rem;flex-shrink: 0;}
.contact-box__tel,.contact-box__mail {display: inline-flex;align-items: center;justify-content: center;min-height: 4.4rem;padding: 0 2rem;border-radius: 999px;font-size: 1.5rem;font-weight: 800;}
.contact-box__tel {background: var(--sub-btn-basic);color: #fff;}
.contact-box__mail {border: 1px solid #ded6ce;background: #fff;color: var(--sub-primary);}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1280px) {
  .location-guide__hero,
  .transport-guide__card,
  .info-card,
  .parking-guide__notice {
    padding: 2.6rem;
  }
}

@media (max-width: 1024px) {
  .transport-guide {
    grid-template-columns: 1fr;
  }

  .location-map__inner {
    height: 48rem;
  }

  .contact-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-box__links {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .location-guide__hero {
    padding: 3rem 2.4rem;
  }

  .location-guide__title {
    font-size: 2.4rem;
  }

  .location-guide__desc {
    font-size: 1.6rem;
  }

  .location-map__inner {
    height: 36rem;
  }

  .route-button-wrap {
    flex-direction: column;
  }

  .route-button {
    width: 100%;
  }

  .contact-box__tel,
  .contact-box__mail {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .location-guide__hero,
  .transport-guide__card,
  .info-card,
  .parking-guide__notice,
  .contact-box {
    padding: 2rem;
  }

  .location-guide__title {
    font-size: 2.1rem;
  }

  .location-map__inner {
    height: 28rem;
  }
}


/* ===========================
   특화공간 이용신청
=========================== */
.space-reserve {color: #333;}

/* 탭 */
.space-tabs {display: grid;grid-template-columns: repeat(3, 1fr);gap: 1rem;margin-top: 4rem;}
.space-tabs__button {min-height: 7.2rem;padding: 1.4rem;border: 1px solid #ded6ce;border-radius: 1.2rem;background: #fff;font-size: 1.8rem;font-weight: 800;color: #333;}
.space-tabs__button span {display: block;margin-top: 0.4rem;font-size: 1.4rem;font-weight: 600;color: #666;}
.space-tabs__button.is-active {background: var(--sub-primary);border-color: var(--sub-primary);color: #fff;}
.space-tabs__button.is-active span {color: #fff;}
.space-tabs__button:focus-visible {outline: 3px solid rgba(154, 107, 74, 0.35);outline-offset: 3px;}
.space-tabs__panel {margin-top: 2.4rem;}
.sub-content .course-category-tabs {display: grid;grid-template-columns: repeat(4, minmax(0, 1fr));gap: 1rem;margin-top: 0;margin-bottom: 3.2rem;}
.course-category-tabs .space-tabs__button {display: flex;align-items: center;justify-content: center;width: 100%;min-width: 0;min-height: 5.2rem;padding: 1.2rem 1rem;box-sizing: border-box;text-align: center;text-decoration: none;font-size: 1.6rem;line-height: 1.35;word-break: keep-all;}

/* 공간 정보 */
.space-info {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  padding: 3rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
}

.space-info__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--sub-primary);
}

.space-info__desc {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #555;
}

.space-info__list {
  display: grid;
  gap: 1rem;
}

.space-info__list div {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  border-bottom: 1px solid var(--table-border);
}

.space-info__list dt {
  padding: 1.2rem;
  background: var(--table-bg);
  font-weight: 800;
}

.space-info__list dd {
  padding: 1.2rem;
  line-height: 1.6;
}

/* 공통 섹션 */
.space-section-title {
  margin-bottom: 1.6rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: #222;
}

.space-notice,
.reserve-calendar,
.reserve-status {
  margin-top: 4rem;
  padding: 2.8rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
}

/* 달력 */
.reserve-calendar__head,
.reserve-status__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.reserve-calendar__control {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reserve-calendar__nav {
  width: 4rem;
  height: 4rem;
  border: 1px solid #ded6ce;
  border-radius: 50%;
  background: #fff;
  font-size: 2.4rem;
}

.reserve-calendar__month {
  font-size: 2rem;
}

.calendar-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-top: 2px solid var(--sub-primary);
}

.calendar-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.calendar-table th,
.calendar-table td {
  border: 1px solid var(--table-border);
  text-align: center;
}

.calendar-table th {
  height: 4.8rem;
  background: var(--table-bg);
  font-weight: 800;
}

.calendar-table button {
  width: 100%;
  min-height: 8rem;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 800;
}

.calendar-table button:disabled {
  color: #aaa;
  background: #f7f7f7;
}

.calendar-table .is-selected {
  background: var(--sub-primary);
  color: #fff;
}
.calendar-table .is-available.today {
  box-shadow: inset 0 0 0 2px var(--sub-secondary);
}

.calendar-table .is-available::after,
.calendar-table .is-closed::after,
.calendar-table .is-disabled::after {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.calendar-table .is-available::after {
  content: "예약가능";
  color: var(--sub-secondary);
}

.calendar-table .is-closed::after {
  content: "마감";
  color: #e65629;
}

.calendar-table .is-disabled::after {
  content: "불가";
  color: #777;
}

.calendar-table .is-selected::after {
  color: #fff;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin-top: 1.6rem;
  font-size: 1.4rem;
}

.calendar-legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.calendar-legend__mark {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}

.calendar-legend__mark--available {
  background: var(--sub-secondary);
}

.calendar-legend__mark--closed {
  background: #e65629;
}

.calendar-legend__mark--disabled {
  background: #777;
}

/* 예약현황 */
.reserve-status__date {
  font-size: 1.5rem;
  color: #555;
}

.reserve-status__date strong {
  color: var(--sub-primary);
}

.reserve-status__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--sub-primary);
  font-size: 1.5rem;
}

.reserve-status__table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.reserve-status__table th,
.reserve-status__table td {
  padding: 1.4rem;
  border-bottom: 1px solid var(--table-border);
  text-align: center;
}

.reserve-status__table th {
  background: var(--table-bg);
  font-weight: 800;
}

.reserve-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0 1rem;
  border-radius: 999px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}

.reserve-badge--available {
  background: var(--sub-secondary);
}

.reserve-badge--closed {
  background: #e65629;
}

.reserve-badge--disabled {
  background: #777;
}

.reserve-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.8rem;
  padding: 0 1.4rem;
  border-radius: 0.8rem;
  font-weight: 800;
}

.reserve-button--primary {
  background: var(--sub-btn-primary);
  color: #fff;
}

.reserve-button--disabled {
  background: #eee;
  color: #777;
}

/* 리스트 */
.list-dot {
  display: grid;
  gap: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.7;
}

.list-dot > li {
  position: relative;
  padding-left: 1.6rem;
}

.list-dot > li::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.75em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sub-primary);
}

/* 반응형 */
@media (max-width: 1024px) {
  .space-info {
    grid-template-columns: 1fr;
  }

  .calendar-table button {
    min-height: 7rem;
  }
}

@media (max-width: 768px) {
  .space-reserve__hero {
    padding: 3rem 2.4rem;
  }

  .space-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.4rem;
  }

  .space-tabs__button {
    flex: 0 0 18rem;
  }

  .space-notice,
  .reserve-calendar,
  .reserve-status {
    padding: 2rem;
  }

  .reserve-calendar__head,
  .reserve-status__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .calendar-table button {
    min-height: 5.8rem;
    font-size: 1.4rem;
  }

  .calendar-table .is-available::after,
  .calendar-table .is-closed::after,
  .calendar-table .is-disabled::after {
    display: none;
  }

  .reserve-status__table,
  .reserve-status__table thead,
  .reserve-status__table tbody,
  .reserve-status__table tr,
  .reserve-status__table th,
  .reserve-status__table td {
    display: block;
  }

  .reserve-status__table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .reserve-status__table {
    border-top: 0;
  }

  .reserve-status__table tbody {
    display: grid;
    gap: 1.2rem;
  }

  .reserve-status__table tr {
    padding: 1.6rem;
    border: 1px solid var(--table-border);
    border-radius: 1.4rem;
    background: #fff;
  }

  .reserve-status__table td {
    display: grid;
    grid-template-columns: 9rem minmax(0, 1fr);
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 0;
    text-align: left;
  }

  .reserve-status__table td::before {
    content: attr(data-label);
    font-weight: 800;
    color: #333;
  }
}

@media (max-width: 480px) {
  .space-reserve__title {
    font-size: 2.2rem;
  }

  .space-info__list div {
    grid-template-columns: 1fr;
  }

  .space-info__list dt {
    padding-bottom: 0.4rem;
    background: #fff;
    color: var(--sub-primary);
  }

  .reserve-button {
    width: 100%;
  }
}

/* ===========================
   대관신청
=========================== */

.rental-page {
  color: #333;
}
/* tab */

.rental-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}

.rental-tabs__button {
  min-height: 6.4rem;
  padding: 1.4rem 2rem;
  border: 1px solid #ded6ce;
  border-radius: 1.2rem;
  background: #fff;
  color: #333;
  font-size: 1.8rem;
  font-weight: 800;
}

.rental-tabs__button.is-active {
  background: var(--sub-primary);
  border-color: var(--sub-primary);
  color: #fff;
}

.rental-tabs__button:focus-visible {
  outline: 3px solid rgba(154, 107, 74, 0.35);
  outline-offset: 3px;
}

.rental-tabs__panel {
  margin-top: 2.4rem;
}

/* space info */

.rental-space,
.rental-space__notice,
.reservation-calendar,
.reservation-status {
  margin-top: 3.2rem;
  padding: 2.8rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
}

.rental-space {
  margin-top: 2.4rem;
}

.rental-space__title {
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--sub-primary);
}

.rental-space__info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--sub-primary);
}

.rental-space__info div {
  border-right: 1px solid var(--table-border);
  border-bottom: 1px solid var(--table-border);
}

.rental-space__info div:last-child {
  border-right: 0;
}

.rental-space__info dt {
  padding: 1.4rem;
  background: var(--table-bg);
  font-weight: 800;
}

.rental-space__info dd {
  padding: 1.4rem;
  line-height: 1.6;
}

.rental-section-title {
  margin-bottom: 1.6rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: #222;
}

.rental-process {
  margin-top: 2.4rem;
}

.rental-process__title {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: #222;
}

.rental-process__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 2px solid #222;
  border-bottom: 2px solid #222;
}

.rental-process__list li {
  display: grid;
  align-content: center;
  min-height: 8.8rem;
  padding: 1.4rem 1rem;
  border-right: 1px solid var(--table-border);
  background: #fafafa;
  text-align: center;
  line-height: 1.45;
}

.rental-process__list li:last-child {
  border-right: 0;
}

.rental-process__list strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: #222;
}

.rental-process__list span {
  display: block;
  font-size: 1.5rem;
  color: #333;
}

.rental-notice-list strong {
  font-weight: 800;
  color: #222;
}

.rental-round-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.rental-round-list li {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  min-width: 0;
}

.rental-round-list span {
  flex: 0 0 auto;
  font-weight: 800;
}

.rental-round-list em {
  min-width: 0;
  font-style: normal;
}

.rental-space__gallery {
  margin-top: 3.2rem;
  padding: 2.8rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
}

.rental-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.rental-gallery__item {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--table-border);
  border-radius: 0.8rem;
  background: #fff;
}

.rental-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rental-gallery__item figcaption {
  padding: 1rem 1.2rem;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}

/* list */

.list-dot {
  display: grid;
  gap: 0.8rem;
  font-size: 1.8rem;
  line-height: 1.7;
}

.list-dot > li {
  position: relative;
  padding-left: 1.6rem;
}

.list-dot > li::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.75em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sub-primary);
}

.list-dot a {
  color: var(--sub-btn-primary);
  font-weight: 800;
  text-decoration: underline;
}

/* calendar */

.reservation-calendar__header,
.reservation-status__head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.reservation-calendar__month {
  font-size: 2rem;
  color: var(--sub-primary);
}

.reservation-calendar__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-top: 2px solid var(--sub-primary);
}

.reservation-calendar__table caption,
.reservation-status__table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.reservation-calendar__table th,
.reservation-calendar__table td {
  border: 1px solid var(--table-border);
  text-align: center;
}

.reservation-calendar__table th {
  height: 4.8rem;
  background: var(--table-bg);
  font-weight: 800;
}

.reservation-calendar__table button {
  width: 100%;
  min-height: 8rem;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 800;
}

.reservation-calendar__table button:disabled {
  background: #f7f7f7;
  color: #aaa;
}

.reservation-calendar__date--today {
  box-shadow: inset 0 0 0 2px var(--sub-secondary);
}

.reservation-calendar__date--selected {
  background: var(--sub-primary) !important;
  color: #fff;
}

.reservation-calendar__date--available::after,
.reservation-calendar__date--closed::after,
.reservation-calendar__date--disabled::after {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.2rem;
}

.reservation-calendar__date--available::after {
  content: "가능";
  color: var(--sub-secondary);
}

.reservation-calendar__date--closed::after {
  content: "마감";
  color: #e65629;
}

.reservation-calendar__date--disabled::after {
  content: "불가";
  color: #777;
}

.reservation-calendar__date--selected::after {
  color: #fff;
}

.reservation-calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 1.6rem;
  font-size: 1.4rem;
}

.reservation-calendar__legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.legend-mark {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}

.legend-mark--today {
  border: 3px solid var(--sub-secondary);
}

.legend-mark--available {
  background: var(--sub-secondary);
}

.legend-mark--closed {
  background: #e65629;
}

.legend-mark--disabled {
  background: #777;
}

/* status */

.reservation-status__title {
  font-size: 2.2rem;
  font-weight: 800;
}

.reservation-status__head p {
  font-size: 1.5rem;
  color: #555;
}

.reservation-status__head strong {
  color: var(--sub-primary);
}

.reservation-status__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--sub-primary);
  font-size: 1.5rem;
}

.reservation-status__table th,
.reservation-status__table td {
  padding: 1.4rem;
  border-bottom: 1px solid var(--table-border);
  text-align: center;
}

.reservation-status__table th {
  background: var(--table-bg);
  font-weight: 800;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0 1rem;
  border-radius: 999px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}

.status-badge--available {
  background: var(--sub-secondary);
}

.status-badge--closed {
  background: #e65629;
}

.status-badge--disabled {
  background: #777;
}

.status-badge--holiday {
  background: #333;
}

.reservation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.8rem;
  padding: 0 1.4rem;
  border-radius: 0.8rem;
  font-weight: 800;
}

.reservation-button--primary {
  background: var(--sub-btn-primary);
  color: #fff;
}

.reservation-button--disabled {
  background: #eee;
  color: #777;
}

/* responsive */

@media (max-width: 1280px) {
  .rental-space,
  .rental-space__notice,
  .reservation-calendar,
  .reservation-status {
    padding: 2.4rem;
  }
}

@media (max-width: 1024px) {
  .rental-space__info {
    grid-template-columns: 1fr;
  }

  .rental-space__info div {
    border-right: 0;
  }

  .rental-process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rental-process__list li:nth-child(2n) {
    border-right: 0;
  }

  .reservation-calendar__table button {
    min-height: 7rem;
  }
}

@media (max-width: 768px) {
  .rental-page__hero {
    padding: 3rem 2.4rem;
  }

  .rental-tabs {
    grid-template-columns: repeat(2, minmax(14rem, 1fr));
  }

  .rental-tabs__button {
    min-height: 5.6rem;
    font-size: 1.6rem;
  }

  .reservation-calendar__header,
  .reservation-status__head {
    flex-direction: column;
    gap: 0.8rem;
  }

  .reservation-calendar__table button {
    min-height: 5.8rem;
    font-size: 1.4rem;
  }

  .reservation-calendar__date--available::after,
  .reservation-calendar__date--closed::after,
  .reservation-calendar__date--disabled::after {
    display: none;
  }

  .reservation-status__table,
  .reservation-status__table thead,
  .reservation-status__table tbody,
  .reservation-status__table tr,
  .reservation-status__table th,
  .reservation-status__table td {
    display: block;
  }

  .reservation-status__table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .reservation-status__table {
    border-top: 0;
  }

  .reservation-status__table tbody {
    display: grid;
    gap: 1.2rem;
  }

  .reservation-status__table tr {
    padding: 1.6rem;
    border: 1px solid var(--table-border);
    border-radius: 1.4rem;
    background: #fff;
  }

  .reservation-status__table td {
    display: grid;
    grid-template-columns: 9rem minmax(0, 1fr);
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 0;
    text-align: left;
  }

  .reservation-status__table td::before {
    content: attr(data-label);
    font-weight: 800;
    color: #333;
  }
}

@media (max-width: 480px) {
  .rental-page__title {
    font-size: 2.2rem;
  }

  .rental-page__desc {
    font-size: 1.5rem;
  }

  .rental-space,
  .rental-space__notice,
  .reservation-calendar,
  .reservation-status {
    padding: 2rem;
  }

  .reservation-button {
    width: 100%;
  }

  .reservation-status__table td {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .reservation-status__table td::before {
    color: var(--sub-primary);
  }
}


/* 대관신청 예약현황 */
.time-reserve__guide {
  margin-bottom: 1.6rem;
  padding: 1.4rem 1.6rem;
  border-radius: 1rem;
  background: var(--sub-bg-light);
  font-size: 1.5rem;
  line-height: 1.6;
  color: #444;
}

.time-reserve__guide strong {
  color: var(--sub-primary);
  font-weight: 800;
}

.time-slot-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.time-slot {
  width: 100%;
  min-height: 7.2rem;
  padding: 1.2rem;
  border: 1px solid var(--table-border);
  border-radius: 1rem;
  background: #fff;
  text-align: center;
  transition: 0.2s ease;
}

.time-slot span {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #222;
}

.time-slot em {
  display: inline-flex;
  margin-top: 0.6rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #eef7ef;
  color: var(--sub-secondary);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 800;
}

.time-slot:hover,
.time-slot:focus-visible {
  border-color: var(--sub-primary);
  background: var(--sub-bg-light);
}

.time-slot.is-selected {
  border-color: var(--sub-primary);
  background: var(--sub-primary);
}

.time-slot.is-selected span,
.time-slot.is-selected em {
  color: #fff;
}

.time-slot.is-selected em {
  background: rgba(255,255,255,0.18);
}

.time-slot.is-closed,
.time-slot:disabled {
  background: #f3f3f3;
  color: #999;
  cursor: not-allowed;
}

.time-slot.is-closed span,
.time-slot:disabled span {
  color: #999;
}

.time-slot.is-closed em,
.time-slot:disabled em {
  background: #e5e5e5;
  color: #777;
}

.time-reserve__result {
  margin-top: 2rem;
  padding: 1.6rem;
  border: 1px solid var(--table-border);
  border-radius: 1rem;
  background: #fff;
}

.time-reserve__result p {
  font-size: 1.5rem;
  line-height: 1.6;
}

.time-reserve__result strong {
  color: var(--sub-primary);
}

.time-reserve__message {
  margin-top: 0.4rem;
  color: #777;
}

.time-reserve__message.is-valid {
  color: var(--sub-secondary);
  font-weight: 800;
}

.time-reserve__message.is-error {
  color: #e65629;
  font-weight: 800;
}

.time-reserve__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.6rem;
}

.reservation-button.is-disabled {
  pointer-events: none;
  background: #eee;
  color: #777;
}

@media (max-width: 768px) {
  .time-slot-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .time-reserve__actions {
    justify-content: stretch;
  }

  .time-reserve__actions .reservation-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .time-slot-list {
    grid-template-columns: 1fr;
  }

  .time-slot {
    min-height: 6.4rem;
  }
}


/* 주요사업 */
/* ===========================
   BUSINESS PAGE
=========================== */

.business-page {
  color: #333;
}

.business-hero {
  padding: 2.4rem;
  border: 0.2rem solid #e0dbd7;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--sub-bg-light) 0%, var(--sub-bg) 100%);
}

.business-hero__title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--sub-primary);
}

.business-hero__desc {
  margin-top: 1.4rem;
  font-size: 1.7rem;
  line-height: 1.8;
  color: #444;
}

.business-hero__desc.is-single {
  /* font-family: 'GangwonEducationModuche';/ */
  margin-top: 1.4rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
  color: #444;
}

/* ===========================
   CONTENT COMMON
=========================== */

.content-section {
  margin-top: 5.2rem;
}

.content-heading {
  position: relative;
  margin-bottom: 1.8rem;
  padding-left: 1.6rem;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.35;
  color: #333333;
}

.content-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--sub-primary);
}

.content-desc {
  margin-top: 1.4rem;
  font-size: 1.8rem;
  line-height: 1.7;
  color: #666;
}

.content-box,
.notice-box {
  padding: 2.8rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
}

.notice-box {
  background: var(--sub-bg-light);
}

.content-actions {
  margin-top: 2rem;
}

/* ===========================
   OVERVIEW
=========================== */

.overview-list {
  display: grid;
  gap: 1.2rem;
}

.overview-list__item {
  display: grid;
  grid-template-columns: 14rem minmax(0, 1fr);
  border-bottom: 1px solid var(--table-border);
}

.overview-list__item:last-child {
  border-bottom: 0;
}

.overview-list__item dt {
  padding: 1.4rem;
  background: var(--table-bg);
  font-weight: 800;
}

.overview-list__item dd {
  padding: 1.4rem;
  line-height: 1.7;
}

/* ===========================
   IMAGE
=========================== */

.content-image {
  padding: 2rem 0;
  border-radius: 1.6rem;
  background: #fff;
}

.content-image__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
}


/* ===========================
   IMAGE 2
=========================== */

.content-image02 {
  padding: 2rem 0;
  border-radius: 1.6rem;
  background: #fff;
   display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  
}

.content-image02__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
}

.content-image02__figure figcaption {text-align: center; color: #858585; font-size: 1.4rem; margin-top: 10px;}

/* 태블릿 : 2열 */
@media (max-width: 1024px) {
    .content-image02 {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   IMAGE 3
=========================== */

.content-image03 {
  padding: 2rem 0;
  border-radius: 1.6rem;
  background: #fff;
   display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
  
}

.content-image03__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
}

.content-image03__figure figcaption {text-align: center; color: #858585; font-size: 1.4rem; margin-top: 10px;}

/* 태블릿 : 2열 */
@media (max-width: 1024px) {
    .content-image03 {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   IMAGE 4
=========================== */

.content-image04 {
  padding: 2rem 0;
  border-radius: 1.6rem;
  background: #fff;
   display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
  
}

.content-image04__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
}

.content-image04__figure figcaption {text-align: center; color: #858585; font-size: 1.4rem; margin-top: 10px;}

/* 태블릿 : 2열 2행 */
@media (max-width: 1024px) {
    .content-image04 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 모바일 : 1열 4행 */
@media (max-width: 768px) {
    .content-image04 {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   GALLERY
=========================== */

.content-gallery {
  padding: 2rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
}

.content-gallery__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
}

.content-gallery__caption {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  color: #666;
}

.content-gallery__control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.6rem;
}

.content-gallery__prev,
.content-gallery__next {
  min-width: 7.2rem;
  min-height: 3.8rem;
  border: 1px solid var(--table-border);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}

.content-gallery__prev:hover,
.content-gallery__next:hover,
.content-gallery__prev:focus-visible,
.content-gallery__next:focus-visible {
  border-color: var(--sub-primary);
  color: var(--sub-primary);
}

/* ===========================
   TABLE
=========================== */

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.info-table {
  width: 100%;
  min-width: 72rem;
  border-collapse: collapse;
  border-top: 2px solid var(--sub-primary);
  background: #fff;
  font-size: 1.5rem;
}

.info-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.info-table th,
.info-table td {
  padding: 1.4rem 1.2rem;
  border-bottom: 1px solid var(--table-border);
  text-align: center;
  vertical-align: middle;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.info-table th {
  background: var(--table-bg);
  font-weight: 800;
  color: #222;
}

.info-table a {
  color: var(--sub-btn-primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.ta-left {
  text-align: left !important;
}

/* ===========================
   BUTTON
=========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 0 2.4rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.info-table a.btn {text-decoration: none;}

.btn--primary {
  background: var(--sub-btn-primary);
  border-color: var(--sub-btn-primary);
  color: #fff;
}

.btn--outline {
  background: #fff;
  border-color: #cfc7bf;
  color: #333;
}

.btn--sm {
  min-height: 3.6rem;
  padding: 0 1.4rem;
  font-size: 1.4rem;
}

/* ===========================
   SCHEDULE
=========================== */

.schedule-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.schedule-card {
  padding: 2.4rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
}

.schedule-card strong {
  display: block;
  font-size: 1.8rem;
  color: var(--sub-primary);
}

.schedule-card p {
  margin-top: 0.8rem;
  line-height: 1.6;
}

/* ===========================
   LINK CARD
=========================== */

.link-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.link-card {
  display: grid;
  gap: 0.8rem;
  padding: 2.4rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
}

.link-card strong {
  font-size: 1.8rem;
  font-weight: 800;
}

.link-card a {
  color: var(--sub-btn-primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/* ===========================
   KEYWORD CARD
=========================== */

.keyword-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.keyword-card {
  padding: 2.4rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
}

.keyword-card span {
  display: inline-flex;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--sub-primary);
}

.keyword-card strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
}

.keyword-card p {
  margin-top: 0.8rem;
  line-height: 1.6;
  color: #666;
}

/* ===========================
   ACCESSIBILITY
=========================== */

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1280px) {
  .content-section {
    margin-top: 4.4rem;
  }
}

@media (max-width: 1024px) {
  .link-card-list,
  .keyword-card-list,
  .schedule-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .business-hero {
    padding: 3rem 2.4rem;
  }

  .business-hero__title {
    font-size: 2.4rem;
  }

  .business-hero__desc {
    font-size: 1.6rem;
  }

  .content-heading {
    font-size: 2.1rem;
  }

  .content-box,
  .notice-box,
  .content-image,
  .content-gallery {
    padding: 2rem;
  }

  .overview-list__item {
    grid-template-columns: 1fr;
  }

  .overview-list__item dt {
    padding-bottom: 0.4rem;
    background: #fff;
    color: var(--sub-primary);
  }

  .overview-list__item dd {
    padding-top: 0.4rem;
  }

  .info-table {
    min-width: 76rem;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .business-hero {
    padding: 2.4rem 2rem;
  }

  .business-hero__title {
    font-size: 2.1rem;
  }

  .link-card-list,
  .keyword-card-list,
  .schedule-list {
    grid-template-columns: 1fr;
  }

  .content-image,
  .content-gallery {
    padding: 1.4rem;
  }
}


/* 주요사업 -평생학습 과학축전  */
/* 행사내용 카드           */
/* ===========================
   EVENT OVERVIEW
=========================== */

.event-overview {
  margin-top: 5.2rem;
}

.event-overview__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.6rem;
}

.event-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 32rem;
  padding: 2.4rem;

  border: 1px solid var(--table-border);
  border-radius: 1.8rem;

  background: #fff;

  transition: border-color 0.25s ease, transform 0.25s ease;
}

.event-card:hover {
  border-color: var(--sub-primary);
  transform: translateY(-0.3rem);
}

.event-card__number {
  position: absolute;
  right: 2rem;
  top: 2rem;

  font-size: 1.4rem;
  font-weight: 900;
  color: var(--sub-primary);
}

.event-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 6.4rem;
  height: 6.4rem;
  margin-bottom: 2rem;

  border-radius: 1.8rem;

  background: var(--sub-bg-light);
}

.event-card__icon span {
  font-size: 3rem;
  line-height: 1;
}

.event-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.event-card__title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.35;
  color: #222;
}

.event-card__subtitle {
  min-height: 4.8rem;
  margin-top: 0.8rem;

  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--sub-primary);
}

.event-card__items {
  display: grid;
  gap: 0.7rem;

  margin-top: 1.6rem;
  padding-top: 1.6rem;

  border-top: 1px dashed #ded6ce;

  font-size: 1.5rem;
  line-height: 1.55;
  color: #555;
}

.event-card__items li {
  position: relative;
  padding-left: 1.4rem;
}

.event-card__items li::before {
  content: "";

  position: absolute;
  left: 0.2rem;
  top: 0.7em;

  width: 0.5rem;
  height: 0.5rem;

  border-radius: 50%;

  background: var(--sub-secondary);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1280px) {
  .event-overview__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .event-card {
    min-height: 28rem;
  }
}

@media (max-width: 768px) {
  .event-overview {
    margin-top: 4rem;
  }

  .event-overview__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .event-card {
    min-height: auto;
    padding: 2rem;
    border-radius: 1.4rem;
  }

  .event-card:hover {
    transform: none;
  }

  .event-card__icon {
    width: 5.6rem;
    height: 5.6rem;
    margin-bottom: 1.6rem;
    border-radius: 1.4rem;
  }

  .event-card__icon span {
    font-size: 2.6rem;
  }

  .event-card__title {
    font-size: 1.9rem;
  }

  .event-card__subtitle {
    min-height: auto;
    font-size: 1.4rem;
  }

  .event-card__items {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .event-overview__list { grid-template-columns: 1fr; }
  .event-card { padding: 2rem 1.8rem; }
  .event-card__number { right: 1.8rem; top: 1.8rem; }
}
       
/* ===========================
   비전 
=========================== */

.vision-page { color: #333; }

/* Hero */

.vision-hero { position: relative; overflow: hidden; padding: 6.4rem 5rem; border-radius: 2.4rem; background: radial-gradient(circle at 90% 20%, rgba(94, 127, 99, 0.18), transparent 28rem), linear-gradient(135deg, var(--sub-bg-light) 0%, var(--sub-bg) 100%); text-align: center; }
.vision-hero::before { content: ""; position: absolute; left: 50%; bottom: -9rem; width: 36rem; height: 36rem; border: 4rem solid rgba(154, 107, 74, 0.08); border-radius: 50%; transform: translateX(-50%); }
.vision-hero__eyebrow { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; min-height: 3.2rem; padding: 0 1.4rem; border-radius: 999px; background: #fff; color: var(--sub-primary); font-size: 1.4rem; font-weight: 900; letter-spacing: 0.08em; }
.vision-hero__title { position: relative; z-index: 1; margin-top: 1.8rem; font-size: clamp(2.6rem, 3vw, 4.2rem); font-weight: 900; line-height: 1.25; color: #333; }
.vision-hero__desc { position: relative; z-index: 1; margin-top: 1.4rem; font-size: clamp(1.6rem, 1.6vw, 2.2rem); font-weight: 800; line-height: 1.5; color: var(--sub-primary); }

/* Mission */

.vision-mission { display: grid; grid-template-columns: 18rem minmax(0, 1fr); gap: 2.8rem; margin-top: 4rem; padding: 3.6rem; border: 1px solid #ded6ce; border-radius: 2rem; background: #fff; }
.vision-mission__label { display: flex; flex-direction: column; justify-content: center; padding: 2rem; border-radius: 1.6rem; background: var(--sub-primary); color: #fff; }
.vision-mission__label span { font-size: 1.4rem; font-weight: 900; letter-spacing: 0.08em; opacity: 0.85; }
.vision-mission__label h3 { margin-top: 0.6rem; font-size: 2.6rem; font-weight: 900; }
.vision-mission__text { display: flex; align-items: center; font-size: 1.9rem; font-weight: 700; line-height: 1.8; color: #333; }

/* Flow Line */

.vision-flow { display: flex; justify-content: center; height: 5.2rem; }
.vision-flow span { width: 2px; height: 100%; background: linear-gradient(to bottom, var(--sub-primary), var(--sub-secondary)); }

/* Section */

.vision-section, .vision-task { padding: 3.6rem; border: 1px solid var(--table-border); border-radius: 2rem; background: #fff; }
.vision-section + .vision-section, .vision-task { margin-top: 4rem; }
.vision-section__head { text-align: center; }
.vision-section__eyebrow { display: inline-flex; margin-bottom: 0.8rem; color: var(--sub-primary); font-size: 1.4rem; font-weight: 900; letter-spacing: 0.08em; }
.vision-section__title { font-size: 2.8rem; font-weight: 900; color: #111; }

/* Value Card */

.vision-card-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.6rem; margin-top: 2.8rem; }
.vision-card { min-height: 22rem; padding: 2.4rem; border: 1px solid var(--table-border); border-radius: 1.8rem; background: var(--sub-bg-light); text-align: center; }
.vision-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 5.6rem; height: 5.6rem; margin-bottom: 1.6rem; border-radius: 50%; background: #fff; color: var(--sub-primary); font-size: 1.6rem; font-weight: 900; }
.vision-card__title { font-size: 2rem; font-weight: 900; line-height: 1.4; color: #222; }
.vision-card__desc { margin-top: 1rem; font-size: 1.5rem; line-height: 1.7; color: #555; }

/* Goal */

.vision-section--goal { background: linear-gradient(135deg, #fff 0%, var(--sub-bg-light) 100%); }
.vision-goal-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.8rem; }
.vision-goal { display: inline-flex; align-items: center; justify-content: center; min-height: 5.2rem; padding: 0 2.4rem; border: 1px solid #ded6ce; border-radius: 999px; background: #fff; font-size: 1.8rem; font-weight: 900; color: #333; }

/* Task */

.vision-task { background: var(--sub-bg-light); }
.vision-task__desc { max-width: 72rem; margin: 1.4rem auto 0; font-size: 1.7rem; line-height: 1.75; text-align: center; color: #555; }
.vision-task__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.6rem; margin-top: 3rem; }
.vision-task__item { padding: 3rem 2rem; border-radius: 1.8rem; background: #fff; text-align: center; }
.vision-task__number { display: block; font-size: clamp(4rem, 5vw, 6.4rem); font-weight: 900; line-height: 1; color: var(--sub-btn-primary); }

.vision-task__number::after { display: inline-block; font-size: 1.8rem; font-weight: 900; color: #222; }
li:nth-of-type(1) .vision-task__number::after { content: '대'; }
li:nth-of-type(2) .vision-task__number::after { content: '개'; }
li:nth-of-type(3) .vision-task__number::after { content: '개'; }
.vision-task__label { display: block; margin-top: 1rem; font-size: 1.8rem; font-weight: 900; color: #222; }

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1280px) {
  .vision-hero { padding: 5.2rem 4rem; }
  .vision-section, .vision-task, .vision-mission { padding: 3rem; }
}

@media (max-width: 1024px) {
  .vision-card-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vision-mission { grid-template-columns: 1fr; }
  .vision-mission__label { align-items: center; text-align: center; }
}

@media (max-width: 768px) {
  .vision-hero { padding: 4.4rem 2.4rem; border-radius: 1.8rem; }
  .vision-mission, .vision-section, .vision-task { padding: 2.4rem; border-radius: 1.6rem; }
  .vision-mission__text { font-size: 1.6rem; }
  .vision-card-list { gap: 1.2rem; }
  .vision-goal-list { justify-content: flex-start; }
  .vision-goal { min-height: 4.8rem; font-size: 1.6rem; }
  .vision-task__list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .vision-hero { padding: 3.6rem 2rem; }
  .vision-card-list { grid-template-columns: 1fr; }
  .vision-card { min-height: auto; padding: 2rem; }
  .vision-section__title { font-size: 2.3rem; }
  .vision-mission__label h3 { font-size: 2.2rem; }
}
  
/* ===========================
  인사말
=========================== */

.greeting-page { color: #333; }
.greeting-hero { display: grid; grid-template-columns: minmax(0, 1.2fr) 36rem; gap: 4rem; align-items: center; padding: 4rem; border-radius: 2.4rem; background: radial-gradient(circle at 92% 12%, rgba(94, 127, 99, 0.18), transparent 28rem), linear-gradient(135deg, var(--sub-bg-light) 0%, var(--sub-bg) 100%); }
.greeting-hero__eyebrow { display: inline-flex; margin-bottom: 1.4rem; color: var(--sub-primary); font-size: 1.4rem; font-weight: 900; letter-spacing: 0.08em; }
.greeting-hero__title { font-size: clamp(2.4rem, 3vw, 4rem); font-weight: 900; line-height: 1.35; color: #333; }
.greeting-hero__desc { margin-top: 2rem; font-size: 2rem; font-weight: 800; line-height: 1.6; color: var(--sub-primary); }
.greeting-hero__image { overflow: hidden; border-radius: 2rem; background: #fff; border: 1px solid #ded6ce; }
.greeting-hero__image img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.greeting-quote { margin-top: 4rem; background: #fff; }
.greeting-quote blockquote { margin: 0; }
.greeting-quote p { font-size: clamp(2rem, 2.2vw, 3rem); font-weight: 900; line-height: 1.5; color: #222; }
.greeting-content { margin: 4.8rem auto 0; }         
.greeting-content p { font-size: 1.8rem; line-height: 1.95; color: #444; }
.greeting-content p + p { margin-top: 2.2rem; }
.greeting-content strong { color: var(--sub-primary); font-weight: 900; }

/* Section Title */

.greeting-section-title { position: relative; margin-bottom: 2.4rem; padding-left: 1.6rem; font-size: 2.6rem; font-weight: 900; color: #111; }
.greeting-section-title::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 0.7rem; height: 0.7rem; background: var(--sub-primary); }

/* History */

.greeting-history { margin-top: 5.6rem; }
.greeting-history__list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.6rem; }
.greeting-history__item { position: relative; min-height: 16rem; padding: 2.6rem 2.2rem; border: 1px solid var(--table-border); border-radius: 1.8rem; background: #fff; }
.greeting-history__item::before { content: ""; position: absolute; left: 2.2rem; top: 0; width: 4rem; height: 0.4rem; border-radius: 999px; background: var(--sub-secondary); }
.greeting-history__item strong { display: block; font-size: 3.2rem; font-weight: 900; color: var(--sub-primary); }
.greeting-history__item p { margin-top: 1.2rem; font-size: 1.6rem; font-weight: 700; line-height: 1.6; color: #444; }
.greeting-sign { margin-top: 3rem; text-align: right; }
.greeting-sign span { display: inline-flex; align-items: center; font-size: 1.9rem; font-weight: 900; color: #333; }
.greeting-sign span::before { content: ""; width: 4rem; height: 1px; margin-right: 1.2rem; background: #999; }

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1280px) {
  .greeting-hero { gap: 3rem; padding: 4.4rem; }
}
@media (max-width: 1024px) {
  .greeting-hero { grid-template-columns: 1fr; }
  .greeting-hero__image { max-width: 36rem; order: -1; }
  .greeting-history__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .greeting-hero { padding: 3.2rem 2.4rem; border-radius: 1.8rem; }
  .greeting-hero__desc { font-size: 1.7rem; }
  .greeting-quote { padding: 2.8rem 2.4rem; }
  .greeting-content { margin-top: 4rem; }
  .greeting-content p { font-size: 1.6rem; line-height: 1.85; }
  .greeting-history__list { grid-template-columns: 1fr; }
  .greeting-sign { text-align: left; }
}

@media (max-width: 480px) {
  .greeting-hero { padding: 2.8rem 2rem; }
  .greeting-hero__image { max-width: 28rem; }
  .greeting-quote { padding: 2.4rem 2rem; }
  .greeting-section-title { font-size: 2.2rem; }
  .greeting-history__item { min-height: auto; padding: 2.2rem 2rem; } }      
       
/* ===========================
   SITEMAP
=========================== */

.sitemap { color: #333; }
.sitemap__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.sitemap__section { min-width: 0; padding: 2.8rem; border: 1px solid var(--table-border); border-radius: 1.8rem; background: #fff; }
.sitemap__title { position: relative; margin-bottom: 2rem; padding-bottom: 1.4rem; border-bottom: 2px solid var(--sub-primary); font-size: 2.4rem; font-weight: 900; color: #111; }
.sitemap__title::before { content: ""; display: inline-block; width: 0.8rem; height: 0.8rem; margin-right: 0.8rem; background: var(--sub-primary); vertical-align: 0.25rem; }
.sitemap__list { display: grid; gap: 1rem; }
.sitemap__item { min-width: 0; }
.sitemap__link { position: relative; display: flex; align-items: center; min-height: 4.2rem; padding: 0.8rem 1.2rem 0.8rem 2rem; border-radius: 0.8rem; background: var(--sub-bg-light); color: #333; font-size: 1.6rem; font-weight: 800; line-height: 1.4; text-decoration: none; }
.sitemap__link::before { content: ""; position: absolute; left: 0.9rem; top: 50%; width: 0.4rem; height: 0.4rem; background: var(--sub-secondary); transform: translateY(-50%); }
.sitemap__link:hover, .sitemap__link:focus-visible { background: var(--sub-primary); color: #fff; }
.sitemap__link:hover::before, .sitemap__link:focus-visible::before { background: #fff; }
.sitemap__link:focus-visible, .sitemap__sub-link:focus-visible { outline: 3px solid rgba(154, 107, 74, 0.35); outline-offset: 2px; }

/* 3depth */
.sitemap__sub { display: grid; gap: 0.6rem; margin-top: 0.8rem; margin-left: 1.2rem; padding: 1rem 1rem 1rem 1.4rem; border-left: 2px solid #ded6ce; }
.sitemap__sub-link { position: relative; display: inline-flex; align-items: center; min-height: 3.4rem; padding: 0.4rem 0.6rem 0.4rem 1.4rem; border-radius: 0.6rem; color: #555; font-size: 1.5rem; line-height: 1.5; text-decoration: none; }
.sitemap__sub-link::before { content: "-"; position: absolute; left: 0.3rem; color: var(--sub-primary); font-weight: 800; }
.sitemap__sub-link:hover, .sitemap__sub-link:focus-visible { color: var(--sub-btn-primary); background: #fff7ef; text-decoration: underline; text-underline-offset: 0.3rem; font-weight: 500; }

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1280px) {
  .sitemap__grid { gap: 1.6rem; }
  .sitemap__section { padding: 2.4rem; }
}
@media (max-width: 1024px) {
  .sitemap__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .sitemap__grid { grid-template-columns: 1fr; }
  .sitemap__section { padding: 2.2rem; border-radius: 1.4rem; }
  .sitemap__title { font-size: 2.1rem; }
  .sitemap__link { min-height: 4.4rem; }
}

@media (max-width: 480px) {
  .sitemap__section { padding: 1.8rem; }
  .sitemap__list { gap: 0.8rem; }
  .sitemap__sub { margin-left: 0.8rem; padding-left: 1.2rem; }
  .sitemap__link { font-size: 1.5rem; }
  .sitemap__sub-link { font-size: 1.4rem; }
}

/* ===========================
   ERROR PAGE
=========================== */

.error-page { display: flex; align-items: center; justify-content: center; min-height: 70vh; padding: 6rem 2rem; background: var(--sub-bg-light); }
.error-page__inner { width: 100%; max-width: 72rem; padding: 5.2rem 4rem; border: 1px solid rgba(154, 107, 74, 0.18); border-radius: 2.4rem; background: #fff; text-align: center; }
.error-page__icon { display: inline-flex; align-items: center; justify-content: center; width: 9.6rem; height: 9.6rem; margin-bottom: 2.4rem; border-radius: 50%; background: var(--sub-bg); }
.error-page__icon span { font-size: 4.4rem; line-height: 1; }
.error-page__code { margin-bottom: 0.8rem; font-size: 5.6rem; font-weight: 900; line-height: 1; color: var(--sub-primary); }
.error-page__title { font-size: 3rem; font-weight: 900; line-height: 1.4; color: #111; }
.error-page__desc { margin-top: 2rem; font-size: 1.7rem; line-height: 1.8; color: #555; }
.error-page__desc p + p { margin-top: 1rem; }
.error-page__contact { margin-top: 2rem; font-size: 1.6rem; font-weight: 800; color: #333; }
.error-page__contact a { color: var(--sub-btn-primary); text-decoration: underline; text-underline-offset: 0.3rem; }
.error-page__actions { display: flex; justify-content: center; gap: 1rem; margin-top: 3.2rem; }
.error-page__button {display: inline-flex; align-items: center; justify-content: center; min-width: 14rem; min-height: 4.8rem; padding: 0 2.4rem; border: 1px solid transparent; border-radius: 0.8rem; font-size: 1.6rem; font-weight: 800; cursor: pointer;}
.error-page__button--primary {background: var(--sub-btn-primary); border-color: var(--sub-btn-primary); color: #fff;}
.error-page__button--outline { background: #fff; border-color: #cfc7bf; color: #333; }
.error-page__button:hover, .error-page__button:focus-visible { outline: 3px solid rgba(154, 107, 74, 0.28); outline-offset: 3px; }

/* 상태별 포인트 */
.error-page--coming .error-page__icon { background: #f7efe7; }
.error-page--404 .error-page__icon { background: #eef3ef; }
.error-page--500 .error-page__icon { background: #fff1e8; }

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) { 
  .error-page__inner { max-width: 64rem; } 
} 
@media (max-width: 768px) { 
  .error-page { padding: 4rem 1.6rem; } 
  .error-page__inner { padding: 4rem 2.4rem; } 
  .error-page__title { font-size: 2.4rem; } 
  .error-page__desc { font-size: 1.6rem; } 
  .error-page__actions { flex-direction: column; } 
  .error-page__button { width: 100%; } 
}
 @media (max-width: 480px) { 
  .error-page__inner { padding: 3.2rem 2rem; border-radius: 1.8rem; } 
  .error-page__icon { width: 8rem; height: 8rem; } 
  .error-page__icon span { font-size: 3.6rem; } 
  .error-page__code { font-size: 4.4rem; } 
  .error-page__title { font-size: 2.1rem; } 
}

/* ===========================
   TOP BUTTON
=========================== */

.top-button {position: fixed; right: 3.2rem; bottom: 3.2rem; z-index: 900; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem; width: 5.6rem; height: 5.6rem; border: 0; border-radius: 50%; background: var(--sub-btn-basic); color: #fff; font-weight: 800; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(1rem); transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.25s ease;}
.top-button--visible { opacity: 1; visibility: visible; transform: translateY(0); }
.top-button__icon { font-size: 1.8rem; line-height: 1; }
.top-button__text { font-size: 1.1rem; line-height: 1; }
.top-button:hover, .top-button:focus-visible { background: var(--sub-btn-primary); }
.top-button:focus-visible { outline: 3px solid rgba(154, 107, 74, 0.35); outline-offset: 3px; }
.top-button.is-footer-safe { bottom: 10rem; }

@media (max-width: 1024px) {
  .top-button { right: 2.4rem; bottom: 2.4rem; }
}

@media (max-width: 768px) {
  .top-button { width: 4.8rem; height: 4.8rem; right: 1.8rem; bottom: 1.8rem; }
  .top-button__icon { font-size: 1.6rem; }
  .top-button__text { font-size: 1rem; }
}

@media (max-width: 480px) {
  .top-button { right: 1.4rem; bottom: 1.4rem; }
}

/* ===========================
   TERMS PAGE
=========================== */

.terms-page {
  margin: 0 auto;
  color: #333;
}

.terms-page__header {
  padding: 3.2rem;
  border: 1px solid var(--table-border);
  border-left: 0.6rem solid var(--sub-primary);
  background: var(--sub-bg-light);
}

.terms-page__eyebrow {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--sub-primary);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.terms-page__title {
  font-size: 3rem;
  font-weight: 900;
  color: #111;
}

.terms-page__desc {
  margin-top: 1rem;
  font-size: 1.7rem;
  line-height: 1.7;
  color: #555;
}

.terms-page__date {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sub-primary);
}

/* 상단 요약 */

.terms-summary {
  margin-top: 2.4rem;
  padding: 2rem 2.4rem;
  border: 1px solid var(--table-border);
  border-radius: 1.4rem;
  background: #fff;
}

.terms-summary strong {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.7rem;
  font-weight: 900;
  color: #222;
}

.terms-summary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.terms-summary li {
  display: inline-flex;
  align-items: center;
  min-height: 3.6rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: var(--sub-bg-light);
  color: #444;
  font-size: 1.5rem;
  font-weight: 800;
}

/* 본문 */

.terms-body {
  margin-top: 3.2rem;
}

.terms-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--table-border);
}

.terms-section:first-child {
  padding-top: 0;
}

.terms-section__title {
  position: relative;
  margin-bottom: 1.6rem;
  padding-left: 1.4rem;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.4;
  color: #111;
}

.terms-section__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.4rem;
  height: 1.3em;
  border-radius: 999px;
  background: var(--sub-primary);
}

.terms-section__content {
  font-size: 1.7rem;
  line-height: 1.9;
  color: #444;
}

.terms-section__content p + p {
  margin-top: 1.2rem;
}

/* 리스트 */

.terms-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
  padding-left: 0;
  list-style: none;
}

.terms-list > li {
  position: relative;
  padding-left: 2.8rem;
  line-height: 1.8;
}

.terms-list--circle > li:nth-child(1)::before { content: "①"; }
.terms-list--circle > li:nth-child(2)::before { content: "②"; }
.terms-list--circle > li:nth-child(3)::before { content: "③"; }
.terms-list--circle > li:nth-child(4)::before { content: "④"; }
.terms-list--circle > li:nth-child(5)::before { content: "⑤"; }

.terms-list--number {
  counter-reset: terms-number;
}

.terms-list--number > li {
  counter-increment: terms-number;
}

.terms-list--number > li::before {
  content: counter(terms-number) ".";
}

.terms-list--korean > li:nth-child(1)::before { content: "가."; }
.terms-list--korean > li:nth-child(2)::before { content: "나."; }
.terms-list--korean > li:nth-child(3)::before { content: "다."; }
.terms-list--korean > li:nth-child(4)::before { content: "라."; }
.terms-list--korean > li:nth-child(5)::before { content: "마."; }
.terms-list--korean > li:nth-child(6)::before { content: "바."; }

.terms-list--dash > li::before {
  content: "-";
}

.terms-list > li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sub-primary);
  font-weight: 900;
}

/* 안내박스 */

.terms-notice {
  margin-top: 1.6rem;
  padding: 1.8rem 2rem;
  border-radius: 1.2rem;
  border: 1px solid var(--table-border);
}

.terms-notice strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
  font-weight: 900;
}

.terms-notice--info {
  background: var(--sub-bg-light);
}

.terms-notice--warning {
  background: #fff7ef;
  border-color: #f1d6bf;
}

/* 아코디언 */

.terms-accordion {
  margin-top: 3.2rem;
}

.terms-accordion__item {
  border: 1px solid var(--table-border);
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
}

.terms-accordion__item + .terms-accordion__item {
  margin-top: 1rem;
}

.terms-accordion__button {
  position: relative;
  width: 100%;
  min-height: 5.2rem;
  padding: 1.4rem 5rem 1.4rem 1.8rem;
  border: 0;
  background: #fff;
  color: #222;
  font-size: 1.6rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.terms-accordion__button::after {
  content: "+";
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sub-primary);
  font-size: 2.2rem;
  font-weight: 900;
}

.terms-accordion__button[aria-expanded="true"]::after {
  content: "-";
}

.terms-accordion__panel {
  padding: 0 1.8rem 1.8rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #555;
}

/* focus */

.terms-page a:focus-visible,
.terms-accordion__button:focus-visible {
  outline: 3px solid rgba(154, 107, 74, 0.3);
  outline-offset: 3px;
}

/* 반응형 */

@media (max-width: 768px) {
  .terms-page__header {
    padding: 2.4rem;
  }

  .terms-page__title {
    font-size: 2.5rem;
  }

  .terms-summary {
    padding: 1.8rem;
  }

  .terms-summary ul {
    gap: 0.6rem;
  }

  .terms-summary li {
    min-height: 3.4rem;
    font-size: 1.4rem;
  }

  .terms-section {
    padding: 2.6rem 0;
  }

  .terms-section__title {
    font-size: 2rem;
  }

  .terms-section__content {
    font-size: 1.6rem;
  }

  .terms-accordion__button {
    min-height: 5.6rem;
  }
}

@media (max-width: 480px) {
  .terms-page__header {
    padding: 2rem;
  }

  .terms-page__title {
    font-size: 2.2rem;
  }

  .terms-summary ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .terms-summary li {
    justify-content: center;
    padding: 0 1rem;
  }

  .terms-section__title {
    font-size: 1.9rem;
  }

  .terms-list > li {
    padding-left: 2.4rem;
  }
}

/* ===========================
  비대면 자격검증
=========================== */

.qualification-check {
  margin-top: 4rem;
}

.qualification-check__agree {
  margin-bottom: 2rem;
}

.qualification-check__form {
  border-top: 2px solid var(--sub-primary);
}

.qualification-check__resident {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 42rem;
}

.qualification-check__resident .form-control {
  flex: 1;
  min-width: 0;
}

.qualification-check__dash {
  flex-shrink: 0;
  color: #777;
  font-weight: 800;
}

.qualification-check__select {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
}

.qualification-check__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 14rem;
  min-height: 4.8rem;
  padding: 0 1.8rem;

  border: 1px solid var(--sub-btn-primary);
  border-radius: 0.8rem;

  background: var(--sub-btn-primary);
  color: #fff;

  font-size: 1.5rem;
  font-weight: 800;
  cursor: pointer;
}

.qualification-check__button:disabled,
.qualification-check .form-control:disabled {
  background: #f3f3f3;
  color: #999;
  border-color: #ddd;
  cursor: not-allowed;
}

.qualification-check__button:disabled {
  background: #ddd;
  color: #777;
}

.qualification-check__button:focus-visible,
.qualification-check .form-control:focus-visible {
  outline: 3px solid rgba(154, 107, 74, 0.3);
  outline-offset: 2px;
}

.qualification-check__notice {
  margin-top: 2rem;
  padding: 1.8rem 2rem;

  border: 1px solid var(--table-border);
  border-radius: 1.2rem;

  background: var(--sub-bg-light);
}

.qualification-check__notice strong {
  display: block;
  margin-bottom: 1rem;

  font-size: 1.6rem;
  font-weight: 900;
  color: #222;
}

.qualification-check__notice a {
  color: var(--sub-btn-primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.qualification-check__result {
  margin-top: 1.2rem;
  min-height: 4.4rem;
  padding: 1.2rem 1.4rem;

  border-radius: 0.8rem;

  background: #f7f7f7;
  color: #666;

  font-size: 1.5rem;
  line-height: 1.6;
}

.qualification-check__result:empty {
  display: none;
}

.qualification-check__result--success {
  display: block;
  background: #eef7ef;
  color: #245c2c;
  font-weight: 800;
}

.qualification-check__result--fail {
  display: block;
  background: #fff1e8;
  color: #a13d00;
  font-weight: 800;
}

.qualification-check__result--warning {
  display: block;
  background: #fff8dc;
  color: #665000;
  font-weight: 800;
}

@media (max-width: 768px) {
  .qualification-check__resident {
    max-width: none;
    flex-wrap: wrap;
  }

  .qualification-check__resident .form-control {
    flex: 1 1 12rem;
  }

  .qualification-check__select {
    grid-template-columns: 1fr;
  }

  .qualification-check__button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .qualification-check__resident {
    display: grid;
    grid-template-columns: 1fr;
  }

  .qualification-check__dash {
    display: none;
  }

  .qualification-check__notice {
    padding: 1.6rem;
  }
}

/* ===========================
   취소 및 환불 페이지
=========================== */

.refund-guide {
  color: #333;
}

.refund-guide__hero {
  padding: 4rem 4.4rem;
  border-left: 0.6rem solid var(--sub-primary);
  background: linear-gradient(135deg, var(--sub-bg-light) 0%, var(--sub-bg) 100%);
}

.refund-guide__title {
  margin-bottom: 1.4rem;
  font-size: 2.8rem;
  font-weight: 900;
  color: #111;
}

.refund-guide__hero p {
  font-size: 1.7rem;
  line-height: 1.8;
  color: #444;
}

.refund-guide__hero p + p {
  margin-top: 1rem;
}

/* summary */

.refund-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.refund-summary__card {
  padding: 2.6rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
}

.refund-summary__card strong {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 2rem;
  font-weight: 900;
  color: var(--sub-primary);
}

.refund-summary__card p {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #555;
}

.refund-summary__card p::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.75em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sub-secondary);
}

/* step */

.refund-step__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
}

.refund-step__item {
  position: relative;
  min-height: 20rem;
  padding: 2.4rem 2rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
}

.refund-step__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.9rem;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid var(--sub-primary);
  border-right: 2px solid var(--sub-primary);
  transform: translateY(-50%) rotate(45deg);
  background: #fff;
}

.refund-step__item span {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: var(--sub-btn-primary);
  font-size: 1.6rem;
  font-weight: 900;
}

.refund-step__item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #222;
}

.refund-step__item p {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #555;
}

/* table */

.refund-table {
  min-width: 82rem;
}

.refund-table td {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* contact */

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.8rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
}

.contact-box strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #222;
}

.contact-box p {
  margin-top: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #555;
}

.contact-box__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 0 2.2rem;
  border-radius: 999px;
  background: var(--sub-btn-basic);
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

/* actions */

.refund-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}

/* common helper */

.content-section {
  margin-top: 5rem;
}

.content-desc {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #555;
}

.notice-box {
  padding: 2.4rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: var(--sub-bg-light);
}

.list-dot {
  display: grid;
  gap: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #444;
}

.list-dot li {
  position: relative;
  padding-left: 1.6rem;
}

.list-dot li::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.75em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sub-primary);
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--sub-primary);
  background: #fff;
  font-size: 1.5rem;
}

.info-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.info-table th,
.info-table td {
  padding: 1.4rem 1.2rem;
  border-bottom: 1px solid var(--table-border);
  border-right: 1px solid var(--table-border);
  text-align: center;
  vertical-align: middle;
  line-height: 1.6;
}

.info-table th:last-child,
.info-table td:last-child {
  border-right: 0;
}

.info-table th {
  background: var(--table-bg);
  font-weight: 900;
  color: #222;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 0 2.4rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 900;
}

.btn--primary {
  background: var(--sub-btn-primary);
  border-color: var(--sub-btn-primary);
  color: #fff;
}

.btn--outline {
  background: #fff;
  border-color: #cfc7bf;
  color: #333;
}

.btn:focus-visible,
.contact-box__tel:focus-visible {
  outline: 3px solid rgba(154, 107, 74, 0.32);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .refund-summary {
    grid-template-columns: 1fr;
  }

  .refund-step__list {
    grid-template-columns: 1fr;
  }

  .refund-step__item {
    min-height: auto;
  }

  .refund-step__item:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -0.9rem;
    transform: translateX(-50%) rotate(135deg);
  }
}

@media (max-width: 768px) {
  .refund-guide__hero {
    padding: 3rem 2.4rem;
  }

  .refund-guide__title {
    font-size: 2.4rem;
  }

  .content-section {
    margin-top: 4rem;
  }

  .content-heading {
    font-size: 2.1rem;
  }

  .contact-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 2.2rem;
  }

  .contact-box__tel {
    width: 100%;
  }

  .refund-actions {
    flex-direction: column;
  }

  .refund-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .refund-guide__hero,
  .refund-summary__card,
  .refund-step__item,
  .notice-box {
    padding: 2rem;
  }

  .refund-guide__title {
    font-size: 2.1rem;
  }

  .refund-table {
    min-width: 76rem;
  }
}


/* ===========================
   감면대상안내 페이지
=========================== */

.reduction-guide {
  color: #333;
}

.reduction-guide__hero {
  padding: 4rem 4.4rem;
  border-left: 0.6rem solid var(--sub-primary);
  background: linear-gradient(135deg, var(--sub-bg-light) 0%, var(--sub-bg) 100%);
}

.reduction-guide__title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #111;
}

.reduction-guide__desc {
  margin-top: 1.2rem;
  max-width: 92rem;
  font-size: 1.7rem;
  line-height: 1.8;
  color: #444;
}

/* table */

.reduction-table td {
  vertical-align: middle;
}

.reduction-table .discount-badge + .discount-badge {
  margin-top: 0.4rem;
}

.reduction-guide__table-note {
  margin-top: 1.2rem;
  padding-left: 1.4rem;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #666;
}

.reduction-guide__table-note::before {
  content: "※";
  position: absolute;
  left: 0;
  color: var(--sub-primary);
  font-weight: 900;
}

/* badge */

.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 3rem;
  padding: 0 1rem;

  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.3;
  white-space: nowrap;
  background: #f7f7f7;
}

.discount-badge--full {
  background: #fff1e8;
  color: #a13d00;
}

.discount-badge--half {
  background: #eef7ef;
  color: #245c2c;
}

.discount-badge--partial {
  background: #f6f0ff;
  color: #55328a;
}

.discount-badge--basic {
  background: #f3f3f3;
  color: #555;
}

/* step */

.reduction-step {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
}

.reduction-step__item {
  position: relative;
  min-height: 16rem;
  padding: 2.4rem 1.8rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
  text-align: center;
}

.reduction-step__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.9rem;
  top: 50%;
  width: 1.4rem;
  height: 1.4rem;
  border-top: 2px solid var(--sub-primary);
  border-right: 2px solid var(--sub-primary);
  transform: translateY(-50%) rotate(45deg);
  background: #fff;
}

.reduction-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1.4rem;

  border-radius: 50%;

  background: var(--sub-primary);
  color: #fff;

  font-size: 1.4rem;
  font-weight: 900;
}

.reduction-step__title {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: #222;
}

.reduction-step__desc {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #666;
}

/* contact */

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  padding: 2.8rem 3.2rem;

  border: 1px solid #ded6ce;
  border-radius: 1.8rem;

  background: var(--sub-bg-light);
}

.contact-box__title {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: #222;
}

.contact-box__text {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #555;
}

.contact-box__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 4.8rem;
  padding: 0 2.2rem;

  border-radius: 999px;

  background: var(--sub-btn-basic);
  color: #fff;

  font-size: 1.6rem;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .reduction-guide__hero {
    padding: 3.2rem;
  }

  .reduction-step {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reduction-step__item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .reduction-guide__hero {
    padding: 2.8rem 2.4rem;
  }

  .reduction-guide__title {
    font-size: 2.4rem;
  }

  .reduction-guide__desc {
    font-size: 1.6rem;
  }

  .reduction-step {
    grid-template-columns: 1fr;
  }

  .reduction-step__item {
    min-height: auto;
    display: grid;
    grid-template-columns: 5.2rem minmax(0, 1fr);
    gap: 0.6rem 1.4rem;
    text-align: left;
  }

  .reduction-step__number {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .contact-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 2.4rem;
  }

  .contact-box__tel {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .reduction-guide__hero {
    padding: 2.2rem 2rem;
  }

  .discount-badge {
    min-height: 2.8rem;
    padding: 0 0.8rem;
    font-size: 1.2rem;
  }

  .reduction-step__item {
    padding: 2rem;
  }

  .contact-box {
    padding: 2rem;
  }
}

@media (max-width: 1024px) {
  .rental-space {
    display: block;
  }

  .rental-space__intro {
    margin-bottom: 2.4rem;
  }

  .rental-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rental-space__info div {
    grid-template-columns: 1fr;
  }

  .rental-round-list,
  .rental-gallery {
    grid-template-columns: 1fr;
  }
}

.space-info__desc,
.space-info__preline {
  white-space: pre-line;
}

.space-round-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.space-round-list li {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  min-width: 0;
}

.space-round-list span {
  flex: 0 0 auto;
  font-weight: 800;
}

.space-round-list em {
  min-width: 0;
  font-style: normal;
}

.space-gallery-section {
  position: relative;
  margin-top: 3.2rem;
  padding: 2.8rem;
  border: 1px solid var(--table-border);
  border-radius: 1.6rem;
  background: #fff;
}

.space-gallery-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.space-gallery__control {
  position: absolute;
  top: 50%;
  left: 1.6rem;
  right: 1.6rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.space-gallery__nav {
  position: relative;
  width: 5.2rem;
  min-width: 5.2rem;
  height: 5.2rem;
  padding: 0;
  border: 1px solid var(--table-border);
  border-radius: 50%;
  background: #fff;
  color: transparent;
  font-size: 0;
  pointer-events: auto;
  box-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.08);
}

.space-gallery__nav::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid #aaa;
  border-right: 2px solid #aaa;
  content: "";
}

.space-gallery__nav--prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.space-gallery__nav--next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

.space-gallery__nav:hover,
.space-gallery__nav:focus {
  border-color: var(--color-primary);
}

.space-gallery__nav:hover::before,
.space-gallery__nav:focus::before {
  border-color: var(--color-primary);
}

.space-gallery__nav:disabled {
  border-color: var(--table-border);
  opacity: 0.45;
  cursor: default;
}

.space-gallery {
  margin-top: 1.8rem;
  overflow: hidden;
}

.space-gallery__viewport {
  overflow: hidden;
}

.space-gallery__track {
  display: flex;
  gap: 1.6rem;
  transition: transform 0.35s ease;
  will-change: transform;
}

.space-gallery__item {
  flex: 0 0 calc((100% - 3.2rem) / 3);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--table-border);
  border-radius: 0.8rem;
  background: #fff;
}

.space-gallery__zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.space-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.space-gallery__item figcaption {
  padding: 1rem 1.2rem;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}

.space-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  background: rgba(0, 0, 0, 0.78);
}

.space-gallery-modal.is-open {
  display: flex;
}

.space-gallery-modal__inner {
  position: relative;
  max-width: min(96rem, 100%);
  max-height: 90vh;
  text-align: center;
}

.space-gallery-modal__inner img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  border-radius: 0.8rem;
  object-fit: contain;
}

.space-gallery-modal__inner p {
  margin-top: 1.4rem;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.5;
}

.space-gallery-modal__close {
  position: absolute;
  top: -4.8rem;
  right: 0;
  min-width: 6.4rem;
  height: 3.6rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 0.6rem;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-weight: 800;
}

body.is-gallery-modal-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .space-gallery__item {
    flex-basis: calc((100% - 1.6rem) / 2);
  }
}

@media (max-width: 640px) {
  .space-round-list {
    grid-template-columns: 1fr;
  }

  .space-gallery-section {
    padding: 2rem;
  }

  .space-gallery-section__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .space-gallery__control {
    left: 0.8rem;
    right: 0.8rem;
  }

  .space-gallery__nav {
    width: 4.4rem;
    min-width: 4.4rem;
    height: 4.4rem;
  }

  .space-gallery__item {
    flex-basis: 100%;
  }

  .space-gallery-modal {
    padding: 2rem;
  }
}
