/*navigation page*/

.page4{
  background-color: rgba(0, 0, 0);
  color: #fff;
  background-image: url('/static/assets/images/common/backgrounds/nav_bg_00.jpg');
  background-repeat: no-repeat;
  background-size: 64%;
  background-position: 40% 80%;
  background-color: #000;
}

.nav_inner{
  width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.nav_floors{
  position: relative;
  width: 45%;
  max-width: 520px;
  height: auto;
  padding-top: calc(100px + 20%);

}

.nav_floors ul{

}

.page4 .nav_floors ul li,
.nav_floors ul li {
  color: #fff !important;
  margin-bottom: 36px;
}

.page4 .nav_floors ul li a,
.page4 .nav_floors ul li a:link,
.page4 .nav_floors ul li a:visited,
.nav_floors ul li a,
.nav_floors ul li a:link,
.nav_floors ul li a:visited {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding-right: 60px;
  transition: transform 0.3s ease;
  color: #fff !important;
  text-decoration: none !important;
}

.page4 .nav_floors ul li a .nav_left h3,
.nav_floors ul li a .nav_left h3 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff !important;
}

.page4 .nav_floors ul li a .nav_right p,
.nav_floors ul li a .nav_right p {
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff !important;
}

.page4 .nav_floors ul li a:hover,
.page4 .nav_floors ul li a:active,
.nav_floors ul li a:hover,
.nav_floors ul li a:active {
  color: #ff3e00 !important;
  transition: all 0.3s ease;
  transform: translateX(-20px);
  text-decoration: none !important;
}

.page4 .nav_floors ul li a:hover .nav_left h3,
.nav_floors ul li a:hover .nav_left h3 {
  color: #ff3e00 !important;
}

.page4 .nav_floors ul li a:hover .nav_right p,
.nav_floors ul li a:hover .nav_right p {
  color: #ff3e00 !important;
}

/* 각 링크에 대한 hover 시 배경 이미지 변경 (4F부터 1F 순서로) */
.nav_floors ul li:nth-child(1) a:hover ~ .page4 {
  background-image: url('/static/assets/images/common/backgrounds/nav_bg_04.jpg');
  transition: background-image 0.3s ease;
}

.nav_floors ul li:nth-child(2) a:hover ~ .page4 {
  background-image: url('/static/assets/images/common/backgrounds/nav_bg_03.jpg');
  transition: background-image 0.3s ease;
}

.nav_floors ul li:nth-child(3) a:hover ~ .page4 {
  background-image: url('/static/assets/images/common/backgrounds/nav_bg_02.jpg');
  transition: background-image 0.3s ease;
}

.nav_floors ul li:nth-child(4) a:hover ~ .page4 {
  background-image: url('/static/assets/images/common/backgrounds/nav_bg_01.jpg');
  transition: background-image 0.3s ease;

}

.nav_floors ul li a .nav_left{
  display: block;
  float: left;
  width: 84%;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);

}

.nav_floors ul li a .nav_left p{
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6rem;
  color: rgba(255, 255, 255, 0.5);
}

.nav_floors ul li a .nav_right{
  display: block;
  float: right;
  width: 16%;
  text-align: right;
}

.nav_point{
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-image: url('/static/assets/images/common/arrows/arrow-prev-or.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: all 0.3s ease;
}

.nav_floors ul li a:hover .nav_point {
  right: 10px;
  opacity: 1;
}