:root {
  --primary-color: #002258;
  --primary-light-color: #D5E2EB;
  --border-color: #e9e9e9;
  --line-color: #f3f3f3;
  --text-color: #2e2e2e;
}

body {
  color: var(--text-color);
}

body * {
  color: var(--text-color);
}

#aside {
  width: 260px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  overflow-y: auto;
  background-color: var(--primary-color);
}

#aside .head {
  width: 100%;
  position: relative;
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#aside .head .aside_button {
  display: none;
}

#aside .head .logo img {
  height: 34px;
}

#aside .nav {
  width: 100%;
  position: relative;
}

#aside .nav .depth {
  width: 100%;
  position: relative;
}

#aside .nav .depth li {
  width: 100%;
  position: relative;
}

#aside .nav .depth li a {
  width: 100%;
  position: relative;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-light-color);
  -webkit-transition: color .4s;
  transition: color .4s;
}

#aside .nav .depth li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background-color: var(--main-color);
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}

#aside .nav .depth li a.active {
  color: #fff;
}

#aside .nav .depth li a.active::after {
  opacity: .2;
}

#aside .nav .depth li a:hover {
  color: #fff;
}

#content {
  width: 100%;
  position: relative;
  padding: 40px 60px 40px 320px;
}

#content .section {
  width: 100%;
  position: relative;
  max-width: 1200px;
  display: none;
}

#content .section.active {
  display: block;
  -webkit-animation: fade-in 1.2s 1;
          animation: fade-in 1.2s 1;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

#content .section .title {
  font-size: 24px;
  font-weight: 700;
}

#content .section .sub_title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

#content .section .box {
  width: 100%;
  position: relative;
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-color);
}

#content .section .box:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

#content .section .box .letter {
  width: 100%;
  position: relative;
}

#content .section .box .letter p {
  width: 100%;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}

#content .section .box .list {
  width: 100%;
  position: relative;
}

#content .section .box .list p {
  width: 100%;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  margin-top: 6px;
  padding-left: 16px;
}

#content .section .box .list p::before {
  content: "-";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 16px;
  vertical-align: middle;
}

#content .section .box .text {
  width: 100%;
  position: relative;
}

#content .section .box .text p {
  width: 100%;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  margin-top: 6px;
}

#content .section .box .map {
  width: 100%;
  position: relative;
}

#content .section .box .map .map_container {
  width: 100%;
  position: relative;
  max-width: 640px;
}

#content .section .box .map .map_container::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

#content .section .box .map .map_container > div {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

#content .section .box .map p {
  width: 100%;
  position: relative;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
}

#content .section .box .kakao_image_box {
  width: 100%;
  position: relative;
}

#content .section .box .kakao_image_box ul {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

#content .section .box .kakao_image_box ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

#content .section .box .kakao_image_box ul li .image_box {
  width: 100%;
  position: relative;
  -webkit-box-shadow: 0 0 12px rgba(104, 104, 104, 0.2);
          box-shadow: 0 0 12px rgba(104, 104, 104, 0.2);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

#content .section .box .kakao_image_box ul li .image_box img {
  width: 100%;
}

#content .section .box .kakao_image_box ul li p {
  width: 100%;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  text-align: center;
}

#content .section .table {
  width: 100%;
  position: relative;
  overflow-x: auto;
  /*
            table {
                @include parent();
                border-collapse: collapse;
                border: 1px solid var(--border-color);

                tbody {
                    @include parent();
                    
                    tr {
                        th,
                        td {
                            border: 1px solid var(--border-color);
                            padding: 12px;
                            font-size: 14px;
                        }

                        th {
                            width: 20%;
                            min-width: 124px;
                            max-width: 124px;
                            font-weight: 500;
                            background-color: #fcfcfc;
                        }

                        td {
                            width: 30%;
                            min-width: 172px;
                            font-weight: 400;

                            a {
                                &:hover {
                                    text-decoration: underline;
                                }
                            }
                        }
                    }
                }
            }
            */
}

#content .section .table ul {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#content .section .table ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 14px;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-right: none;
  border-bottom: none;
}

#content .section .table ul li:last-child {
  border-right: 1px solid var(--border-color);
}

#content .section .table ul li.border_bottom {
  border-bottom: 1px solid var(--border-color);
}

#content .section .table ul li:nth-of-type(2n-1) {
  width: 20%;
  min-width: 124px;
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

#content .section .table ul li:nth-of-type(2n) {
  width: 30%;
  min-width: 186px;
  font-weight: 400;
}

#content .section .table ul li.col_3 {
  width: 80%;
}

#content .section .table ul li.col_3_min_max {
  min-width: 496px;
}

#content .section .table ul li a:hover {
  color: blue;
  text-decoration: underline;
}

#content .section .table ul:last-child li {
  border-bottom: 1px solid var(--border-color);
}

@media (min-width: 1024px) {
  #aside .nav {
    display: block !important;
  }
  #aside .nav .aside_overlay {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  #aside {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  #aside .head {
    height: 60px;
    padding: 0px 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 1;
  }
  #aside .head .aside_button {
    display: block;
  }
  #aside .head .aside_button span {
    color: #fff;
    font-size: 28px;
  }
  #aside .head .logo img {
    height: 28px;
  }
  #aside .nav {
    width: 100%;
    position: fixed;
    left: 0;
    top: 60px;
    display: none;
  }
  #aside .nav .depth {
    width: 260px;
    height: calc(100vh - 60px);
    z-index: 2;
    overflow-y: auto;
    background-color: var(--primary-color);
    margin: 0 0 0 auto;
    -webkit-transform: translateX(260px);
            transform: translateX(260px);
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
  }
  #aside .nav.active .depth {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  #aside .nav .aside_overlay {
    width: 100%;
    position: relative;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: -1;
  }
  #content {
    padding: 100px 20px 40px;
  }
  #content .section .box .map .map_container {
    max-width: none;
  }
}

@media (max-width: 767px) {
  #content .section .title {
    font-size: 22px;
  }
  #content .section .sub_title {
    font-size: 16px;
  }
  #content .section .box .letter p {
    font-size: 14px;
  }
  #content .section .box .list p {
    font-size: 14px;
  }
  #content .section .box .kakao_image_box ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #content .section .box .kakao_image_box ul li {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: calc(50% - 10px);
  }
}



body.app_mode #content .section .table ul {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid var(--border-color);
  border-bottom: none;
  border-top: none;
}
body.app_mode #content .section .table ul li {
  width: 100% !important;
  max-width: none !important;
  min-width: auto !important;
  border: none;
  border-bottom: 1px solid var(--border-color);
  text-align: left !important;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
body.app_mode #content .section .table ul:first-child li:first-child {
  border-top: 1px solid var(--border-color);
}
