@charset "UTF-8";
@import url(../fonts/koPubDotum.css);
:root {
  --black: #000000;
  --white: #FFFFFF;
  --primary: #49AC2B;
  --primary80: #6DBC55;
  --primary60: #92CD80;
  --primary40: #B6DEAA;
  --primary20: #DBEED5;
  --primary10: #EDF7EA;
  --primary5: #F6FBF4;
  --primaryBg: #EDFAF9;
  --secondary: #007FFF;
  --secondary80: #3399FF;
  --secondary60: #66B2FF;
  --secondary40: #99CCFF;
  --secondary20: #CCE5FF;
  --secondary10: #E6F3FF;
  --secondary5: #F2F8FF;
  --secondaryBg: #F7FAFC;
  --red: #EA6709;
  --redBg: #FFFAF3;
  --error: #FF0000;
  --borderColor: #CCCCCC;
  --primaryGradient: linear-gradient(-106deg, #86B837 0%, #22AB66 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "KoPubDotum";
  font-weight: 300;
  font-size: 16px;
  color: var(--black);
}

.inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1440px;
  padding: 0 16px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-family: inherit;
  word-break: keep-all;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
}

a {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
}

section, div, a, p {
  word-break: keep-all;
}

img {
  display: block;
}

span.red {
  color: var(--red);
}
span.green {
  color: var(--primary);
}
span.bold {
  font-weight: 600;
}
span.blue {
  color: var(--secondary);
}

button {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: 100%;
  border: 0;
  background: none;
  cursor: pointer;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px 48px;
  border-radius: 24px;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -4%;
  transition: all 0.3s ease;
  cursor: pointer;
}
.button.primary {
  background: linear-gradient(-101deg, #86B837 0%, #22AB66 50%, #86B837 100%);
  color: var(--white);
  background-size: 200% 100%;
  background-position: 0 0;
}
.button.primary:hover {
  background-position: 100% 0;
}
.button.line {
  background-color: var(--white);
  font-size: 20px;
  color: var(--black);
  border: solid 1px var(--borderColor);
  padding: 16px;
  border-radius: 0;
  letter-spacing: 0;
}
.button.line:hover {
  background-color: var(--primaryBg);
}
.button.green {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  border-radius: 8px;
  background-color: var(--primary);
  padding: 22px 24px;
}
.button.green:hover {
  background-color: var(--primary80);
}
.button.small {
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -2%;
}

#isMobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: -1;
  display: none;
}

.gridRow {
  display: grid;
  gap: 32px;
  width: 100%;
}
.gridRow[data-column="1"] {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.gridRow[data-column="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gridRow[data-column="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gridRow[data-column="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gridRow[data-column="5"] {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.gridRow[data-column="6"] {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.gridRow[data-column="7"] {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.gridRow[data-column="8"] {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.gridRow[data-column="9"] {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.gridRow[data-column="10"] {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.gridRow[data-column="11"] {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.gridRow[data-column="12"] {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.circleText {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -2%;
  text-align: left;
  padding-left: 44px;
}
.circleText::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 32px;
  height: 32px;
  background-image: url(../image/circleTextIcon.svg);
  background-size: cover;
  background-position: center;
}
.circleText.bold {
  font-weight: 600;
}

.infoText {
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -2%;
  color: var(--red);
  padding-left: 36px;
  text-indent: -15px;
}
.infoText::before {
  content: "※";
  display: inline-block;
  margin-right: 8px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  background-color: var(--white);
  border-bottom: solid 1px var(--primary);
  z-index: 90;
}
header .inner {
  flex-direction: row;
  height: 100%;
}
header .headerLogo {
  flex-shrink: 0;
  font-size: 32px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -8%;
  line-height: 100%;
}
header nav {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
header nav .mainMenu {
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  color: var(--black);
}
header nav .mainMenu:hover {
  color: var(--primary);
}
header .headerMenu {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-size: cover;
  background-position: center;
  background-image: url(../image/headerMenu.svg);
}
header .headerSubMenu {
  position: fixed;
  top: 96px;
  left: 0px;
  width: 100%;
  z-index: -1;
  background-color: var(--white);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
header .headerSubMenu.on {
  opacity: 1;
  pointer-events: all;
}
header .headerSubMenu .inner {
  flex-direction: row;
  padding: 32px 16px;
  align-items: flex-start;
}
header .headerSubMenu .inner dl {
  display: block;
  width: 100%;
}
header .headerSubMenu .inner dl dt {
  display: block;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
  color: var(--black);
  width: 100%;
  padding: 12px;
  text-align: center;
  border-bottom: solid 1px var(--primary);
  cursor: default;
}
header .headerSubMenu .inner dl dd {
  display: block;
  width: 100%;
  padding: 12px;
}
header .headerSubMenu .inner dl dd a {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #333;
  line-height: 100%;
}
header .headerSubMenu .inner dl dd a:hover {
  color: var(--primary);
}
header .headerSubMenu .inner dl dd:nth-of-type(1) {
  margin-top: 12px;
}
header .headerAllMenu {
  position: fixed;
  top: 96px;
  left: 0;
  width: 100%;
  height: calc(100% - 96px);
  z-index: 90;
  background-color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
header .headerAllMenu .gridRow {
  gap: 64px 32px;
}
header .headerAllMenu .inner {
  align-items: flex-start;
  padding: 96px 16px;
  height: 100%;
  overflow-y: auto;
}
header .headerAllMenu dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 16px;
}
header .headerAllMenu dl dt {
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
  cursor: default;
}
header .headerAllMenu dl dd a {
  font-size: 20px;
}
header .headerAllMenu dl dd a:hover {
  color: var(--primary);
  font-weight: 600;
}
header .headerAllMenu dl dd:nth-of-type(1) {
  margin-top: 16px;
}
header.open .headerMenu {
  background-image: url(../image/headerMenuClose.svg);
}
header.open nav {
  opacity: 0;
  pointer-events: none;
}
header.open .headerAllMenu {
  opacity: 1;
  pointer-events: all;
}

footer {
  display: block;
  width: 100%;
}
footer .linkRow {
  width: 100%;
  border-top: solid 1px var(--borderColor);
  border-bottom: solid 1px var(--borderColor);
}
footer .linkRow .inner {
  flex-direction: row;
}
footer .linkRow .linkBox {
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 32px;
}
footer .linkRow .linkBox > a {
  display: flex;
  align-items: center;
  gap: 32px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  line-height: 100%;
  padding: 26px 0;
}
footer .linkRow .linkBox > a:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background-color: var(--borderColor);
}
footer .linkRow .linkBox > a:hover {
  color: var(--primary);
}
footer .linkRow .familyBox {
  position: relative;
}
footer .linkRow .familyBox .familyButton {
  display: flex;
  align-items: center;
  gap: 0;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 184px;
  padding: 26px 16px;
  border-left: solid 1px var(--borderColor);
  border-right: solid 1px var(--borderColor);
}
footer .linkRow .familyBox .familyButton p {
  display: block;
  flex-grow: 1;
  text-align: center;
  font-size: 20px;
  line-height: 100%;
}
footer .linkRow .familyBox .familyButton img {
  width: 24px;
  margin-left: auto;
  transition: all 0.3s ease;
}
footer .linkRow .familyBox .family {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100%;
  background-color: var(--white);
  z-index: 10;
  border: solid 1px var(--borderColor);
  border-bottom: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  margin-bottom: 1px;
  opacity: 0;
  pointer-events: none;
}
footer .linkRow .familyBox .family li {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}
footer .linkRow .familyBox .family li a {
  display: block;
  padding: 24px;
  font-size: 18px;
}
footer .linkRow .familyBox .family li a:hover {
  background-color: var(--secondaryBg);
}
footer .linkRow .familyBox .family li:not(:last-of-type) {
  border-bottom: solid 1px var(--borderColor);
}
footer .linkRow .familyBox.on .familyButton img {
  transform: rotate(180deg);
}
footer .linkRow .familyBox.on .family {
  opacity: 1;
  pointer-events: all;
}
footer .copyrightRow {
  display: block;
  width: 100%;
  padding: 40px 0;
}
footer .copyrightRow .inner {
  flex-direction: row;
  gap: 24px;
}
footer .copyrightRow .logoBox {
  display: flex;
  align-items: center;
  gap: 12px;
}
footer .copyrightRow .logoBox img {
  height: 48px;
}
footer .copyrightRow .copyrightBox {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .copyrightRow .buttonBox {
  margin-left: auto;
}
footer .copyrightRow .buttonBox a {
  min-width: 176px;
}

.mainHeroSection {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/1056;
  padding-top: 96px;
  background-color: #FAFDFF;
  background-image: url(../image/mainHeroSectionBg.svg);
  background-size: cover;
  background-position: bottom center;
  overflow: hidden;
}
.mainHeroSection .inner {
  position: absolute;
  top: 96px;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 3;
  align-items: flex-start;
}
.mainHeroSection .inner .texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1440px;
  padding: 96px 16px;
  margin: 0 auto;
}
.mainHeroSection .inner p {
  font-size: 64px;
  line-height: 130%;
  letter-spacing: -8%;
  display: block;
  color: var(--primary);
  opacity: 0;
  animation: slideUpFade 1s ease forwards;
  animation-delay: 0.3s;
}
.mainHeroSection .inner h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -8%;
  opacity: 0;
  animation: slideUpFade 1s ease forwards;
  animation-delay: 0.5s;
}
.mainHeroSection .inner .button {
  margin-top: 16px;
  opacity: 0;
  animation: slideUpFade 1s ease forwards;
  animation-delay: 0.7s;
}
.mainHeroSection .mainHeroSectionElements {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  animation: mainHeroSectionElementsIn 2s ease forwards;
  pointer-events: none;
}

@keyframes mainHeroSectionElementsIn {
  0% {
    transform: translateY(-10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.mainSection .inner {
  padding: 96px 16px;
  gap: 48px;
}
.mainSection.bgColor {
  background-color: var(--secondaryBg);
}

.mainSectionTitle {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  line-height: 150%;
}
.mainSectionTitle span {
  color: var(--primary);
}

.mainSection01 .inner {
  gap: 24px;
}
.mainSection01 .col {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 16px;
  padding: 24px 32px;
  background-color: var(--primaryBg);
  border-radius: 24px;
}
.mainSection01 .col .icon {
  width: 96px;
}
.mainSection01 .col .title {
  flex-grow: 1;
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
}
.mainSection01 .col .arrow {
  width: 48px;
}

.mainSection02 .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 32px;
  border-radius: 24px;
  background-color: var(--secondaryBg);
}
.mainSection02 .col .title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 150%;
}
.mainSection02 .col .title span {
  display: block;
}
.mainSection02 .col .descriptions {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.mainSection02 .col .descriptions li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -4%;
  text-align: center;
}
.mainSection02 .col .descriptions li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center;
}
.mainSection02 .col .example {
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
}
.mainSection02 .col[data-color=green] .title span {
  color: var(--primary);
}
.mainSection02 .col[data-color=green] .descriptions li::before {
  background-image: url(../image/checkIconGreen.svg);
}
.mainSection02 .col[data-color=green] .example {
  color: var(--primary);
}
.mainSection02 .col[data-color=red] .title span {
  color: var(--red);
}
.mainSection02 .col[data-color=red] .descriptions li::before {
  background-image: url(../image/checkIconRed.svg);
}
.mainSection02 .col[data-color=red] .example {
  color: var(--red);
}

.mainSection03 .gridRow .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 32px;
  border-radius: 48px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  background-color: #369963;
}
.mainSection03 .gridRow .col:nth-of-type(even) {
  background-color: #6D8E45;
}
.mainSection03 .gridRow .col .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 50%;
  aspect-ratio: 1;
  width: 100%;
}
.mainSection03 .gridRow .col .icon img {
  width: 100%;
}
.mainSection03 .gridRow .col .texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.mainSection03 .gridRow .col .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  text-align: center;
  color: var(--white);
}
.mainSection03 .gridRow .col .description {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -2%;
  text-align: center;
  color: var(--white);
}

.subHeroSection {
  margin-top: 96px;
  aspect-ratio: 1920/320;
  background-image: url(../image/subHeroSectionBgImg.png);
  background-size: cover;
  background-position: center;
}
.subHeroSection .inner {
  height: 100%;
  align-items: center;
  justify-content: center;
}
.subHeroSection h1 {
  font-size: 56px;
  letter-spacing: -2%;
  color: var(--white);
}

.subTopNav {
  border-bottom: solid 1px var(--borderColor);
}
.subTopNav .inner {
  padding: 0;
  flex-direction: row;
  justify-content: flex-start;
}
.subTopNav .inner .home {
  flex-shrink: 0;
  width: 64px;
  aspect-ratio: 1;
  background-image: url(../image/subTopNavHome.svg);
  background-size: cover;
}
.subTopNav .categories {
  position: relative;
  width: 100%;
  max-width: 300px;
}
.subTopNav .categories .categoriesButton {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 64px;
  padding: 0 16px;
  border-right: solid 1px var(--borderColor);
}
.subTopNav .categories .categoriesButton .label {
  flex-grow: 1;
  text-align: center;
  font-size: 20px;
  line-height: 100%;
}
.subTopNav .categories .categoriesButton img {
  width: 24px;
  transition: all 0.3s ease;
}
.subTopNav .categories .pages {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border: solid 1px var(--borderColor);
  border-top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.subTopNav .categories .pages a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 18px;
  padding: 12px;
}
.subTopNav .categories .pages a:hover {
  background-color: var(--secondaryBg);
}
.subTopNav .categories.on .categoriesButton img {
  transform: rotate(180deg);
}
.subTopNav .categories.on .pages {
  opacity: 1;
  pointer-events: all;
}

.subPageSection .inner {
  padding: 96px 16px;
  gap: 96px;
}

.subPageSectionTitle {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -2%;
}

.tab {
  display: flex;
  width: 100%;
}
.tab .tabButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 100%;
  letter-spacing: -2%;
  color: #333;
  border-bottom: solid 1px var(--borderColor);
}
.tab .tabButton:hover {
  background-color: var(--primaryBg);
}
.tab .tabButton.on {
  pointer-events: none;
  background-color: var(--primary);
  color: var(--white);
  border-bottom: 0;
}

.contentsSectionHeader {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.contentsSectionHeader .title {
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -2%;
}
.contentsSectionHeader .description {
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -2%;
}
.contentsSectionHeader .info {
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -2%;
  color: var(--red);
}

.s02Form {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.formRow {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.formRow .label {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
}
.formRow .label span {
  font-weight: 300;
  color: var(--primary);
}
.formRow .inputRow {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.formRow .inputBox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.formRow .inputBox .button {
  flex-shrink: 0;
  padding: 22px 24px;
}
.formRow input[type=text],
.formRow input[type=tel],
.formRow input[type=email],
.formRow input[type=number],
.formRow textarea {
  display: block;
  width: 100%;
  background-color: var(--white);
  border-radius: 8px;
  padding: 22px 16px;
  box-shadow: inset 0px 0px 0px 1px var(--borderColor);
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  font-family: inherit;
  border: 0;
  transition: box-shadow 0.3s ease;
}
.formRow input[type=text]:focus,
.formRow input[type=tel]:focus,
.formRow input[type=email]:focus,
.formRow input[type=number]:focus,
.formRow textarea:focus {
  outline: none;
  box-shadow: inset 0px 0px 0px 2px var(--primary);
}
.formRow input[type=text]:disabled,
.formRow input[type=tel]:disabled,
.formRow input[type=email]:disabled,
.formRow input[type=number]:disabled,
.formRow textarea:disabled {
  pointer-events: none;
  background-color: #F7F7F7;
}
.formRow textarea {
  height: 192px;
  resize: none;
}
.formRow input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
.formRow .fileFor {
  pointer-events: none;
}
.formRow .info {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 130%;
  color: var(--primary);
}
.formRow .info::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../image/infoIcon.svg);
  background-size: cover;
  margin-top: 1.5px;
}
.formRow .error {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 130%;
  color: var(--error);
}
.formRow .error::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../image/errorIcon.svg);
  background-size: cover;
  margin-top: 1.5px;
}
.formRow.agreedBox {
  gap: 12px;
}
.formRow.agreedBox .boxInfo {
  max-height: 160px;
  overflow-y: scroll;
  background-color: var(--secondaryBg);
}
.formRow.agreedBox .boxInfo strong {
  font-weight: 800;
}

.verificationInput {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 22px 16px;
  border-radius: 8px;
  box-shadow: inset 0px 0px 0px 1px var(--borderColor);
  transition: box-shadow 0.3s ease;
}
.verificationInput input[type=text],
.verificationInput input[type=tel],
.verificationInput input[type=number] {
  width: 100%;
  box-shadow: none;
  margin: 0;
  padding: 0;
  background: none;
  font-size: 20px;
  border-radius: 0;
  font-weight: 500;
}
.verificationInput input[type=text]:focus,
.verificationInput input[type=tel]:focus,
.verificationInput input[type=number]:focus {
  box-shadow: none;
}
.verificationInput:has(input:focus) {
  box-shadow: inset 0px 0px 0px 2px var(--primary);
}

.buttonRow {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.boxInfo {
  width: 100%;
  padding: 32px;
  border-radius: 8px;
  line-height: 150%;
  background-color: var(--primaryBg);
}
.boxInfo.large {
  font-size: 24px;
}

.mapArea {
  position: relative;
  width: 100%;
  height: 384px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #FAFAFA;
}

.checkbox {
  position: relative;
  display: block;
  width: 100%;
}
.checkbox input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
.checkbox input[type=checkbox] + label {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  width: 100%;
  cursor: pointer;
}
.checkbox input[type=checkbox] + label .text {
  width: 100%;
  font-size: 18px;
  line-height: 24px;
}
.checkbox input[type=checkbox] + label .text strong {
  font-weight: 600;
  line-height: inherit;
}
.checkbox input[type=checkbox] + label::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background-image: url(../image/checkboxIcon.svg);
  background-size: 100% auto;
  background-position: center 0;
}
.checkbox input[type=checkbox]:checked + label::before {
  background-position: center 100%;
}

.commonSelect {
  display: block;
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
  padding: 22px 16px;
  box-shadow: inset 0px 0px 0px 1px var(--borderColor);
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  font-family: inherit;
  border: 0;
  transition: box-shadow 0.3s ease;
}
.commonSelect:focus {
  outline: none;
  box-shadow: inset 0px 0px 0px 2px var(--primary);
}
.commonSelect:disabled {
  pointer-events: none;
  background-color: #F7F7F7;
}

.customSelect {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.customSelect .select {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 64px;
  border-radius: 8px;
  box-shadow: inset 0px 0px 0px 1px var(--borderColor);
  padding: 0 16px;
  cursor: pointer;
}
.customSelect .select .selectLabel {
  font-size: 18px;
  font-weight: 500;
}
.customSelect .select img {
  margin-left: auto;
  transition: all 0.3s ease;
}
.customSelect .options {
  width: 100%;
  height: 0;
  border-radius: 16px;
  background-color: var(--secondaryBg);
  overflow: hidden;
  transition: height 0.3s ease;
}
.customSelect .options .optionsInner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 24px;
}
.customSelect .options .option {
  position: relative;
  display: block;
  width: 100%;
}
.customSelect .options .option input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
.customSelect .options .option input[type=radio] + label {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  cursor: pointer;
}
.customSelect .options .option input[type=radio] + label .icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-image: url(../image/checkboxIcon.svg);
  background-size: 100% auto;
  background-position: center top;
}
.customSelect .options .option input[type=radio] + label .text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.customSelect .options .option input[type=radio] + label .text .label {
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
}
.customSelect .options .option input[type=radio] + label .text .optionInfo {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--red);
  line-height: 130%;
}
.customSelect .options .option input[type=radio] + label .text .optionInfo::before {
  content: "※";
  display: block;
}
.customSelect .options .option input[type=radio]:checked + label .icon {
  background-position: center bottom;
}
.customSelect.open .select img {
  transform: rotate(180deg);
}

div.boardListTable {
  display: flex;
  flex-direction: column;
  width: 100%;
}
div.boardListTable[data-column="1"] .tableHeader,
div.boardListTable[data-column="1"] .tableBody {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
div.boardListTable[data-column="2"] .tableHeader,
div.boardListTable[data-column="2"] .tableBody {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
div.boardListTable[data-column="3"] .tableHeader,
div.boardListTable[data-column="3"] .tableBody {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
div.boardListTable[data-column="4"] .tableHeader,
div.boardListTable[data-column="4"] .tableBody {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
div.boardListTable[data-column="5"] .tableHeader,
div.boardListTable[data-column="5"] .tableBody {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
div.boardListTable[data-column="6"] .tableHeader,
div.boardListTable[data-column="6"] .tableBody {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
div.boardListTable[data-column="7"] .tableHeader,
div.boardListTable[data-column="7"] .tableBody {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
div.boardListTable[data-column="8"] .tableHeader,
div.boardListTable[data-column="8"] .tableBody {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
div.boardListTable[data-column="9"] .tableHeader,
div.boardListTable[data-column="9"] .tableBody {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
div.boardListTable[data-column="10"] .tableHeader,
div.boardListTable[data-column="10"] .tableBody {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
div.boardListTable[data-column="11"] .tableHeader,
div.boardListTable[data-column="11"] .tableBody {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
div.boardListTable[data-column="12"] .tableHeader,
div.boardListTable[data-column="12"] .tableBody {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
div.boardListTable .tableHeader,
div.boardListTable .tableBody {
  display: grid;
  align-items: stretch;
}
div.boardListTable .tableHeader {
  width: 100%;
}
div.boardListTable .tableHeader .th {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  text-align: center;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -2%;
  border-top: solid 1px var(--borderColor);
  border-bottom: solid 1px var(--borderColor);
  background-color: var(--secondaryBg);
}
div.boardListTable .tableHeader .th.left {
  justify-content: flex-start;
  text-align: left;
}
div.boardListTable .tableBody {
  width: 100%;
}
div.boardListTable .tableBody .td {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  text-align: center;
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -2%;
  border-bottom: solid 1px var(--borderColor);
}
div.boardListTable .tableBody .td > img {
  width: 100%;
}
div.boardListTable .tableBody .td.left {
  justify-content: flex-start;
  text-align: left;
}
div.boardListTable .tableBody:hover {
  background-color: var(--primaryBg);
}

.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.pagenation .pagenationButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
}
.pagenation .pagenationButton img {
  width: 24px;
}
.pagenation .pagenationButton:hover {
  background-color: var(--secondaryBg);
}
.pagenation .pagenationButton.current {
  background-color: var(--primary);
  color: var(--white);
  pointer-events: none;
}

.boardContentsTable {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}
.boardContentsTable .titleRow {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: solid 1px var(--borderColor);
}
.boardContentsTable .titleRow .title {
  width: 100%;
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -2%;
}
.boardContentsTable .titleRow .row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
  font-size: 20px;
  line-height: 130%;
}
.boardContentsTable .titleRow .row > span {
  display: block;
  flex-grow: 1;
}
.boardContentsTable .contentsRow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.boardContentsTable .contentsRow .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -2%;
}
.boardContentsTable .contentsRow .contents {
  font-size: 20px;
  line-height: 150%;
}
.boardContentsTable .fileRow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.boardContentsTable .fileRow .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -2%;
}
.boardContentsTable .fileRow .contents {
  font-size: 20px;
}
.boardContentsTable .fileRow img {
  width: 100%;
  max-width: 720px;
}
.boardContentsTable .resultRow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding-top: 48px;
  border-top: solid 1px var(--borderColor);
}
.boardContentsTable .resultRow .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -2%;
}
.boardContentsTable .resultRow .history {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.boardContentsTable .resultRow .li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 20px;
}
.boardContentsTable .resultRow .li .date {
  flex-shrink: 0;
  font-size: 1em;
  line-height: 130%;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.boardContentsTable .resultRow .li .date::before {
  content: "";
  display: block;
  width: 1.3em;
  height: 1.3em;
  background-image: url(../image/dot.svg);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.boardContentsTable .resultRow .li .description {
  font-size: 1em;
  line-height: 130%;
}

.s01Contents01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.s01Contents01 .title {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding: 8px 32px;
  border-radius: 200px;
  background-color: var(--primary);
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -2%;
  color: var(--white);
}
.s01Contents01 .gridRow {
  gap: 48px;
}
.s01Contents01 .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  border: solid 1px var(--borderColor);
}
.s01Contents01 .col img {
  width: 100%;
  max-width: 420px;
}
.s01Contents01 .col .texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.s01Contents01 .col .text1 {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -2%;
  text-align: center;
}
.s01Contents01 .col .text2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -2%;
  text-align: center;
  color: var(--primary);
}

.s01Contents02 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
}
.s01Contents02 .texts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.s01Contents02 .texts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.s01Contents02 .texts li {
  list-style: none;
  margin: 0;
}

.s01-1Contents01 {
  width: 100%;
}
.s01-1Contents01 img {
  width: 100%;
}

.s01-2Contents01 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
}
.s01-2Contents01 .links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.s01-2Contents01 .links .row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--primaryBg);
}
.s01-2Contents01 .links .row > img {
  width: 32px;
}
.s01-2Contents01 .links .row .text {
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -2%;
}
.s01-2Contents01 .links .row .text span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.s01-2Contents01 .links .row .text span::before {
  content: "예)";
  display: block;
}
.s01-2Contents01 .links .row a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--primaryGradient);
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -2%;
  color: var(--white);
}
.s01-2Contents01 .links .row a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../image/s01-2Contents01Arrow.svg);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.s01-2Contents02 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
}

#s02List .tableHeader,
#s02List .tableBody {
  grid-template-columns: 6% 17.05% 9% 15% 1fr 15% 9% 9%;
}

.s03Contents01 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
}
.s03Contents01 dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
.s03Contents01 dl dt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -2%;
}
.s03Contents01 dl dt::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-image: url(../image/circleTextIcon.svg);
  background-size: cover;
  background-position: center;
}
.s03Contents01 dl dd {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -2%;
  padding-left: 32px;
}
.s03Contents01 dl dd::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-image: url(../image/dot.svg);
  background-size: cover;
  background-position: center;
}
.s03Contents01 dl .group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
}
.s03Contents01 dl span.infoText {
  display: block;
  padding-left: 67px;
}

.s03Contents01Table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-spacing: 0;
}
.s03Contents01Table colgroup col:nth-of-type(1) {
  width: 122px;
}
.s03Contents01Table tr th, .s03Contents01Table tr td {
  border: solid 1px var(--borderColor);
}
.s03Contents01Table tr th:first-of-type, .s03Contents01Table tr td:first-of-type {
  border-left: 0;
}
.s03Contents01Table tr th:last-of-type, .s03Contents01Table tr td:last-of-type {
  border-right: 0;
}
.s03Contents01Table th {
  background-color: var(--redBg);
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -2%;
  text-align: center;
  padding: 16px;
}
.s03Contents01Table td {
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -2%;
  text-align: center;
  padding: 16px;
}
.s03Contents01Table td.blue {
  background-color: var(--secondary5);
  font-weight: 600;
}

.s03-1Contents01 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
}
.s03-1Contents01 dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
.s03-1Contents01 dl dt {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -2%;
  text-align: left;
  padding-left: 44px;
}
.s03-1Contents01 dl dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 32px;
  height: 32px;
  background-image: url(../image/circleTextIcon.svg);
  background-size: cover;
  background-position: center;
}
.s03-1Contents01 dl dt span {
  font-weight: 300;
}
.s03-1Contents01 dl dd {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -2%;
  padding-left: 32px;
}
.s03-1Contents01 dl dd::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-image: url(../image/dot.svg);
  background-size: cover;
  background-position: center;
}

.s03-2Contents01 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
}
.s03-2Contents01 .box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}
.s03-2Contents01 .box .process {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.s03-2Contents01 .box .process .processTitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  line-height: 140%;
  letter-spacing: -2%;
}
.s03-2Contents01 .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding: 32px;
  border-radius: 16px;
  background-color: var(--secondaryBg);
  border: solid 1px var(--borderColor);
}
.s03-2Contents01 .col .label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 192px;
  height: 72px;
  padding: 16px 24px;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -2%;
  color: var(--white);
  background-image: url(../image/s03-2Contents01Label.svg);
  background-size: cover;
  background-position: center;
}
.s03-2Contents01 .col .label.large {
  width: 264px;
  background-image: url(../image/s03-2Contents01LabelLarge.svg);
}
.s03-2Contents01 .col .label small {
  margin-top: 18px;
  font-size: 24px;
}
.s03-2Contents01 .col .title {
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -2%;
  text-align: left;
  display: block;
  width: 100%;
  padding-bottom: 24px;
  border-bottom: solid 1px var(--primary);
}
.s03-2Contents01 .col .text {
  width: 100%;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -2%;
  text-align: left;
}
.s03-2Contents01 .col .infoText {
  font-size: 18px;
  font-weight: 300;
}

table.boardListTable {
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
}
table.boardListTable th {
  padding: 16px;
  background-color: var(--secondaryBg);
  border: solid 1px var(--borderColor);
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -2%;
  text-align: center;
}
table.boardListTable th.left {
  text-align: left;
}
table.boardListTable td {
  padding: 24px 16px;
  border: solid 1px var(--borderColor);
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -2%;
  text-align: center;
}
table.boardListTable td.left {
  text-align: left;
}
table.boardListTable td > a {
  display: block;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
table.boardListTable td > a:hover {
  color: var(--primary);
}
table.boardListTable tr:hover td {
  background-color: var(--primary5);
}
table.boardListTable tr th:first-of-type, table.boardListTable tr td:first-of-type {
  border-left: 0;
}
table.boardListTable tr th:last-of-type, table.boardListTable tr td:last-of-type {
  border-right: 0;
}

#noticeBoard colgroup col:nth-of-type(1) {
  width: 96px;
}
#noticeBoard colgroup col:nth-of-type(3) {
  width: 168px;
}

.privacyPolicySummary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.privacyPolicySummary > .title {
  font-size: 32px;
  font-weight: 700;
}
.privacyPolicySummary .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 24px;
  background-color: var(--secondaryBg);
  padding: 24px;
}
.privacyPolicySummary .col .title {
  font-size: 24px;
  font-weight: 700;
}
.privacyPolicySummary .col .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.privacyPolicySummary .col .icon img {
  width: 100%;
  max-width: 120px;
}
.privacyPolicySummary .col .description {
  font-size: 18px;
  line-height: 150%;
  text-align: center;
}
.privacyPolicySummary .col .description small {
  display: block;
}
.privacyPolicySummary .col .description .infoText {
  font-size: 1em;
}

.privacyPolicyDetail {
  display: flex;
  flex-direction: column;
  gap: 0px;
  width: 100%;
}
.privacyPolicyDetail > .title {
  font-size: 32px;
  font-weight: 700;
  padding: 0.5em;
  border-bottom: solid 1px var(--borderColor);
}
.privacyPolicyDetail .row {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.privacyPolicyDetail .row .labelRow {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  background-color: var(--white);
  padding: 16px;
  border-bottom: solid 1px var(--borderColor);
  cursor: pointer;
}
.privacyPolicyDetail .row .labelRow:hover .label {
  color: var(--primary);
}
.privacyPolicyDetail .row .labelRow .label {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}
.privacyPolicyDetail .row .labelRow .icon {
  width: 48px;
  height: 48px;
  padding: 8px;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: var(--secondaryBg);
}
.privacyPolicyDetail .row .labelRow .icon img {
  width: 100%;
}
.privacyPolicyDetail .row .labelRow .arrow {
  flex-shrink: 0;
  width: 24px;
  transition: all 0.3s ease;
  margin-left: auto;
  cursor: pointer;
}
.privacyPolicyDetail .row .detail {
  display: none;
  padding: 24px;
  background-color: var(--secondaryBg);
  line-height: 150%;
}
.privacyPolicyDetail .row .detail a {
  font-weight: 700;
}
.privacyPolicyDetail .row .detail a:hover {
  color: var(--primary);
}
.privacyPolicyDetail .row .detail img {
  max-width: 100%;
  margin: 1em 0;
}
.privacyPolicyDetail .row .detail table {
  width: 100%;
  border-spacing: 0;
  margin: 1em 0;
  border-collapse: collapse;
}
.privacyPolicyDetail .row .detail table th, .privacyPolicyDetail .row .detail table td {
  padding: 1em;
  text-align: center;
  vertical-align: middle;
}
.privacyPolicyDetail .row .detail table th.left, .privacyPolicyDetail .row .detail table td.left {
  text-align: left;
}
.privacyPolicyDetail .row .detail table th {
  border-top: solid 1px var(--primary);
  border-bottom: solid 2px var(--primary);
  font-weight: 700;
  background-color: var(--primaryBg);
}
.privacyPolicyDetail .row .detail table td {
  border: solid 1px var(--borderColor);
  background-color: var(--white);
}
.privacyPolicyDetail .row .detail table tr th:not(:last-of-type) {
  border-right: solid 1px var(--primary);
}
.privacyPolicyDetail .row .detail table tr td:first-of-type {
  border-left: 0;
}
.privacyPolicyDetail .row .detail table tr td:last-of-type {
  border-right: 0;
}
.privacyPolicyDetail .row.on .labelRow .arrow {
  transform: rotate(180deg);
}
.privacyPolicyDetail .row.on .detail {
  display: block;
}

@media (max-width: 1440px) {
  .mainHeroSection {
    aspect-ratio: 4/3;
  }
  .boardListTable .tableHeader .th {
    font-size: 16px;
  }
  .boardListTable .tableBody .td {
    font-size: 16px;
  }
}
@media (max-width: 1410px) {
  .tabletHidden {
    display: none;
  }
}
@media (max-width: 1140px) {
  header nav {
    gap: 24px;
  }
  footer .copyrightRow .buttonBox {
    display: none;
  }
  .subHeroSection {
    aspect-ratio: 16/3;
  }
  .subHeroSection h1 {
    font-size: 32px;
    text-align: center;
  }
}
@media (max-width: 1080px) {
  #isMobile {
    display: block;
  }
  .gridRow[data-column="3"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gridRow[data-column="4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  header nav {
    display: none;
  }
  header .headerMenu {
    margin-left: auto;
  }
  footer .copyrightRow .inner {
    flex-direction: column;
  }
  footer .copyrightRow .copyrightBox {
    align-items: center;
  }
  footer .linkRow .inner {
    flex-direction: column;
    padding-bottom: 16px;
  }
  footer .linkRow .linkBox {
    width: 100%;
    justify-content: center;
  }
  footer .linkRow .linkBox a {
    width: 100%;
    justify-content: center;
  }
  footer .linkRow .linkBox a:not(:last-of-type)::after {
    display: none;
  }
  footer .linkRow .familyBox {
    width: 100%;
  }
  footer .linkRow .familyBox .familyButton {
    width: 100%;
    border: solid 1px var(--borderColor);
  }
  .mainHeroSection {
    aspect-ratio: 1;
  }
  .mainHeroSection .inner {
    height: calc(100% - 96px);
  }
  .mainHeroSection .inner .texts {
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 48px 16px;
  }
  div.boardListTable .tableHeader .th {
    font-size: 14px;
  }
  div.boardListTable .tableBody .td {
    font-size: 14px;
  }
  div.boardListTable .tableBody .td .button, div.boardListTable .tableBody .td button, div.boardListTable .tableBody .td a {
    font-size: 14px;
  }
  #s02List .tableHeader, #s02List .tableBody {
    grid-template-columns: repeat(4, 1fr);
  }
  #s02List .tableHeader .th:nth-of-type(1), #s02List .tableHeader .th:nth-of-type(3), #s02List .tableHeader .th:nth-of-type(4), #s02List .tableHeader .td:nth-of-type(1), #s02List .tableHeader .td:nth-of-type(3), #s02List .tableHeader .td:nth-of-type(4), #s02List .tableBody .th:nth-of-type(1), #s02List .tableBody .th:nth-of-type(3), #s02List .tableBody .th:nth-of-type(4), #s02List .tableBody .td:nth-of-type(1), #s02List .tableBody .td:nth-of-type(3), #s02List .tableBody .td:nth-of-type(4) {
    display: none;
  }
  #s02List .tableHeader .th:nth-of-type(8) {
    display: none;
  }
  #s02List .tableBody .td:nth-of-type(8) {
    grid-column: span 4;
  }
  #s02List .tableBody .td:nth-of-type(8) .button {
    width: 100%;
  }
}
#counselBoard colgroup col:nth-of-type(1) {
  width: 96px;
}
#counselBoard colgroup col:nth-of-type(3) {
  width: 168px;
}

#sampleMap {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  z-index: 1;
}

@media (max-width: 960px) {
  footer .linkRow .inner {
    padding: 16px;
    gap: 16px;
  }
  footer .linkRow .linkBox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  footer .linkRow .linkBox a {
    font-size: 16px;
    padding: 8px;
  }
}
@media (max-width: 720px) {
  .gridRow[data-column="3"] {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .gridRow[data-column="4"] {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  header .headerLogo {
    font-size: 24px;
  }
  .mainHeroSection {
    aspect-ratio: 3/5;
  }
  .mainHeroSection .inner .texts p {
    font-size: 32px;
  }
  .mainHeroSection .inner .texts h1 {
    font-size: 48px;
  }
  .mainSectionTitle {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  header {
    height: 64px;
  }
  header .headerAllMenu {
    top: 64px;
    height: calc(100% - 64px);
  }
  header .headerAllMenu .inner {
    padding: 24px 16px;
  }
  header .headerAllMenu .gridRow {
    gap: 48px;
  }
  header .headerAllMenu dl {
    gap: 12px;
  }
  header .headerAllMenu dl dt {
    font-size: 24px;
  }
  header .headerAllMenu dl dd:nth-of-type(1) {
    margin-top: 0;
  }
  header .headerAllMenu dl dd a {
    font-size: 18px;
  }
  .subHeroSection {
    margin-top: 64px;
  }
  body {
    font-size: 14px;
  }
  footer .copyrightRow .logoBox {
    flex-direction: column;
  }
  footer .copyrightRow .copyrightBox p {
    font-size: 14px;
    text-align: center;
  }
  .gridRow {
    gap: 16px;
  }
  .button {
    font-size: 24px;
  }
  .mainHeroSection {
    aspect-ratio: 1/1.2;
    padding-top: 64px;
  }
  .mainHeroSection .inner .texts {
    padding: 48px 0;
  }
  .mainHeroSection .inner .texts p {
    font-size: 24px;
  }
  .mainHeroSection .inner .texts h1 {
    font-size: 40px;
    margin-top: 16px;
  }
  .mainSection .inner {
    padding: 48px 16px;
  }
  .mainSection .button {
    width: 100%;
  }
  .mainSection01 .col {
    padding: 18px;
    border-radius: 12px;
  }
  .mainSection01 .col .icon {
    width: 48px;
  }
  .mainSection01 .col .title {
    font-size: 20px;
  }
  .subHeroSection h1 {
    font-size: 24px;
  }
  .subTopNav .inner {
    flex-direction: column;
  }
  .subTopNav .inner .home {
    display: none;
  }
  .subTopNav .inner .categories {
    max-width: 100%;
  }
  .subTopNav .inner .categories:not(:last-of-type) .categoriesButton {
    border-bottom: solid 1px var(--borderColor);
  }
  .subTopNav .inner .categories .categoriesButton {
    border-right: 0;
  }
  .subPageSection .inner {
    padding: 48px 16px;
    gap: 48px;
  }
  .subPageSectionTitle {
    font-size: 32px;
  }
  .tab .tabButton {
    font-size: 18px;
  }
  .formRow .inputRow > .button {
    width: 100%;
  }
  .formRow .inputRow .inputBox {
    flex-direction: column;
  }
  .formRow .inputRow .inputBox .button {
    width: 100%;
  }
  .boxInfo {
    padding: 18px;
  }
  .boxInfo.large {
    font-size: 18px;
  }
  .circleText {
    font-size: 18px;
    padding-left: 32px;
  }
  .circleText::before {
    width: 24px;
    height: 24px;
  }
  .infoText {
    font-size: 18px;
    padding-left: 32px;
  }
  .infoText::before {
    margin-right: 14px;
  }
  .contentsSectionHeader .title {
    font-size: 24px;
  }
  .contentsSectionHeader .description {
    font-size: 18px;
  }
  .contentsSectionHeader .info {
    font-size: 16px;
  }
  .s01Contents01 {
    gap: 24px;
  }
  .s01Contents01 .title {
    font-size: 24px;
  }
  .s01Contents01 .gridRow {
    gap: 16px;
  }
  .s01Contents02 {
    gap: 24px;
  }
  .s01-2Contents01 {
    gap: 24px;
  }
  .s01-2Contents01 .links .row {
    grid-template-columns: 1fr;
  }
  .s01-2Contents01 .links .row > img {
    display: none;
  }
  .s01-2Contents01 .links .row .text {
    font-size: 18px;
  }
  .s01-2Contents01 .links .row a {
    width: 100%;
  }
  .s01-2Contents01 .links .row a::after {
    margin-left: auto;
  }
  .s01-2Contents02 {
    gap: 24px;
  }
  .s02Form {
    gap: 32px;
  }
  .s02Form .formRow {
    gap: 18px;
  }
  #s02List {
    gap: 24px;
  }
  #s02List .tableHeader, #s02List .tableBody {
    grid-template-columns: repeat(2, 1fr);
  }
  #s02List .tableHeader {
    display: none;
  }
  #s02List .tableBody .td:nth-of-type(1) {
    display: none;
  }
  #s02List .tableBody .td:nth-of-type(2) {
    grid-column: span 2;
  }
  #s02List .tableBody .td:nth-of-type(3) {
    grid-column: span 1;
  }
  #s02List .tableBody .td:nth-of-type(4) {
    grid-column: span 1;
  }
  #s02List .tableBody .td:nth-of-type(5) {
    grid-column: span 2;
  }
  #s02List .tableBody .td:nth-of-type(6) {
    grid-column: span 1;
  }
  #s02List .tableBody .td:nth-of-type(7) {
    grid-column: span 1;
  }
  #s02List .tableBody .td:nth-of-type(8) {
    grid-column: span 2;
  }
  .boardContentsTable .titleRow .title {
    font-size: 24px;
  }
  .boardContentsTable .titleRow .row {
    flex-direction: column;
    gap: 4px;
  }
  .boardContentsTable .titleRow .row span {
    font-size: 16px;
  }
  .boardContentsTable .contentsRow .title {
    font-size: 18px;
  }
  .boardContentsTable .contentsRow .contents {
    font-size: 16px;
  }
  .boardContentsTable .fileRow .title {
    font-size: 18px;
  }
  .boardContentsTable .fileRow .contents {
    font-size: 16px;
  }
  .boardContentsTable .resultRow .title {
    font-size: 18px;
  }
  .boardContentsTable .resultRow .li {
    font-size: 16px;
  }
  .s03Contents01 {
    gap: 24px;
  }
  .s03Contents01 dl dt {
    gap: 8px;
    font-size: 18px;
  }
  .s03Contents01 dl dt::before {
    width: 24px;
    height: 24px;
  }
  .s03Contents01Table colgroup col:nth-of-type(1) {
    width: 80px;
  }
  .s03Contents01Table th, .s03Contents01Table td {
    padding: 12px;
    font-size: 14px;
  }
  .s03Contents01Table td {
    word-break: break-all;
  }
  .s03-1Contents01 dl dt {
    padding-left: 32px;
    font-size: 18px;
  }
  .s03-1Contents01 dl dt::before {
    width: 24px;
    height: 24px;
  }
  .s03-2Contents01 .box {
    gap: 16px;
  }
  .s03-2Contents01 .col {
    padding: 24px;
    gap: 16px;
  }
  .s03-2Contents01 .col .label {
    aspect-ratio: 192/72;
    width: auto;
    height: 48px;
    padding: 16px;
    font-size: 24px;
  }
  .s03-2Contents01 .col .label.large {
    aspect-ratio: 264/72;
    width: auto;
  }
  .s03-2Contents01 .col .label.large small {
    font-size: 16px;
    margin-top: 8px;
    margin-left: 4px;
  }
  .s03-2Contents01 .col .title {
    font-size: 24px;
  }
  .s03-2Contents01 .col .title br {
    display: none;
  }
  .s03-2Contents01 .col .text {
    font-size: 16px;
  }
  .s03-2Contents01 .col .infoText {
    font-size: 16px;
    padding-left: 18px;
    text-indent: -10px;
  }
  .s03-2Contents01 .col .infoText::before {
    margin-right: 0;
  }
  table.boardListTable th, table.boardListTable td {
    font-size: 16px;
    padding: 12px;
  }
  .pagenation .pagenationButton {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
  #noticeBoard colgroup col:nth-of-type(1) {
    display: none;
  }
  #noticeBoard colgroup col:nth-of-type(3) {
    display: none;
  }
  #noticeBoard tr th:nth-of-type(1), #noticeBoard tr td:nth-of-type(1) {
    display: none;
  }
  #noticeBoard tr th:nth-of-type(2), #noticeBoard tr td:nth-of-type(2) {
    border-left: 0;
    border-right: 0;
  }
  #noticeBoard tr th:nth-of-type(3), #noticeBoard tr td:nth-of-type(3) {
    display: none;
  }
  #counselBoard colgroup col:nth-of-type(1) {
    display: none;
  }
  #counselBoard colgroup col:nth-of-type(3) {
    display: none;
  }
  #counselBoard tr th:nth-of-type(1), #counselBoard tr td:nth-of-type(1) {
    display: none;
  }
  #counselBoard tr th:nth-of-type(2), #counselBoard tr td:nth-of-type(2) {
    border-left: 0;
    border-right: 0;
  }
  #counselBoard tr th:nth-of-type(3), #counselBoard tr td:nth-of-type(3) {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */