@charset "UTF-8";
/*반응형, 브라우저 크기가 767px 이하일때*/
@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=Roboto:wght@100;300;400;500;700;900&display=swap");
.primary {
  background-color: #35A0E9;
  color: #fff; }

.primary--lt {
  background-color: #91cbf3;
  color: #fff; }

.primary--dk {
  background-color: #1787d4;
  color: #fff; }

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

.secondary--lt {
  background-color: #0baa60;
  color: black; }

.secondary--dk {
  background-color: #054a2a;
  color: #fff; }

.tertiary {
  background-color: #f0a822;
  color: #fff; }

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

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

.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: #35A0E9; }

button, .button {
  display: block;
  height: 40px;
  width: 164px;
  text-align: center;
  line-height: 36px;
  user-select: none;
  border: 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: #35A0E9;
      color: #fff; }

::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: #35A0E9;
  color: #fff; }
  .button_primary:hover {
    background-color: #91cbf3;
    color: #fff; }

.button_secondary {
  border: 2px solid transparent;
  background-color: #087a45;
  color: #fff; }
  .button_secondary:hover {
    background-color: #0baa60;
    color: black; }

.button_tertiary {
  border: 2px solid transparent;
  background-color: #f0a822;
  color: #fff; }
  .button_tertiary:hover {
    background-color: #f3bb52;
    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 - 80px - 120px); }

.page_wrap {
  max-width: 1180px;
  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: 577px;
  background-color: gray;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center; }
  #page_top_section:after {
    content: '';
    background-color: black;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    mix-blend-mode: multiply;
    opacity: 0;
    z-index: 0; }
  #page_top_section .page_top_container {
    width: 100%;
    max-width: 1180px;
    margin: auto;
    display: flex;
    justify-content: end; }
  #page_top_section .page_top {
    display: inline-block;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: end;
    max-width: 1180px;
    flex-direction: column;
    z-index: 1;
    background-color: #35A0E9;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5); }
    #page_top_section .page_top img {
      display: block;
      width: 240px;
      padding-bottom: 20px;
      border-bottom: 1px solid white;
      margin-bottom: 16px; }
      @media (max-width: 768px) {
        #page_top_section .page_top img {
          width: 220px; } }
    #page_top_section .page_top p {
      font-size: 18px;
      color: white;
      font-weight: 400;
      text-align: right; }
      @media (max-width: 768px) {
        #page_top_section .page_top p {
          font-size: 16px; } }
.page_nav {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 3px; }
  .page_nav li {
    flex: 1 1;
    background-color: white;
    text-decoration: none; }
    .page_nav li a {
      height: 50px;
      color: #424242;
      display: block;
      text-align: center;
      font-size: 18px;
      font-weight: 400;
      line-height: 50px;
      white-space: nowrap;
      padding-left: 10px;
      padding-right: 10px; }
    .page_nav li:hover {
      background-color: #35a0e9; }
      .page_nav li:hover a {
        color: white;
        font-weight: 500; }
    .page_nav li.active {
      background-color: #35a0e9; }
      .page_nav li.active a {
        font-weight: 500;
        color: white; }

.page_container {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding: 140px 0px; }

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

.hidden {
  display: none; }

.page_sub_menu {
  position: absolute;
  top: 2px;
  width: 100%;
  max-width: 1180px;
  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: 768px) {
      .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: 768px) {
      .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 img {
      height: 18px; }
      .pagination .page_btn img.flip {
        transform: scale(-1); }
    .pagination .page_btn.current {
      background-color: #4d4d4d;
      color: white; }

.page_title_container {
  padding-bottom: 40px;
  margin-bottom: 50px;
  border-bottom: 1px solid black;
  margin-left: 20px;
  margin-right: 20px; }
  .page_title_container.padding_zero {
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    padding: 0px; }
  .page_title_container .page_subtitle {
    color: #35A0E9;
    font-size: 24px;
    font-weight: bold; }
    @media (max-width: 768px) {
      .page_title_container .page_subtitle {
        font-size: 18px; } }
  .page_title_container .page_title {
    font-size: 36px;
    margin-bottom: 1rem; }
    @media (max-width: 768px) {
      .page_title_container .page_title {
        font-size: 30px; } }
  .page_title_container .page_desc {
    font-size: 16px;
    font-weight: 400; }
    @media (max-width: 768px) {
      .page_title_container .page_desc {
        font-size: 14px; } }
.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;
    background-color: #969696;
    color: white;
    border: none; }
    .search_form_container button:hover {
      background-color: black; }
  .search_form_container.right {
    width: 280px;
    margin-left: auto;
    margin-bottom: 70px; }
    .search_form_container.right button {
      width: 100px; }

.gallery_list_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; }
  @media (max-width: 768px) {
    .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: 768px) {
        .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: 768px) {
    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: 10px;
  border: 1px solid #BDBDBD; }
  .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; }

#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; }

html {
  font-size: 16px;
  font-family: 'Noto Sans KR', sans-serif; }

body {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  scroll-behavior: smooth; }
  body.no_scroll {
    overflow: hidden; }

header {
  position: fixed;
  display: flex;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  height: 80px;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  transition: .5s all; }
  header.backgroundColor {
    background-color: #323232; }
  header .nav {
    display: flex;
    width: 100%;
    max-width: 1180px;
    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: 35px; }
    header .nav .nav__menu-box {
      display: flex;
      flex-direction: row;
      gap: 50px;
      height: 100%;
      position: relative; }
      @media (max-width: 768px) {
        header .nav .nav__menu-box {
          display: none;
          position: fixed;
          top: 80px;
          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: 768px) {
          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: #35A0E9; }
        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 #35A0E9; }
          header .nav .nav__menu-box .nav__menu-item .mobile_submenu_btn:hover::after {
            border-bottom: 2px solid #35A0E9; }
          @media (max-width: 768px) {
            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;
          padding: 20px;
          background-color: white;
          transition: 0.3s all;
          text-align: center;
          width: 150px;
          left: -42px;
          transform: translateY(5px);
          border: 1px solid #E0E0E0; }
          @media (max-width: 768px) {
            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: #757575;
            border-bottom: 1px solid #EEEEEE; }
            header .nav .nav__menu-box .nav__menu-item .nav_sub_btn_box a::after {
              content: '';
              transition: 0.2s all;
              left: 0;
              bottom: 0;
              position: absolute;
              display: inline-block;
              width: 0%;
              height: 1px;
              background-color: #35A0E9; }
            header .nav .nav__menu-box .nav__menu-item .nav_sub_btn_box a:hover {
              color: #35A0E9; }
              header .nav .nav__menu-box .nav__menu-item .nav_sub_btn_box a:hover::after {
                width: 100%; }
      header .nav .nav__menu-box .nav__menu-btn {
        display: block;
        padding-top: 26px;
        padding-bottom: 28px; }
        @media (max-width: 768px) {
          header .nav .nav__menu-box .nav__menu-btn {
            padding: 0; } }
        header .nav .nav__menu-box .nav__menu-btn .nav__menu-text {
          color: #fff;
          font-size: 18px;
          text-decoration: none;
          text-align: center; }
          @media (max-width: 768px) {
            header .nav .nav__menu-box .nav__menu-btn .nav__menu-text {
              color: black;
              padding: 20px; } }
    header .nav .nav__etc-box {
      display: flex;
      flex-direction: row;
      justify-content: end;
      gap: 10px; }
      @media (max-width: 768px) {
        header .nav .nav__etc-box {
          flex: 1 1 100%; } }
.mobile-menu__btn {
  display: none;
  margin-left: 0px; }
  @media (max-width: 768px) {
    .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: #fff;
    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 - 120px); }

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  min-height: 120px;
  background-color: #282828;
  text-align: center;
  padding: 25px 20px; }
  .footer .footer__company-info {
    color: white;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px; }
  .footer .copyright {
    color: #969696;
    font-size: 12px; }

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

#fullsize_popup_background {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5100;
  justify-content: center;
  align-items: center;
  display: none; }
  #fullsize_popup_background.active {
    display: flex; }
  #fullsize_popup_background img {
    width: 100%;
    max-width: 700px; }
  #fullsize_popup_background #fullsize_popup_background_cancel {
    width: 30px;
    height: 30px;
    background-image: url("/static/main/img/cross.svg");
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: .6; }
    #fullsize_popup_background #fullsize_popup_background_cancel:hover {
      opacity: 1; }

.banner_form_container .banner_grid {
  display: grid;
  grid-template-columns: 1fr 1fr; }
  .banner_form_container .banner_grid img {
    width: 100%;
    height: 500px;
    object-fit: contain; }

.banner_form_container .button_box {
  display: flex;
  justify-content: center;
  gap: 100px; }

.banner_form_container .file_upload_label {
  border: 1px solid #9E9E9E;
  border-radius: 5px;
  padding: 5px 10px; }
  .banner_form_container .file_upload_label:hover {
    background-color: #9E9E9E;
    color: white; }

.banner_form_container .input_label {
  margin-bottom: 20px; }

.index_top_section {
  width: 100%;
  height: 100vh;
  background-image: url("/static/main/img/index/big-house-in-the-forest-with-terrace-2021-08-26-15-44-30-utc_qhd.jpg");
  background-size: cover;
  background-position: center; }
  .index_top_section:after {
    content: '';
    background-color: #000;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    mix-blend-mode: multiply;
    opacity: 0;
    z-index: 0; }
  .index_top_section .index_top_container {
    z-index: 100;
    padding: 20px;
    width: 100%;
    max-width: 1180px;
    margin: auto;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: end; }
    .index_top_section .index_top_container .index_top_title {
      background-color: #35a0e9;
      display: flex;
      flex-direction: column;
      align-items: end;
      padding: 30px 45px;
      border-radius: 10px;
      box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5); }
      .index_top_section .index_top_container .index_top_title img {
        width: 320px;
        margin-bottom: 20px; }
        @media (max-width: 768px) {
          .index_top_section .index_top_container .index_top_title img {
            width: 280px; } }
      .index_top_section .index_top_container .index_top_title .line {
        width: 320px;
        border-bottom: 1px solid white;
        margin-left: auto;
        margin-bottom: 15px; }
        @media (max-width: 768px) {
          .index_top_section .index_top_container .index_top_title .line {
            width: 220px; } }
      .index_top_section .index_top_container .index_top_title p {
        color: white;
        font-weight: 400;
        font-size: 22px;
        text-align: right;
        margin-bottom: 32px; }
        @media (max-width: 768px) {
          .index_top_section .index_top_container .index_top_title p {
            font-size: 18px; } }
        .index_top_section .index_top_container .index_top_title p span {
          font-weight: 500; }
      .index_top_section .index_top_container .index_top_title .button {
        margin-left: auto;
        height: auto;
        border: none;
        background-color: #212121;
        color: #212121;
        background-color: white; }
        .index_top_section .index_top_container .index_top_title .button:hover {
          border: none;
          color: white;
          background-color: #212121; }
    .index_top_section .index_top_container .search_form_container {
      position: absolute;
      bottom: 128px;
      left: 20px;
      right: 20px; }

.index_02 {
  padding: 50px 20px;
  min-height: 784px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media (max-width: 768px) {
    .index_02 {
      padding: 20px 20px;
      min-height: auto; } }
  .index_02 .box_container {
    display: grid;
    gap: 20px;
    width: 100%;
    max-width: 1180px;
    justify-content: center;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr 1fr; }
    @media (max-width: 768px) {
      .index_02 .box_container {
        grid-template-columns: 1fr; } }
    .index_02 .box_container .item {
      display: block;
      height: 360px;
      padding: 50px 38px;
      background-color: #f3f3f3;
      border-radius: 14px;
      box-shadow: 8px 8px 10px 0px rgba(0, 0, 0, 0.25);
      user-select: none;
      color: black;
      transition: 0.3s all; }
      @media (max-width: 768px) {
        .index_02 .box_container .item {
          display: flex;
          width: 100%;
          height: auto;
          padding: 30px 15px; } }
      .index_02 .box_container .item .img_box {
        display: flex;
        align-items: center;
        height: 120px;
        margin-bottom: 30px; }
        @media (max-width: 768px) {
          .index_02 .box_container .item .img_box {
            height: auto;
            width: 60px;
            margin-right: 15px; } }
        .index_02 .box_container .item .img_box img {
          display: block;
          margin-left: auto; }
          .index_02 .box_container .item .img_box img.nara {
            width: 104px; }
            @media (max-width: 768px) {
              .index_02 .box_container .item .img_box img.nara {
                width: 60px; } }
          .index_02 .box_container .item .img_box img.contact {
            width: 104px; }
            @media (max-width: 768px) {
              .index_02 .box_container .item .img_box img.contact {
                width: 60px; } }
          .index_02 .box_container .item .img_box img.location {
            width: 75px; }
            @media (max-width: 768px) {
              .index_02 .box_container .item .img_box img.location {
                width: 50px; } }
      .index_02 .box_container .item .item_name {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px; }
        @media (max-width: 768px) {
          .index_02 .box_container .item .item_name {
            font-size: 20px; } }
      .index_02 .box_container .item:hover {
        background-color: #BDDEEF;
        transform: scale(1.05);
        z-index: 100; }

.index_03, .index_04 {
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media (max-width: 768px) {
    .index_03, .index_04 {
      min-height: auto; } }
  .index_03 .index_box_container, .index_04 .index_box_container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    z-index: 100;
    width: 100%;
    max-width: 1180px; }
    @media (max-width: 768px) {
      .index_03 .index_box_container, .index_04 .index_box_container {
        padding: 50px 20px;
        flex-direction: column; } }
    .index_03 .index_box_container .left_box, .index_04 .index_box_container .left_box {
      margin-right: 50px;
      border-radius: 10px;
      background-color: #35A0E9;
      padding: 20px; }
      .index_03 .index_box_container .left_box.none_background, .index_04 .index_box_container .left_box.none_background {
        background-color: white; }
      @media (max-width: 768px) {
        .index_03 .index_box_container .left_box, .index_04 .index_box_container .left_box {
          margin-right: 0;
          border-radius: 0;
          margin-bottom: 50px;
          min-width: auto;
          width: 100%; } }
      .index_03 .index_box_container .left_box p, .index_04 .index_box_container .left_box p {
        font-size: 20px; }
      .index_03 .index_box_container .left_box h4, .index_04 .index_box_container .left_box h4 {
        font-size: 50px;
        font-weight: 700;
        margin-bottom: 50px; }
        @media (max-width: 768px) {
          .index_03 .index_box_container .left_box h4, .index_04 .index_box_container .left_box h4 {
            font-size: 40px; } }
      .index_03 .index_box_container .left_box .button, .index_04 .index_box_container .left_box .button {
        border: none; }
        .index_03 .index_box_container .left_box .button.button_dark, .index_04 .index_box_container .left_box .button.button_dark {
          background-color: white;
          color: #212121; }
          .index_03 .index_box_container .left_box .button.button_dark:hover, .index_04 .index_box_container .left_box .button.button_dark:hover {
            background-color: #212121;
            color: white; }
        .index_03 .index_box_container .left_box .button:hover, .index_04 .index_box_container .left_box .button:hover {
          border: none; }

.index_03 {
  position: relative;
  background-image: url("/static/main/img/index/AdobeStock_608821495_qhd.jpg");
  background-size: cover;
  background-position: center; }
  .index_03:after {
    content: '';
    background-color: black;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    mix-blend-mode: multiply;
    opacity: .4;
    z-index: 0; }
  .index_03 .index_box_container .left_box {
    color: white; }
  .index_03 .index_box_container .right_box_container {
    display: grid;
    width: 100%;
    gap: 15px;
    grid-template-columns: 1fr 1fr 1fr; }
    @media (max-width: 768px) {
      .index_03 .index_box_container .right_box_container {
        grid-template-columns: 1fr 1fr; } }
    .index_03 .index_box_container .right_box_container a {
      display: block;
      width: 100%;
      background-color: white;
      transition: .3s all; }
      .index_03 .index_box_container .right_box_container a:hover {
        transform: scale(1.05); }
      .index_03 .index_box_container .right_box_container a img {
        width: 100%;
        height: 236px;
        object-fit: cover; }
        @media (max-width: 768px) {
          .index_03 .index_box_container .right_box_container a img {
            height: 50%; } }
      .index_03 .index_box_container .right_box_container a .item_info {
        padding: 13px;
        color: black;
        text-align: center; }
        .index_03 .index_box_container .right_box_container a .item_info .item_name {
          font-size: 20px;
          font-weight: 700;
          margin-bottom: 12px; }
          @media (max-width: 768px) {
            .index_03 .index_box_container .right_box_container a .item_info .item_name {
              font-size: 18px; } }
        .index_03 .index_box_container .right_box_container a .item_info .line {
          width: 22px;
          border-bottom: 1px solid black;
          margin: auto;
          margin-bottom: 10px; }
        .index_03 .index_box_container .right_box_container a .item_info .item_name_eng_box {
          height: 40px;
          display: flex;
          justify-content: center;
          align-items: center; }
          .index_03 .index_box_container .right_box_container a .item_info .item_name_eng_box .item_name_eng {
            font-size: 14px; }
            @media (max-width: 768px) {
              .index_03 .index_box_container .right_box_container a .item_info .item_name_eng_box .item_name_eng {
                font-size: 14px; } }
.index_04 .index_box_container .right_box_container {
  display: grid;
  width: 100%;
  gap: 15px;
  grid-template-columns: 1fr 1fr 1fr; }
  @media (max-width: 768px) {
    .index_04 .index_box_container .right_box_container {
      grid-template-columns: 1fr 1fr; } }
  .index_04 .index_box_container .right_box_container .item {
    position: relative;
    width: 100%; }
    .index_04 .index_box_container .right_box_container .item img {
      height: 300px;
      width: 100%;
      object-fit: cover; }
    .index_04 .index_box_container .right_box_container .item .item_info {
      width: 100%;
      position: absolute;
      bottom: 0;
      padding: 10px;
      font-size: 16px;
      color: white;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #7a7a7a 100%); }
      @media (max-width: 768px) {
        .index_04 .index_box_container .right_box_container .item .item_info {
          font-size: 14px; } }
#page_top_section.company {
  background-image: url(../img/index/AdobeStock_467632272_qhd.jpg);
  background-position: top; }

.search_form_container.cert {
  width: 280px;
  margin-left: auto;
  margin-bottom: 70px; }

.cert_list_container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 34px 12px; }
  @media (max-width: 768px) {
    .cert_list_container {
      grid-template-columns: 1fr 1fr 1fr; } }
  .cert_list_container .cert_item .cert_img {
    width: 100%;
    border: 1px solid #BDBDBD; }

.media_list_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; }
  @media (max-width: 768px) {
    .media_list_container {
      grid-template-columns: 1fr 1fr;
      gap: 10px; } }
  .media_list_container .media_item_container .media_item {
    text-decoration: none;
    color: inherit; }
    .media_list_container .media_item_container .media_item .img_square {
      width: 100%;
      border: 1px solid #E0E0E0;
      padding-top: 100%;
      margin-bottom: 15px;
      overflow: hidden;
      position: relative; }
      .media_list_container .media_item_container .media_item .img_square img {
        position: absolute;
        transform-origin: top;
        width: 100%;
        top: 0; }
    .media_list_container .media_item_container .media_item h3 {
      font-size: 20px;
      font-weight: 500;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 10px; }
    .media_list_container .media_item_container .media_item .media_item_desc {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-size: 15px;
      font-weight: 400;
      color: #616161;
      margin-bottom: 10px; }
    .media_list_container .media_item_container .media_item .media_item_date {
      text-align: right;
      color: #757575; }
  .media_list_container .media_item_container .button {
    margin-left: auto;
    margin-top: 15px;
    width: 80px; }

.img_input_label.media_img_file {
  border: 1px solid #9E9E9E;
  padding: 5px 10px;
  border-radius: 5px; }
  .img_input_label.media_img_file:hover {
    background-color: #9E9E9E;
    color: white; }

.greeting .greeting_box {
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; }
  @media (max-width: 768px) {
    .greeting .greeting_box {
      grid-template-columns: 1fr; } }
  .greeting .greeting_box img {
    width: 100%; }
  .greeting .greeting_box .greeting_text_box h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px; }
  .greeting .greeting_box .greeting_text_box p:first-of-type {
    word-break: keep-all;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 28px;
    font-size: 17px; }
  .greeting .greeting_box .greeting_text_box p:last-of-type {
    font-weight: 500;
    text-align: right;
    font-size: 17px; }

.greeting .company_management {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; }
  @media (max-width: 768px) {
    .greeting .company_management {
      grid-template-columns: 1fr; } }
  .greeting .company_management .company_management_box h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 18px; }
  .greeting .company_management .company_management_box table {
    border-top: 2px solid black;
    font-size: 17px; }
    .greeting .company_management .company_management_box table th {
      font-weight: bold;
      text-align: left; }
    .greeting .company_management .company_management_box table td {
      padding: 15px; }
  .greeting .company_management .img_box {
    position: relative; }
    .greeting .company_management .img_box img {
      width: 100%;
      height: 400px;
      object-fit: cover; }
    .greeting .company_management .img_box img:last-of-type {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      width: 160px;
      height: auto;
      object-fit: contain; }

.history_container .history_box {
  display: flex; }
  .history_container .history_box:first-child {
    margin-bottom: 50px; }
  @media (max-width: 768px) {
    .history_container .history_box {
      flex-direction: column; } }
  .history_container .history_box .year_box {
    width: 100%;
    max-width: 300px;
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 30px; }
    @media (max-width: 768px) {
      .history_container .history_box .year_box {
        text-align: center;
        max-width: 100%; } }
  .history_container .history_box table {
    width: 100%;
    border: none; }
    .history_container .history_box table tr {
      border: none; }
      .history_container .history_box table tr th {
        vertical-align: top;
        font-weight: bold;
        width: 100px;
        padding: 10px; }
      .history_container .history_box table tr td {
        vertical-align: top;
        padding: 10px; }

.organization {
  display: flex;
  justify-content: center;
  align-items: center; }
  .organization img {
    width: 100%;
    max-width: 960px; }

.map_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px; }
  .map_container #map {
    width: 100%;
    max-width: 1180px;
    height: 600px; }

.location_container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; }
  .location_container .item {
    flex: 1 0 300px;
    border-radius: 10px;
    background: #F3F3F3;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
    color: black;
    text-align: center; }
    .location_container .item .icon {
      width: 50px;
      height: 50px;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      margin-bottom: 15px; }
      .location_container .item .icon.location {
        background-image: url("../img/company/location_gray.svg"); }
      .location_container .item .icon.call {
        background-image: url("../img/company/call_gray.svg"); }
      .location_container .item .icon.mail {
        background-image: url("../img/company/mail_gray.svg"); }
      .location_container .item .icon.esti {
        background-image: url("../img/company/esti_gray.svg"); }
    .location_container .item:hover {
      background-color: #d6effb; }
      .location_container .item:hover .icon.location {
        background-image: url("../img/company/location_primary.svg"); }
      .location_container .item:hover .icon.call {
        background-image: url("../img/company/call_primary.svg"); }
      .location_container .item:hover .icon.mail {
        background-image: url("../img/company/mail_primary.svg"); }
      .location_container .item:hover .icon.esti {
        background-image: url("../img/company/esti_primary.svg"); }
    .location_container .item h4 {
      font-size: 20px; }
    .location_container .item p {
      font-size: 14px;
      padding: 10px; }
    .location_container .item img {
      width: 34px; }

#page_top_section.product {
  background-image: url(../img/index/AdobeStock_521392598_qhd.jpg); }

#product .page_title_container {
  padding-bottom: 15px; }
  #product .page_title_container span {
    font-weight: bold;
    font-size: 24px; }

.product_list_item {
  transition: .3s all;
  display: block; }
  .product_list_item .product_list_img {
    object-fit: contain; }
  .product_list_item:hover {
    transform: scale(1.02); }

.product_detail_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; }
  @media (max-width: 768px) {
    .product_detail_box {
      grid-template-columns: 1fr; } }
  .product_detail_box .img_container .main_img {
    width: 100%;
    border: 1px solid black;
    object-fit: contain; }
  .product_detail_box .img_container .img_thum_container .product_item_img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    object-position: center;
    border: 1px solid #E0E0E0;
    opacity: 0.7; }
    .product_detail_box .img_container .img_thum_container .product_item_img:hover {
      opacity: 1;
      border: 1px solid #9E9E9E; }
    .product_detail_box .img_container .img_thum_container .product_item_img.active {
      opacity: 1;
      border: 1px solid #9E9E9E; }
  .product_detail_box .product_info_container h2 {
    font-size: 30px;
    margin-bottom: 76px; }
    @media (max-width: 768px) {
      .product_detail_box .product_info_container h2 {
        font-size: 24px; } }
.product_input_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; }
  @media (max-width: 768px) {
    .product_input_box {
      grid-template-columns: 1fr;
      margin-bottom: 50px; } }
  .product_input_box .img_file {
    display: none; }

#page_top_section.project {
  background-image: url(../img/index/AdobeStock_119654056_qhd.jpg);
  background-position: top; }

.gallery_list_container.project {
  grid-template-columns: 1fr 1fr 1fr; }
  @media (max-width: 768px) {
    .gallery_list_container.project {
      grid-template-columns: 1fr 1fr; } }
.gallery_item.project {
  display: block;
  opacity: .8;
  transition: 0.2s all; }
  .gallery_item.project:hover {
    opacity: 1;
    transform: scale(1.03); }
  .gallery_item.project img {
    width: 100%;
    object-fit: cover; }
  .gallery_item.project .gallery_item_text_box {
    padding: 10px;
    color: black; }
    .gallery_item.project .gallery_item_text_box h3 {
      margin-bottom: 10px;
      font-weight: 500; }
      @media (max-width: 768px) {
        .gallery_item.project .gallery_item_text_box h3 {
          font-size: 14px; } }
    .gallery_item.project .gallery_item_text_box .project_info_box {
      display: flex; }
      .gallery_item.project .gallery_item_text_box .project_info_box .gallery_item_desc {
        width: 100%;
        display: flex;
        align-items: start;
        gap: 3px;
        flex-wrap: wrap; }
        .gallery_item.project .gallery_item_text_box .project_info_box .gallery_item_desc .tags {
          flex: 0 0 content;
          display: block;
          border: 1px solid #9E9E9E;
          color: #9E9E9E;
          padding: 1px 3px;
          border-radius: 3px;
          font-size: 10px; }
      .gallery_item.project .gallery_item_text_box .project_info_box .gallery_item_year {
        width: 50px;
        color: #9E9E9E;
        text-align: right; }
        @media (max-width: 768px) {
          .gallery_item.project .gallery_item_text_box .project_info_box .gallery_item_year {
            font-size: 12px; } }
.project_detail_container .project_year {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px; }
  @media (max-width: 768px) {
    .project_detail_container .project_year {
      font-size: 16px; } }
.project_detail_container .project_title {
  font-weight: 400;
  font-size: 34px;
  margin-bottom: 30px; }
  @media (max-width: 768px) {
    .project_detail_container .project_title {
      font-size: 24px; } }
.project_detail_container .project_detail_tag {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px; }
  .project_detail_container .project_detail_tag .tags {
    font-size: 14px;
    flex: 0 0 1;
    display: block;
    color: #9E9E9E;
    border-radius: 3px;
    border: 1px solid #9E9E9E;
    padding: 3px 5px; }

.project_detail_box .img_container .main_img_container {
  width: 100%;
  border: 1px solid #E0E0E0;
  overflow: hidden;
  margin-bottom: 20px; }
  .project_detail_box .img_container .main_img_container .main_img_slider {
    display: flex;
    position: relative;
    width: 100%;
    transition: .3s all; }
    .project_detail_box .img_container .main_img_container .main_img_slider .main_img {
      flex-grow: 1;
      flex-shrink: 0;
      flex-basis: 100%;
      width: 100%;
      object-fit: contain; }

.project_detail_box .img_container .img_thum_container .project_item_img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  border: 1px solid #E0E0E0;
  opacity: 0.7; }
  @media (max-width: 768px) {
    .project_detail_box .img_container .img_thum_container .project_item_img {
      width: 60px;
      height: 40px; } }
  .project_detail_box .img_container .img_thum_container .project_item_img:hover {
    opacity: 1;
    border: 1px solid #9E9E9E; }
  .project_detail_box .img_container .img_thum_container .project_item_img.active {
    opacity: 1;
    border: 1px solid #9E9E9E; }

.project_detail_box .product_info_container h2 {
  font-size: 36px;
  margin-bottom: 76px; }

.project_input_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px; }
  @media (max-width: 768px) {
    .project_input_box {
      grid-template-columns: 1fr; } }
  .project_input_box .image_grid {
    gap: 10px; }

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

.tag_search_container {
  margin-bottom: 70px; }

.tag_btn_container {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }
  @media (max-width: 768px) {
    .tag_btn_container {
      gap: 5px; } }
  .tag_btn_container .project_tag_btn {
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #BDBDBD;
    color: #424242; }
    @media (max-width: 768px) {
      .tag_btn_container .project_tag_btn {
        font-size: 14px;
        padding: 4px 8px; } }
    .tag_btn_container .project_tag_btn:hover {
      background-color: black;
      color: white; }
    .tag_btn_container .project_tag_btn.active {
      background-color: black;
      color: white; }

.form_tag_display_container {
  display: flex;
  gap: 5px;
  flex-wrap: wrap; }
  .form_tag_display_container .tag_item {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #BDBDBD;
    user-select: none; }
    @media (max-width: 768px) {
      .form_tag_display_container .tag_item {
        font-size: 12px;
        padding: 5px 5px; } }
    .form_tag_display_container .tag_item .tag_delete {
      display: inline-block;
      background-image: url("../img/cross_bk.svg");
      width: 12px;
      height: 12px;
      margin: 0;
      margin-left: 5px; }
      @media (max-width: 768px) {
        .form_tag_display_container .tag_item .tag_delete {
          width: 10px;
          height: 10px; } }
    .form_tag_display_container .tag_item:hover {
      background-color: #ffc1c2; }

#page_top_section.contact {
  background-image: url(../img/contact_top_section.jpg); }
  #page_top_section.contact:after {
    content: ''; }

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

.file_size {
  margin-bottom: 20px; }

.table {
  display: table;
  width: 100%;
  margin-bottom: 30px; }
  .table .table_row {
    display: table-row; }
    .table .table_row.table_head {
      background-color: #E0E0E0; }
  .table .table_cell {
    display: table-cell;
    padding: 15px;
    color: black;
    border-bottom: 1px solid black; }
  .table .num {
    width: 120px;
    text-align: center; }
  .table .date {
    width: 160px;
    text-align: center; }
  .table a:hover {
    background-color: #EEEEEE; }

.notice_detail_container {
  margin-bottom: 20px; }
  .notice_detail_container .notice_title {
    font-size: 18px;
    padding: 20px;
    color: black;
    background-color: #f0f0f0;
    font-weight: bold; }
    @media (max-width: 768px) {
      .notice_detail_container .notice_title {
        font-size: 16px;
        padding: 10px; } }
  .notice_detail_container .notice_title_info {
    font-size: 18px;
    display: flex;
    padding: 20px;
    padding-bottom: 30px;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    border-bottom: 1px solid black; }
    @media (max-width: 768px) {
      .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_title_info img {
      width: 48px;
      height: 48px;
      margin-right: 10px; }
      @media (max-width: 768px) {
        .notice_detail_container .notice_title_info img {
          width: 24px;
          height: 24px; } }
  .notice_detail_container .notice_desc {
    padding: 50px 0; }
    .notice_detail_container .notice_desc img {
      max-width: 100%;
      height: auto; }

.notice_file_upload {
  margin-top: 20px; }

.detail_page_navigation {
  width: 100%;
  margin-bottom: 30px; }
  @media (max-width: 768px) {
    .detail_page_navigation {
      font-size: 12px; } }
  .detail_page_navigation .page_row {
    display: flex;
    width: 100%;
    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;
      color: black; }
    .detail_page_navigation .page_row .page_label {
      background-color: #E0E0E0;
      width: 130px;
      text-align: center; }
      @media (max-width: 768px) {
        .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: 768px) {
        .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; }

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

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

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

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

.mail_container .button_primary {
  border: none; }
  .mail_container .button_primary.disable {
    pointer-events: none;
    background-color: gray; }

@media (max-width: 768px) {
  .notice_list {
    font-size: 12px; }
    .notice_list .table_row .table_cell {
      padding: 5px; }
    .notice_list .table_row .num {
      width: 50px; }
    .notice_list .table_row .date {
      width: 90px; } }

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