@charset "utf-8";

#sub_menu {
  position: relative;
  background: #fff;
  z-index: 99;
}
.sub_menu_wrap {
  /* border-bottom: 1px solid #e9e9e9; */
}
.sub_menu_wrap .depth01 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 2.5%;
}

.sub_menu_wrap a {
  display: block;
  font-size: 1rem;
  line-height: 1.5em;
  padding: 1rem 0.5rem;
  cursor: pointer;
}
.sub_menu_wrap .depth01 > li {
  font-size: 1.1rem;
  line-height: 4.1em;
  padding: 0 1rem;
  cursor: pointer;
  position: relative;
  transition: 0.5s;
}
.sub_menu_wrap .depth01 > li.on,
.sub_menu_wrap .depth01 > li:hover {
  background: #4191c6;
  color: #efefef;
}

.sub_menu_wrap .depth01 > li:first-child {
  padding: 0.5rem;
  border: none;
}
.sub_menu_wrap .depth01 > li:first-child a {
  padding: 1rem;
}
.sub_menu_wrap .depth01 > li:nth-child(2),
.sub_menu_wrap .depth01 > li:last-child {
  position: relative;
  width: 220px;
}
.sub_menu_wrap .depth01 > li:nth-child(2)::after,
.sub_menu_wrap .depth01 > li:last-child::after {
  clear: both;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-20%);
  right: 7%;
  border: 5px solid transparent;
  border-top: 6px solid #323232;
  transition: transform 1s;
  transform-origin: 4px 2px;
}
.sub_menu_wrap .depth01 > li.on::after {
  border-top: 6px solid #fff;
}
.sub_menu_wrap .depth01 > li.active::after,
.sub_menu_wrap .depth01 > li.active::after {
  transform: rotate(180deg);
}
.sub_menu_wrap .depth01 > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  text-align: center;
  border-bottom: 3px solid #4191c6;
}
.sub_menu_wrap .depth01 > li > ul li {
  border: 1px solid #e9e9e9;
  border-bottom: none;
}
.sub_menu_wrap .depth01 > li:nth-child(2) > ul li:nth-child(4) {
  display: none;
}
.sub_menu_wrap .depth01 ul a {
  transition: 0.5s;
}
.sub_menu_wrap .depth01 ul a:hover {
  background: #4191c6;
  color: #efefef;
  font-weight: 500;
}

@media all and (max-width: 1023px) {
  .sub_menu_wrap .depth01 {
    margin-right: 2.5%;
  }
  .sub_menu_wrap .depth01 > li:nth-child(2),
  .sub_menu_wrap .depth01 > li:last-child {
    width: 21vw;
  }
  .sub_menu_wrap .depth01 > li {
    font-size: 1.5vw;
    padding: 1% 1% 1% 2%;
  }
  .sub_menu_wrap a {
    font-size: 1.555vw;
    padding: 7% 0;
  }
  .sub_menu_wrap .depth01 > li:first-child {
    padding: 1.2%;
  }
  .sub_menu_wrap .depth01 > li:first-child a {
    padding: 1vw;
  }
}

@media all and (max-width: 767px) {
  .sub_menu_wrap .depth01 {
    margin-right: 0%;
  }
  .sub_menu_wrap .depth01 > li {
    font-size: 3.2vw;
    line-height: 3.5em;
    padding: 1% 1% 1% 4%;
}
  .sub_menu_wrap .depth01 > li:first-child {
    padding: 2.9%;
    width: 12vw;
    text-align: center;
  }
  .sub_menu_wrap .depth01 ul a {
    text-align: left;
  }
  .sub_menu_wrap .depth01 > li:first-child a {
    padding: 0;
    font-size: 3vw;
  }
  .sub_menu_wrap .depth01 > li:nth-child(2),
  .sub_menu_wrap .depth01 > li:last-child {
    width: 44vw;
  }
  .sub_menu_wrap a {
    font-size: 3.133vw;
    padding: 7% 0% 7% 8%;
  }
  .sub_menu_wrap .depth01 > li:nth-child(2)::after,
  .sub_menu_wrap .depth01 > li:last-child::after {
    right: 7%;
    transform-origin: 5px 1px;
  }
}
