@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Asta+Sans:wght@300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Carter+One&display=swap");
/*반응형, 브라우저 크기가 767px 이하일때*/
.primary {
  background-color: #0095EB;
  color: white;
}

.primary--lt {
  background-color: rgb(82, 191.6893617021, 255);
  color: white;
}

.primary--dk {
  background-color: rgb(0, 116.6638297872, 184);
  color: white;
}

.secondary {
  background-color: #A9BEFF;
  color: #fff;
}

.secondary--lt {
  background-color: white;
  color: white;
}

.secondary--dk {
  background-color: rgb(67, 112.9069767442, 255);
  color: #fff;
}

.tertiary {
  background-color: #087a45;
  color: #fff;
}

.tertiary--lt {
  background-color: rgb(14.2769230769, 217.7230769231, 123.1384615385);
  color: black;
}

.tertiary--dk {
  background-color: rgb(1.7230769231, 26.2769230769, 14.8615384615);
  color: #fff;
}

.background {
  background-color: white;
  color: black;
}

.surface {
  background-color: black;
  color: white;
}

.error {
  background-color: #b00020;
  color: #fff;
}

.succeed {
  background-color: #64DD17;
  color: black;
}

.disabled {
  background-color: #616161;
  color: #9E9E9E;
}

.gray50 {
  background-color: #FAFAFA;
  color: black;
}

.gray100 {
  background-color: #F5F5F5;
  color: black;
}

.gray200 {
  background-color: #EEEEEE;
  color: black;
}

.gray300 {
  background-color: #E0E0E0;
  color: black;
}

.gray400 {
  background-color: #BDBDBD;
  color: black;
}

.gray500 {
  background-color: #9E9E9E;
  color: black;
}

.gray600 {
  background-color: #757575;
  color: white;
}

.gray700 {
  background-color: #616161;
  color: white;
}

.gray800 {
  background-color: #424242;
  color: white;
}

.gray900 {
  background-color: #151515;
  color: white;
}

.single_full_size {
  min-height: calc(100dvh - 90px - 180px);
  width: 100%;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.bg_center_cover {
  background-size: cover;
  background-position: center;
}

.bg_center_container {
  background-size: cover;
  background-position: center;
}

.center_hor {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex_fill {
  flex: 1 1 auto;
}

.mbr {
  display: none;
}
@media (max-width: 768px) {
  .mbr {
    display: inline;
  }
}

.dbr {
  display: inline;
}
@media (max-width: 768px) {
  .dbr {
    display: none;
  }
}

/* 버튼 류 */
.hidden_input {
  display: none;
}

.logout_btn {
  width: 26px;
  height: 26px;
  display: flex;
  border-radius: 3px;
  mask-image: url("../images/layout/logout.svg");
  background-color: white;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  opacity: 0.8;
  transition: 0.2s all;
}
.logout_btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.logout_btn_mobile {
  font-size: 1.2rem;
  color: #0095EB;
}
.logout_btn_mobile span {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  mask-image: url("../images/layout/logout.svg");
  background-color: #0095EB;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.fixed_button {
  position: fixed;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  z-index: 100;
  font-size: 30px;
  padding-bottom: 5px;
  cursor: pointer;
  font-weight: 300;
  border: 2px solid #0095EB;
  color: #0095EB;
  transition: 0.3s all;
  mix-blend-mode: difference;
}
.fixed_button.top {
  top: 110px;
}
.fixed_button.bottom {
  bottom: 100px;
}
.fixed_button:hover {
  transform: scale(1.1);
  color: black;
  background-color: #0095EB;
}

/* 인풋류 */
.icon_input_field {
  display: flex;
  position: relative;
  background-color: white;
  align-items: center;
  padding: 10px;
  gap: 5px;
  border: 1px solid #9E9E9E;
  border-radius: 3px;
}
.icon_input_field input[type=text] {
  background-color: transparent;
  border: 0;
  outline: 0;
}

input {
  padding: 5px 10px;
  border: 1px solid #9E9E9E;
}
input:-webkit-autofill {
  transition: background-color 9999s ease-in-out 0s;
}

.file_upload label {
  font-size: 1.4rem;
  font-weight: bold;
}
.file_upload input[type=file] {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
}

textarea {
  resize: none;
  padding: 5px 10px;
  width: 100%;
}

.form_container {
  display: flex;
  width: 100%;
  justify-content: center;
  background-color: white;
  padding: 80px 0;
  flex-direction: column;
}
.form_container .form_title {
  font-size: 3.6rem;
}
.form_container .main_form {
  width: 100%;
  padding: 40px;
  border-top: 4px solid black;
  border-bottom: 1px solid black;
}
.form_container .main_form .bottom_btn_container {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.form_container .main_form .label {
  font-size: 14px;
  margin-bottom: 0.8rem;
  font-weight: bold;
}
.form_container .main_form .input_row {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.form_container .main_form .input_row.horizontal {
  align-items: start;
}
.form_container .main_form .input_row.horizontal .input_row_item {
  flex-direction: row;
  gap: 10px;
}
.form_container .main_form .input_row.horizontal .input_row_item .label {
  margin-bottom: 0;
}
.form_container .main_form .input_row .input_row_item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form_container .main_form .input_row .item {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.form_container .main_form .input_row.title {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 200px;
  gap: 20px;
}
@media (max-width: 768px) {
  .form_container .main_form .input_row.title {
    grid-template-columns: 1fr;
  }
}
.form_container .main_form .input_row.title .title_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.form_container .main_form .input_row.title .title_wrapper .input_row_item {
  align-items: start;
}
.form_container .main_form .input_row.title .title_wrapper .input_row_item.title {
  width: 100%;
}
.form_container .main_form .input_row.title .title_wrapper .input_row_item.title input {
  width: 100%;
}
.form_container .main_form .input_row.title .title_wrapper .input_row_item label {
  text-align: left;
}
.form_container .main_form .input_row.title .date {
  text-align: left;
  justify-content: start;
  align-items: start;
}
.form_container .main_form .input_row.double_column {
  flex-direction: row;
  justify-content: space-between;
}
.form_container .main_form .input_row.tripple {
  gap: 20px;
  flex-direction: row;
  justify-content: start;
}

.bool_select_container {
  display: flex;
}
.bool_select_container input {
  display: none;
}
.bool_select_container input:checked + .false {
  background-color: red;
  color: white;
}
.bool_select_container input:checked + .true {
  background-color: greenyellow;
  color: black;
}
.bool_select_container label {
  display: block;
  text-align: center;
  background-color: white;
  padding: 5px 20px;
  color: #424242;
  font-size: 1.4rem;
  border: 1px solid #9E9E9E;
  user-select: none;
  cursor: pointer;
}
.bool_select_container label.left {
  border-radius: 5px 0 0 5px;
  border-right: none;
}
.bool_select_container label.right {
  border-radius: 0 5px 5px 0;
}

/* 아이콘 */
.input_icon {
  display: flex;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 0;
}
.input_icon:after {
  content: "";
  width: 100%;
  height: 100%;
  mask-image: url("../images/sample_icon.svg");
  background-color: black;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.input_icon.search:after {
  mask-image: url("../images/component/search.svg");
}
.input_icon.submit:hover:after {
  background-color: #0095EB;
}
.input_icon.submit:after {
  mask-image: url("../images/component/submit.svg");
}

.empty_list {
  display: flex;
  align-items: center;
  height: 30vh;
  width: 100%;
  justify-content: center;
  border-top: 4px solid black;
  border-bottom: 1px solid black;
  flex-direction: column;
}
.empty_list .empty_icon {
  width: 200px;
  height: 200px;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url("../images/component/empty.svg");
  background-color: #333;
  margin-bottom: 20px;
}
.empty_list .empty_desc {
  color: #333;
  font-weight: bold;
}

.empty_list_image {
  display: block;
  width: 50vw;
  max-width: 360px;
  aspect-ratio: 1;
  background-color: #9E9E9E;
  mask-image: url("../images/component/empty.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.checkbox_container {
  display: flex;
  justify-content: start;
  gap: 10px;
  flex-wrap: wrap;
}
.checkbox_container input {
  display: none;
}
.checkbox_container input:checked + label {
  background-color: greenyellow;
  color: black;
}
.checkbox_container input:checked + label span {
  mask-image: url("../images/component/check_box_fill.svg");
  background-color: black;
}
.checkbox_container label {
  border: 1px solid #9E9E9E;
  border-radius: 5px;
  padding: 5px 10px;
  word-break: keep-all;
  font-size: 14px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5px;
  color: #424242;
  cursor: pointer;
  user-select: none;
}
.checkbox_container label span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #9E9E9E;
  mask-image: url("../images/component/check_box.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.image_input_container a {
  display: inline-block;
  margin-bottom: 20px;
}
.image_input_container input[type=file] {
  padding: 10px;
}

#image_preview_container {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
  margin-top: 30px;
}
#image_preview_container .preview_box {
  width: 100%;
  position: relative;
}
#image_preview_container .preview_box .new_tag {
  position: absolute;
  padding: 5px 10px;
  top: 0;
  background-color: greenyellow;
}
#image_preview_container .preview_box .current_tag {
  position: absolute;
  padding: 5px 10px;
  top: 0;
  background-color: black;
  color: white;
}
#image_preview_container .preview_box .delete_tag {
  position: absolute;
  padding: 5px 10px;
  right: 0;
  top: 0;
  background-color: red;
  cursor: pointer;
}
#image_preview_container .preview_box .delete_tag:hover {
  background-color: black;
}
#image_preview_container .preview_box .replace_tag {
  position: absolute;
  padding: 5px 10px;
  left: 0;
  top: 0;
  background-color: #0095EB;
  cursor: pointer;
}
#image_preview_container .preview_box .replace_tag:hover {
  background-color: black;
}
#image_preview_container .preview_box img {
  display: block;
  width: 100%;
}

.post_settings_tags {
  position: absolute;
  z-index: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.post_settings_tags .tag {
  display: block;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: #424242;
  color: #BDBDBD;
  text-align: center;
  border: 1px solid #151515;
}
.post_settings_tags .tag.active {
  font-weight: bold;
}
.post_settings_tags .published_tag.active {
  background-color: #00ff22;
  border-color: #00a818;
  color: black;
}
.post_settings_tags .index_tag.active {
  background-color: #ffdd00;
  border-color: #ff9900;
  color: black;
}
.post_settings_tags .complete_tag.active {
  background-color: #a800ff;
  border-color: #7300ff;
  color: white;
}
.post_settings_tags .is_first_tag.active {
  background-color: #ff0073;
  border-color: #ff0000;
  color: white;
}

@keyframes circle_loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#contents_loading {
  display: none;
  height: 120px;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#contents_loading:after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 80px;
  animation: circle_loading 1s infinite linear;
  background-color: #0095EB;
  mask-image: url("../images/component/circle_loading.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.post_popup_background_wrapper {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  backdrop-filter: blur(8px);
  z-index: 2000;
  overflow-y: scroll;
}
.post_popup_background_wrapper .popup_container {
  width: 100%;
  max-width: 800px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.post_popup_background_wrapper .popup_container img {
  width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
}
.post_popup_background_wrapper .popup_container p {
  color: white;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  min-height: 80px;
}
@media (max-width: 768px) {
  .post_popup_background_wrapper .popup_container p {
    font-size: 2rem;
  }
}
.post_popup_background_wrapper .popup_container #popup_close_btn {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  background-color: white;
  mask-image: url("../images/component/img_close.svg");
  mask-size: 80%;
  mask-position: center;
  mask-repeat: no-repeat;
  cursor: pointer;
}
@media (max-width: 768px) {
  .post_popup_background_wrapper .popup_container #popup_close_btn {
    right: 50%;
    transform: translateX(50%);
    bottom: -60px;
  }
}
.post_popup_background_wrapper .popup_container #popup_close_btn:hover {
  background-color: greenyellow;
}

button, .button {
  background-color: white;
  border: 1px solid #424242;
  padding: 8px 20px;
  border-radius: 4px;
  transition: 0.2s all;
  cursor: pointer;
  user-select: none;
}
button:hover, .button:hover {
  background-color: black;
  color: white;
}
button:hover.delete, .button:hover.delete {
  background-color: #b50000;
  color: white;
}
button:hover.cancel, .button:hover.cancel {
  background-color: #424242;
  color: white;
}
button:hover.submit, .button:hover.submit {
  background-color: #79c300;
}
button.delete, .button.delete {
  background-color: red;
  color: white;
}
button.cancel, .button.cancel {
  background-color: #757575;
  color: white;
}
button.submit, .button.submit {
  background-color: greenyellow;
}

.delete_background {
  background-color: #424242;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.delete_background .delete_box {
  width: 100%;
  max-width: 600px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: white;
  border-radius: 10px;
}
.delete_background .delete_box .delete_title {
  font-size: 2rem;
}
.delete_background .delete_box .bottom_btn_container {
  display: flex;
  gap: 50px;
}
.delete_background .delete_box .bottom_btn_container .button {
  cursor: pointer;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 60px;
}
.pagination .page_btn {
  display: flex;
  width: 54px;
  height: 54px;
  justify-content: center;
  align-items: center;
  border: 1px solid #c8c8c8;
  text-decoration: none;
}
.pagination .page_btn:hover {
  background-color: rgb(0, 116.6638297872, 184);
  color: white;
}
.pagination .page_btn img {
  height: 18px;
}
.pagination .page_btn img.flip {
  transform: scale(-1);
}
.pagination .page_btn.current {
  background-color: black;
  color: white;
}

.page_top_section {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  z-index: 1;
}
.page_top_section .page_top_bg_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/page/page_01/sub_visual_img.webp");
  filter: brightness(0.6);
  background-size: cover;
  background-position: center;
  transform: scale(0.75) translateY(40%); /* 처음엔 50% 크기 */
  transform-origin: center bottom; /* 하단 기준 확대 */
  will-change: transform;
}
.page_top_section .page_top_bg_image.directors {
  background-image: url("../images/page/page_01/sub_visual_img_2.webp");
}
.page_top_section .page_top_bg_image.vision {
  background-image: url("../images/page/page_01/sub_visual_img_3.webp");
}
.page_top_section .page_top_content_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* 텍스트는 처음부터 제자리에 있도록 설정 */
}
.page_top_section .page_top_content_box .page_top_content {
  color: black;
  height: 100%;
  padding-top: calc(90px + 10%);
}
.page_top_section .page_top_content_box .page_top_content .content_header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 6.4rem;
}
@media (max-width: 768px) {
  .page_top_section .page_top_content_box .page_top_content .content_header {
    margin-bottom: 4rem;
  }
}
.page_top_section .page_top_content_box .page_top_content .content_header .page_name {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .page_top_section .page_top_content_box .page_top_content .content_header .page_name {
    font-size: 1.8rem;
  }
}
.page_top_section .page_top_content_box .page_top_content .content_header .bread_crumbs {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .page_top_section .page_top_content_box .page_top_content .content_header .bread_crumbs {
    display: none;
  }
}
.page_top_section .page_top_content_box .page_top_content .top_title {
  font-size: 4.8rem;
  font-weight: 700;
  text-align: left;
  width: 100%;
}
@media (max-width: 768px) {
  .page_top_section .page_top_content_box .page_top_content .top_title {
    font-size: 2.8rem;
  }
}

.page_top_hidden_section {
  z-index: 0;
  height: 100dvh;
}

.annotation {
  font-size: 1.4rem;
  padding-top: 0.5rem;
}
.annotation:before {
  content: "※ ";
  color: red;
  font-weight: bolder;
}

.br_pc {
  display: inline-block;
}
@media (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

.br_mobile {
  display: none;
}
@media (max-width: 768px) {
  .br_mobile {
    display: inline-block;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font: inherit;
  color: inherit;
  line-height: 1.4;
}
a {
  color: inherit;
}

html {
  font-size: 10px;
  font-family: "Asta Sans", sans-serif;
  color: #111;
}

#scroll_body {
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

b {
  font-weight: 800;
}

@media (max-width: 768px) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: 768px) {
  .mobile {
    display: initial;
  }
}

body {
  width: 100%;
  min-width: 350px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.6rem;
}
body.no_scroll {
  overflow: hidden;
}

/*  페이지 레이아웃  */
.page_wrapper {
  width: 100%;
  max-width: 100%;
  min-height: calc(100vh - 180px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section {
  width: 100%;
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.no_padding {
  padding: 0;
}
section.first {
  padding-top: 90px;
}
@media (max-width: 768px) {
  section.first {
    padding-top: 60px;
  }
}
section .section_content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section_title {
  width: 100%;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  height: 10rem;
  background-color: white;
  color: #0095EB;
  border-bottom: 1px solid #0095EB;
}
@media (max-width: 768px) {
  .section_title {
    height: auto;
    padding: 2rem 1.2rem;
    font-size: 2rem;
    background-color: #004EA2;
    color: white;
  }
}
.section_title.first {
  border-top: none;
}

.page_width {
  width: 100%;
  max-width: 100%;
}

.content_width {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.content_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.index_container {
  width: 100%;
  min-height: 100vh;
}

.full_height {
  min-height: 100vh;
}

.wd100 {
  width: 100%;
}

.page_top_wrapper {
  background-color: white;
}

.page_header_wrapper {
  width: 100%;
  background-color: #EEF7FF;
  text-align: center;
  padding: 50px 20px;
}
.page_header_wrapper .title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #005AAB;
}
@media (max-width: 768px) {
  .page_header_wrapper .title {
    font-size: 1.8rem;
  }
}
.page_header_wrapper .desc {
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .page_header_wrapper .desc {
    font-size: 1.6rem;
  }
}

/* 네비게이션 */
header {
  display: flex;
  position: fixed;
  width: 100%;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: 0.3s all;
  background-color: transparent;
  color: white;
}
header.is_mobile {
  background-color: white;
}
header.is_mobile .nav .nav_logo_box #nav_logo {
  background-color: #0095EB;
}
header.black {
  color: black;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  header.black {
    background-color: white;
  }
}
header.black .nav__etc-box .nav__languages .lang_btn_flag {
  background-color: black;
}
header.black .nav__etc-box .nav__languages .lang_btn_flag:hover {
  background-color: #0095EB;
}
header.black .nav__etc-box .logout_btn {
  background-color: black;
}
header.black .nav__etc-box .logout_btn:hover {
  background-color: #0095EB;
}
header.black .nav .nav_logo_box #nav_logo {
  background-color: #0095EB;
}
header.black .nav .nav_menu_container .nav_menu_btn .sub_menu_container {
  background-color: rgba(255, 255, 255, 0.8);
}
header.black .nav .nav_menu_container .nav_menu_btn .sub_menu_container .sub_menu_btn {
  color: black;
}
header.black .nav .nav_menu_container .nav_menu_btn .sub_menu_container .sub_menu_btn.activate {
  color: #0095EB;
  border-bottom: 1px solid #0095EB;
}
header.black .nav .nav_menu_container .nav_menu_btn .sub_menu_container .sub_menu_btn:hover {
  color: #0095EB;
  border-bottom: 1px solid #0095EB;
}
@media (max-width: 768px) {
  header {
    height: 60px;
  }
}
header.hidden {
  transform: translateY(-90px);
}
@media (max-width: 768px) {
  header.hidden {
    transform: translateY(-60px);
  }
}
header .nav {
  display: flex;
  width: 100%;
  height: 90px;
  max-width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  position: relative;
}
@media (max-width: 768px) {
  header .nav {
    height: 60px;
    padding: 0 10px;
  }
}
header .nav .nav_logo_box {
  display: flex;
  align-items: end;
  flex-shrink: 0;
}
header .nav .nav_logo_box #nav_logo {
  height: 4.5rem;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: white;
  mask-image: url("../images/layout/logo.svg");
  width: 123px;
}
@media (max-width: 768px) {
  header .nav .nav_logo_box #nav_logo {
    height: 30px;
    mask-position: left;
  }
}
header .nav .nav_menu_container {
  top: 0;
  right: 20px;
  display: flex;
  flex-direction: row;
  height: 100%;
}
header .nav .nav_menu_container .nav_menu_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 3rem;
  position: relative;
}
@media (max-width: 1023px) {
  header .nav .nav_menu_container .nav_menu_btn {
    padding-inline: 1.5rem;
  }
}
header .nav .nav_menu_container .nav_menu_btn .main_menu_btn {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
header .nav .nav_menu_container .nav_menu_btn .nav_menu_text {
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  letter-spacing: inherit;
  transition: all 0.3s;
}
header .nav .nav_menu_container .nav_menu_btn .sub_menu_container {
  position: absolute;
  top: 89px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.3s all;
  left: 0;
  right: 0;
  transform: translateY(-15px);
}
header .nav .nav_menu_container .nav_menu_btn .sub_menu_container .sub_menu_btn {
  font-size: 1.6rem;
  padding: 10px 10px;
  color: white;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
header .nav .nav_menu_container .nav_menu_btn .sub_menu_container .sub_menu_btn.activate {
  font-weight: 700;
  color: #0095EB;
  border-bottom: 1px solid #0095EB;
}
header .nav .nav_menu_container .nav_menu_btn .sub_menu_container .sub_menu_btn:hover {
  color: #0095EB;
  border-bottom: 1px solid #0095EB;
}
header .nav .nav_menu_container .nav_menu_btn:hover .nav_menu_text {
  color: #0095EB;
}
header .nav .nav_menu_container .nav_menu_btn:hover .sub_menu_container {
  display: flex;
  transform: translateY(0px);
}
header .nav .nav_menu_container .nav_menu_btn.activate .nav_menu_text {
  color: #0095EB;
}
@media (max-width: 768px) {
  header .nav .nav_menu_container {
    display: none;
  }
}
header .nav__etc-box {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  margin-left: 30px;
}
@media (max-width: 768px) {
  header .nav__etc-box {
    display: none;
  }
}
header .nav__etc-box .nav__languages {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .nav__etc-box .nav__languages .lang__btn {
  border: 0;
  width: 30px;
  height: 30px;
  transition: 0.2s all;
  cursor: pointer;
}
header .nav__etc-box .nav__languages .lang__btn:hover {
  transform: scale(1.1);
}
header .nav__etc-box .nav__languages .lang_btn_flag {
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-image: url("../images/layout/globe.svg");
  background-color: white;
}
header .nav__etc-box .nav__languages #select_lang_input:checked + .lang__btn + .lang__sub {
  display: flex;
}
header .nav__etc-box .nav__languages .lang__sub {
  display: none;
  flex-direction: column;
  gap: 10px;
  top: 52px;
  right: -2px;
  width: 80px;
  position: absolute;
  padding: 10px;
  background-color: #0095EB;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
  text-align: center;
  z-index: 2000;
  cursor: pointer;
}
header .nav__etc-box .nav__languages .lang__sub::before {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-left: 1px solid #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
  background-color: #0095EB;
  transform: rotate(135deg);
}
header .nav__etc-box .nav__languages .nav__set-lang {
  font-size: 1.2rem;
  font-weight: lighter;
  color: white;
  text-decoration: none;
  background-color: transparent;
  border: none;
  padding: 0;
}
header .nav__etc-box .nav__languages .nav__set-lang:hover {
  text-decoration: underline;
}
header .nav__etc-box .nav__languages .nav__set-lang.active {
  font-weight: bold;
  color: white;
  text-decoration: none;
}
header .mobile-menu__btn {
  display: none;
  margin-left: 0;
}
@media (max-width: 768px) {
  header .mobile-menu__btn {
    display: block;
    position: fixed;
    margin-left: 30px;
    top: 18px;
    right: 20px;
  }
}
header .mobile-menu__btn .menu-button-container {
  height: 26px;
  width: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
header .mobile-menu__btn #menu-toggle {
  display: none;
}
header .mobile-menu__btn .menu-button {
  display: block;
  background-color: #0095EB;
  height: 2px;
  width: 28px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}
header .mobile-menu__btn #menu-toggle:checked + .menu-button-container .menu-button--1 {
  transform: translateY(12px) rotate(135deg);
}
header .mobile-menu__btn #menu-toggle:checked + .menu-button-container .menu-button--2 {
  transform: scale(0.1);
}
header .mobile-menu__btn #menu-toggle:checked + .menu-button-container .menu-button--3 {
  transform: translateY(-12px) rotate(-135deg);
}

/*  모바일 메뉴  */
.mobile_menu_container {
  position: absolute;
  background-color: white;
  width: 100%;
  margin-top: 60px;
  min-height: calc(100dvh - 60px);
  top: 0;
  left: 0;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  justify-content: space-between;
  color: black;
}
@media (max-width: 768px) {
  .mobile_menu_container.active {
    display: flex;
  }
}
.mobile_menu_container .mobile_menu_wrapper .nav_menu_btn_box {
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid white;
}
.mobile_menu_container .mobile_menu_wrapper .nav_menu_btn_box .mobile_nav_menu_btn_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile_menu_container .mobile_menu_wrapper .nav_menu_btn_box .mobile_nav_menu_btn_wrapper:has(.mobile_sub_menu_input:checked) + .sub_menu_container {
  max-height: 600px;
  opacity: 1;
}
.mobile_menu_container .mobile_menu_wrapper .nav_menu_btn_box .nav_menu_btn {
  padding: 30px 20px;
}
.mobile_menu_container .mobile_menu_wrapper .nav_menu_btn_box .main_menu_btn_mobile {
  width: 100%;
}
.mobile_menu_container .mobile_menu_wrapper .nav_menu_btn_box .nav_menu_text {
  color: black;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  text-align: left;
  letter-spacing: inherit;
  transition: all 0.3s;
}
.mobile_menu_container .mobile_menu_wrapper .nav_menu_btn_box .mobile_sub_menu_input {
  display: none;
}
.mobile_menu_container .mobile_menu_wrapper .nav_menu_btn_box .mobile_sub_menu_input:checked + label {
  transform: rotate(90deg);
}
.mobile_menu_container .mobile_menu_wrapper .nav_menu_btn_box .mobile_sub_menu_label {
  width: 52px;
  height: 52px;
  background-color: black;
  mask-image: url("../images/layout/menu_arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 26px;
  transition: all 0.1s;
  cursor: pointer;
}
.mobile_menu_container .mobile_menu_wrapper .nav_menu_btn_box .sub_menu_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: 0.3s all;
}
.mobile_menu_container .mobile_menu_wrapper .nav_menu_btn_box .sub_menu_container .sub_menu_btn {
  width: 100%;
  font-size: 18px;
  padding: 10px 30px;
  background-color: white;
  color: black;
}
.mobile_menu_container .mobile_menu_wrapper .nav_menu_btn_box .sub_menu_container .sub_menu_btn:hover {
  background-color: #A7B6DB;
}
.mobile_menu_container .mobile_menu_bottom {
  display: flex;
  border-top: 1px solid white;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  bottom: 0;
  gap: 30px;
  background-color: white;
}
.mobile_menu_container .mobile_menu_bottom .mobile_menu_bottom_item {
  padding: 10px;
  flex-grow: 0;
  text-align: center;
}
.mobile_menu_container .mobile_menu_bottom .mobile_lang_container {
  display: flex;
  gap: 30px;
}
.mobile_menu_container .mobile_menu_bottom .mobile_lang_container .mobile_select_lang {
  width: 60px;
  height: 40px;
  background-color: white;
  border-radius: 0;
  opacity: 0.6;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: black;
}
.mobile_menu_container .mobile_menu_bottom .mobile_lang_container .mobile_select_lang:hover {
  opacity: 1;
}
.mobile_menu_container .mobile_menu_bottom .mobile_lang_container .mobile_select_lang.active {
  background-color: black;
  opacity: 1;
  color: white;
}

/*  푸터  */
.layout_footer {
  width: 100%;
  max-width: 100%;
  background-color: white;
  color: black;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.layout_footer .footer_info_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-block: 5.6rem;
}
.layout_footer .footer_info_container .footer_container {
  width: 100%;
  max-width: 1400px;
  padding: 20px 20px 20px;
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .layout_footer .footer_info_container .footer_container {
    flex-direction: column;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
  }
}
.layout_footer .footer_info_container .footer_container .footer__logo {
  display: block;
  width: 123px;
  height: 45px;
  transition: 0.2s all;
  flex-shrink: 0;
  opacity: 0.15;
}
.layout_footer .footer_info_container .footer_container .footer__logo:hover {
  opacity: 1;
}
.layout_footer .footer_info_container .footer_container .footer__info-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.layout_footer .footer_info_container .footer_container .footer__info-box .info_wrapper {
  display: flex;
  align-items: start;
  gap: 2rem;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .layout_footer .footer_info_container .footer_container .footer__info-box .info_wrapper {
    flex-direction: column;
  }
}
.layout_footer .footer_info_container .footer_container .footer__info-box .info_wrapper .info_text {
  color: #666;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.layout_footer .footer_info_container .footer_container .footer__info-box .copyright {
  color: #777;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
}

.top-btn {
  background-color: #0095EB;
  mask-image: url("../images/layout/to_top_btn.svg");
  position: fixed;
  right: 20px;
  bottom: 40px;
  width: 40px;
  height: 40px;
  mask-position: center;
  mask-repeat: no-repeat;
  transform: scale(0.9);
  transition: 0.2s all;
  opacity: 0.75;
  z-index: 1000;
}
@media (min-width: 100%) {
  .top-btn {
    right: calc((100vw - 100%) / 2 + 20px);
  }
}
.top-btn:hover {
  transform: scale(1);
  opacity: 1;
}

.page_top {
  height: 500px;
  width: 100%;
  padding-top: 90px;
  color: white;
  font-size: 5.7rem;
  text-align: center;
  font-weight: 800;
  background-size: cover;
}
@media (max-width: 768px) {
  .page_top {
    padding-top: 60px;
    font-size: 4rem;
    height: 300px;
  }
}

.grid_col_5 {
  grid-template-columns: repeat(5, 1fr) !important;
}

.grid_col_6 {
  grid-template-columns: repeat(6, 1fr) !important;
}

.grid_col_7 {
  grid-template-columns: repeat(7, 1fr) !important;
}

.grid_col_8 {
  grid-template-columns: repeat(8, 1fr) !important;
}

.grid_col_9 {
  grid-template-columns: repeat(9, 1fr) !important;
}

.grid_col_10 {
  grid-template-columns: repeat(10, 1fr) !important;
}

.index_page section .text_box {
  align-items: center;
  justify-content: end;
  min-height: 100dvh;
  padding-bottom: 20rem;
}
.index_page section .text_box.left {
  align-items: start;
}
.index_page section .text_box.left h1, .index_page section .text_box.left .desc {
  text-align: left;
}
.index_page section .text_box.right {
  align-items: end;
}
.index_page section .text_box.right h1, .index_page section .text_box.right .desc {
  text-align: left;
}
.index_page section .text_box h1 {
  font-size: 5.4rem;
  font-weight: 300;
  margin-bottom: 4rem;
  text-align: center;
  color: white;
}
.index_page section .text_box h1 b {
  font-weight: 800;
}
@media (max-width: 768px) {
  .index_page section .text_box h1 {
    font-size: 3.2rem;
  }
}
.index_page section .text_box .desc {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding-inline: 1rem;
  color: white;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .index_page section .text_box .desc {
    font-size: 1.6rem;
  }
}

.index_01 {
  color: white;
  position: relative;
  width: 100%;
  min-height: 100dvh;
}
.index_01 .main_video {
  position: absolute;
  width: 100%;
  min-height: 100dvh;
  background-color: black;
  object-fit: cover;
  z-index: -2;
}
.index_01 .video_progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px; /* 얇게 */
  background: #496473;
  z-index: 1; /* 비디오 위, 텍스트 아래/위는 상황에 맞게 조정 */
  pointer-events: none; /* 클릭 방해 방지 */
}
.index_01 .video_progress_fill {
  height: 100%;
  width: 100%;
  background: #0095EB;
  transform-origin: left center;
}
.index_01 .main_video_filter {
  position: absolute;
  width: 100%;
  min-height: 100dvh;
  background-color: rgba(0, 0, 0, 0.1); /* 10% black */
  mix-blend-mode: multiply;
  z-index: -1;
}

.index_02 {
  width: 100%;
  min-height: 100dvh;
  background-image: url("../images/index/main_section2_bg_beam.webp");
  background-position: center right;
  background-size: cover;
}

.index_03 {
  width: 100%;
  min-height: 100dvh;
  background-image: url("../images/index/main_section3_bg.webp");
  background-position: center;
  background-size: cover;
}
.index_03 h4 {
  color: #FFF;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.8rem;
}

.index_04 {
  width: 100%;
  min-height: 100dvh;
  background-color: #0B1930;
  position: relative;
}
.index_04 .background_img {
  position: absolute;
  background-image: url("../images/index/main_section3_cont.webp");
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 2.2883787661;
  background-size: cover;
  top: 0;
  z-index: 0;
  background-position: center;
}
@media (max-width: 768px) {
  .index_04 .background_img {
    aspect-ratio: 1;
  }
}
.index_04 .content_width.text_box {
  margin-top: 40dvh;
  min-height: 50dvh !important;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  z-index: 1;
}
.index_04 .content_width.text_box h4 {
  color: #FFF;
  text-align: left;
  font-size: 3.6rem;
  font-weight: 300;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .index_04 .content_width.text_box h4 {
    font-size: 3.2rem;
  }
}
.index_04 .content_width.text_box h4 b {
  color: #A9BEFF;
  font-weight: 700;
}
.index_04 .content_width.text_box .grid_box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .index_04 .content_width.text_box .grid_box {
    grid-template-columns: 1fr;
  }
}
.index_04 .content_width.text_box .grid_box .item {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6rem 3rem;
  color: white;
  text-align: center;
}
.index_04 .content_width.text_box .grid_box .item h4 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 0.2em;
}
.index_04 .content_width.text_box .grid_box .item h5 {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 1em;
}
.index_04 .content_width.text_box .grid_box .item .desc {
  font-size: 2rem;
  font-weight: 300;
}

.index_05 {
  height: auto;
  min-height: initial;
  padding-block: 12rem;
  background-image: url("../images/index/main_contact_bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}
.index_05 p {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.index_05 h3 {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
.index_05 a {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
}
.index_05 a .contact_link {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid white;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.index_05 a .contact_link span {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: white;
  margin-left: 1rem;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-image: url("../images/index/arrow.svg");
}
.index_05 a:hover {
  background-color: #0095EB;
}

.accounts_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: calc(100dvh - 90px - 180px);
  position: relative;
  top: 90px;
  overflow: hidden;
}
@keyframes accounts_background {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50px);
  }
}
.accounts_container:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50px;
  right: 0;
  content: "";
  mask-image: url("/static/images/accounts_background_dot.svg");
  mask-size: 50px;
  background-color: #0095EB;
  z-index: 0;
  animation: accounts_background 1s infinite linear;
}
@media (max-width: 768px) {
  .accounts_container {
    top: 60px;
    min-height: calc(100dvh - 60px - 180px);
  }
}
.accounts_container .accounts_box {
  z-index: 1;
  border: 1px solid white;
  padding: 20px 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 360px;
  gap: 20px;
  background-color: #0095EB;
  color: white;
}
.accounts_container .accounts_box .accounts_title {
  font-family: "Outfit", sans-serif;
  font-weight: bold;
  font-size: 26px;
  display: flex;
  align-items: center;
}
.accounts_container .accounts_box .accounts_title .accounts_icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  background-color: white;
  margin-right: 10px;
  mask-image: url("/static/images/signup.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.accounts_container .accounts_box .accounts_title .accounts_icon.error {
  mask-image: url("/static/images/error.svg");
}
.accounts_container .accounts_box .accounts_title .accounts_icon.password {
  mask-image: url("/static/images/password.svg");
}
.accounts_container .accounts_box .accounts_title .accounts_icon.reset {
  mask-image: url("/static/images/password_reset.svg");
}
.accounts_container .accounts_box .accounts_title .accounts_icon.succeed {
  mask-image: url("/static/images/check_circle.svg");
}
.accounts_container .accounts_box .accounts_title .accounts_icon.login {
  mask-image: url("/static/images/login.svg");
}
.accounts_container .accounts_box .accounts_text {
  font-size: 14px;
}
.accounts_container .accounts_box .accounts_text a {
  display: inline-block;
  font-weight: bolder;
  text-decoration-line: underline;
}
.accounts_container .accounts_box input {
  padding: 5px 10px;
  border-radius: 5px;
  outline: none;
  border: none;
  color: black;
}
.accounts_container .accounts_box .text_link {
  border-bottom: 1px solid white;
}
.accounts_container .accounts_box .text_link:hover {
  background-color: white;
  color: #0095EB;
}
.accounts_container .accounts_box #password1_box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 0;
}
.accounts_container .accounts_box #password1_box input {
  width: 100%;
  margin: 0;
  border-radius: 5px 0 0 5px;
}
.accounts_container .accounts_box #password1_box input[type=password] + button:after {
  background-color: lightgray;
}
.accounts_container .accounts_box #password1_box input[type=text] + button:after {
  background-color: #00ff00;
}
.accounts_container .accounts_box #password1_box button {
  padding: 0;
  margin: 0;
  background-color: white;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accounts_container .accounts_box #password1_box button:after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-image: url("/static/images/visibility_fill.svg");
  background-color: red;
}
.accounts_container .accounts_box #password1_box button:hover {
  transform: none;
  outline: none;
}
.accounts_container .accounts_box #password1_box button:hover:after {
  background-color: #0095EB;
}
.accounts_container button, .accounts_container .button {
  padding: 10px 30px;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color: white;
  color: #0095EB;
  font-weight: bold;
}
.accounts_container button:hover, .accounts_container .button:hover {
  background-color: #0095EB;
  color: white;
  outline: 2px solid white;
}
@keyframes sending {
  0% {
    transform: translateX(0px);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0px);
  }
}
.accounts_container #send_password_reset_mail.sending {
  animation: sending 0.2s infinite ease-out;
  pointer-events: none;
}
.accounts_container .right_text {
  text-align: right;
}
.accounts_container .form_error_box .error_message {
  background-color: red;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 14px;
  margin-bottom: 4px;
}
.accounts_container #pw_match_message {
  background-color: red;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 14px;
  visibility: hidden;
}

.company_top_section .company_top_bg_image {
  background-image: url("../images/company/company_01/sub_visual_img.webp");
}
.company_top_section .company_top_bg_image.directors {
  background-image: url("../images/company/company_01/sub_visual_img_2.webp");
}
.company_top_section .company_top_bg_image.vision {
  background-image: url("../images/company/company_01/sub_visual_img_3.webp");
}

.company_info_01 {
  min-height: 100dvh;
  background: #fff;
  z-index: 1;
}
.company_info_01 .section_top {
  padding-block: 13rem;
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #0095EB 0%, #091D31 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .company_info_01 .section_top {
    font-size: 3rem;
  }
}
.company_info_01 .section_middle {
  width: 100%;
  background-image: url("../images/company/company_01/txt_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  padding-block: 10%;
}
.company_info_01 .section_middle .content_width {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .company_info_01 .section_middle .content_width {
    grid-template-columns: 1fr;
  }
}
.company_info_01 .section_middle .content_width .middle_title {
  color: #FFF;
  font-size: 3.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .company_info_01 .section_middle .content_width .middle_title {
    font-size: 2.8rem;
  }
}
.company_info_01 .section_middle .content_width .p_wrapper p {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 768px) {
  .company_info_01 .section_middle .content_width .p_wrapper p {
    font-size: 1.6rem;
  }
}
.company_info_01 .section_middle .content_width .p_wrapper p:first-child {
  margin-bottom: 2rem;
}
.company_info_01 .section_company_info .content_width {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: start;
  padding-block: 13rem;
}
@media (max-width: 768px) {
  .company_info_01 .section_company_info .content_width {
    grid-template-columns: 1fr;
  }
}
.company_info_01 .section_company_info .content_width .info_title {
  font-size: 4.4rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .company_info_01 .section_company_info .content_width .info_title {
    font-size: 3.2rem;
  }
}
.company_info_01 .section_company_info .content_width .table_title {
  color: #111;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 3.2rem;
}
@media (max-width: 768px) {
  .company_info_01 .section_company_info .content_width .table_title {
    font-size: 2.4rem;
  }
}
.company_info_01 .section_company_info .content_width .table_desc {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 6rem;
}
.company_info_01 .section_company_info .content_width table {
  width: 100%;
  border-top: 1px solid #e2e2e2;
}
.company_info_01 .section_company_info .content_width table th, .company_info_01 .section_company_info .content_width table td {
  border-bottom: 1px solid #e2e2e2;
  padding-block: 3.2rem;
  padding-inline: 1rem;
  text-align: left;
}
.company_info_01 .section_company_info .content_width table th {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
}
.company_info_01 .section_company_info .content_width table td {
  font-size: 1.8rem;
  font-weight: 400;
}
.company_info_01 .section_company_info .content_width table td p {
  margin-bottom: 1rem;
}
.company_info_01 .section_company_info .content_width table td ul li {
  list-style: none; /* 기본 머리기호 제거 */
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.company_info_01 .section_company_info .content_width table td ul li:last-child {
  margin-bottom: 0rem;
}
.company_info_01 .section_company_info .content_width table td ul li::before {
  content: "·"; /* 원하는 기호나 문자 (예: "✔", ">", "-") */
  font-weight: bold;
  display: inline-block;
  width: 1em;
  position: absolute;
  left: 0;
}
.company_info_01 .section_company_partners {
  width: 100%;
  background: #F4F4F4;
  padding-block: 10rem;
}
.company_info_01 .section_company_partners .content_width .partners_title {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .company_info_01 .section_company_partners .content_width .partners_title {
    font-size: 3.4rem;
  }
}
.company_info_01 .section_company_partners .content_width .slide_container {
  width: 100%;
  overflow-x: hidden;
}
.company_info_01 .section_company_partners .content_width .slide_container .partners_list {
  display: flex;
  gap: 1rem;
}
.company_info_01 .section_company_partners .content_width .slide_container .partners_list .item {
  width: 200px;
  background-color: white;
  padding: 1rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}

.company_directors {
  padding-block: 10rem;
  min-height: initial;
}
.company_directors .directors_greeting {
  column-count: 2;
  column-gap: 4rem;
  font-size: 1.8rem;
  font-weight: 400;
  word-break: keep-all;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .company_directors .directors_greeting {
    column-count: 1;
    font-size: 1.6rem;
  }
}
.company_directors .directors {
  text-align: right;
  font-size: 2.4rem;
  font-weight: 700;
  margin-left: auto;
}
@media (max-width: 768px) {
  .company_directors .directors {
    font-size: 1.8rem;
  }
}

.company_vision_01 {
  padding-block: 10rem;
}
.company_vision_01 .section_top_wrapper {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 3rem;
  margin-bottom: 4.8rem;
}
@media (max-width: 768px) {
  .company_vision_01 .section_top_wrapper {
    grid-template-columns: 1fr;
  }
}
.company_vision_01 .section_top_wrapper h1 {
  font-size: 4.8rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .company_vision_01 .section_top_wrapper h1 {
    font-size: 3.2rem;
  }
}
.company_vision_01 .section_top_wrapper p {
  font-size: 1.8rem;
  font-weight: 400;
}
.company_vision_01 .accordion-container {
  display: flex;
  width: 100%;
  height: 50vh;
  gap: 1.2rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .company_vision_01 .accordion-container {
    flex-direction: column;
    height: 80vh;
  }
}
.company_vision_01 .accordion-container .accordion-item {
  border-radius: 1rem;
  position: relative;
  flex: 0.5;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}
@media (max-width: 768px) {
  .company_vision_01 .accordion-container .accordion-item {
    overflow-y: hidden;
  }
}
.company_vision_01 .accordion-container .accordion-item:first-child {
  background-image: url("../images/company/company_03/role_bg1.webp");
}
.company_vision_01 .accordion-container .accordion-item:nth-child(2) {
  background-image: url("../images/company/company_03/role_bg2.webp");
}
.company_vision_01 .accordion-container .accordion-item:nth-child(3) {
  background-image: url("../images/company/company_03/role_bg3.webp");
}
.company_vision_01 .accordion-container .accordion-item:first-child {
  flex: 8;
}
.company_vision_01 .accordion-container .accordion-item:first-child .content-box {
  opacity: 1;
}
.company_vision_01 .accordion-container .accordion-item .content-box {
  position: relative;
  z-index: 1;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  opacity: 0;
}
.company_vision_01 .accordion-container .accordion-item .content-box h3 {
  font-size: 3.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .company_vision_01 .accordion-container .accordion-item .content-box h3 {
    font-size: 2.4rem;
  }
}
.company_vision_01 .accordion-container .accordion-item .content-box p {
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.company_vision_01 .accordion-container:hover .accordion-item {
  flex: 1;
}
.company_vision_01 .accordion-container:hover .accordion-item .content-box {
  opacity: 0;
}
.company_vision_01 .accordion-container .accordion-item:hover {
  flex: 8 !important;
}
.company_vision_01 .accordion-container .accordion-item:hover .content-box {
  opacity: 1;
}
.company_vision_01 .accordion-container .accordion-item:hover::before {
  opacity: 0.3;
}
.company_vision_01 #core_value {
  padding-block: 10rem;
}
.company_vision_01 #core_value h3 {
  color: #111;
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 5.6rem;
}
@media (max-width: 768px) {
  .company_vision_01 #core_value h3 {
    font-size: 3.2rem;
  }
}
.company_vision_01 #core_value .value_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3%;
}
@media (max-width: 768px) {
  .company_vision_01 #core_value .value_grid {
    grid-template-columns: 1fr;
  }
}
.company_vision_01 #core_value .value_grid .grid_item .item_img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 4rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .company_vision_01 #core_value .value_grid .grid_item .item_img {
    aspect-ratio: 1.6;
  }
}
.company_vision_01 #core_value .value_grid .grid_item .item_text .item_title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .company_vision_01 #core_value .value_grid .grid_item .item_text .item_title {
    font-size: 2.4rem;
  }
}
.company_vision_01 #core_value .value_grid .grid_item .item_text .item_desc {
  font-size: 1.8rem;
  font-weight: 500;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .company_vision_01 #core_value .value_grid .grid_item .item_text .item_desc {
    font-size: 1.6rem;
  }
}

.company_new_2030 {
  background-image: url("../images/company/company_03/new2030_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.company_new_2030 .content_width {
  padding-block: 16rem;
  min-height: 100dvh;
}
.company_new_2030 .content_width .text_wrapper {
  color: white;
  text-align: center;
  width: 100%;
  margin-bottom: auto;
}
.company_new_2030 .content_width .text_wrapper h3 {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .company_new_2030 .content_width .text_wrapper h3 {
    font-size: 3.2rem;
  }
}
.company_new_2030 .content_width .text_wrapper p {
  font-size: 1.8rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .company_new_2030 .content_width .text_wrapper p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
}
.company_new_2030 .content_width .grid_box {
  background-color: white;
  color: #111;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
@media (max-width: 768px) {
  .company_new_2030 .content_width .grid_box {
    grid-template-columns: 1fr;
    gap: 5px;
    background-color: transparent;
  }
}
.company_new_2030 .content_width .grid_box .item {
  padding-block: 7rem;
}
@media (max-width: 768px) {
  .company_new_2030 .content_width .grid_box .item {
    padding: 2rem 1rem;
    background-color: white;
  }
}
.company_new_2030 .content_width .grid_box .item .item_text_box {
  border-right: 1px solid #2e2e2e;
  padding-inline: 2rem;
}
@media (max-width: 768px) {
  .company_new_2030 .content_width .grid_box .item .item_text_box {
    border: none;
  }
}
.company_new_2030 .content_width .grid_box .item .item_text_box .item_title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.company_new_2030 .content_width .grid_box .item .item_text_box .item_desc {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  word-break: keep-all;
}
.company_new_2030 .content_width .grid_box .item:last-child > .item_text_box {
  border-right: none;
}

.sensor_top_section .sensor_top_bg_image {
  background-image: url("../images/sensor/sub_visual_img.webp");
}
.sensor_top_section .page_top_content_box {
  display: flex;
  flex-direction: column;
}
.sensor_top_section .sensor_tab {
  margin-bottom: 10rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
.sensor_top_section .sensor_tab input {
  display: none;
}
.sensor_top_section .sensor_tab input:checked + label {
  color: black;
  background-color: white;
}
.sensor_top_section .sensor_tab label {
  padding: 2.5rem 8rem;
  background-color: #243245;
  color: #5B728E;
  border-radius: 0.4rem;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
@media (max-width: 768px) {
  .sensor_top_section .sensor_tab label {
    padding: 2rem;
    font-size: 1.8rem;
  }
}
.sensor_top_section .sensor_tab label:hover {
  background-color: #0095EB;
  color: black;
}

.sensor_01 {
  background-color: #0A192E;
}
.sensor_01 .content_width {
  background-image: url("../images/sensor/equip_cont_img_change.webp");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  padding-block: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sensor_01 .content_width .content_top {
  display: grid;
  grid-template-columns: 1fr 3fr;
  color: white;
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .sensor_01 .content_width .content_top {
    grid-template-columns: 1fr;
  }
}
.sensor_01 .content_width .content_top h1 {
  font-size: 3.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .sensor_01 .content_width .content_top h1 {
    font-size: 2.8rem;
  }
}
.sensor_01 .content_width .content_top p {
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .sensor_01 .content_width .content_top p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
.sensor_01 .content_width .content_bottom {
  width: 100%;
  max-width: 1024px;
  padding-bottom: 15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sensor_01 .content_width .content_bottom .rect_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .sensor_01 .content_width .content_bottom .rect_container {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.sensor_01 .content_width .content_bottom .rect_container .rect_item {
  padding: 4rem;
  background-color: #0a182e;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.4rem;
}
@media (max-width: 768px) {
  .sensor_01 .content_width .content_bottom .rect_container .rect_item {
    width: 100%;
  }
}
.sensor_01 .content_width .content_bottom .rect_container .rect_item .icon {
  width: 44px;
  height: 44px;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #A9BEFF;
  mask-image: url("../images/sensor/icon_1.svg");
}
.sensor_01 .content_width .content_bottom .rect_container .rect_item:nth-of-type(2) .icon {
  mask-image: url("../images/sensor/icon_2.svg");
}
.sensor_01 .content_width .content_bottom .rect_container .rect_item:nth-of-type(3) .icon {
  mask-image: url("../images/sensor/icon_3.svg");
}
.sensor_01 .content_width .content_bottom .rect_container .rect_item:nth-of-type(4) .icon {
  mask-image: url("../images/sensor/icon_4.svg");
}
.sensor_01 .content_width .content_bottom .rect_container .rect_item p {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}
.sensor_01 .content_width .content_bottom .system_link {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: #005EEB;
  color: white;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  padding: 3rem 8rem;
  border-radius: 4.2rem;
}
@media (max-width: 768px) {
  .sensor_01 .content_width .content_bottom .system_link {
    padding: 2rem 3rem;
  }
}
.sensor_01 .content_width .content_bottom .system_link span {
  display: inline-block;
  width: 10px;
  height: 18px;
  background-color: white;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-image: url("../images/sensor/right_arrow.svg");
}
.sensor_01 .content_width .content_bottom .system_link:hover {
  background-color: #0095EB;
}

.sensor_02 {
  display: none;
  background-color: #091627;
  background-image: url("../images/sensor/concept_bg.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
}
.sensor_02 .content_width {
  padding-block: 8rem;
  color: white;
}
.sensor_02 .content_width h1 {
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 500;
  width: 100%;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .sensor_02 .content_width h1 {
    font-size: 2.4rem;
  }
}
.sensor_02 .content_width h1 b {
  color: #A9BEFF;
  font-weight: 700;
}
.sensor_02 .content_width .sensor_02_rect_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .sensor_02 .content_width .sensor_02_rect_container {
    grid-template-columns: 1fr;
  }
}
.sensor_02 .content_width .sensor_02_rect_container .item {
  color: white;
  padding: 6rem 4rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .sensor_02 .content_width .sensor_02_rect_container .item {
    padding: 2rem;
  }
}
.sensor_02 .content_width .sensor_02_rect_container .item h3 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.sensor_02 .content_width .sensor_02_rect_container .item .sub_name {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
}
.sensor_02 .content_width .sensor_02_rect_container .item .name_local {
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
}
.sensor_02 .content_width .sensor_contents_container {
  width: 100%;
}
.sensor_02 .content_width .sensor_contents_container .sub_title {
  color: #6D7FAE;
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .sensor_02 .content_width .sensor_contents_container .sub_title {
    font-size: 1.8rem;
  }
}
.sensor_02 .content_width .sensor_contents_container .name {
  color: white;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .sensor_02 .content_width .sensor_contents_container .name {
    font-size: 2.8rem;
  }
}
.sensor_02 .content_width .sensor_contents_container .sensor_contents {
  padding-block: 6rem;
  background: rgba(217, 217, 217, 0.3);
  border-radius: 1rem;
  margin-bottom: 10rem;
}
.sensor_02 .content_width .sensor_contents_container .sensor_contents img {
  margin-bottom: 8rem;
}
.sensor_02 .content_width .sensor_contents_container .sensor_contents .components_container {
  width: 100%;
  padding-inline: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
.sensor_02 .content_width .sensor_contents_container .sensor_contents .components_container .item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding: 2.4rem 4rem;
  background-color: black;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .sensor_02 .content_width .sensor_contents_container .sensor_contents .components_container .item {
    grid-template-columns: 1fr;
  }
}
.sensor_02 .content_width .sensor_contents_container .sensor_contents .components_container .item .item_name {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .sensor_02 .content_width .sensor_contents_container .sensor_contents .components_container .item .item_name {
    font-size: 1.8rem;
  }
}
.sensor_02 .content_width .sensor_contents_container .sensor_contents .components_container .item .item_desc {
  font-size: 1.8rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .sensor_02 .content_width .sensor_contents_container .sensor_contents .components_container .item .item_desc {
    font-size: 1.6rem;
  }
}
.sensor_02 .content_width .sensor_contents_container .concept_container {
  width: 100%;
  padding: 4rem 5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 15rem;
}
@media (max-width: 768px) {
  .sensor_02 .content_width .sensor_contents_container .concept_container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.sensor_02 .content_width .sensor_contents_container .concept_container .item .concept_name {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .sensor_02 .content_width .sensor_contents_container .concept_container .item .concept_name {
    font-size: 1.8rem;
  }
}
.sensor_02 .content_width .sensor_contents_container .concept_container .item .concept_bar {
  display: inline-block;
  width: 100%;
  height: 20px;
  border-radius: 4px 4px 4px 4px;
  background: rgba(169, 190, 255, 0.3);
  margin-bottom: 1rem;
}
.sensor_02 .content_width .sensor_contents_container .concept_container .item .concept_bar.bar_a {
  border-radius: 10px 4px 4px 10px;
}
.sensor_02 .content_width .sensor_contents_container .concept_container .item .concept_bar.bar_b {
  background: rgba(169, 190, 255, 0.5);
}
.sensor_02 .content_width .sensor_contents_container .concept_container .item .concept_bar.bar_c {
  background: rgba(169, 190, 255, 0.7);
}
.sensor_02 .content_width .sensor_contents_container .concept_container .item .concept_bar.bar_d {
  background: #A9BEFF;
  border-radius: 4px 10px 10px 4px;
}
.sensor_02 .content_width .sensor_contents_container .concept_container .item .concept_desc {
  color: #FFF;
  font-size: 1.75rem;
  font-weight: 300;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .sensor_02 .content_width .sensor_contents_container .concept_container .item .concept_desc {
    font-size: 1.6rem;
  }
}

.contact_top_section .contact_top_bg_image {
  background-image: url("../images/contact/sub_visual_img.webp");
}
.contact_top_section .page_top_content_box {
  display: flex;
  flex-direction: column;
}

.contact_map_section {
  position: relative;
  padding: 6rem;
}
@media (max-width: 768px) {
  .contact_map_section {
    padding: 1rem;
    min-height: 80dvh;
  }
}
.contact_map_section .map_container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.contact_map_section .map_container .map {
  position: relative;
  width: 100%;
  max-width: 1600px;
  height: 80dvh;
}
@media (max-width: 768px) {
  .contact_map_section .map_container .map {
    height: 60dvh;
  }
}
@keyframes loading_map {
  0% {
    background-color: #ddd;
  }
  50% {
    background-color: #0095EB;
  }
  100% {
    background-color: #ddd;
  }
}
.contact_map_section .map_container .map:before {
  content: "";
  position: absolute;
  background-color: #ddd;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  mask-image: url("../images/contact/loading_map.svg");
  mask-size: 300px;
  mask-repeat: no-repeat;
  mask-position: center;
  animation: loading_map 2s infinite;
}
.contact_map_section .contact_info_wrapper {
  width: 100%;
  max-width: 1400px;
  position: absolute;
  background-color: rgba(255, 0, 0, 0.2);
  bottom: 6rem;
  z-index: 1;
}
.contact_map_section .contact_info_wrapper .contact_info_container {
  background-image: url("../images/contact/info_bg.webp");
  background-size: cover;
  padding: 60px;
  color: white;
}
@media (max-width: 768px) {
  .contact_map_section .contact_info_wrapper .contact_info_container {
    padding: 2rem;
  }
}
.contact_map_section .contact_info_wrapper .contact_info_container .contact_title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .contact_map_section .contact_info_wrapper .contact_info_container .contact_title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}
.contact_map_section .contact_info_wrapper .contact_info_container .info_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .contact_map_section .contact_info_wrapper .contact_info_container .info_container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.contact_map_section .contact_info_wrapper .contact_info_container .info_container .item .name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact_map_section .contact_info_wrapper .contact_info_container .info_container .item .desc {
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contact_map_section .contact_info_wrapper .contact_info_container .info_container .item .desc {
    font-size: 1.6rem;
    font-weight: 400;
  }
}

.post_page_header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
@media (max-width: 768px) {
  .post_page_header {
    padding-top: 60px;
  }
}
.post_page_header .post_add_btn {
  background-color: white;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  border: 1px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post_page_header .post_add_btn:hover {
  background-color: #0095EB;
  border: 1px solid white;
}
.post_page_header .post_add_btn:hover:after {
  background-color: white;
}
.post_page_header .post_add_btn:after {
  content: "";
  mask-image: url("../images/component/add.svg");
  background-color: black;
  width: 24px;
  height: 24px;
  display: inline-block;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.post_page_header .category_container {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.post_page_header .category_container .category_radio_input {
  display: none;
}
.post_page_header .category_container .category_radio_input:checked + .category_item {
  border-top: 1px solid rgb(82, 191.6893617021, 255);
  background-color: rgb(0, 116.6638297872, 184);
  color: white;
}
.post_page_header .category_container .category_item {
  padding: 20px;
  border-bottom: 1px solid #E0E0E0;
  border-top: 1px solid transparent;
  flex: 1;
  text-align: center;
  word-break: keep-all;
  transition: all 0.2s;
  cursor: pointer;
}
.post_page_header .category_container .category_item:hover {
  border-top: 1px solid rgb(82, 191.6893617021, 255);
  background-color: #0095EB;
  color: white;
}
.post_page_header .post_ui_container {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}
.post_page_header .post_ui_container .search_field {
  margin-right: auto;
}
.post_page_header .post_ui_container .post_add_btn {
  margin-left: auto;
}

#post_list_container {
  width: 100%;
}
#post_list_container .post_list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding-block: 60px;
}
@media (max-width: 768px) {
  #post_list_container .post_list {
    grid-template-columns: 1fr 1fr;
    padding-block: 30px;
  }
}
@media (max-width: 460px) {
  #post_list_container .post_list {
    grid-template-columns: 1fr;
  }
}
#post_list_container .post_list .post_item {
  transform: translateY(50px);
  width: 100%;
  opacity: 0;
  transition: 0.3s all;
  cursor: pointer;
  position: relative;
  flex: 0;
}
#post_list_container .post_list .post_item.show {
  opacity: 1;
  transform: translateY(0);
}
#post_list_container .post_list .post_item .edit_btn {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: white;
  padding: 10px 20px;
  border: 1px solid black;
  border-radius: 5px;
  transition: all 0.2s;
}
#post_list_container .post_list .post_item .edit_btn:hover {
  background-color: greenyellow;
  box-shadow: 3px 3px 3px black;
  transform: translateY(-3px);
}
#post_list_container .post_list .post_item .item_img_box {
  padding: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1.6;
  transition: 0.3s all;
}
#post_list_container .post_list .post_item .item_img_box img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s all;
  object-fit: contain;
}
#post_list_container .post_list .post_item .post_title {
  color: black;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  transition: all 0.3s;
  height: 3em;
}
@media (max-width: 1023px) {
  #post_list_container .post_list .post_item .post_title {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  #post_list_container .post_list .post_item .post_title {
    font-size: 1.6rem;
  }
}
#post_list_container .post_list .post_item:hover .post_title {
  letter-spacing: 0.3rem;
}
#post_list_container .post_list .post_item:hover .item_img_box .product_image_box {
  transform: scale(1.05);
}

.notice_section {
  padding-top: 27rem;
}
@media (max-width: 768px) {
  .notice_section {
    padding-top: 10rem;
  }
}
.notice_section .content_width {
  width: 100%;
  max-width: 1080px;
}
.notice_section .content_header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .notice_section .content_header {
    margin-bottom: 3rem;
  }
}
.notice_section .content_header .page_name {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .notice_section .content_header .page_name {
    font-size: 1.8rem;
  }
}
.notice_section .content_header .bread_crumbs {
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .notice_section .content_header .bread_crumbs {
    display: none;
  }
}
.notice_section .top_title {
  margin-right: auto;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 12rem;
}
@media (max-width: 768px) {
  .notice_section .top_title {
    font-size: 3.2rem;
    margin-bottom: 6rem;
  }
}
.notice_section .post_wrapper {
  width: 100%;
  max-width: 1080px;
}

.notice_list_container.content_width {
  padding: 0;
}

.form_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.file_size {
  margin-bottom: 20px;
}

.post_list_table {
  display: table;
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse;
}
.post_list_table .table_row:first-child th, .post_list_table .table_row:first-child td {
  border-top: 4px solid black;
}
.post_list_table .table_row.table_head {
  font-weight: bold;
  text-align: center;
  background-color: #0095EB;
  color: white;
}
.post_list_table .table_row.table_head th {
  border: none;
}
.post_list_table .href_row {
  cursor: pointer;
}
.post_list_table .href_row:hover {
  background-color: #EEF7FF;
}
.post_list_table th, .post_list_table td {
  padding: 20px 10px 20px 10px;
  border-bottom: 1px solid black;
}
@media (max-width: 768px) {
  .post_list_table th, .post_list_table td {
    padding: 20px 10px;
  }
}
.post_list_table .num {
  width: 120px;
  text-align: center;
}
@media (max-width: 768px) {
  .post_list_table .num {
    width: auto;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
  }
}
.post_list_table .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: center;
}
@media (max-width: 768px) {
  .post_list_table .title {
    width: auto;
    align-items: center;
  }
  .post_list_table .title .mobile_title {
    font-size: 1.6rem;
    font-weight: 500;
  }
  .post_list_table .title .mobile_user {
    font-size: 1.4rem;
  }
  .post_list_table .title .mobile_date {
    font-size: 1.4rem;
    margin-left: 1rem;
  }
}
.post_list_table .title .list_download_btn {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: black;
  mask-image: url("../images/component/file_download.svg");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  margin-left: 20px;
}
.post_list_table .user {
  text-align: center;
  width: 120px;
}
@media (max-width: 768px) {
  .post_list_table .user {
    text-align: right;
  }
}
.post_list_table .date {
  width: 120px;
  text-align: center;
}
@media (max-width: 768px) {
  .post_list_table .date {
    width: auto;
    text-align: right;
  }
}
.post_list_table a:hover {
  background-color: #EEEEEE;
}

.notice_detail_container {
  margin-bottom: 20px;
  width: 100%;
  max-width: 1400px;
}
.notice_detail_container .notice_title_container {
  padding: 10px;
  margin-bottom: 3rem;
}
.notice_detail_container .notice_title_container .notice_title {
  font-size: 2.4rem;
  color: black;
  font-weight: bold;
  margin-bottom: 1.5rem;
  border-top: 4px solid black;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .notice_detail_container .notice_title_container .notice_title {
    font-size: 16px;
  }
}
.notice_detail_container .notice_title_container .notice_title_info {
  font-size: 1.8ren;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: #969696;
}
@media (max-width: 768px) {
  .notice_detail_container .notice_title_container .notice_title_info {
    font-size: 14px;
    padding: 10px;
  }
}
.notice_detail_container .notice_title_container .file_download {
  display: flex;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #C1D9EF;
  align-items: center;
}
.notice_detail_container .notice_title_container .file_download .download_label {
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 1.5rem;
}
.notice_detail_container .notice_title_container .file_download .download_obj {
  display: flex;
  align-items: center;
  color: #999;
  font-size: 1.4rem;
}
.notice_detail_container .notice_title_container .file_download .download_obj .download_icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-color: #777;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-image: url("../images/component/download.svg");
  margin-right: 1rem;
}
.notice_detail_container .notice_desc {
  padding: 50px 20px;
  border-block: 1px solid #ddd;
  margin-bottom: 2rem;
}
.notice_detail_container .bottom_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.notice_detail_container .bottom_container .detail_page_navigation {
  display: flex;
  gap: 1rem;
}
.notice_detail_container .bottom_container .detail_page_navigation .nav_icon {
  width: 40px;
  height: 40px;
  display: flex;
  border: 1px solid #C1D9EF;
  justify-content: center;
  align-items: center;
}
.notice_detail_container .bottom_container .detail_page_navigation .nav_icon:after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  display: block;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #C1D9EF;
}
.notice_detail_container .bottom_container .detail_page_navigation .nav_icon.prev:after {
  mask-image: url("../images/component/slide_btn_left.svg");
}
.notice_detail_container .bottom_container .detail_page_navigation .nav_icon.next:after {
  mask-image: url("../images/component/slide_btn_right.svg");
}
.notice_detail_container .bottom_container .button {
  margin-left: auto;
  display: inline-block;
}

.notice_file_upload {
  margin-top: 20px;
}

.file_delete_container {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 50px;
}
.file_delete_container .delete_button {
  user-select: none;
  padding: 5px 10px;
  font-size: 16px;
  background-color: orange;
  border-radius: 5px;
  margin-right: 10px;
  font-weight: bold;
}
.file_delete_container .delete_button:hover {
  background-color: red;
  color: white;
}

.customer_comment {
  text-align: center;
  padding: 30px;
  color: #757575;
  margin-bottom: 40px;
}

.notice_list_top_container {
  width: 100%;
  max-width: 1400px;
}
.notice_list_top_container .search_container {
  display: flex;
  width: 100%;
  justify-content: end;
  padding: 20px;
}
@media (max-width: 768px) {
  .notice_list_top_container .search_container {
    display: none;
  }
}
.notice_list_top_container .search_container .page_number {
  color: #757575;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .notice_list_top_container .search_container .page_number {
    margin-top: 20px;
  }
}
.notice_list_top_container .search_container .page_number b {
  color: #0095EB;
  font-weight: bold;
}
.notice_list_top_container .search_keyword {
  text-align: center;
  font-size: 1.8rem;
}
.notice_list_top_container .search_keyword span {
  color: #0095EB;
  font-weight: bolder;
}

.search_form_container {
  border: 1px solid black;
  padding: 4px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 30px;
}
.search_form_container input {
  padding: 0;
  border: none;
}
.search_form_container input:focus, .search_form_container input:active {
  border: none;
  outline: none;
}
.search_form_container .search_button {
  width: 30px;
  height: 30px;
  display: inline-block;
  padding: 0;
  background-color: black;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-image: url("../images/component/search.svg");
  mask-size: 80%;
  cursor: pointer;
}
.search_form_container .search_button:hover {
  background-color: #0095EB;
}

.notice_form_container {
  width: 100%;
  max-width: 1400px;
  padding: 50px 20px;
}
.notice_form_container .title {
  width: 100%;
  margin-bottom: 20px;
}

/*# sourceMappingURL=main.css.map */
