@charset "UTF-8";
:root {
  --brand: #cf8f56;
  --brand-hover: color-mix(in srgb, var(--brand) 88%, black);
  --brand-active: color-mix(in srgb, var(--brand) 76%, black);
  --brand-soft: color-mix(in srgb, var(--brand) 8%, white);
  --secondary: #c6ac8f;
  --secondary-hover:color-mix(in srgb, var(--secondary) 88%, black);
  --secondary-soft: color-mix(in srgb, var(--secondary) 8%, white);
  --accent: #566f52;
  --on-brand: #ffffff;
  --on-secondary: #ffffff;
  --font: "Pretendard", "Noto Sans KR", sans-serif;
  --font-display: "GangwonEdu Modu";
  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 16px;
  --page-bg: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  border: 0;
  border-radius: var(--radius);
  font-family: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  height: 44px;
  padding: 0 20px;
  font-size: 15px;
}

.btn--sm {
  height: 32px;
  padding: 0 16px;
  font-size: 13px;
}

.btn--md {
  height: 44px;
  padding: 0 20px;
  font-size: 15px;
}

.btn--lg {
  height: 56px;
  padding: 0 24px;
  font-size: 20px;
  border-radius: var(--radius-lg);
}

.btn-primary {
  background: var(--brand);
  color: var(--on-brand);
}
.btn-primary:hover {
  background: var(--brand-hover);
}

.btn-outline {
  background: #ffffff;
  border: 1px solid var(--brand);
  color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand-soft);
}

.btn-gray {
  background: #eaeae8;
  color: #111111;
}
.btn-gray:hover {
  background: #cdcdcd;
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
}
.btn-ghost:hover {
  background: var(--brand-soft);
}

.site-footer {
  width: 100%;
  margin-top: auto;
  background: #f5f5f5;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .site-footer__inner {
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

.site-footer__support {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__support-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 700;
}

.site-footer__tel {
  color: #ee0000;
  font-size: clamp(28px, 6vw, 50px);
}

.site-footer__hours {
  font-family: "Noto Sans KR", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
}

.site-footer__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.6;
  font-family: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: #111111;
}
.site-footer__info .site-footer__row span {
  padding: 0 8px;
  border-left: 1px solid #111111;
}
.site-footer__info .site-footer__row span:first-child {
  padding-left: 0;
  border-left: 0;
}
@media (max-width: 768px) {
  .site-footer__info .site-footer__row span {
    display: block;
    padding: 0;
    border-left: 0;
  }
}

#GNB {
  border-bottom: 2px solid var(--brand);
}

#GNB ul > li:hover > h1 {
  border-bottom-color: var(--brand);
  color: var(--brand);
}

#GNB ul > li.studyMenu > h1 {
  border-bottom-color: var(--brand);
}

#GNB ol li:hover {
  color: var(--brand);
}

#wrap.study div#contentsArea {
  padding-top: 24px;
}

#wrap.study div#contentsArea > ul > li {
  margin-bottom: 24px;
  border: 1px solid #eaeae8;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

#wrap.study div#contentsArea > ul > li:hover,
#wrap.study div#contentsArea > ul > li.openClass {
  border-color: var(--brand);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

#wrap.study div.summuryArea {
  background: #ffffff;
}

#wrap.study div.summuryArea > img {
  background: #f5f5f5;
  border: 1px solid #eaeae8;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

#wrap.study div.summuryArea > h1 {
  color: #111111;
  font-family: var(--font);
  font-weight: 700;
}

#wrap.study div.summuryArea > h2 {
  color: #c2c2c2;
  font-family: var(--font);
}

#wrap.study div.summuryArea > h3 {
  color: var(--brand);
  font-family: var(--font);
  font-weight: 600;
}

#wrap.study div.summuryArea > h3 strong {
  background: var(--brand);
}

#wrap.study div.summuryArea:hover > h3,
#wrap.study .openClass div.summuryArea > h3 {
  color: var(--brand);
}

#wrap.study div.summuryArea ul li {
  background: #ffffff;
  border-left-color: #eaeae8;
}

#wrap.study div.summuryArea ul li strong {
  color: var(--brand);
}

#wrap.study div.summuryArea li > h1 {
  background: var(--brand-soft);
  color: var(--brand);
  border-bottom-color: #eaeae8;
}

#wrap.study div.summuryArea > p {
  background-color: var(--brand) !important;
  color: var(--on-brand);
  border-radius: var(--radius) !important;
}

#wrap.study div#contentsArea > ul > li > button {
  height: 36px;
  background-color: #f5f5f5;
  border-top: 1px solid #eaeae8;
}

#wrap.study div#contentsArea > ul > li:hover > button {
  background-color: var(--brand-soft);
}

#wrap.study div#contentsArea > ul > li > ul li a {
  color: var(--brand);
}

#wrap.study div.summuryArea li button.epilogue:hover {
  color: var(--brand);
}

#wrap.study div#contentsArea > ul > li table.passCheck td.title {
  background: var(--brand);
}

#wrap.study div#contentsArea > ul > li table.passCheck th {
  background: var(--brand-soft);
}

@media (max-width: 1024px) {
  #wrap.study div.summuryArea {
    display: grid;
    grid-template-columns: 96px 1fr;
    column-gap: 12px;
    row-gap: 4px;
    align-items: start;
    padding: 16px;
  }
  #wrap.study div.summuryArea > div {
    display: none;
  }
  #wrap.study div.summuryArea > br {
    display: none;
  }
  #wrap.study div.summuryArea > img {
    grid-column: 1;
    grid-row: 1/span 3;
    align-self: start;
    float: none;
    width: 96px;
    height: 72px;
    margin: 0;
  }
  #wrap.study div.summuryArea > h1 {
    grid-column: 2;
    grid-row: 1;
    width: auto !important;
    white-space: normal;
    margin: 0;
    font-size: 16px !important;
    line-height: 1.4;
  }
  #wrap.study div.summuryArea > h2 {
    grid-column: 2;
    grid-row: 2;
    width: auto !important;
    white-space: normal;
    margin: 0;
  }
  #wrap.study div.summuryArea > h3 {
    grid-column: 2;
    grid-row: 3;
    width: auto !important;
    white-space: normal;
    margin: 0;
  }
  #wrap.study div.summuryArea > ul {
    grid-column: 1/-1;
    grid-row: 4;
    float: none;
    display: flex;
    width: 100%;
    margin-top: 16px;
  }
  #wrap.study div.summuryArea ul li {
    float: none;
    flex: 1;
    width: auto;
    height: auto;
    line-height: 1.4;
    padding-bottom: 8px;
    font-size: 14px;
  }
  #wrap.study div.summuryArea ul li:first-child {
    border-left: 0;
  }
  #wrap.study div.summuryArea ul li strong {
    font-size: 18px;
  }
  #wrap.study div.summuryArea li > h1 {
    line-height: 32px;
    font-size: 13px;
  }
  #wrap.study div.summuryArea > p {
    grid-column: 1/-1;
    grid-row: 5;
    float: none !important;
    width: 100%;
    box-sizing: border-box;
    margin: 12px 0 0 !important;
    padding: 12px 0 !important;
    text-align: center;
  }
  #wrap.study div#contentsArea > ul > li > ul li {
    float: none;
    width: 100%;
    box-sizing: border-box;
    height: auto;
    padding: 16px 16px 16px 120px;
  }
}
ul.tabMenu {
  margin: 0 0 16px;
  background: transparent;
  border-bottom: 2px solid #eaeae8;
}

ul.tabMenu > li {
  padding: 0 18px;
  line-height: 44px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  color: #111111;
  font-weight: 700;
}

ul.tabMenu > li + li {
  border-left: 0;
}

ul.tabMenu > li:hover {
  color: var(--brand);
}

ul.tabMenu > li.select {
  background: transparent;
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.BBSList ul.lectureList li {
  border: 1px solid #eaeae8;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.BBSList ul.lectureList li:hover {
  border-color: var(--brand);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.BBSList ul.lectureList li + li {
  margin-top: 16px;
}

.BBSList ul.lectureList li > img {
  border-radius: var(--radius-sm);
}

.BBSList ul.lectureList li h1 {
  color: #111111;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
}

.BBSList ul.lectureList li h3 {
  color: #c2c2c2;
}

.BBSList ul.lectureList li h5 {
  background-color: var(--brand);
}

.BBSList ul.lectureList li button {
  background: #f5f5f5;
  border-left-color: #eaeae8;
}

.BBSList ul.lectureList li button:hover {
  background: var(--brand-soft);
}

.BBSList div.pager b {
  color: var(--brand);
  border-color: var(--brand);
}

.BBSList div.pager a:hover {
  color: var(--brand);
}

#loginArea > form > button,
#contentsArea.lectureDetail div.summuryArea button {
  background-color: var(--brand);
}

#contentsArea.lectureDetail > h1 {
  border-left-color: var(--brand);
}

.btnArea {
  margin: 24px 0;
  text-align: center;
  clear: both;
}

.btnArea button {
  height: 52px;
  padding: 0 40px;
  border: 0;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--on-brand);
  font-family: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.btnArea button:hover {
  background: var(--brand-hover);
}

div.searchArea button {
  border: 1px solid var(--brand) !important;
  color: var(--brand);
  border-radius: var(--radius);
}

div.searchArea button:hover {
  background: var(--brand-soft);
}

.BBSList table {
  border-bottom: 2px solid #cdcdcd !important;
}

.BBSList table th {
  background: #f5f5f5;
  border-top: 0;
  border-bottom: 1px solid #cdcdcd;
  color: #111111;
  font-weight: 700;
}

.BBSList table td {
  border-top: 1px solid #eaeae8;
}

.BBSList table tr.hover td,
.BBSList table tbody tr:hover td {
  background: var(--brand-soft);
}

.BBSList table th.left {
  text-align: center;
  padding-left: 0;
}

.BBSList table td.notResult {
  text-align: left;
  padding: 40px 24px;
  color: #c2c2c2;
}

.BBSList table tbody tr:hover td.notResult {
  background: transparent;
}

@media (max-width: 1024px) {
  .BBSList table,
  .BBSList table tbody,
  .BBSList table tr,
  .BBSList table td {
    display: block;
    width: auto;
  }
  .BBSList table thead {
    display: none;
  }
  .BBSList table {
    min-width: 0;
    border-bottom: 0 !important;
  }
  .BBSList table tbody tr {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 16px;
    row-gap: 4px;
    margin-bottom: 12px;
    padding: 16px;
    border: 1px solid #eaeae8;
    border-radius: var(--radius);
    background: #ffffff;
  }
  .BBSList table td {
    border: 0 !important;
    padding: 4px 0;
    white-space: normal;
    text-align: left;
    font-family: var(--font);
  }
  .BBSList table tbody tr:hover td {
    background: transparent;
  }
  .BBSList table td:nth-child(1):not(.notResult),
  .BBSList table td:nth-child(3),
  .BBSList table td:nth-child(4),
  .BBSList table td:nth-child(8) {
    display: none;
  }
  .BBSList table td.Left {
    order: -1;
    flex-basis: 100%;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    padding-bottom: 8px;
    cursor: pointer;
  }
  .BBSList table td:nth-child(2),
  .BBSList table td:nth-child(6),
  .BBSList table td:nth-child(7) {
    flex: 0 0 auto;
    font-size: 14px;
    color: #111111;
  }
  .BBSList table td:nth-child(2)::before {
    content: "문의종류";
  }
  .BBSList table td:nth-child(6)::before {
    content: "등록일";
  }
  .BBSList table td:nth-child(7)::before {
    content: "답변";
  }
  .BBSList table td:nth-child(2)::before,
  .BBSList table td:nth-child(6)::before,
  .BBSList table td:nth-child(7)::before {
    margin-right: 4px;
    color: #c2c2c2;
    font-size: 13px;
    font-weight: 600;
  }
  .BBSList table td.notResult {
    flex-basis: 100%;
    text-align: center;
    padding: 40px 24px;
  }
  .BBSList table tbody tr:has(td.notResult) {
    border: 0;
    padding: 0;
  }
  .BBSList .btnArea button.fRight {
    float: none !important;
    width: 100%;
  }
}
#telTable {
  background: var(--brand);
}

.BBSView {
  margin-top: 0;
}

.BBSView div.titleArea {
  padding: 16px 0;
  border-bottom: 2px solid #cdcdcd;
}

.BBSView div.titleArea h1 {
  margin: 0 0 8px;
  padding: 0;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #111111;
}

.BBSView div.titleArea h1 span {
  margin-left: 6px;
  font-size: 15px;
  color: #c2c2c2;
}

.BBSView div.titleArea h2 {
  margin: 0;
  padding: 8px 0 0;
  border-top: 1px solid #eaeae8;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.8;
  color: #111111;
}

.BBSView div.titleArea h2 span {
  margin-left: 6px;
  padding-left: 8px;
  border-left: 1px solid #eaeae8;
  font-weight: normal;
  color: #c2c2c2;
}

.BBSView div.titleArea h2 strong.email,
.BBSView div.titleArea h2 strong.tel,
.BBSView div.titleArea h2 strong.date {
  font-size: 13px;
  color: #c2c2c2;
  line-height: 1.8;
}

.BBSView div.BBSContents {
  min-height: 160px;
  padding: 24px 0;
  line-height: 1.7;
  font-family: var(--font);
  font-size: 16px;
  color: #111111;
}

.BBSView div.replyArea {
  margin: 8px 0 24px;
  padding: 16px;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  background: var(--brand-soft);
}

.BBSView div.replyArea h2 {
  margin: 0 0 8px;
  padding: 0;
  float: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
}

.BBSView div.replyArea h2 span {
  margin-left: 6px;
  font-size: 13px;
  font-weight: normal;
  color: #c2c2c2;
}

.BBSView div.replyArea > div,
.BBSView div.replyArea #reply {
  width: auto;
  min-height: auto;
  margin: 0;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #eaeae8;
  border-radius: var(--radius-sm);
  line-height: 1.7;
  font-size: 16px;
  color: #111111;
}

.BBSView div.btnArea {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  border-top: 1px solid #eaeae8;
  padding: 24px 0;
  clear: both;
}

.BBSView div.btnArea button[onclick*=listAct],
.BBSView div.btnArea button[onclick*=deleteData] {
  background: #eaeae8;
  color: #111111;
}
.BBSView div.btnArea button[onclick*=listAct]:hover,
.BBSView div.btnArea button[onclick*=deleteData]:hover {
  background: #cdcdcd;
}

@media (max-width: 768px) {
  .BBSView div.titleArea h2 strong.email,
  .BBSView div.titleArea h2 strong.tel,
  .BBSView div.titleArea h2 strong.date {
    float: none;
    display: block;
  }
}
#Header {
  position: sticky;
  top: 0;
  z-index: 101;
  height: auto;
  min-height: 48px;
  background: #ffffff;
  border-bottom: 1px solid #f5f5f5;
}

#GNB {
  position: sticky;
  top: 48px;
  z-index: 100;
  background: #ffffff;
}

#wrap {
  margin-top: 0;
  padding-top: 40px;
}

#Header > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  height: auto;
  min-height: 48px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
  font-family: var(--font);
}

#Header .hdr-welcome {
  color: #111111;
}

#Header .hdr-welcome strong {
  font-size: 14px;
  color: #111111;
}

#Header .hdr-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#Header > div button {
  height: 30px;
  margin: 0;
  padding: 0 14px;
  line-height: 28px;
  vertical-align: middle;
  border: 1px solid #eaeae8;
  border-radius: var(--radius);
  background: transparent;
  color: #111111;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

#Header > div button.favoriteBtn {
  padding-left: 14px;
  background-image: none;
}

#Header > div button:hover {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand);
  text-decoration: none;
}

.hdr-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.hdr-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: #111111;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hdr-toggle:hover {
  background: none;
  border: 0;
}
.hdr-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hdr-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.hdr-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hdr-toggle {
  display: none;
}

@media (max-width: 1024px) {
  #GNB {
    order: -1;
    position: sticky;
    top: 0;
    z-index: 101;
  }
  #GNB .hdr-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  #Header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    display: none;
    z-index: 100;
    min-height: 0;
    border-bottom: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  }
  #Header.is-open {
    display: block;
  }
  #Header > div {
    display: block;
    max-width: none;
    height: auto;
    min-height: 0;
    padding: 12px 16px;
    text-align: left;
  }
  #Header .hdr-welcome {
    display: block;
    margin-bottom: 10px;
    white-space: normal;
  }
  #Header .hdr-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  #Header .hdr-actions button {
    width: 100%;
    height: 44px;
    font-size: 15px;
  }
  .hdr-overlay {
    display: none;
  }
  .hdr-overlay.is-open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 90;
  }
}
#GNB > div {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  height: 56px;
  display: flex;
  align-items: center;
}

#GNB a {
  font-family: var(--font);
}

#GNB div > h1 {
  margin-left: 0;
}

#GNB div > h1 a {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
}

#titleArea {
  background-color: color-mix(in srgb, var(--brand) 6%, white);
  border-bottom: 1px solid #eaeae8;
  padding: 0 20px;
}

#titleArea h2 {
  font-family: var(--font);
  font-size: 13px;
  color: #c2c2c2;
}

#titleArea h2 strong {
  font-size: 13px;
  color: var(--brand);
}

#titleArea h1 {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
}

#snb {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 20px;
  border-bottom: 2px solid #eaeae8;
}

#snb li {
  float: none;
  flex: 0 0 auto;
  min-width: 0;
  margin: 0 0 -2px 0;
  padding: 0 16px;
  line-height: 48px;
  white-space: nowrap;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #111111;
  font-weight: 700;
  font-size: 16px;
  transition: color 0.15s, border-color 0.15s;
  cursor: pointer;
}

#snb li:hover {
  color: var(--brand);
}

#snb > .select {
  color: var(--brand);
  border-bottom-color: var(--brand);
  background: transparent;
}

#snb > .select:hover {
  color: var(--brand);
}

#snb li[style*=float] {
  margin-left: auto;
  padding: 0;
  line-height: 1.3;
  border-bottom: 0;
  font-weight: 400;
  font-size: 13px;
  text-align: right;
  color: #111111;
  cursor: default;
}

.snb-toggle {
  display: none;
}

@media (max-width: 1024px) {
  #snb {
    display: none;
  }
  .snb-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 14px 20px;
    border: 0;
    border-bottom: 2px solid #eaeae8;
    background: #ffffff;
    font-family: var(--font);
    font-weight: 700;
    font-size: 16px;
    color: #111111;
    text-align: left;
    cursor: pointer;
  }
  .snb-toggle::after {
    content: "▾";
    margin-left: 12px;
    color: var(--brand);
    font-size: 18px;
    line-height: 1;
  }
  .snb-toggle.is-open::after {
    content: "▴";
  }
  #snb.is-open {
    display: flex;
    flex-direction: column;
    padding: 0;
    border-bottom: 2px solid #eaeae8;
  }
  #snb.is-open li {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 14px 20px;
    line-height: 1.4;
    border: 0;
    border-bottom: 1px solid #f5f5f5;
    white-space: normal;
    font-size: 16px;
  }
  #snb.is-open li:last-child {
    border-bottom: 0;
  }
  #snb.is-open .snb-current {
    display: none;
  }
  #snb.is-open li[style*=float] {
    display: none;
  }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#wrap {
  flex: 1 0 auto;
  margin-bottom: 48px;
}

.site-footer p {
  margin: 0;
}

.infoCon {
  margin: 24px 24px 16px;
  padding: 16px 20px;
  background: #f5f5f5;
  border: 0;
  border-radius: var(--radius);
  font-size: 16px;
  line-height: 1.7;
  color: #111111;
}
.infoCon strong {
  color: var(--brand);
  font-weight: 700;
}

.writeform {
  margin: 0 24px 24px;
}
.writeform ul {
  margin: 0;
  padding: 0;
  list-style: none;
  height: auto;
  border: 1px solid #eaeae8;
  border-radius: var(--radius);
}

.writeform li.mustCheck {
  padding: 0;
  border-bottom: 1px solid #eaeae8;
  list-style: none;
}
.writeform li.mustCheck:last-child {
  border-bottom: 0;
}

.writeform li.mustCheck h2 {
  display: flex;
  align-items: stretch;
  margin: 0;
  min-height: 56px;
  font-size: 16px;
  font-weight: normal;
}

.writeform li.mustCheck h2 > div {
  flex: 0 0 160px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: #f5f5f5;
  border-right: 1px solid #eaeae8;
  font-weight: 600;
  color: #111111;
}

.writeform li.mustCheck h2 > span {
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: #111111;
}

.writeform li.mustCheck h2 > input[type=password] {
  align-self: center;
  margin: 0 20px;
  padding: 8px 12px;
  width: 280px;
  max-width: 60%;
  border: 1px solid #cdcdcd;
  border-radius: var(--radius-sm);
  font-size: 16px;
  box-sizing: border-box;
}
.writeform li.mustCheck h2 > input[type=password]:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-soft);
}

@media (max-width: 768px) {
  .infoCon {
    margin-left: 0;
    margin-right: 0;
  }
  .writeform {
    margin-left: 0;
    margin-right: 0;
  }
  .writeform li.mustCheck h2 > div {
    flex: 0 0 100px;
    padding: 0 8px;
    font-size: 14px;
  }
  .writeform li.mustCheck h2 > span {
    padding: 0 12px;
  }
  .writeform li.mustCheck h2 > input[type=password] {
    flex: 1;
    width: auto;
    max-width: none;
    margin: 8px 12px;
  }
}
#Header, #GNB {
  min-width: 0;
}

#wrap {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
