/* 01.login.html */

.login {
  width: 100%;
  height:100vh;
}


.login .login-wrap {
  background:url("../images/bg-login-1.png") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
  color:#fff;
  padding: 2.5rem;
  padding-top:1rem;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;

}


.login-title p {
 /*  background: #ffffff0c; */
  display: inline-block;
  padding: 0.5rem;
  width: 100%;
  text-align: center;
  border-bottom:1px solid #ffffff31;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--cl-bg-1)
}


.login-title span {
  font-weight: 200;
  
}

.login-content {
  align-items: center;
  justify-content: space-between;
  min-height: 50vh;
  width: 100%;
  gap: 2rem
}

.login-content > .login-form {
  flex-basis: 30%;
}

.login input {
  border-top:none;
  border-right:none;
  border-left: none;
}

@keyframes arrow-anim {
  0% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-5px);
  }
  0% {
    transform: translateX(0px);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInChar {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.7;
  }
}

@keyframes typewriter {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.login-link-office {
  background-color: var(--cl-primary);
  padding:1rem;
  border-radius: 0 10px 10px 0 ;
  min-height:300px;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left:0;
  transform: translateY(-50%);
  transition: 0.3s;
  color: #fff;
  z-index: 1;
}

.login-link-office:hover {
  background-color: var(--cl-primary);
}

.login-link-office img {
  animation:arrow-anim 1s infinite;
}

.login-link-office p {
  font-weight: 200;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.login-link-office img {
  width: 8px;
  margin: 10px 0;
  vertical-align: middle;
}

.login-content .login-form {
  padding:3rem 3rem calc(3rem + 25px);
  flex-direction: column;
  align-items: flex-start;
  min-height: inherit;
  justify-content: center;
  gap: 3.5rem;
  background-color: #ffffff21;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 5px  rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  z-index: 123;
}

.login-content .login-form img {
  height: 60px;
  object-fit: contain;
  margin:auto;
}

.login-content .login-form form {
  gap: 2rem;
  flex-direction: column;
  width:100%;
}

.login-content .login-form form > div {
  align-items:unset;
  width: 100%;
  gap:0.75rem;
  flex-direction: column;
}

.login-content .login-form form label {
  width: 70px;
  display:inline-block;
  padding-right: 1rem;
  margin-bottom: 0.25rem;
  align-content: flex-end;
  font-size: var(--fz-body1);
}

.login-content .login-form form div:first-of-type label {
  background: url("../images/icon-id.png") no-repeat;
  background-size: contain;
  padding-left:30px;
}

.login-content .login-form form div:last-of-type label {
  background: url("../images/icon-pw.png") no-repeat;
  background-size: contain;
  padding-left:30px;
}

.login-content .login-character {
  text-align: right;
  flex-direction: column;
  align-items: end;
  position: relative;
}

.login-content .login-character img {
  height: 500px;
  display: block;
}

.login-content .login-character h1 {
  font-size: var(--fz-headline1);
  position: absolute;
  bottom: 145px;
  letter-spacing: 15px;
  padding-right: 12px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.login-content .login-character p {
  font-size:  var(--fz-subtitle2);
  padding-top: 0.5rem;
  position: absolute;
  bottom:110px;
  display:flex;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 1s forwards;
}

.login-content .login-character strong {
  display: flex;
  flex-direction: column;
}

.login-content .login-character span {
  display: block;
  opacity: 0.7;
  position: absolute;
  bottom:120px;
  letter-spacing: 30px;
  text-align: right;
  opacity: 0;
  animation: fadeInChar 0.5s ease-out 1.5s forwards;
}

.login-content .login-character span::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  animation: typewriter 2s ease-out 1.5s forwards;
}

.login-content .login-character p b {
  background-color: var(--cl-secondary);
  font-size: var(--fz-subtitle1);
  padding: 0.5rem;
  border-radius: 6px;
}

.login-ver2 .login-wrap {
  background: url("../images/bg-login-2.png") no-repeat center;
  background-size: cover;
}

.login input[type=text],
.login input[type=password] {
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-radius: 0 !important;
  width:100%;
}


.login input[type=submit] {
  height: 60px;
  margin-top:1rem;
  text-transform: uppercase;
}

/* 01-02.our-office.html */

.office {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes arrow-anim-2 {
  0% {
    transform: translateX(5px) rotate(180deg);
  }
  50% {
    transform: translateX(-5px) rotate(180deg);
  }
  0% {
    transform: translateX(0px) rotate(180deg);
  }
}

.office .login-link-office {
  left: auto;
  right: 0;
  border-radius: 6px 0 0 6px;
}

.office .image-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
  width: calc(100vw);
  height: 100vh;
  overflow: hidden;
}

.office .login-link-office {
  background: var(--cl-primary);
}

.office .login-link-office:hover {
  background: var(--cl-primary);
}

.office .login-link-office img {
  transform: rotate(180deg);
  animation: arrow-anim-2 1s infinite;
}

.office .image-container .back-image  {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply ;
  filter: brightness(1) contrast(0.8) saturate(1.6) hue-rotate(-330deg);
  display: block;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.office .image-container .back-image.loaded {
  opacity: 1;
}

/* 마커 스타일 */
  .office .marker {
    position: absolute;
    width: 12px;
    height: 12px;
    cursor: pointer;
    background: #ffffffa1 url("../images/icon-marker.png") no-repeat center;
    background-size: contain;
    border-radius: 50%;
    /* border: 2px solid #03a2b4;*/
    box-shadow: 0 0 10px rgba(3, 162, 180, 0.8), 0 0 20px rgba(255, 255, 255, 0.6); 
    /* filter:invert(1) */
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
  }

  .office .marker.marker-head {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: #ffffffa1 url("../images/icon-marker-head.png") no-repeat center;
    background-size: contain;
    background-position: center center;
    filter:hue-rotate(200deg);
    z-index:100;
    /* border: 2px solid #ff3c35; */
    box-shadow: 0 0 10px rgba(255, 77, 53, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
  }

  .office .marker.marker-spot {
    background: #ffffff;
    width: 10px;
    height: 10px;
    border: 2px solid #38b374;
    box-shadow: 0 0 8px rgba(56, 179, 116, 0.8), 0 0 15px rgba(255, 255, 255, 0.6);
  }

  .office .marker.marker-spot:before {
    content: '';
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    width: 25px;
    height: 25px;
    background-color: #03a2b446;
    border-radius: 50%;
    display: block;
  }

  /* 마커 호버 효과 */
  .office .marker:hover {
    transform: scale(1.2);
    transition: transform 0.2s ease;
  }

  /* 마커 활성화 상태 */
  .office .marker.active {
    border-width: 3px;
    box-shadow: 0 0 12px rgba(3, 162, 180, 0.8);
    transform: scale(1.1);
  }

  .office .marker.marker-head.active {
    box-shadow: 0 0 12px rgba(255, 107, 53, 0.8);
  }

  .office .marker.marker-spot.active {
    box-shadow: 0 0 12px rgba(56, 179, 116, 0.8);
  }

  /* 마커가 나타나도록 하는 클래스 */
  .office .marker.loaded {
    opacity: 1;
  }



  .office .office-popup {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.7));
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 14;
    width: 420px;
    max-height:240px;
    min-height:200px;
    border-radius:5px;
    display: none;
    color: #fff;
    overflow-y:auto;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* 팝업이 보이도록 하는 클래스 */
  .office .office-popup.show,
  .office .office-popup.head-office.show {
    display: block !important;
    opacity: 1;
    transform: scale(1) translateY(0);
  }





  /* 팝업 내부 요소들의 애니메이션 */
  .office .office-popup .popup-header {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease 0.1s;
  }

  .office .office-popup .popup-description {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease 0.2s;
  }

  .office .office-popup .popup-footer {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease 0.3s;
  }

  .office .office-popup .popup-picture {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease 0.1s;
  }

  /* 팝업이 나타날 때 내부 요소들도 함께 나타남 */
  .office .office-popup.show .popup-header,
  .office .office-popup.show .popup-description,
  .office .office-popup.show .popup-footer,
  .office .office-popup.show .popup-picture {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .office .office-popup::-webkit-scrollbar {
    width: 5px;;
    height: 5px;
  }

  .office .office-popup::-webkit-scrollbar-track {
    width: 5px;
    height: 5px;
    background-color: var(--cl-bg-1);

  }

  .office .office-popup::-webkit-scrollbar-thumb {
    width: 5px;
    height: 5px;
    background-color: var(--cl-bg-5);
  }
  

  .office .office-popup .popup-picture {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom:15px;
    border: 3px solid #fff;
    margin:auto;
  }

  .office .office-popup .popup-picture img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: top;
    
  }

  .office .office-popup .popup-header {
    font-size: var(--fz-body1);
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--cl-bg1);
    display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: start;
    border-bottom: 1px solid #ffffff31;
  }

  .office .office-popup .popup-header img {
    height:20px;
    vertical-align: middle;
    object-fit: contain;
    margin-bottom:10px;
    
  }

  .office .office-popup .popup-description {
    font-size: var(--fz-caption);
    margin-bottom: 10px;
    font-weight: 300;
    color: var(--cl-bg3);
    text-align: left;
  }

  .office .office-popup .popup-footer {
    font-size: 12px;
    color: gray;
    width: 100%;
    height: 20px;
    text-align: right;
  }

  .office .office-popup .popup-footer img {
    max-width: 100%;
    width:20px;
    height: 100%;
    object-fit: contain;
    margin-left:auto;
  }

  .top-headline {
    width: calc(100vw);
    position: absolute;
    z-index:  123;
    right: auto;
    top: 0;
    text-align: center;
    font-size: var(--fz-headline2);
    padding-top: 2.5rem;

  }

  .top-headline h2 {
    font-size: inherit;
    font-weight: 400;
    font-size: var(--fz-headline4);
    letter-spacing: 2px;
    color: var(--cl-base-2);
  }

  .top-headline h2 span {
    color: var(--cl-point-1);
    font-size: var(--fz-headline1);
    font-weight: 600;
  }


  .top-headline p {
    color: var(--cl-base-5);
    font-weight: 400;
    font-size: var(--fz-subtitle2);
    position: relative;
    padding-top: .5rem;
    margin-top: .25rem;
  }

  .top-headline p:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: var(--cl-point-1);
    top: 0;
    left: 50%;
    transform: translateX(-50%);

  }



  /* 02.my-journal.html */
  .container .work-journal {
    position: relative;
  }

  .container .work-journal main {
    display: flex;
    flex-direction: column;
    min-width: 100px;
  }


  /* 공통 layout: .container, .inner, main, nav, aside, header, section, footer */

  .container {
    margin:0 auto;
    max-width:100%;
    width:100%;
    min-height:100vh;
  }
  
  .container > div {
    height:100vh;
    overflow: hidden;
    display: flex;
  }

  .journal-view main {
    overflow-y: auto;
  }

  .container.office-container {
    height: 100vh;
    overflow: auto;
  }

  .container.office-container > div {
    min-width: 1920px;
  }

  .office .image-container {
    width: 100%;
  }

  .inner {
    margin:0 auto;
    max-width:calc(100% - 20px);
  }


  main {
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: auto;
    overflow-y: auto;
  }

  .work-journal main {
    overflow-y: hidden;
  }


  main .inner {
    padding: 0.5rem;
  }

  nav {
    flex-basis: 116px;
    flex-shrink: 0;
    flex-grow: 0;
    background-color: #384c71;
  }

  nav .inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0.875rem 0;
  }


  .gnb {
    flex-basis:60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-grow: 1;
  }

  .gnb li {
    min-height: 87px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
  }

  .gnb li a {
    text-align: center;
    opacity: 0.6;
    padding-top: 40px;
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }


  .gnb > li.active > a:before {
    content: '';
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, #03a2b4, #38b374, #71c630 )
  }

  .gnb >li:nth-of-type(1)> a {
    background: url("../images/icon-nav-1.png") no-repeat center top 10px;
    background-size: 20px;
    
  }
  .gnb >li:nth-of-type(2)> a {
    background: url("../images/icon-nav-2.png") no-repeat center top 15px;
    background-size: 20px;
   
  }
  .gnb >li:nth-of-type(3)> a {
    background: url("../images/icon-nav-3.png") no-repeat center top 15px;
    background-size: 20px;
  
  }
  .gnb > li:nth-of-type(4)> a {
    background: url("../images/icon-nav-4.png") no-repeat center top 10px;
    background-size: 20px;
  }

  .gnb> li:nth-of-type(5)> a {
    background: url("../images/icon-nav-5.png") no-repeat center top 10px;
    background-size: 30px;
  }

  .gnb li.active {
    background: #27475e;
    width: 100%;
  }

  .gnb li.active a {
    opacity: 1;
  }

  .gnb >li:nth-of-type(1).active >a {
    background: url("../images/icon-nav-1-h.png") no-repeat center top 10px;
    background-size: 20px;
    
  }
  .gnb >li:nth-of-type(2).active >a {
    background: url("../images/icon-nav-2-h.png") no-repeat center top 15px;
    background-size: 20px;
   
  }
  .gnb > li:nth-of-type(3).active > a {
    background: url("../images/icon-nav-3-h.png") no-repeat center top 15px;
    background-size: 20px;
  
  }
  .gnb > li:nth-of-type(4).active > a {
    background: url("../images/icon-nav-4-h.png") no-repeat center top 10px;
    background-size: 20px;
  }

  .gnb >li:nth-of-type(5).active >a {
    background: url("../images/icon-nav-5-h.png") no-repeat center top 10px;
    background-size: 30px;
  }

  .gnb li:hover a {
    opacity: 1;
  }

  .gnb li a span {
    display: block;
    text-align: center;
    color: #fff;
    font-size: var(--fz-caption);
    font-weight: 200;
  }
  
  .mode {
    flex-basis: auto;
    flex-grow: 0;
    height: 144px;
    background-color: var(--cl-point-2);
    border-radius: 6px;
    padding: 8px;
  }

  .mode li {
    border-radius: 6px;
    height: 60px;
  }

  .mode li:nth-of-type(1) {
    margin-bottom: 8px;
  }

  .mode li.active {
 

  }

  .mode li a {
    height: 100%;
    border-radius: 6px;
    text-align: center;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 5px;
    
  }

  .mode li:nth-of-type(1) a {
    background: url(../images/icon-light.png) no-repeat center top 10px;
    background-size: 20px;
  } 
  .mode li:nth-of-type(2) a {
    background: url(../images/icon-dark.png) no-repeat center top 10px;
    background-size: 20px;
  } 

  .mode li.active a {
    background: #fff;
 
  }
  .mode li a span {
    color: #fff;
    font-weight: 500;
    font-size: var(--fz-caption);
    display: block;
  }

  .mode li:nth-of-type(1).active a  {
    background: #fff url(../images/icon-light-h.png) no-repeat center top 10px;
    background-size: 20px;
  }

  .mode li:nth-of-type(2).active a  {
    background: #fff url(../images/icon-dark-h.png) no-repeat center top 10px;
    background-size: 20px;
  }

  .mode li.active a span {
    color: var(--cl-point-2);
  }

  aside {
    flex-shrink: 0;
    flex-basis: 525px;
    border-right: 1px solid var(--cl-bg-1);
    height: 100%;
  }

  aside.pc-none {
    display: none;
  }

  aside .inner {
    height: 100%;
    padding: 0.5rem;
  }

  aside .logo {
    height: 40px;
    cursor: pointer;
  }

  aside .logo img {
    height: 100%;
    object-fit: contain;
    margin-right:auto;
  }

  aside .today {
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  aside .today .date-area {
    flex-basis:45%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }


 aside .today .date-area p:nth-of-type(1) {
  font-size: var(--fz-subtitle1);
  font-weight: 400;
}

aside .today .date-area p:nth-of-type(1) b {
  font-size: var(--fz-headline3);
  display: inline-block;
}

aside .today .date-area span {
  color: var(--cl-point-1);
  font-weight: 600;

}

  aside .today .date-area p:nth-of-type(2) {
    font-size: var(--fz-headline2);
    font-weight: 500;
  }

  aside .today .date-area p:nth-of-type(3) {
    font-size: var(--fz-body1);
    font-weight: 500;
  } 

  aside .today .swiper-area {
    background:/* url("../images/bg-monthly.jpg") no-repeat center; */ var(--cl-base-1);
    background-size: cover;
    border-radius: 12px;
  }

  aside .today .img-area {
    background: url(../images/bg-line3.png) no-repeat center;
    background-size: contain;
    flex-basis: 40%;
    flex-grow: 0;
    flex-shrink: 0;
    padding: 1rem;
  }

  aside .today .img-area .swiper-slide {
    width: 100% !important;
    text-align: center;
    color:#fff;
    padding: 1rem 0.5rem;
    height: 140px;
    display: flex;
    justify-content: space-around;
    align-items: end;
    flex-direction: column;
  }

  aside .today .img-area .swiper-slide .img-wrap img {
    height: 90px;
    width: 75%;
  }



  aside .today .img-area .swiper-slide .btn-write img {
    height: 30px;
  }

  aside .today .img-area .swiper-slide .btn-write .write-txt {
    display: flex;
    align-items: center;
    gap:0.75rem;
  }

  aside .today .img-area .swiper-slide .btn-write .write-txt span {
    background: var(--cl-bg-3);
    border-radius: 6px;
    width: 35px;
    height:35px;
    display: inline-block;
    padding: 5px;
  }
  
  aside .today .img-area .swiper-slide .btn-write .write-txt b {
    font-size: var(--fz-body2);
    font-weight: 300;
    border-bottom: 1px solid #fff;
  }

  aside .today .img-area .swiper-slide .btn-write .write-txt b  strong {
    font-size: inherit;
  }

  aside .today .img-area .swiper-slide .btn-write .write-txt span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  
  aside .today .img-area .swiper-slide .btn-write .write-area img {
    height: 15px;
  }
  aside .today .img-area .swiper-slide .btn-write .write-area {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: .5rem;
    gap: 0.5rem;
  }


  aside .today .img-area .swiper-slide .btn-write .write-area p {
    font-size: var(--fz-caption);
    flex-basis: 40%;
    height: 30%;
  }

  aside .today .img-area .swiper-slide .btn-write .write-area p span {
    font-size: inherit;
    color: var(--cl-base-1);
  }

  aside .today .img-area .swiper-slide .btn-write p {
    font-size: var(--fz-body2);
  }

  aside .today .img-area .swiper-slide p {
    font-size: var(--fz-caption);
   
  }


   aside .today .swiper-area .swiper-button-next,
   aside .today .swiper-area .swiper-button-prev {
     position: absolute;
     top: 50%;
     font-size: 0;
      border:none !important;
      opacity: 0.7;
   }

  aside .today .swiper-area .swiper-button-next {
    right: 0px;
    background: #fff url(../images/icon-arrow-dark.png) no-repeat center;
    background-size: 10px;
    transform: rotate(-90deg) translateY(-50%);
    border-radius: 50%;
    width: 30px;
    height: 30px;
  }

  aside .today .swiper-area .swiper-button-next::after,
  aside .today .swiper-area .swiper-button-prev::after {
    display: none;
  }

  aside .today .swiper-area .swiper-button-prev {
    left: 0px;
    background: #fff url(../images/icon-arrow-dark.png) no-repeat center;
    background-size: 10px;
    transform: rotate(90deg) translateY(-50%);
    border-radius: 50%;
    width: 30px;
    height: 30px;
  }

  aside .today .swiper-area .swiper-button-next:hover,
  aside .today .swiper-area .swiper-button-prev:hover {
    opacity: 1;
  }


 aside .btn-write {
 /*  background: #ffffffa9; */
  border-radius: 10px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  order: 2;
  margin: auto;
 }

 aside .btn-write div {
  display: flex;
  flex-direction: column;
  /* border:1px dashed #eee; */
  border-radius: 10px;
  background-color: #fff;

 }

 aside .btn-write div.write-area {
  flex-basis: auto;
  flex-grow: 1;

 }

 aside .img-wrap {
  order: 1;
  height: 80px;
  margin: auto;
 }

 aside .img-wrap img {
  object-fit: contain;
 }


  aside .my-journal {
    padding: 0;
  }

  aside .my-journal .my-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
  }

  aside .my-journal .my-top h2 {
    font-size: var(--fz-subtitle1);
  }

  aside .my-journal .my-top h2 span {
    display: block;
    font-size: var(--fz-caption);
    color: var(--cl-base-4);
  }

  aside .my-journal .my-top .select  {

  }

  aside .my-journal .my-top .select select {
  
  }

  aside .my-journal .my-top .select option {
  
  }

  aside .my-journal .my-center {

  }


  aside .my-journal .my-center ul {
    display: flex;
    flex-wrap:wrap;
  }

  aside .my-journal .my-center ul li {
    width:50%;
    display: flex;
    height: 32px;
    text-align: center;
    align-items: center;
    
  }

  aside .my-journal .my-center ul li span {
    border:1px solid var(--cl-bg-1);
    display: inline-block;
    width: 100%;
    border-bottom:none;
    border-right:none;
    vertical-align: middle;
    height: 100%;
    vertical-align: middle;
    line-height: 30px;;
  }

  aside .my-journal .my-center ul li:last-of-type span  {
    border-bottom: 1px solid var(--cl-bg-1);

  }

  aside .my-journal .my-center ul li:nth-last-of-type(2) span  {
    border-bottom: 1px solid var(--cl-bg-1);
  }

  aside .my-journal .my-center ul li:nth-of-type(even) span:last-of-type,
  aside .my-journal .my-center ul li:last-of-type span:last-of-type  {
    border-right:1px solid var(--cl-bg-1);
  }


  aside .my-journal .my-center ul li span:first-of-type {
    /* background-color: var(--cl-bg-3); */
    font-size: var(--fz-caption);
    text-align: left; 
    padding-left: 0.75rem;
    color: var(--cl-base-1);

  }

  aside .my-journal .my-center ul li span:first-of-type b {
    font-size: inherit;
  }

  aside .my-journal .my-center ul li.unwritten span:last-of-type {
    background: url(../images/icon-unwritten-h.png) no-repeat center ;
    background-size: 20px;
    
  }

  aside .my-journal .my-center ul li.written span:last-of-type {
    background: url(../images/icon-written2.png) no-repeat center ;
    background-size: 20px;
    
  } 

 /*  aside .my-journal .my-center ul li.unwritten span:last-of-type:hover {
    background: url(../images/icon-unwritten.png) no-repeat center ;
    background-size: 20px;
  } */



  aside .my-journal .my-center ul li.unwritten-date span:last-of-type {
    background: url(../images/icon-unwritten-date2.png) no-repeat center ;
    background-size: 20px;
    /* cursor: pointer; */
  } 

 /*  aside .my-journal .my-center ul li.unwritten-date span:last-of-type:hover {
    background: url(../images/icon-unwritten.png) no-repeat center ;
    background-size: 20px;
  } */



  aside .my-journal .my-bottom {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  aside .my-journal .my-bottom .character-area  {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--cl-bg-1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  aside .my-journal .my-bottom .character-area img {
    height: 30px;
  }

  aside .my-journal .my-bottom .information-area p strong {
    color: var(--cl-secondary);
    display: inline-block;
  }

  header {
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid var(--cl-bg-1);
    padding: 0.5rem;
  }

  header .mobile-logo {
    display: none;
  }

  header .mobile-logo.pc-logo {
    display: block;
  }

  header .inner {
    margin-right:0;
  }

  header .inner.with-logo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding: 0.5rem 0;
  }


  header .user {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  header .user p {
    font-size: var(--fz-caption);
    color: var(--cl-base-2);
    min-width: 30%;
  }

  header .user p b {
    display: block;
    font-size: inherit;
    color: var(--cl-base-1);
    
  }

  header .user .popup {
    background-color: #fff;
    right: 10px;
    color: var(--cl-base-1) !important;
    top: 60px;
    width: 340px;
    height:auto;
    min-height: 250px;
    border-radius: 12px;
    box-shadow: 0 0 10px var(--cl-base-3);
    display: none;
    padding-bottom: 50px;
    z-index: 10;
  }

  header .user .popup.active {
    display: flex;
  }


  header .user .popup img {
    display: block;
    height: 80px;
    margin: 10px auto;
  }


  header .user .popup .user-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;

  }

  header .user .popup .user-detail .name {
    font-size: var(--fz-headline4);
    word-break: break-all;
  }

  header .user .popup .user-detail p span {
    display: block;
    font-size: var(--fz-caption);
    font-weight: 400;
    word-break: break-all;
  }

  header .user .popup .info-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    scrollbar-width: none;
 
  }

  header .user .popup .info-area > span:last-of-type {
    display: block;
    text-align: center;
    width: 100%;
    margin: 0.125rem 0.5rem 0.5rem 0.5rem;
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--cl-secondary);
  }


  header .user .popup .btn-area {
    display: flex;
    align-items: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
  }

  header .user .popup .btn-area button {
    background-color: transparent;
    border:none;
    border-top: 1px solid var(--cl-bg-1);
    width: 50%;
    min-height: 50px;
    font-size: var(--fz-caption);
    transition:0.3s;
    text-align: left;
    padding-left: 1rem;
  }

  header .user .popup .btn-area button:first-of-type {
    border-right:1px solid var(--cl-bg-1);
    background: url("../images/icon-change.png") no-repeat center right 10px;
    background-size: 14px;
  }
  header .user .popup .btn-area button:last-of-type {
    background: url("../images/icon-logout.png") no-repeat center right 10px;
    background-size: 14px;
  }

  header .user .popup .btn-area button:hover {
    background-color: var(--cl-base-1);
    color:#fff;
  }

  header .user .popup .btn-area button:first-of-type:hover {
    border-right:1px solid var(--cl-bg-1);
    background: var(--cl-base-1) url("../images/icon-change-h.png") no-repeat center right 10px;
    background-size: 14px;
    color:#fff;
  }
  header .user .popup .btn-area button:last-of-type:hover {
    background:  var(--cl-base-1) url("../images/icon-logout-h.png") no-repeat center right 10px;
    background-size: 14px;
    color:#fff;
  }

  header img 
  {height:40px;
    border-radius: 50%;
    vertical-align: middle;
  }


  .work-journal .content {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
 
  }

  .scroll::-webkit-scrollbar {
    width: 10px;;
    height: 10px;
  }

  .scroll::-webkit-scrollbar-track {
    width: 5px;
    height: 5px;
    background-color: var(--cl-bg-1);

  }

  .scroll::-webkit-scrollbar-thumb {
    width: 5px;
    height: 5px;
    background-color: var(--cl-bg-5);
  }


  section .inner {
    margin-top: 10px;
  }

  section .visual {
    background:repeating-linear-gradient(180deg, #03a2b4, #38b374, #71c630 500px);
    background-size: cover;
    height: 80px;
    border-bottom: 1px solid var(--cl-bg-1);
    background-color: #fefefe;
  }

  section .visual .title {
    padding:1rem;
    display: flex;
    align-items: flex-end;
    height: inherit;
    font-size: var(--fz-subtitle1);
    align-items: center;

  }

  section .visual h2 {
    color: #fff;
   /*  color: var(--cl-base-1); */
    font-size: inherit;
    font-size: var(--fz-headline4);
    display: flex;
    align-items: center;
  }

  section .visual b {
    color: #fff;
    font-weight: 300;
    opacity: 0.8;
    display: inline-block;
    vertical-align: middle;
  }

  section .visual h2 span {
    background: url("../images/icon-nav-1.png") no-repeat center;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: 30px;
    vertical-align: middle;
  }

  section .visual h2 span.journal {
    background: url("../images/icon-nav-2.png") no-repeat center;
    background-size: 30px;
  }

  section .visual h2 span.project {
    background: url("../images/icon-nav-3.png") no-repeat center;
    background-size: 30px;
  }


  section .inner .content .table-wrap {
   /*  min-height:calc(100vh - 420px);
    max-height:calc(100vh - 420px); */
    height: auto;
    overflow-y: auto;
    min-height:calc(100vh - 310px);
    min-width: 50%;
  }

  section .inner .content .table-wrap.tb-height {
    min-height: auto;
    margin-bottom: 1.875rem;
  }


  section .inner .content .tb-tit {
    padding-bottom: 0.5rem;
    font-weight: 500;
    font-size: var(--fz-body1);
  }

  .table-area .table-wrap .sticky-table {
    border-top: none;
    table-layout: fixed;
  }

  .table-area .table-wrap .sticky-table thead tr th {
    position: sticky;
    top: 0;
    z-index: 1;
    word-break: keep-all;
    
  }

  .sticky-table thead th:nth-of-type(1) {
    min-width:57px;
  }



  section .content .written-status {
    text-align: center;
    font-weight: 700;
    font-size: var(--fz-subtitle1);
    min-height:100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid var(--cl-bg-1)
  }

  section .content .written-status p {
    font-weight: inherit;
    font-size: inherit;
  }

  section .content .input-area label {
    font-size: var(--fz-subtitle2);
    font-weight: 600;
    display: block;
   /*  margin-bottom: 1rem;  */
   
  }

  .form_journal_record label {
    margin-bottom: 1rem;
  }

  section .content .input-area input, 
  section .content .input-area select {
    font-size: var(--fz-caption) !important;
    padding-left: calc(1em - 1px) !important;
    min-height:46px;
  }

  section .content .input-area select option {
    font-size: var(--fz-caption) !important;
  }

  section .content .input-area form {
    margin: 0rem;
    padding: 0 0.5rem;
  }

  section .content .input-area form .filter-area img {
    height: 20px;
  }

  section .content .input-area form > div  {
    display: flex;
    width: 100%;
    gap:5px;
    margin-bottom: 5px;
    flex-wrap:wrap;
   
  }

  section .content .input-area form > div.input-scroll {
    overflow-x: scroll;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  section .content .input-area form > div.btn-wrap {
    margin-top:1rem;
    justify-content:center;
    gap: 0.5rem;
  }

  section .content .input-area > div.btn-wrap input {
    color: #fff;
    background: var(--cl-secondary);
    margin-left: auto;
    margin-right: 1.875rem;

  }

  section .content .input-area > div.btn-wrap input:hover {
    color:  var(--cl-secondary);
    background:#fff;
    border:1px solid  var(--cl-secondary);
  }


  section .content .input-area form > div .add-wrap {
    width: calc(100% - 140px - 0.25rem);
    display: flex;
    gap:0.25rem;
  }


  section .content .input-area form > div .add-wrap:not(:first-of-type) {
    padding-left: calc(142px - 0.25rem);
    width: calc(100% - 0.25rem);
  }


  section .content .input-area form > div:not(:first-of-type).add-input {
    padding-left: 140px;
  }

  section .content ul.filter-project {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:center;
    margin-top: 0rem;
    gap: 1rem;
  }

  section .content ul.filter-project .checkbox label {
    min-width: 180px;
  }

  section .content .input-area input[type=date] {
    min-width: 134px;
    max-width: 134px;
  }


  section .content .input-area input[type=text] {
    border-top: none;
    border-right:none;
    border-left:none;
    flex-grow: 1;
    border-radius: 0;
    flex-basis:auto;
    flex-shrink: 0;

    
  }

  section .content .select-area .input-area input[type=text] {
      border-top:1px solid var(--cl-bg-1);
      border-right:1px solid var(--cl-bg-1);
      border-left:1px solid var(--cl-bg-1);
  }

  section .content .input-area input[type=text]:focus {
    border-bottom:1px solid var(--cl-base-1)
  }

  section .content .select-area .input-area input[type=text]:focus {
    border:1px solid var(--cl-base-1);
}

  section .content .input-area input[type=submit] {
    display: flex;
    justify-content: center;
    margin: 0;
    font-size: var(--fz-body1) !important;
    font-weight: 500 !important;
  }


  section .content .input-area input[type=submit].btn-search {
    background-color: var(--cl-base-1);

  }

	input[type=date]{
        position: relative;
        background: url(../images/icon-calendar.png) no-repeat center right 10px;       
        padding-right: 10px; 
        padding-left: 6px;
        background-size: 15px; 
        border-radius: 6px !important; 
        color: var(--cl-base-1) !important;
        -webkit-appearance: none; /* Safari */
        -moz-appearance: none;    /* Firefox */
        appearance: none;         /* 모든 브라우저 */
                          
    }

    input[type="date"]::-webkit-clear-button,
    input[type="date"]::-webkit-inner-spin-button { 
      display: none;
    } 
    
    input[type='date']::-webkit-calendar-picker-indicator {
        position:absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        color: transparent;
        cursor: pointer;
      }

      input[type="date"]::-webkit-input-placeholder {
        color: var(--cl-base-1);
      }

  section .content .input-area form .btn-add {
    border:none;
    background: url(../images/icon-plus.png) no-repeat center;
    background-size: 12px;
  }
  section .content .input-area form .btn-delete {
    border:none;
    background: url(../images/icon-minus.png) no-repeat center;
    background-size: 12px;
    color:transparent;
    flex-basis:100px;
  }

  section .content .input-area form .btn-add:hover {
    transform: rotate(180deg);
  }


  footer {
    border-top: 1px solid #ffffff31;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--cl-base-5);
    font-size: var(--fz-body2);
    padding:0.875rem;
    margin-top: auto;
    font-weight: 300;
    width: 100%;
    gap: 0.875rem;
    
  }

  footer .copyright {
    justify-self: center;

    
  }

  footer * {
    color: inherit;
    font-size: inherit;
  }

  footer .link-area > a:not(.related-link) {
    width: 30px;
    height: 30px;
    transition:0.5s;
  }

  footer .link-area {
    display: flex;
    gap:0.875rem;
    align-items: center;
    position: relative;
  }

  footer .link-area a img {
    vertical-align: middle;
  }


  footer .link-area > a:nth-of-type(1) {
    background: url("../images/icon-sns-3.png") no-repeat center;
    background-size: 20px; 
    transform: rotateY(0deg);
  }
  footer .link-area > a:nth-of-type(1):hover {
    background: url("../images/icon-sns-3-h.png") no-repeat center;
    background-size: 20px;  
  }
  footer .link-area > a:nth-of-type(2) {
    background: url("../images/icon-sns-4.png") no-repeat center;
    background-size: 15px; 
    transform: rotateY(0deg);
  }
  footer .link-area > a:nth-of-type(2):hover {
    background: url("../images/icon-sns-4-h.png") no-repeat center;
    background-size: 15px; 
  }
  footer .link-area > a:nth-of-type(3) {
    background: url("../images/icon-sns-5.png") no-repeat center;
    background-size: 10px; 
    transform: rotateY(0deg);
  }
  footer .link-area > a:nth-of-type(3):hover {
    background: url("../images/icon-sns-5-h.png") no-repeat center;
    background-size: 10px; 
  }

  /* 
  footer .link-area > a:nth-of-type(4) {
    background: url("../images/icon-sns-4.png") no-repeat center;
    background-size: 15px; 
    transform: rotateY(0deg);
  }
  footer .link-area > a:nth-of-type(4):hover {
    background: url("../images/icon-sns-4-h.png") no-repeat center;
    background-size: 15px; 
  }
  footer .link-area > a:nth-of-type(5) {
    background: url("../images/icon-sns-5.png") no-repeat center;
    background-size: 10px; 
    transform: rotateY(0deg);
  }
  footer .link-area > a:nth-of-type(5):hover {
    background: url("../images/icon-sns-5-h.png") no-repeat center;
    background-size: 10px; 
  } */

  footer .link-area a.related-link {
    font-size: var(--fz-body2);
    border: 1px solid var(--cl-bg-1);
    padding: 1rem;
    border-radius: 6px;
    background: url("../images/icon-link.png") no-repeat center right 10px;
    background-size: 20px;  
    padding-right:50px;  
    transition:0.5s;
    min-width: 220px;
  }

  footer .link-area a.related-link span {
    display: inline-block;
    transition:0.5s;
    font-weight: 400;
    color: var(--cl-base-5);
  }


  footer .link-area a.related-link:hover {
    background: url("../images/icon-link-h.png") no-repeat center right 10px;
    background-size: 20px; 
    border:1px solid var(--cl-base-1)
  }


  footer .link-area a.related-link:hover span {
    color: var(--cl-base-1);
   
  }

  footer .link-area .link-option {
    position: absolute;
    right: 0;
    bottom: 50px;
    padding: 10px;
    width: 220px;
    border:1px solid var(--cl-bg-1);
    background-color: #fff;
    display: none;
    z-index: 1;
  }

  footer .link-area .link-option.active {
    display: block;
  }



  footer .link-area .link-option li {
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    width: 100%;
    justify-self: start;
  }

  footer .link-area .link-option li:not(:last-of-type) {
    margin-bottom: 0.5rem;
  }


  footer .link-area .link-option a {
    font-size: var(--fz-caption);
    padding: 0.15rem;
    vertical-align: middle;
    display: block;
    width: 100%;
  
  }

  footer .link-area .link-option a img {
    height: 22px;
  }

  footer .link-area .link-option li:nth-of-type(2) {
    background-color: var(--cl-primary);
    color: #fff;
  }

  footer .link-area .link-option li:nth-of-type(2) a {
    color: #fff;
    padding-left: 0.875rem;
  
  }

  footer .link-area .link-option li:nth-of-type(2) a img {
    height: 24px;
  }

  footer .link-area .link-option li:nth-of-type(1) a {
    padding-left:0.75rem;
    font-weight: 400;
    display: block;
  }

  footer .link-area .link-option li:nth-of-type(1) a img {
    height: 20px;
  }
  

  footer .link-area .link-option li:not(:nth-of-type(2)):hover {
    color: var(--cl-base-1);
    background-color: var(--cl-bg-1);
    font-weight: bold
  }

  .login footer {
    color: var(--cl-bg-1);
  }

  .btn-toggle {
    display: none;
  }

  .table-area.column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .table-area.column .table-wrap-one {
    height:calc(100vh - 400px )
  }


  .popup .form-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .popup .form-wrap form label {
    padding-bottom: 0.25rem;
    display: block;
    font-weight: 500;
    font-size: var(--fz-body2);
  }


  .popup table input {
    font-size: var(--fz-caption) !important;
    padding-left: 0.5rem !important; 
    border-radius: 6px !important;
  }

  .popup img {
    height: 20px;
  }

  .popup .btn.btn-download {
    font-size: var(--fz-caption);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border:1px solid var(--cl-bg-1);
    margin: auto;
  }

  .popup .btn.btn-download:hover {
    background: var(--cl-bg-1);
  }

  .content > .select-area {
    display: flex;
    width: 100%;
    font-size: var(--fz-body2) !important;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
    margin-top: 0.875rem;
  }


  .content > .select-area select option {
    font-size: inherit;
  }

  .content > .select-area >div {
    font-size: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .content > .select-area >div div {
    font-size: inherit;
  }

  .content > .select-area >div div.input-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .content > .select-area >div div.input-area > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .content > .select-area input,  .content > .select-area select , .select-area select option, .content > .select-area label,.content > .select-area .btn {
    font-size: var(--fz-body2) !important;
  }

  .select-area label {
    font-weight: 500;
  }

  
  .content > .select-area input {
    border-radius: 6px !important;
    padding-left: calc(1em - 1px) !important;
    font-size: var(--fz-caption)
  }



  .popup-change-pw.popup .form-wrap form  {
    display: flex;
    flex-direction: column;
    align-items: center;
 
  }

  /* mode : dark */

  .mode-dark {}

  .mode-dark {
    color: #fff;
    background-color:#131418;
  }
  .mode-dark nav {
    background-color: var(--cl-point-3);
  }

  .mode-dark .gnb li.active {
    background: var(--cl-point-2);
  }

  .mode-dark aside .my-journal .my-center ul li span:first-of-type {
    background: #1a1a23;
  }

  .mode-dark input:not([type=button]) {
    color: #fff !important;
  }


  .mode-dark input[type=date] {
    background: url(../images/icon-calendar-dark.png) no-repeat center right 10px;
    background-size: 15px;
  }


  .mode-dark footer .link-area a.related-link:hover {
    background: url(../images/icon-link.png) no-repeat center right 10px;
    background-size: 20px;
    border: 1px solid var(--cl-bg-1);
  }

  .mode-dark footer .link-area a.related-link:hover span {
    color: var(--cl-base-5);;
  }

  .mode-dark section .visual {
    background: url(../images/bg-visual.png) no-repeat;
    background-size: cover;
  }


/* mng start */

.mng nav {
  flex-basis : 200px;
  border-right: 1px solid var(--cl-bg-1);
}


.mng .mode {
  display: none;
}

.mng .gnb {
  gap:0.5rem
}

.mng .gnb li {
  justify-content: start;
  align-items: center;
  text-align: left;
  display: block;;
  padding: 0;
  min-height: 30px;
}

.mng .gnb > li {

  min-height:50px;
} 

.mng .gnb li ul {
  display: none;
}


.mng .gnb li ul li {
  display: flex;
}


.mng .gnb li.active ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-wrap: wrap;
  padding-right: 0rem;
  padding-left:calc(40px);

}

.mng .gnb li a {
  padding-top: 0 !important; 
  padding-left: 40px;
  display: flex;
  height: 100%;
} 

.mng .gnb > li > a {
  min-height: 40px;
  padding-left: 40px;
}

.mng .gnb > li.active {
  padding: 0;
}

.mng .gnb > li.active a {
  height: 100%;
}


.mng .gnb > li.active a span {
  padding: 0.25rem;
}

.mng .gnb > li:nth-of-type(4).active a {
  height: auto;
}


.mng .gnb > li ul a {
  color: #fff;
  font-size: calc(var(--fz-caption) * 0.875);
  opacity: 0.6;
  font-weight: 200;
  display: inline-block;
  text-align: left;
  padding-left: 0.2rem;
  word-break: break-all;
  word-wrap: break-word;
  transition: 0.5s;
}

.mng .gnb > li ul li:hover a,.mng .gnb > li ul li.active a  {
  opacity: 1;

}

.mng .gnb > li ul li.active a  {
  border-left: 1px solid #fff;
}

.mng .gnb > li:nth-of-type(1) > a {
  background: url("../images/mng/icon-mng-nav-1.png") no-repeat center left 10px;
  background-size: 20px;
}

.mng .gnb > li:nth-of-type(2) > a {
  background: url("../images/mng/icon-mng-nav-2.png") no-repeat center left 10px;
  background-size:  20px;
}
.mng .gnb li:nth-of-type(3)  > a {
  background: url("../images/mng/icon-mng-nav-3.png") no-repeat center left 10px;
  background-size:  20px;;
}
.mng .gnb > li:nth-of-type(4) > a {
  background: url("../images/mng/icon-mng-nav-4.png") no-repeat center left 10px;
  background-size:  20px;;
}
.mng .gnb >li:nth-of-type(5) a {
  background: url("../images/mng/icon-mng-nav-5.png") no-repeat center left 10px;
  background-size:  20px;;
}
.mng .gnb >li:nth-of-type(6) a {
  background: url("../images/mng/icon-mng-nav-6.png") no-repeat center left 10px;
  background-size:  20px;;
}
.mng .gnb >li:nth-of-type(7) a {
  background: url("../images/mng/icon-mng-nav-7.png") no-repeat center left 10px;
  background-size:  20px;;
}
.mng .gnb >li:nth-of-type(8) a {
  background: url("../images/mng/icon-mng-nav-8.png") no-repeat center left 10px;
  background-size:  20px;
}
.mng .gnb >li:nth-of-type(9) a {
  background: url("../images/mng/icon-mng-nav-9.png") no-repeat center left 10px;
  background-size:  20px;
}
.mng .gnb >li:nth-of-type(10) a {
  background: url("../images/mng/icon-mng-nav-10.png") no-repeat center left 10px;
  background-size:  20px;
}
.mng .gnb >li:nth-of-type(11) a {
  background: url("../images/mng/icon-mng-nav-11.png") no-repeat center left 10px;
  background-size:  20px;
}

.mng .gnb >li:nth-of-type(1).active a {
  background: url("../images/mng/icon-mng-nav-1-w.png") no-repeat center left 10px;
  background-size: 20px;
}

.mng .gnb >li:nth-of-type(2).active a {
  background: url("../images/mng/icon-mng-nav-2-w.png") no-repeat center left 10px;
  background-size: 20px;
}

.mng .gnb >li:nth-of-type(3).active a {
  background: url("../images/mng/icon-mng-nav-3-w.png") no-repeat center left 10px;
  background-size: 20px;
}

.mng .gnb > li:nth-of-type(4).active > a {
  background: url("../images/mng/icon-mng-nav-4-w.png") no-repeat center left 10px;
  background-size: 20px;
}

.mng .gnb >li:nth-of-type(5).active a {
  background: url("../images/mng/icon-mng-nav-5-w.png") no-repeat center left 10px;
  background-size: 20px;
}

.mng .gnb >li:nth-of-type(6).active a {
  background: url("../images/mng/icon-mng-nav-6-w.png") no-repeat center left 10px;
  background-size: 20px;
}

.mng .gnb >li:nth-of-type(7).active a {
  background: url("../images/mng/icon-mng-nav-7-w.png") no-repeat center left 10px;
  background-size: 20px;
}

.mng .gnb >li:nth-of-type(8).active a {
  background: url("../images/mng/icon-mng-nav-8-w.png") no-repeat center left 10px;
  background-size: 20px;
}

.mng .gnb >li:nth-of-type(9).active a {
  background: url("../images/mng/icon-mng-nav-9-w.png") no-repeat center left 10px;
  background-size: 20px;
}

.mng .gnb >li:nth-of-type(10).active a {
  background: url("../images/mng/icon-mng-nav-10-w.png") no-repeat center left 10px;
  background-size: 20px;
}

.mng .gnb >li:nth-of-type(11).active a {
  background: url("../images/mng/icon-mng-nav-11-w.png") no-repeat center left 10px;
  background-size: 20px;
}


.mng .gnb li a span {
  text-align: left;
  display: flex;
  align-items: center;
}

.mng section .visual h2 span {
  margin-right: 0.5rem;
}

.mng .mng-1 section .visual h2 span {
  background: url(../images/mng/icon-mng-nav-1-w.png) no-repeat center;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: 30px;
   
}
.mng .mng-2 section .visual h2 span{
  background: url(../images/mng/icon-mng-nav-2-w.png) no-repeat center;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: 30px;
}
.mng .mng-3 section .visual h2 span {
  background: url(../images/mng/icon-mng-nav-3-w.png) no-repeat center;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: 30px;
}
.mng .mng-4 section .visual h2 span {
  background: url(../images/mng/icon-mng-nav-4-w.png) no-repeat center;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: 30px;
}
.mng .mng-5 section .visual h2 span {
  background: url(../images/mng/icon-mng-nav-5-w.png) no-repeat center;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: 30px;
}
.mng .mng-6 section .visual h2 span {
  background: url(../images/mng/icon-mng-nav-6-w.png) no-repeat center;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: 30px;
}
.mng .mng-7 section .visual h2 span {
  background: url(../images/mng/icon-mng-nav-7-w.png) no-repeat center;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: 30px;
}
.mng .mng-8 section .visual h2 span {
  background: url(../images/mng/icon-mng-nav-8-w.png) no-repeat center;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: 30px;
}
.mng .mng-9 section .visual h2 span {
  background: url(../images/mng/icon-mng-nav-9-w.png) no-repeat center;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: 30px;
}
.mng .mng-10 section .visual h2 span {
  background: url(../images/mng/icon-mng-nav-10-w.png) no-repeat center;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: 30px;
}
.mng .mng-11 section .visual h2 span {
  background: url(../images/mng/icon-mng-nav-11-w.png) no-repeat center;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: 30px;
}

.mng .btn-right {
  gap: 0.5rem;
}

.mng .content > .select-area form {
  display: flex;
  gap:0.5rem;
  align-items: center;
}

.mng .content .select-area {
  margin-bottom: 0.5rem;
}

.mng .table-area .table-wrap .sticky-table {

  min-width: 100%;
}

.mng .table-area .table-wrap-two  {
  display: flex;
  gap: 10px;
} 

.mng .table-area .table-wrap.table-wrap-two .table-type-block {
  width: calc((100% - 10px) / 2);
}

.mng .table-area .table-wrap .table-type-block tr {
  display: flex;
  min-height: 50px;
}


.mng .table-area .table-wrap .table-type-block tr th {
  text-align: left;
  border-right:none !important;
  flex-basis:200px;
  flex-shrink: 0;
  /* background-color: #fefefe; */
  background: var(--cl-base-1);
  color: #fff;
  display: flex;
  align-items: center;
  
}


.mng .table-area .table-wrap .table-type-block tr td {
  flex-grow: 1;
}

.mng .table-area .table-wrap .table-type-block tr th,.mng .table-area .table-wrap .table-type-block tr td {
  border:1px solid var(--cl-bg-5);
  border-bottom: 0;
}

.mng .table-area .table-wrap .table-type-block tr:last-of-type th,.mng .table-area .table-wrap .table-type-block tr:last-of-type td  {
  border-bottom: 1px solid var(--cl-bg-5) !important;
}


.mng .table-area .table-wrap .table-type-block tr td input[type=text],
.mng .table-area .table-wrap .table-type-block tr td input[type=password] {
  width: 100%;
}


.mng .table-area .table-wrap .user-table tr {
  cursor: pointer;
}


.mng .table-area .table-wrap .user-table tr:hover {
  background-color: var(--cl-bg-1);
}


.mng section .visual {
  height: 100px;
}

.mng section .visual .title {
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.mng section .visual .title b {
  padding-left: 42px;
  font-size: var(--fz-body2);
  font-weight: 200;
  display: inline-block;
}

.mng .table-area .table-wrap table {
  text-align: center;
}

.mng .table-area .table-wrap .sticky-table.mt-custom {
  margin-top: 0.5rem;
}

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

/* input type file custom */
/* input[type=file] {
 -webkit-appearance: none; -moz-appearance: none; appearance: none; border:0; background-color:transparent;
}

.filebox {display: flex; gap: 10px;}
.filebox input {border: 1px solid #dbdbdb; background-color: #fff; font-size: 16px;}
.filebox .upload-name {max-width:500px; width: 100%; height: 36px; padding: 4.5px 15px; pointer-events: none;}
.filebox .file {position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; border: 0; white-space: nowrap; clip: rect(0, 0, 0, 0);}
.filebox .file:focus + label {background-color: #000; color: #fff;}
.filebox .upload-button {display: inline-flex; align-items:center; justify-content: center; flex-shrink: 0; padding: 4.5px 15px; border: 1px solid #000; color: #000; cursor: pointer; line-height: 1; transition: all 0.3s;}
.filebox .upload-button:hover, .filebox .upload-button:focus {background-color: #000; color: #fff;}
 */


  /*************** responsive start ***************/

  /************************ width **********************/


  @media screen and (max-width:1840px) {

    section .content .input-area form > div.input-scroll {
      scrollbar-width: auto;
    }
    section .content .input-area form > div .add-wrap{

    }
  }


  @media screen and (max-width:1640px) {

    .office  {
      height:auto !important;
      overflow: auto !important;
      min-height: 100vh;
    }

    .office .image-container {
      min-height: inherit;
    }

    .top-headline {
      font-size: var(--fz-subtitle1);
    }

    .office .office-popup {
      width: auto;
      max-width: 300px;
      padding-left: 15px;
    }

    .office .office-popup .popup-picture {
      width: 50px;
      height: 50px;
      /* left: 50%;
      transform: translateX(-50%); */
    }

    .office .office-popup .popup-header {
      font-size: var(--fz-body2);
    }

    .content > .select-area {
      flex-wrap: wrap;
    }

    
    main .inner .table-area {
      flex-direction: column;
      gap: 0.5rem;
    }
    
  }

  @media screen and (max-width:1440px) {

    .login-content {
      flex-direction: column;
      min-height: auto;
      height:calc(100vh - 100px);
    }

    .container > div {
      overflow: hidden;
    }

    .login-content .login-form img {
      
    }

    .login input[type=submit] {
      width: 140px;
    }


    .login-content .login-form {
      flex-shrink: 0;
      flex-grow: 1;
      flex-basis: auto;
      width: 60%;
      gap:2.5rem;
      padding: 1.5rem 1.5rem calc(1.5rem + 25px);
      position:absolute;
      top:100px;

    }

    .login-content .login-form form {
      flex-direction: row;
      width: 100%;
    }

    .login-content .login-form form > div {
      flex-direction: column;
      align-items: start;
    }

    .login-title p {
      text-align: left;
    }

    .login input {
      width: 100%;
    }

    .login-content .login-character {
      flex-grow: 1;
      flex-shrink: 0;
    }

    aside .today {
      flex-direction: column;
    }

    aside {
      flex-basis: 300px;
    }

    nav {
      flex-basis: 95px;
    }

    nav .inner {
      padding:0.875rem 0;
    }

    aside .btn-write .btn {
      font-size: var(--fz-caption);
      background: var(--cl-point-4) url(../images/icon-btn-write.png) no-repeat center left 6px;
      background-size: 18px;
    }

    aside .my-journal .my-center ul li {
      width: 100%;
    }

    aside .my-journal {
      height: 60vh;
      overflow-y: auto;
      scrollbar-width: none;
    }

    aside .my-journal .my-top h2 {
      font-size: var(--fz-subtitle1);
    }

    aside .my-journal .my-top {
      align-items: center;
    }

    aside .my-journal .my-center ul li span {
      border-right:1px solid var(--cl-bg-1)
    }

    section .visual h2 {
      font-size: var(--fz-headline4);
    }

     aside .my-journal .my-center ul li:last-of-type span {
      border-top:none;
    }

    aside .today .img-area .swiper-slide .btn-write .write-txt b {
      font-size: var(--fz-body2);
      text-align: left;
    }

    aside .today .img-area .swiper-slide .btn-write .write-txt {
      flex-direction: column;
      align-items: center;
      width: 100%;
      align-items: start;
    }

    aside .btn-write {
      width: 100%;
    }

    
    aside .today .img-area .swiper-slide .btn-write .write-txt {
      gap: 0.5rem;
    }

    aside .today .img-area .swiper-slide .btn-write .write-txt span {
      display: none;
    }

    aside .img-wrap {
      height: 80px;
      margin: auto;

    }

    aside .today .swiper-area .swiper-button-next,
    aside .today .swiper-area .swiper-button-prev  {
      width: 20px;
      height: 20px;
    }

    aside .today .img-area .swiper-slide .btn-write .write-txt b {
      text-align: center;
      margin: auto;
    }
  }


  @media screen and (max-width:1280px) {

    .login-content .login-form {
      width: 70%;
    }

    footer {
      flex-direction: column;
      gap: 0.5rem;
    }




    main .inner .content {
      width: 100%;
    }



    nav {
      flex-basis: auto;
      width: 95px;
    }
    aside {
      flex-basis: auto;
      width: 300px;
    }

    main {
      flex-basis: auto;
      width: calc(100% - 395px);
    }

    section .content .input-area form {
      overflow-x: auto;
      scrollbar-width: thin;
    }

    footer .link-area {
      margin-left: auto;
    }

    footer .copyright {
      margin-left:auto;
      padding-bottom: 20px;
      text-align: right;
    }



    section .inner .content .table-wrap {
      min-height: 100px;
      max-height: 100%;
    }

    .content > .select-area {
      flex-wrap: wrap;
    }

    .content > .select-area >div {
     /*  width: calc((100% - 20px) / 2); */
    }

    .content > .select-area >div:nth-of-type(3) {
      width: calc(100% - 100px);
    }
    .content > .select-area input,  .content > .select-area .select {
      flex-grow: 1;
    }
     .content > .select-area input[type=button] {
		flex-grow:0;
	 }

    .content > .select-area .select select {
      width: 100%;
    }

    .content > .select-area >div.auto {
      width: auto !important;
    }
  }


  @media screen and (max-width:1024px) {
    
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #fff;
      /* box-shadow: 0 0 10px var(--cl-base-3); */
      z-index: 18;
    }

    header .inner {
      display: flex;
      justify-content: space-between;
      width: 100%;
      padding:0.5rem;
      margin: auto;
    }

    header .mobile-logo {
      display: block;
    }
    
    .login-content .login-character img {
      height: 360px;
    }

    .login-content .login-character h1 {
      font-size: var(--fz-headline4);
    }


    section .visual{
      height: 160px;
      display: flex;
      align-items: end;
    }

    section .visual h2 span {
      width: 30px;
      height: 30px;
      background-size: 20px;
    }

    section .visual h2 span.project {
      background-size: 20px;
    }

    section .visual h2 span.journal {
      background-size: 20px;
    }

    section .visual .title {
      height: auto;
    }

    nav {
      position: fixed;
      width: 100%;
      height: auto;
      min-height: 60px;
      bottom: 0;
      z-index: 10;
    }

    .gnb {
      flex-direction: row;
    }

    .gnb > li.active > a:before {
      display: none;
    }

    .mode {
      display: flex;
      height: auto;
      width:70px;
      align-items: center;
      position: fixed;
      bottom: 100px;
      flex-direction: column;
    }

    .mode li {
      width: 100%;
    }

    nav .inner {
      padding:0.25rem 0;
    }

    .container .work-journal {
      flex-direction: column;
      overflow: auto;
    }

    aside {
      width: 100%;
      height: auto;
      position: absolute;
      background-color: #fff;
      z-index: 20;
      box-shadow:0 0 10px var(--cl-bg-1);
      padding-bottom:1rem;
      left: 0;
      top: 0;
      display: none;
    }

    aside.active {
      display: flex;
    }

    .btn-toggle {
      width: 130px;
      height: 40px;
      align-items: center;
      justify-content: space-between;
      background: var(--cl-bg-2); 
      background-size: 12px;
      display:flex;
      padding: 0.875rem  !important;
      border-radius: 6px;
      z-index: 18;
      position: absolute;
      top: 70px;
      right:10px;
      color: #fff;
      font-size: var(--fz-caption);
    }

    .btn-toggle:before {
      content: '';
      position:absolute;
      width: 1px;
      height: 100%;
      background: #fff;
      right: 40px;
    }


    .btn-toggle span {
      font-size: inherit;
      display: inline-block;
      
    }

    .btn-toggle img {
      display: inline-block;
      height: 8px;
      margin-left: 10px;
    }

    .btn-toggle.active {
      top: 10px;
      z-index: 30;
    }

    .btn-toggle.active img {
      transform: rotate(180deg);
    }



    aside .today {
      flex-direction: row;
    }

    aside .today .img-area .swiper-slide img {
      height: 60px;
    }

   


    aside .my-journal {
      height: 200px;
    }

    main {
      width: 100%;
      overflow: hidden !important;
    }

    .inner {
      overflow: auto !important;
    }

    footer {
      margin-bottom: 100px;
    }

    section .visual h2 {
      font-size: var(--fz-subtitle1);
    }
  
    .table-area.column .table-wrap {
      /* height:calc(300px) */
    }
  

    .container > div.work-journal,.container > div.project-information, .container > div.journal-view {
      overflow-y: auto;
      min-height: 100vh;
      height: 100%;
    }

    aside .today .date-area {
      text-align: left;
      flex-basis: auto;
    }
  

    aside .today .img-area {
      flex-basis: 70%;
    }
    
  }


  @media screen and (max-width:768px) {
    .login-content {
      flex-direction: column;
      height: auto;
      padding: 2rem 0;
      gap: 1rem;
      margin-top: 30px;
    }

    .login-content .login-form {
      width: 90%;
      position: static;
      order: 1;
      padding: 1.2rem;
    }

    .login-character {
      order: 2;
      width: 100%;
      text-align: center;
    }

    .login {
      overflow: auto !important;
      height: auto !important;
    }

    .login-content .login-character {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .login-content .login-character img {
      height: 250px;
      margin: 0 auto;
    }

    .login-content .login-form {
      order: 1;
    }

    .login-content .login-form img {
      height: 40px;
    }

    .login-content .login-form form {
      flex-direction: column;
      padding: 1.5rem 2rem;
      align-items: center;
      gap: 1.5rem;
    }

    .login-content .login-character span::before {
      display: none;
    }

    .login-content .login-character span {
      line-height: 1.5;
      text-align: center;
    }

    .login-content .login-character h1 {
      bottom:180px;
      text-align: center;
    }

    .login input[type=submit] {
      width: 100%;
    }

    .office {

      min-height: auto !important;
    }

    .popup-card, .popup-content {
      width: 90%;
    }

    .table-area .table-wrap .sticky-table {
      min-width: 768px;
    }

    .login-title p {
      text-align : center;
    }


  }

  @media screen and (max-width:640px) {
    section .content .input-area form > div {
      flex-direction: column;
    }

    section .content .input-area form .select select {
      width: 100%;
    }

    section .content .input-area form > div:not(:first-of-type) {
      padding-left: 0;
    }

    .table-area.column .table-wrap {
      overflow-x: auto;
    }

    .table-area.column .table-wrap .sticky-table {
      min-width: 640px;
    }

    .popup .table-basic tr {
      display: flex;
      flex-direction: column;
    }

    .popup .table-basic tr th {
      display: none;
    }

 
    .popup .table-basic tbody tr td {
      position: relative;
      border: 1px solid var(--cl-bg-3);
      border-bottom: none;
    }

    .popup .table-basic tbody tr td:last-of-type {
      border-bottom: 1px solid var(--cl-bg-3);
    }

    .popup .table-basic tbody tr td:after {
      content: attr(data-attr);
      width: 80px;
      position: absolute;
      left: 0;
      top: 0;
      height:100%;
      background-color: var(--cl-base-1);
      color: #fff !important;
      border-bottom: var(--cl-bg-3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: var(--fz-caption);
      z-index: 12;
    }

    .popup table input,.popup table .btn {
      margin-left:80px !important;
      width: 120px;
    }

    section .content .input-area form > div:not(:first-of-type).add-input {
      padding-left: 0;
    }

    .work-journal .content {
      max-height:100%;
   
    }

    .mode li:nth-of-type(1) a {
      background: url(../images/icon-light.png) no-repeat center;
      background-size: 12px;
    }
    .mode li:nth-of-type(1).active a {
      background:#fff url(../images/icon-light-h.png) no-repeat center;
      background-size: 12px;
    }
    .mode li:last-of-type a {
      background:url(../images/icon-dark.png) no-repeat center;
      background-size: 12px;
    }
    .mode li:last-of-type.active a {
      background:#fff url(../images/icon-dark-h.png) no-repeat center;
      background-size: 12px;
    }
    
    .mode {
      width: 40px;
    }
    .mode li{
      height: 25px;
    }
    .mode li a span {
     display: none;
    }

    .content > .select-area >div {
      width: calc(100%);
    }

    .content > .select-area >div:nth-of-type(3) {
      width: calc(100%);
    }

    .content > .select-area .btn {
      margin:  auto;
    }

    section .content .input-area form > div .add-wrap {
      min-width: 1000px;
    }

    section .content .input-area form > div .add-wrap:not(:first-of-type) {
      padding-left: 0;
    }

    aside .today {
      flex-direction: column;
    }

    aside .today .img-area .swiper-slide .btn-write .write-txt b {
      font-size: var(--fz-caption);
    }

    section .inner{
      padding: 0;
    }

    section .content .input-area form {margin:0.5rem}


    section .content .input-area label {
      /* margin-top: 1.5rem; */
    }

    .content > .select-area .btn {
      margin: 0;
    }

    .content > .select-area .btn {
      margin: 0;
    }

    .journal-view .content > .select-area .btn {
      margin: 0;
    }

  
  }


  @media screen and (max-width:480px)  {

    .login .login-wrap {
      padding: 0.25rem;
  
    }

    .login-content .login-form form {
      padding: 0.5rem;
    }


    .login-content .login-character img {
      height: 160px;
    }

    .login-content .login-character h1 {
      bottom: 200px;
      padding-right:0;
      
    }

    .login-content .login-character p b {
      font-size: var(--fz-subtitle2);
    }

    .login-link-office {
      top:auto;
      bottom:0;
      transform: translate(-50%,0);
      min-height: 20px;
      width: 95%;
      left: 50%;
      flex-direction: row;
      border-radius: 10px 10px 0 0;
      position: fixed;
    }

    .login-link-office p {
      writing-mode: horizontal-tb;
    }

    .login-link-office img {
      
    }

    section .content .input-area input[type=date] {
      min-width:100% }
    

    footer .copyright {
      padding-bottom: 20px;
    }

    .login-content .login-form {
      padding: 1rem;
    }

    .office .login-link-office {
      transform: translateX(-50%);
      left: 50%;
      border-radius: 10px 10px 0 0;
    }

   

    .gnb li {
      min-height: 76px;
    }
 
    header .user .popup {
      width: 90%;
    }

    header .user .popup .user-detail {
      flex-direction: column;
    }

    header .user .popup .btn-area button {
      font-size: 0.685rem;
    }

    header .user p {
      font-size: var(--fz-caption);
      text-align: center;
    }

    header .user p span {
      font-size: inherit;
    }

    footer .link-area a.related-link {
      min-width: 200px;
    }

    footer .link-area .link-option {
      width: 200px;
    }

  

    .login-link-office img ,.office .login-link-office img{
      transform: rotate(-90deg);
      animation: none;
    
    }

    header .user .popup .user-detail .name {
      font-size: var(--fz-subtitle2);
    }

    header .user .popup .info-area > span:last-of-type {
      font-size: var(--fz-caption);
    }

    footer .link-area {
      flex-wrap: wrap;
    }

    footer .link-area a.related-link {
      margin-left: auto;
    }

    .gnb li a span {
      font-size: 0.5rem;
    }

    section .content ul.filter-project {
      flex-direction: column;
      align-items: start;
      gap: 0.25rem;
      border: 1px solid var(--cl-bg-1);
      padding: 0.5rem;
      border-radius: 4px;
    }

 
    .content > .select-area >div {flex-direction: column;
    align-items: start;}
    .content >.select-area select,  .content >.select-area .select ,.content > .select-area input, .content > .select-area label {
      width: 100%;
    }
    .content > .select-area >div.auto {
      width: 100% !important;
     
    }

    .content > .select-area >div.auto div {
      width: 100%;
    }

    .journal-view .content > .select-area .btn {
      margin: auto;
    }

    .content > .select-area > div div.input-area > div {
      flex-direction: column;
      align-items: start;
    }

    .content > .select-area .btn {
      margin: auto;
    }
  }
  

  /************************ height **********************/


  @media screen and (max-height:890px) {
    .container > div.work-journal,.container > div.project-information, .container > div.journal-view {
      overflow-y: auto;
      min-height: 100vh;
      height: 100%;
    }

    .table-area.column .table-wrap {
      height: 200px;
    }

    .table-area.column .table-wrap-one {
      height: 500px;
    }

    aside{
      height: auto;
    }

    .work-journal .content {
      max-height: 100%;
    }

    .table-area.column .table-wrap-one {
    
    }

    aside .my-journal {
     height: 600px;
    }

  }

  @media screen and (max-height:867px)  {
    .login {
      overflow: auto !important;
      height:auto !important
    }

    .login-content {
      min-height: auto;
    }

    .login footer {
      margin-top: 20px;
    }
  }

  /* 에러 팝업 스타일 */
  .error-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: "Pretendard", sans-serif;
  }
  
  .error-popup .error-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--cl-bg-3);
  }
  
  .error-popup .error-header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .error-popup .error-icon {
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cl-error);
  }
  
  .error-popup .error-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--cl-base-1);
    margin: 0;
  }
  
  .error-popup .error-subtitle {
    font-size: 16px;
    color: var(--cl-base-2);
  }
  
  .error-popup .error-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 1px solid var(--cl-bg-3);
    border-radius: 6px;
    margin: 15px auto;
    display: block;
  }
  
  .error-popup .error-message {
    background: var(--cl-bg-1);
    border-left: 3px solid var(--cl-error);
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 6px 6px 0;
    font-size: 13px;
  }

  .error-popup .error-message h3 {
    color: var(--cl-error);
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
  }
  
  .error-popup .error-message h3 strong{
    font-size: inherit;
    font-weight: 600;
  }
  
  .error-popup .error-message p {
    margin: 5px 0;
    line-height: 1.6;
    color: var(--cl-base-1);
  }
  
  .error-popup .error-message ul {
    margin: 10px 0;
    padding-left: 20px;
  }
  
  .error-popup .error-message li {
    color: var(--cl-base-1);
    margin: 5px 0;
  }
  
  .error-popup .contact-info {
    background: var(--cl-bg-4);
    border: 1px solid var(--cl-point-1);
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
  }
  
  .error-popup .contact-info h4 {
    color: var(--cl-secondary);
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
  }

  .error-popup .contact-info h4 strong {
    font-size: inherit;
  }

  .error-popup .contact-info p {
    margin: 5px 0 10px 0;
    line-height: 1.5;
    color: var(--cl-base-1);
    font-size: 13px;
  }

  .error-popup .contact-info p strong {
    font-size: 13px;
  }
  
  .error-popup .contact-info ul {
    margin: 0;
    padding-left: 15px;
  }
  
  .error-popup .contact-info li {
    margin: 5px 0;
    color: var(--cl-base-1);
    font-size: 12px;
  }

  .error-popup .contact-info li strong {
    font-size: inherit;
  }
  
  .error-popup .button-group {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid var(--cl-bg-3);
    padding-top: 15px;
  }
  
  .error-popup .checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    color: var(--cl-base-1);
    user-select: none;
  }
  
  .error-popup .checkbox-container input[type="checkbox"] {
    display: none;
  }
  
  .error-popup .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--cl-base-3);
    border-radius: 3px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .error-popup .checkbox-container input[type="checkbox"]:checked + .checkmark {
    background-color: var(--cl-base-1);
    border-color: var(--cl-base-1);
  }
  
  .error-popup .checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
  }
  
  .error-popup .checkbox-container:hover .checkmark {
    border-color: var(--cl-base-1);
  }
  
  .error-popup .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: "Pretendard", sans-serif;
  }
  
  .error-popup .btn-primary {
    background: var(--cl-primary);
    color: white;
    border: 1px solid var(--cl-primary);
  }
  
  .error-popup .btn-primary:hover {
    background: var(--cl-secondary);
    border-color: var(--cl-secondary);
    transform: translateY(-2px);
  }
  
  .error-popup .btn-secondary {
    background: var(--cl-secondary);
    color: white;
    border: 1px solid var(--cl-secondary);
  }
  
  .error-popup .btn-secondary:hover {
    background: var(--cl-point-1);
    border-color: var(--cl-point-1);
    transform: translateY(-2px);
  }
  
  .error-popup .btn-close {
    background: var(--cl-error);
    color: white;
    border: 1px solid var(--cl-error);
  }
  
  .error-popup .btn-close:hover {
    background: var(--cl-base-1);
    border-color: var(--cl-base-1);
    transform: translateY(-2px);
  }
  
  .error-popup .warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
  }
  
  .error-popup .warning-box h4 {
    color: #856404;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
  }
  
  .error-popup .warning-box p {
    margin: 0;
    color: #856404;
    font-size: 14px;
  }
  
  @media (max-width: 768px) {
    .error-popup .error-content {
      padding: 20px;
      margin: 20px;
    }
    
    .error-popup .error-title {
      font-size: 24px;
    }
    
    .error-popup .button-group {
      flex-direction: column;
    }
    
    .error-popup .btn {
      width: 100%;
    }
  }