@charset "utf-8";
.vis_inner {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 5%;
}
.other{
  display: flex;
  justify-content: space-between;
  gap:20px 10px;
  flex-wrap: wrap-reverse;
  margin-top: 40px;
}
.other_col{
  max-width: 545px;
}
.other_bold{
  font-size: var(--fs-20);
  font-weight: bold;
  margin-bottom: 10px;
}
.other_img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.country{
  display: flex;
  width: 100%;
  font-weight: bold;
  margin-top: 15px;
  &::before{
    content: '■';
    margin-right: 5px;
    color: var(--deep-blue);
  }
}
.child{
  padding-left: 2em;
}

.np_menu {
  max-width: 1024px;
  margin: auto;
  width: 90%;
  margin-top: 60px;
  border-top: 1px solid #707070;
  padding-top: 60px;
}
.np_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap-reverse;
  gap: 30px 60px;
}
.np_col {
  max-width: 392px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.np_head {
  font-size: var(--fs-24);
  font-weight: bold;
}
.np_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--deep-blue);
  font-size: var(--fs-24);
  width: 100%;
  height: 60px;
  margin-top: 20px;
  border-radius: 10px;
  padding: 15px 30px;
  color: #fff;
  &::after{
    content: '';
    background: #fff url(/ems/img/arrow_btn.svg) no-repeat center left 8px;
    display: block;
    min-width: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }
  &.prev{
    flex-direction: row-reverse;
    background: #707070;
    &::after{
      transform: rotate(180deg);
      filter: grayscale(1);
    }
  }
}
@media screen and (max-width: 767px){
.vis_inner {
}

}