@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700");
/*반응형, 브라우저 크기가 767px 이하일때*/
.primary {
  background-color: #23789C;
  color: #DAEBF2; }

.primary--lt {
  background-color: #DAEBF2;
  color: #23789C; }

.primary--dk {
  background-color: #055475;
  color: #23789C; }

.primary_text {
  color: #23789C; }

.secondary {
  background-color: #5BBBA2;
  color: #fff; }

.secondary--lt {
  background-color: #7fcab6;
  color: black; }

.secondary--dk {
  background-color: #43a088;
  color: #fff; }

.secondary_text {
  color: #5BBBA2; }

.tertiary {
  background-color: #3EB2D2;
  color: #fff; }

.tertiary--lt {
  background-color: #67c3dc;
  color: black; }

.tertiary--dk {
  background-color: #2a96b3;
  color: #fff; }

.tertiary_text {
  color: #3EB2D2; }

.background {
  background-color: #fff;
  color: black; }

.surface {
  background-color: #ddd;
  color: black; }

.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: #212121;
  color: white; }

input[type=file]::file-selector-button {
  display: none; }

.file_upload .file_upload_label {
  padding: 5px 10px;
  border-radius: 5px;
  background-color: black;
  color: white;
  margin-right: 10px; }
  .file_upload .file_upload_label:hover {
    background-color: #23789C; }

@keyframes dashboard_icon {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

#dashboard_icon {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #23789C;
  background-repeat: no-repeat;
  mask-image: url("../img/layout/gear_icon.svg");
  animation: dashboard_icon infinite 10s linear; }
  #dashboard_icon:hover {
    animation: dashboard_icon infinite 2s linear;
    background-color: #5BBBA2; }

button, .button {
  display: block;
  height: 40px;
  width: 164px;
  text-align: center;
  line-height: 36px;
  user-select: none;
  font-size: 18px;
  border: 1px solid #B4B4B4;
  border-radius: 5px;
  background-color: white;
  color: inherit;
  text-decoration: none; }
  button:hover, .button:hover {
    background-color: black;
    border: 1px solid black;
    color: #fff; }
  button.warning:hover, .button.warning:hover {
    background-color: #b00020;
    border: 1px solid #b00020;
    color: white; }
  button.top_button, .button.top_button {
    margin-bottom: 30px; }
  button.button_black, .button.button_black {
    border: 2px solid transparent;
    background-color: black;
    border-radius: 0;
    color: white; }
    button.button_black:hover, .button.button_black:hover {
      background-color: #23789C;
      color: #DAEBF2; }

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  opacity: 0.5;
  /* Firefox */ }

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  opacity: 0.5; }

::-ms-input-placeholder {
  /* Microsoft Edge */
  opacity: 0.5; }

.form_button_container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 580px;
  margin: auto; }

.button_primary {
  border: 2px solid transparent;
  background-color: #DAEBF2;
  color: #23789C; }
  .button_primary:hover {
    background-color: #055475; }
  .button_primary.disable {
    pointer-events: none;
    background-color: gray;
    color: #E0E0E0; }

.button_secondary {
  border: 2px solid transparent;
  background-color: #5BBBA2;
  color: #fff; }
  .button_secondary:hover {
    background-color: #7fcab6;
    color: black; }

.button_tertiary {
  border: 2px solid transparent;
  background-color: #3EB2D2;
  color: #fff; }
  .button_tertiary:hover {
    background-color: #67c3dc;
    color: black; }

input[type=text], input[type=email], input[type=password], textarea {
  padding: 10px 10px;
  border-radius: 5px;
  border: 1px solid #b4b4b4;
  width: 100%;
  resize: vertical; }

button.login-button {
  width: 100%; }

.login-input {
  margin-bottom: 10px; }

input, textarea {
  margin-bottom: 40px; }
  input:focus, textarea:focus {
    outline: none; }

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

.margin_auto {
  margin-left: auto;
  margin-right: auto; }

.full-size {
  width: 100%;
  min-height: calc(100vh - 90px - 312px); }

.page_wrap {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto; }

.flex-h {
  display: flex; }

.flex-v {
  display: flex;
  flex-direction: column; }

.wrap_padding {
  padding-left: 20px;
  padding-right: 20px; }

.eng_title {
  font-family: 'roboto';
  font-size: 4rem;
  font-weight: 900; }

.modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s; }
  .modal__content {
    background-color: #fefefe;
    border-radius: 5px;
    width: 300px; }
  .modal__header {
    padding: 10px;
    color: white;
    position: relative;
    border-radius: 5px 5px 0 0;
    background-color: #333; }
  .modal__body {
    padding: 10px 16px; }
    .modal__body button {
      display: block;
      margin: auto;
      margin-top: 20px;
      margin-bottom: 10px; }

#page_top_section {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: gray;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center; }
  @media (max-width: 580px) {
    #page_top_section {
      height: 400px; } }
  #page_top_section .page_top_container {
    width: 100%;
    max-width: 1240px;
    margin: auto;
    display: flex;
    justify-content: center; }
    #page_top_section .page_top_container .page_top_text {
      width: 50%; }

.page_nav {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  background-color: transparent;
  gap: 1px; }
  .page_nav li {
    flex: 1 1;
    background-color: rgba(10, 35, 46, 0.5);
    text-decoration: none; }
    .page_nav li a {
      height: 50px;
      color: white;
      display: block;
      text-align: center;
      font-size: 1.1rem;
      font-weight: 400;
      line-height: 50px;
      white-space: nowrap;
      padding-left: 10px;
      padding-right: 10px; }
    .page_nav li:hover {
      background-color: #055475; }
      .page_nav li:hover a {
        color: white;
        font-weight: 500; }
    .page_nav li.active {
      background-color: white; }
      .page_nav li.active a {
        font-weight: 500;
        color: #23789C; }

.page_container {
  position: relative;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 140px 0 0 0; }
  @media (max-width: 580px) {
    .page_container {
      padding: 50px 0px; } }
.fullsize_container {
  background-color: #DAEBF2;
  width: 100%;
  display: flex;
  justify-content: center; }

.page_contents_container {
  width: 100%;
  max-width: 1240px;
  padding-left: 30px;
  padding-right: 30px; }
  .page_contents_container.wide {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .page_contents_container .page_title_container {
    display: flex;
    justify-content: center;
    color: #23789C;
    margin-bottom: 100px; }
    @media (max-width: 580px) {
      .page_contents_container .page_title_container {
        margin-bottom: 30px; } }
    .page_contents_container .page_title_container.business {
      justify-content: start; }
    .page_contents_container .page_title_container.company {
      justify-content: space-between; }
      .page_contents_container .page_title_container.company .greeting_page_icon {
        width: 140px; }
        @media (max-width: 580px) {
          .page_contents_container .page_title_container.company .greeting_page_icon {
            width: 100px; } }
      .page_contents_container .page_title_container.company .page_contents_title_box {
        text-align: right; }
  .page_contents_container .page_contents_title_box {
    text-align: center; }
    .page_contents_container .page_contents_title_box.gradient_title .page_contents_title {
      background: linear-gradient(270deg, #2FB7B2 14.15%, #61BD96 42.41%, #32AEE5 75.37%, #276EB7 104.81%, #2656A6 131.89%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
    .page_contents_container .page_contents_title_box .page_contents_title {
      padding-top: 15px;
      border-top: 4px solid #23789C;
      font-weight: bold;
      font-size: 2rem;
      text-align: center;
      margin-bottom: 15px;
      font-family: "IBM Plex Sans KR", sans-serif; }
    .page_contents_container .page_contents_title_box .page_contents_subtitle {
      color: #9E9E9E; }
    .page_contents_container .page_contents_title_box.secondary_title {
      color: #5BBBA2; }
      .page_contents_container .page_contents_title_box.secondary_title .page_contents_title {
        border-color: #5BBBA2; }
    .page_contents_container .page_contents_title_box.tertiary_title {
      color: #3EB2D2; }
      .page_contents_container .page_contents_title_box.tertiary_title .page_contents_title {
        border-color: #3EB2D2; }

.temporary_img {
  width: 100%;
  pointer-events: none;
  user-select: none; }

.hidden {
  display: none; }

.page_sub_menu {
  position: absolute;
  top: 2px;
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 2px; }
  .page_sub_menu li:first-of-type {
    border-radius: 0 0 0 10px; }
    @media (max-width: 580px) {
      .page_sub_menu li:first-of-type {
        border-radius: 0; } }
  .page_sub_menu li:last-of-type {
    border-radius: 0 0 10px 0; }
    @media (max-width: 580px) {
      .page_sub_menu li:last-of-type {
        border-radius: 0; } }
  .page_sub_menu .page_sub_menu_btn {
    flex: 1 1;
    background-color: #757575;
    text-decoration: none; }
    .page_sub_menu .page_sub_menu_btn a {
      height: 40px;
      color: white;
      display: block;
      text-align: center;
      font-size: 15px;
      font-weight: 400;
      line-height: 40px;
      white-space: nowrap; }
    .page_sub_menu .page_sub_menu_btn:hover {
      background-color: #424242; }
      .page_sub_menu .page_sub_menu_btn:hover a {
        color: white; }
    .page_sub_menu .page_sub_menu_btn.active {
      background-color: #424242; }
      .page_sub_menu .page_sub_menu_btn.active a {
        color: white;
        font-weight: 500; }

.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: #055475;
      color: white; }
    .pagination .page_btn img {
      height: 18px; }
      .pagination .page_btn img.flip {
        transform: scale(-1); }
    .pagination .page_btn.current {
      background-color: #23789C;
      color: white; }

.search_form_container {
  display: flex;
  padding: 5px;
  background-color: white;
  border-radius: 10px; }
  .search_form_container.border {
    border: 1px solid #969696; }
  .search_form_container img {
    margin-left: 10px;
    width: 24px; }
  .search_form_container input {
    padding: 0;
    margin: 0 15px 0 15px;
    border: none;
    border-radius: 0; }
  .search_form_container button {
    width: 70px;
    color: #757575;
    border: none; }
    .search_form_container button:hover {
      color: #23789C;
      font-weight: bold;
      background-color: white; }
  .search_form_container.right {
    width: 280px;
    margin-left: auto; }
    @media (max-width: 580px) {
      .search_form_container.right {
        width: 100%; } }
    .search_form_container.right button {
      width: 100px; }

.gallery_list_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; }
  @media (max-width: 580px) {
    .gallery_list_container {
      grid-template-columns: 1fr 1fr;
      gap: 10px; } }
  .gallery_list_container .gallery_item_container .gallery_item {
    text-decoration: none;
    color: inherit; }
    .gallery_list_container .gallery_item_container .gallery_item img {
      width: 100%;
      border: 1px solid #E0E0E0; }
    .gallery_list_container .gallery_item_container .gallery_item h3 {
      font-size: 18px;
      font-weight: 500;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; }
      @media (max-width: 580px) {
        .gallery_list_container .gallery_item_container .gallery_item h3 {
          font-size: 14px; } }
    .gallery_list_container .gallery_item_container .gallery_item .gallery_item_desc {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden; }
  .gallery_list_container .gallery_item_container .button {
    margin-left: auto;
    margin-top: 15px;
    width: 80px; }

.breadcrumbs {
  font-size: 18px;
  color: #b4b4b4;
  margin-bottom: 20px; }
  .breadcrumbs a {
    color: inherit; }
    .breadcrumbs a:hover {
      color: black; }

table {
  border-collapse: collapse;
  border-top: 2px solid #e6e6e6;
  width: 100%;
  margin: 0; }
  @media (max-width: 580px) {
    table {
      font-size: 14px; } }
  table tr {
    margin: 0;
    border-bottom: 1px solid #e6e6e6; }
    table tr .column_head {
      margin: 0;
      padding: 10px 20px;
      width: 160px;
      font-weight: 500;
      background-color: #e6e6e6; }
    table tr td {
      font-weight: 400;
      padding: 10px 20px;
      color: #505050; }

.input_rows {
  display: flex;
  align-items: center;
  margin-bottom: 36px; }
  .input_rows span {
    width: 140px;
    margin-right: 10px; }
  .input_rows input {
    margin: 0; }

.delete_background {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center; }
  .delete_background .delete_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center; }
  .delete_background .delete_text {
    text-align: center;
    margin-bottom: 15px; }
  .delete_background .delete_btn_box {
    display: flex;
    gap: 30px; }

.image_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  grid-column-start: auto;
  align-content: start; }
  .image_grid .image_grid_item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    font-weight: bold;
    text-align: center;
    background-color: #B9B9B9;
    color: white;
    user-select: none; }
    .image_grid .image_grid_item .img_input_preview {
      border: 1px solid #9E9E9E;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background-image: url("../img/img_input.jpg");
      background-size: cover;
      background-position: center; }
    .image_grid .image_grid_item .img_input_label {
      width: 100%;
      height: 100%;
      z-index: 10;
      background-image: url("../img/img_input_hover.jpg");
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: .3s all; }
      .image_grid .image_grid_item .img_input_label:hover {
        opacity: .5; }
    .image_grid .image_grid_item .delete_btn, .image_grid .image_grid_item .cancel_btn {
      top: 5px;
      right: 5px;
      border-radius: 5px;
      position: absolute;
      display: none;
      width: 20px;
      height: 20px;
      background-color: #E0E0E0;
      background-image: url(../img/cross.svg);
      z-index: 100; }
    .image_grid .image_grid_item.active .delete_btn {
      display: block; }
      .image_grid .image_grid_item.active .delete_btn:hover {
        background-color: red; }
    .image_grid .image_grid_item.cancel_active .cancel_btn {
      display: block; }
      .image_grid .image_grid_item.cancel_active .cancel_btn:hover {
        background-color: #b00020; }
    .image_grid .image_grid_item .cancel_btn {
      background-color: red; }

.file_download {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid #BDBDBD; }
  .file_download p {
    font-weight: bold;
    margin-right: 8px; }
  .file_download .download_obj {
    color: black;
    display: flex;
    align-items: center; }
  .file_download .download_btn {
    width: 20px;
    height: 20px;
    margin-right: 15px; }

#popup-container {
  background-color: white;
  position: fixed;
  z-index: 6000;
  left: 10%;
  top: 10%;
  border: 1px solid #616161;
  box-shadow: 5px 5px 10px 0 #424242;
  width: fit-content;
  height: fit-content; }
  #popup-container .popup_banner_footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
    background-color: white; }
    #popup-container .popup_banner_footer input {
      margin: 0;
      margin-right: 10px; }
    #popup-container .popup_banner_footer #popup-close-button {
      margin-left: 20px;
      border: none;
      padding: 0;
      width: auto;
      border-radius: none;
      user-select: none;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer; }

@media (max-width: 580px) {
  .mobile_hide {
    display: none; } }

.no_pointer {
  pointer-events: none;
  user-select: none; }

.gradient {
  background: linear-gradient(270deg, #2FB7B2 0.06%, #61BD96 23.44%, #32AEE5 50.73%, #276EB7 75.09%, #2656A6 97.5%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

#design_system .color_row {
  display: flex; }
  #design_system .color_row.small {
    gap: 20px; }

#design_system .color_chart {
  display: flex;
  gap: 10px; }
  #design_system .color_chart div {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center; }

#design_system .color_chip {
  position: relative;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }

#design_system .color_name {
  position: absolute;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  top: 0;
  display: inline-block;
  width: 100%;
  padding: 6px;
  font-weight: bold; }

#design_system .on_color_name {
  display: inline-block;
  padding: 6px;
  font-weight: bold; }

.accounts_box {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px; }
  .accounts_box h1 {
    font-size: 2rem; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font: inherit;
  word-break: keep-all; }

html {
  font-size: 16px;
  font-family: "Noto Sans KR", sans-serif; }
  @media (max-width: 580px) {
    html {
      font-size: 12px; } }
body {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  scroll-behavior: smooth; }
  body.no_scroll {
    overflow: hidden; }

.admin_container {
  width: 100%; }
  .admin_container .admin_header_margin {
    height: 90px; }
  .admin_container #main {
    width: 100%;
    max-width: 1240px;
    margin: auto; }
  .admin_container .admin_group {
    color: white;
    font-weight: bolder;
    background-color: #23789C; }
  .admin_container input[type=file]::file-selector-button {
    display: initial; }
  .admin_container a {
    box-sizing: initial; }
  .admin_container button, .admin_container .button {
    display: initial; }

b {
  font-weight: bold; }

.header {
  position: fixed;
  display: flex;
  width: 100%;
  background-color: white;
  height: 90px;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  transition: .5s all; }
  .header.backgroundColor {
    background-color: rgba(255, 255, 255, 0.8); }
  .header .nav {
    display: flex;
    width: 100%;
    max-width: 1240px;
    align-items: center;
    justify-content: space-between;
    height: 100%; }
    .header .nav .nav__logo-box {
      display: flex;
      align-items: center; }
      .header .nav .nav__logo-box #nav_logo {
        height: 44px; }
    .header .nav .nav__menu-box {
      display: flex;
      flex-direction: row;
      gap: 80px;
      height: 100%;
      position: relative; }
      @media (max-width: 960px) {
        .header .nav .nav__menu-box {
          display: none;
          position: fixed;
          top: 90px;
          left: 0;
          bottom: 0;
          flex-direction: column;
          width: 100%;
          background-color: white;
          gap: 5px;
          justify-content: flex-start; }
          .header .nav .nav__menu-box.active {
            display: flex; } }
      .header .nav .nav__menu-box .nav__menu-item {
        height: 100%;
        display: block;
        position: relative;
        transition: .3s all; }
        @media (max-width: 960px) {
          .header .nav .nav__menu-box .nav__menu-item {
            background-color: white;
            overflow: hidden;
            height: 66px; }
            .header .nav .nav__menu-box .nav__menu-item.show_sub {
              height: 100%; } }
        .header .nav .nav__menu-box .nav__menu-item:hover .nav__menu-text {
          color: #23789C; }
        .header .nav .nav__menu-box .nav__menu-item:hover .nav_sub_btn_box {
          visibility: visible;
          opacity: 1;
          transform: translateY(0px); }
        .header .nav .nav__menu-box .nav__menu-item .mobile_submenu_btn {
          display: none;
          position: absolute;
          top: 20px;
          right: 24px;
          width: 24px;
          height: 24px; }
          .header .nav .nav__menu-box .nav__menu-item .mobile_submenu_btn:hover::before {
            border-right: 2px solid #23789C; }
          .header .nav .nav__menu-box .nav__menu-item .mobile_submenu_btn:hover::after {
            border-bottom: 2px solid #23789C; }
          @media (max-width: 960px) {
            .header .nav .nav__menu-box .nav__menu-item .mobile_submenu_btn {
              display: block; } }
          .header .nav .nav__menu-box .nav__menu-item .mobile_submenu_btn::before {
            content: '';
            display: block;
            position: absolute;
            width: 11px;
            height: 100%;
            border-right: 2px solid #BDBDBD;
            transition: .3s all; }
          .header .nav .nav__menu-box .nav__menu-item .mobile_submenu_btn.open::before {
            transform: rotate(90deg) translate(1px, 1px);
            transform-origin: right center; }
          .header .nav .nav__menu-box .nav__menu-item .mobile_submenu_btn::after {
            content: '';
            display: block;
            position: absolute;
            width: 100%;
            height: 11px;
            border-bottom: 2px solid #BDBDBD; }
        .header .nav .nav__menu-box .nav__menu-item .nav_sub_btn_box {
          visibility: hidden;
          opacity: 0;
          position: absolute;
          transition: 0.3s all;
          text-align: center;
          width: 150px;
          left: calc((100% - 150px) / 2);
          transform: translateY(5px); }
          @media (max-width: 960px) {
            .header .nav .nav__menu-box .nav__menu-item .nav_sub_btn_box {
              transform: translateY(0px);
              position: relative;
              visibility: visible;
              opacity: 1;
              left: 0;
              width: 100%;
              padding: 0; } }
          .header .nav .nav__menu-box .nav__menu-item .nav_sub_btn_box a {
            position: relative;
            font-size: 14px;
            display: block;
            padding: 10px 0px;
            color: #23789C;
            background-color: #DAEBF2;
            border-bottom: 1px solid white; }
            .header .nav .nav__menu-box .nav__menu-item .nav_sub_btn_box a:hover {
              background-color: #055475;
              color: white; }
            .header .nav .nav__menu-box .nav__menu-item .nav_sub_btn_box a:active {
              background-color: #23789C;
              color: white; }
      .header .nav .nav__menu-box .nav__menu-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 90px; }
        @media (max-width: 960px) {
          .header .nav .nav__menu-box .nav__menu-btn {
            padding: 0; } }
        .header .nav .nav__menu-box .nav__menu-btn::after {
          content: '';
          visibility: hidden;
          opacity: 0;
          transition: 0.2s all;
          left: calc((100% - 80px) / 2);
          bottom: 0;
          position: absolute;
          display: inline-block;
          width: 0;
          height: 3px;
          background-color: #23789C; }
        .header .nav .nav__menu-box .nav__menu-btn .nav__menu-text {
          color: #23789C;
          font-weight: 400;
          font-size: 1.2rem;
          text-decoration: none;
          text-align: center; }
          @media (max-width: 960px) {
            .header .nav .nav__menu-box .nav__menu-btn .nav__menu-text {
              color: black;
              padding: 20px; } }
          .header .nav .nav__menu-box .nav__menu-btn .nav__menu-text_sub {
            text-decoration: none;
            color: #23789C;
            font-size: 14px; }
            @media (max-width: 960px) {
              .header .nav .nav__menu-box .nav__menu-btn .nav__menu-text_sub {
                display: none; } }
        .header .nav .nav__menu-box .nav__menu-btn.activate::after, .header .nav .nav__menu-box .nav__menu-btn:hover::after {
          visibility: visible;
          opacity: 1;
          width: 80px;
          margin: auto; }
    .header .nav .nav__etc-box {
      display: flex;
      flex-direction: row;
      justify-content: end;
      gap: 10px; }
      @media (max-width: 960px) {
        .header .nav .nav__etc-box {
          flex: 1 1 100%; } }
.mobile-menu__btn {
  display: none;
  margin-left: 0px; }
  @media (max-width: 960px) {
    .mobile-menu__btn {
      display: block;
      margin-left: 30px; } }
  .mobile-menu__btn .menu-button-container {
    height: 26px;
    width: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer; }
  .mobile-menu__btn #menu-toggle {
    display: none; }
  .mobile-menu__btn .menu-button {
    display: block;
    background-color: #23789C;
    height: 2px;
    width: 28px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px; }
  .mobile-menu__btn #menu-toggle:checked + .menu-button-container .menu-button--1 {
    transform: translateY(12px) rotate(135deg); }
  .mobile-menu__btn #menu-toggle:checked + .menu-button-container .menu-button--2 {
    transform: scale(0.1); }
  .mobile-menu__btn #menu-toggle:checked + .menu-button-container .menu-button--3 {
    transform: translateY(-12px) rotate(-135deg); }

.contents_container {
  width: 100%;
  min-height: calc(100vh - 312px); }

.footer {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 312px;
  background-color: white;
  padding: 10px; }
  .footer .footer_contents {
    padding-top: 40px;
    width: 100%;
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    gap: 20px; }
    .footer .footer_contents .footer_logo {
      width: fit-content; }
      .footer .footer_contents .footer_logo .footer_logo_file {
        width: 200px; }
    @media (max-width: 960px) {
      .footer .footer_contents {
        padding-left: 20px;
        padding-right: 20px; } }
    .footer .footer_contents .company_tell {
      font-size: 1.8rem;
      color: #757575;
      font-weight: bolder; }
    .footer .footer_contents .footer_company_info {
      color: #424242; }
      .footer .footer_contents .footer_company_info .company_info {
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 10px;
        line-height: 1.8rem; }
      .footer .footer_contents .footer_company_info .copyright {
        font-size: .8rem; }

.top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  transform-origin: center;
  transition: .3s all;
  opacity: .8; }
  .top-btn img {
    width: 50px; }
  .top-btn:hover {
    transform: scale(1.1);
    opacity: 1; }

#log_out_btn {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #9E9E9E;
  mask-image: url("../img/log_out.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center; }
  #log_out_btn:hover {
    background-color: #23789C; }

.sns_container {
  position: fixed;
  right: 20px;
  bottom: 50%;
  display: flex;
  transform: translateY(50%);
  flex-direction: column;
  gap: 20px;
  z-index: 500; }
  @media (max-width: 580px) {
    .sns_container {
      bottom: 120px;
      transform: translateX(0); } }
  .sns_container .sns_button {
    display: flex;
    transform-origin: center;
    transition: .3s all;
    width: 70px;
    height: 70px;
    background-color: white;
    box-shadow: 2px 2px 4px #9E9E9E;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 8px; }
    @media (max-width: 580px) {
      .sns_container .sns_button {
        width: 50px;
        height: 50px; } }
    .sns_container .sns_button.contact {
      background-color: #23789C; }
    .sns_container .sns_button img {
      width: 100%; }
    .sns_container .sns_button:hover {
      transform: scale(1.1); }

.index_bottom_container {
  display: flex;
  justify-content: center; }
  .index_bottom_container .index_bottom_box {
    padding: 30px 20px;
    background-color: red;
    width: 100%;
    max-width: 1240px; }

.main_video_container {
  padding-top: 90px;
  display: flex;
  justify-content: center; }
  .main_video_container .video-wrap {
    width: 100%;
    max-width: 100%;
    /* 부모 요소의 너비에 맞춤 */
    margin: 0 auto; }
    .main_video_container .video-wrap .video-frame-box {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      /* 16:9 비율 유지 (9 / 16 = 0.5625) */
      height: 0;
      overflow: hidden; }
    .main_video_container .video-wrap .video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0; }
  .main_video_container #player > div.vp-player-ui-overlays.content-area-sibling-enabled {
    display: none !important; }
  .main_video_container .video-wrap iframe,
  .main_video_container .video-wrap object,
  .main_video_container .video-wrap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .main_video_container .main_video {
    width: 100%;
    max-height: 85vh;
    object-fit: cover;
    margin: auto; }

.image_slider_container {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  background-color: white;
  flex-direction: column;
  padding: 30px 0;
  margin: 0 auto; }
  .image_slider_container .image_slider_box {
    display: flex;
    width: 100%; }
    .image_slider_container .image_slider_box .image_slider {
      display: flex; }
      .image_slider_container .image_slider_box .image_slider .img_box {
        display: block;
        transition: .2s all;
        overflow: hidden;
        padding: 0 30px; }
        .image_slider_container .image_slider_box .image_slider .img_box:hover {
          transform: scale(1.1);
          z-index: 10; }
        .image_slider_container .image_slider_box .image_slider .img_box img {
          display: block;
          height: 30px; }

#page_top_section.company {
  background-image: url("../img/company/company_top.jpg");
  background-position: center; }

.company_contents.greeting {
  display: flex;
  justify-content: space-between; }
  @media (max-width: 580px) {
    .company_contents.greeting {
      flex-direction: column; } }
  .company_contents.greeting .left {
    width: 230px; }
    @media (max-width: 580px) {
      .company_contents.greeting .left {
        width: 100%;
        margin-bottom: 50px; } }
    .company_contents.greeting .left img {
      width: 160px;
      margin-bottom: 50px; }
    .company_contents.greeting .left .title {
      color: #23789C;
      font-size: 2.6rem;
      font-weight: bold;
      margin-bottom: 30px; }
    .company_contents.greeting .left .sub {
      color: #23789C;
      font-size: 1.5rem;
      font-family: "IBM Plex Sans KR", sans-serif;
      font-weight: bolder; }
  .company_contents.greeting .right {
    width: 600px; }
    @media (max-width: 580px) {
      .company_contents.greeting .right {
        width: 100%; } }
    .company_contents.greeting .right .main {
      font-size: 1.5rem;
      line-height: 1.65em;
      margin-bottom: 30px; }
    .company_contents.greeting .right .sub {
      font-family: "IBM Plex Sans KR", sans-serif;
      font-size: 1.2rem;
      line-height: 1.65em; }

.greeting_bottom_image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  margin-top: 100px; }

.company_history_container .history_list {
  max-width: 800px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 260px 140px 1fr;
  position: relative; }
  @media (max-width: 580px) {
    .company_history_container .history_list {
      grid-template-columns: 1fr .6fr 2fr;
      gap: 10px; } }
  .company_history_container .history_list .items {
    display: flex;
    height: 80px;
    align-items: center; }
    @media (max-width: 580px) {
      .company_history_container .history_list .items {
        height: 40px; } }
    .company_history_container .history_list .items:last-of-type {
      margin-bottom: 30px; }
  .company_history_container .history_list .year {
    font-weight: bolder;
    font-size: 3rem;
    color: #23789C; }
    @media (max-width: 580px) {
      .company_history_container .history_list .year {
        font-size: 2rem; } }
    .company_history_container .history_list .year .year_dot {
      height: 31px;
      width: 31px;
      background-color: #DAEBF2;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      margin-right: 24px; }
      @media (max-width: 580px) {
        .company_history_container .history_list .year .year_dot {
          display: none;
          width: fit-content; } }
      .company_history_container .history_list .year .year_dot span {
        width: 13px;
        height: 13px;
        display: block;
        background-color: #055475;
        border-radius: 50%; }
      .company_history_container .history_list .year .year_dot:after {
        content: "";
        width: 1px;
        height: 100%;
        background-color: #055475;
        position: absolute;
        top: 40px; }
  .company_history_container .history_list .month {
    font-weight: bolder;
    color: #23789C;
    font-size: 1.5rem; }
    .company_history_container .history_list .month .month_dot {
      position: inherit;
      height: 9px;
      width: 9px;
      background-color: #23789C;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      margin-right: 24px;
      z-index: 10; }
      @media (max-width: 580px) {
        .company_history_container .history_list .month .month_dot {
          display: none; } }
      .company_history_container .history_list .month .month_dot:before {
        content: "";
        width: 1px;
        background-color: #23789C;
        position: absolute;
        top: 40px;
        height: 100%;
        z-index: 1; }
  .company_history_container .history_list .desc {
    color: #757575;
    font-size: 1.2rem; }
    .company_history_container .history_list .desc .desc_dot {
      height: 7px;
      width: 7px;
      background-color: #DAEBF2;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      margin-right: 24px; }
      @media (max-width: 580px) {
        .company_history_container .history_list .desc .desc_dot {
          display: none;
          width: fit-content; } }
      .company_history_container .history_list .desc .desc_dot:before {
        content: "";
        width: 1px;
        height: 100%;
        background-color: #DAEBF2;
        position: absolute;
        top: 40px; }

.cert_container {
  width: 100%; }
  .cert_container .cert_wrap {
    display: flex;
    justify-content: center; }
    .cert_container .cert_wrap:nth-child(2n) {
      background-color: #F5F5F5; }
  .cert_container .cert_box {
    width: 100%;
    max-width: 1240px;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .cert_container .cert_box .title {
      text-align: center;
      font-size: 1.2rem;
      font-weight: bolder;
      border-bottom: 1px solid black;
      width: fit-content;
      margin-bottom: 40px; }
    .cert_container .cert_box .cert_list {
      display: flex;
      justify-content: center;
      width: 100%;
      gap: 3%;
      flex-wrap: wrap; }
      .cert_container .cert_box .cert_list .item {
        width: 28%;
        text-align: center;
        margin-bottom: 5%; }
        .cert_container .cert_box .cert_list .item.single {
          width: 40%; }
        .cert_container .cert_box .cert_list .item img {
          width: 100%;
          border: 1px solid #BDBDBD; }
        .cert_container .cert_box .cert_list .item .cert_title_en {
          font-size: .8rem;
          color: #757575; }

.map_container {
  width: 100%;
  max-width: 1240px;
  margin-bottom: 40px; }
  .map_container .map {
    width: 100%;
    max-width: 100%;
    height: 600px; }

.address_container {
  display: flex;
  justify-content: center;
  padding: 30px; }
  .address_container .address_box {
    width: 100%;
    max-width: 1240px;
    display: flex;
    flex-wrap: wrap; }
    .address_container .address_box .address_title {
      font-size: 2rem;
      font-weight: bold;
      margin-right: 50px;
      padding-bottom: 50px; }
    .address_container .address_box .address_data_box {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 10px 0; }
      @media (max-width: 580px) {
        .address_container .address_box .address_data_box {
          grid-template-columns: 70px 1fr; } }
      .address_container .address_box .address_data_box .header_column {
        color: #23789C;
        font-weight: bolder;
        border-bottom: 2px solid #23789C;
        padding: 10px; }
      .address_container .address_box .address_data_box .address_info {
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #757575;
        border-bottom: 1px solid #E0E0E0; }
        .address_container .address_box .address_data_box .address_info p {
          cursor: pointer;
          white-space: wrap; }
        .address_container .address_box .address_data_box .address_info .info_copy:after {
          content: "COPY";
          color: #23789C;
          border: 1px solid #23789C;
          border-radius: 2px;
          padding: 1px 5px;
          font-size: 12px;
          margin-left: 5px;
          opacity: 0;
          transition: all .2s; }
          @media (max-width: 580px) {
            .address_container .address_box .address_data_box .address_info .info_copy:after {
              font-size: 9px; } }
        .address_container .address_box .address_data_box .address_info .info_copy:hover {
          color: #23789C; }
          .address_container .address_box .address_data_box .address_info .info_copy:hover:after {
            opacity: 1; }

.business_generation .top_row {
  display: grid;
  grid-template-columns: 1fr 1.2fr; }
  .business_generation .top_row .left {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "IBM Plex Sans KR", sans-serif; }
    .business_generation .top_row .left p {
      width: fit-content; }
  .business_generation .top_row .right {
    font-size: 1.4rem;
    color: #757575; }

.business_structures .top_row {
  font-size: 3rem;
  font-weight: 700;
  font-family: "IBM Plex Sans KR", sans-serif;
  text-align: center; }

.business_finance .top_row .first_box {
  background: #F3F3F3;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px; }
  @media (max-width: 580px) {
    .business_finance .top_row .first_box {
      padding: 15px; } }
  .business_finance .top_row .first_box .title {
    font-size: 2rem;
    color: #23789C;
    font-weight: bolder;
    padding-right: 30px;
    border-right: 3px solid #23789C;
    margin-right: 30px; }
    @media (max-width: 580px) {
      .business_finance .top_row .first_box .title {
        border-right: none;
        margin-bottom: 10px; } }
  .business_finance .top_row .first_box .desc {
    font-size: 1.5rem;
    white-space: wrap;
    color: #757575;
    flex: 1;
    min-width: 380px; }
    @media (max-width: 580px) {
      .business_finance .top_row .first_box .desc {
        min-width: auto; } }
.business_finance .top_row .second_box {
  background: rgba(231, 255, 76, 0.66);
  padding: 40px;
  text-align: center;
  font-size: 1.5rem;
  color: #757575;
  font-family: "IBM Plex Sans KR", sans-serif; }
  .business_finance .top_row .second_box .impact {
    font-size: 2rem;
    border-bottom: 2px solid #23789C; }

#page_top_section {
  background-position: center; }
  #page_top_section.area, #page_top_section.generation {
    background-image: url("../img/business/business_0.jpg"); }
  #page_top_section.structures {
    background-image: url("../img/business/business_1.jpg"); }
  #page_top_section.finance {
    background-image: url("../img/business/business_2.jpg"); }

#page_top_section {
  background-position: center; }
  #page_top_section.module {
    background-image: url("../img/product/product_0.jpg"); }
  #page_top_section.inverter {
    background-image: url("../img/product/product_1.jpg"); }
  #page_top_section.aluminum, #page_top_section.special {
    background-image: url("../img/product/product_2.jpg"); }

.product_module {
  padding-top: 120px;
  padding-bottom: 120px; }
  .product_module.background {
    background: linear-gradient(180deg, rgba(47, 183, 178, 0.3) -33.12%, rgba(97, 189, 150, 0.3) 36.33%, rgba(50, 174, 229, 0.3) 117.35%, rgba(39, 110, 183, 0.3) 189.69%, rgba(38, 86, 166, 0.3) 256.25%); }
  .product_module .module_title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 3rem; }

.product_grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  width: 100%;
  max-width: 1240px;
  flex-wrap: wrap; }
  .product_grid .product_item_box {
    position: relative;
    display: block;
    width: 30%;
    margin-bottom: 5rem;
    box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.4); }
    .product_grid .product_item_box:hover:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, rgba(47, 183, 178, 0.8) -83.79%, rgba(97, 189, 150, 0.8) -21.49%, rgba(50, 174, 229, 0.8) 51.19%, rgba(39, 110, 183, 0.8) 116.09%, rgba(38, 86, 166, 0.8) 175.79%); }
    .product_grid .product_item_box .img_box {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      height: 200px;
      background-color: white; }
      @media (max-width: 580px) {
        .product_grid .product_item_box .img_box {
          height: 100px; } }
      .product_grid .product_item_box .img_box img {
        width: 70%; }
    .product_grid .product_item_box .text_box {
      display: flex;
      padding: 20px;
      justify-content: center;
      align-items: center;
      background-color: #99DDDB;
      margin: 0;
      color: #424242;
      font-size: 1rem;
      text-align: center; }
      .product_grid .product_item_box .text_box.inverter {
        background-color: #E0E0E0; }
      .product_grid .product_item_box .text_box .download_btn {
        display: inline-block;
        width: 1.2rem;
        height: 1.2rem;
        mask-image: url("../img/file_download.svg");
        mask-position: center;
        mask-size: contain;
        mask-repeat: no-repeat;
        background-color: #616161;
        margin-left: 15px; }
        @media (max-width: 580px) {
          .product_grid .product_item_box .text_box .download_btn {
            display: none; } }
.video_box {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 8rem auto; }
  .video_box .video_title_box {
    margin-bottom: 1rem; }
    .video_box .video_title_box .video_title {
      border-left: 5px solid #23789C;
      padding-left: 10px;
      font-size: 2rem;
      font-family: "IBM Plex Sans KR", sans-serif;
      font-weight: bolder;
      color: #23789C;
      margin-bottom: 1rem; }
      .video_box .video_title_box .video_title .desc {
        font-size: 1.2rem;
        padding-left: 15px;
        color: #757575; }
      .video_box .video_title_box .video_title .en {
        font-size: 1.5rem; }
    .video_box .video_title_box .video_desc {
      padding-left: 15px;
      color: #757575; }
  .video_box .video-wrap {
    width: 100%;
    max-width: 100%;
    /* 부모 요소의 너비에 맞춤 */
    margin: 0 auto; }
    .video_box .video-wrap .video-frame-box {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      /* 16:9 비율 유지 (9 / 16 = 0.5625) */
      height: 0;
      overflow: hidden; }
    .video_box .video-wrap .video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
      transition: .2s all; }
      .video_box .video-wrap .video:hover {
        transform: scale(1.05); }

#page_top_section.installation {
  background-position: center;
  background-image: url("../img/installation/installation_top.jpg"); }

.installation_list_container .post_gallery_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; }
  @media (max-width: 580px) {
    .installation_list_container .post_gallery_container {
      grid-template-columns: 1fr 1fr; } }
  .installation_list_container .post_gallery_container .post_box {
    width: 100%;
    position: relative;
    transition: .2s all;
    opacity: .9; }
    .installation_list_container .post_gallery_container .post_box:hover {
      opacity: 1; }
      .installation_list_container .post_gallery_container .post_box:hover .title {
        color: #23789C; }
      .installation_list_container .post_gallery_container .post_box:hover .img_wrapper img {
        transform: scale(1.05); }
    .installation_list_container .post_gallery_container .post_box .title {
      text-align: center;
      font-size: 1.2rem;
      color: #757575; }
    .installation_list_container .post_gallery_container .post_box .img_wrapper {
      position: relative;
      width: 100%;
      padding-top: 100%;
      margin: 0;
      display: flex;
      align-items: center;
      overflow: hidden;
      background-color: #424242; }
    .installation_list_container .post_gallery_container .post_box img {
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .3s all;
      opacity: .7;
      transform-origin: center; }

#page_top_section.notice {
  background-image: url("../img/contact/contact_top.jpg"); }

#page_top_section.email {
  background-image: url("../img/contact/contact_email_top.jpg"); }

#page_top_section:after {
  content: ''; }

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

.file_size {
  margin-bottom: 20px; }

.empty_list {
  display: flex;
  align-items: center;
  height: 30vh;
  width: 100%;
  justify-content: center; }
  .empty_list.bottom_line {
    border-bottom: 1px solid black; }

.post_list_table {
  display: table;
  width: 100%;
  margin-bottom: 30px;
  border-top: 2px solid black; }
  @media (max-width: 580px) {
    .post_list_table {
      display: block; } }
  .post_list_table .table_row {
    display: table-row; }
    @media (max-width: 580px) {
      .post_list_table .table_row {
        display: grid;
        grid-template-columns: 70px 1fr 100px 70px;
        grid-template-rows: 1fr 1fr;
        border-bottom: 1px solid black; } }
    .post_list_table .table_row.table_head {
      font-weight: bold;
      text-align: center; }
      @media (max-width: 580px) {
        .post_list_table .table_row.table_head {
          display: none; } }
  .post_list_table .table_cell {
    display: table-cell;
    padding: 30px 15px 30px 15px;
    color: black;
    border-bottom: 1px solid black; }
    @media (max-width: 580px) {
      .post_list_table .table_cell {
        display: block;
        border-bottom: none;
        padding: 5px; } }
  .post_list_table .num {
    width: 120px;
    text-align: center; }
    @media (max-width: 580px) {
      .post_list_table .num {
        grid-column: 1;
        grid-row: 1/3;
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center; } }
  .post_list_table .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    @media (max-width: 580px) {
      .post_list_table .title {
        grid-column-start: 2;
        grid-column-end: 5;
        display: flex;
        width: auto;
        align-items: center; } }
    .post_list_table .title .list_download_btn {
      display: inline-block;
      width: 14px;
      height: 14px;
      margin-left: 10px;
      background-color: black;
      mask-image: url("../img/file_download.svg");
      mask-size: contain;
      mask-position: center;
      mask-repeat: no-repeat; }
  .post_list_table .user {
    text-align: center; }
    @media (max-width: 580px) {
      .post_list_table .user {
        text-align: right;
        grid-column-start: 3;
        grid-column-end: 4; } }
  .post_list_table .date {
    width: 160px;
    text-align: center; }
    @media (max-width: 580px) {
      .post_list_table .date {
        width: auto;
        text-align: right;
        grid-column-start: 4;
        grid-column-end: 5; } }
  .post_list_table a:hover {
    background-color: #EEEEEE; }

.notice_detail_container {
  margin-bottom: 20px; }
  .notice_detail_container .notice_title {
    font-size: 1.5rem;
    padding: 20px;
    padding-bottom: 10px;
    color: black;
    font-weight: bold; }
    @media (max-width: 580px) {
      .notice_detail_container .notice_title {
        font-size: 16px;
        padding: 10px; } }
  .notice_detail_container .notice_title_info {
    font-size: 18px;
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    border-bottom: 2px solid #23789C;
    color: #757575; }
    @media (max-width: 580px) {
      .notice_detail_container .notice_title_info {
        font-size: 14px;
        padding: 10px; } }
    .notice_detail_container .notice_title_info .writer {
      display: flex;
      align-items: center; }
  .notice_detail_container .notice_desc {
    padding: 50px 20px;
    border-bottom: 1px solid black; }

.notice_file_upload {
  margin-top: 20px; }

.detail_page_navigation {
  width: 100%;
  margin-bottom: 30px; }
  @media (max-width: 580px) {
    .detail_page_navigation {
      font-size: 12px; } }
  .detail_page_navigation .page_row {
    display: flex;
    width: 100%;
    padding: 10px;
    color: #757575;
    border-bottom: 1px solid #BDBDBD; }
    .detail_page_navigation .page_row:first-child {
      border-top: 1px solid #BDBDBD; }
    .detail_page_navigation .page_row:hover {
      background-color: #F5F5F5; }
    .detail_page_navigation .page_row div {
      padding: 10px; }
    .detail_page_navigation .page_row .page_label {
      width: 130px;
      text-align: center; }
      .detail_page_navigation .page_row .page_label img {
        width: 16px;
        margin-right: 10px; }
      @media (max-width: 580px) {
        .detail_page_navigation .page_row .page_label {
          width: 60px; } }
    .detail_page_navigation .page_row .page_title {
      flex-grow: 1; }
    .detail_page_navigation .page_row .page_date {
      width: 150px;
      text-align: center; }
      @media (max-width: 580px) {
        .detail_page_navigation .page_row .page_date {
          width: 100px; } }
.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; }

.mail_send_form .mail_title {
  font-size: 1.5rem;
  font-weight: bold;
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #757575;
  color: #424242; }

.mail_send_form .mail_info_box .input_obj .text_label {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: bolder; }

.mail_send_form .file_upload_label {
  white-space: nowrap; }

.mail_send_form .info_agree h4 {
  font-size: 18px;
  margin-bottom: 10px; }

.mail_send_form .info_agree .info_desc {
  border: 1px solid #e3e3e3;
  padding: 15px;
  margin-bottom: 10px;
  height: 200px;
  overflow: scroll;
  overflow-x: auto; }
  .mail_send_form .info_agree .info_desc p {
    line-height: 1.6rem;
    margin-bottom: 20px; }

.mail_send_form .info_agree .info_agree_check {
  text-align: right;
  margin-right: 20px; }

.mail_send_form .button_primary {
  border: none; }

.notice_list_top_container {
  display: flex;
  margin-bottom: 30px; }
  @media (max-width: 580px) {
    .notice_list_top_container {
      flex-direction: column-reverse;
      margin-bottom: 15px; } }
  .notice_list_top_container .page_number {
    color: #757575;
    display: flex;
    align-items: flex-end; }
    @media (max-width: 580px) {
      .notice_list_top_container .page_number {
        margin-top: 20px; } }
    .notice_list_top_container .page_number b {
      color: #23789C;
      font-weight: bold; }

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