@charset "UTF-8";

.alert {
  margin: 0 0 50px;
  padding: 20px;
  border: 1px solid #c03;
}
.dropdwn {
  margin: 0 auto 50px;
  padding: 0;
  color: #fff;
  justify-content: space-between;
  position: relative;
  z-index: 999;
}
.dropdwn > li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 60px) / 5);
  height: 62px;
  position: relative;
  padding: 10px 15px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  background: #ed7d31;
  font-weight: bold;
}
.dropdwn > li:after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 7px;
  right: 10px;
  top: 50%;
  margin-top: -3px;
  background-size: contain;
  background: url(/policy/images/arrow_white.gif) no-repeat;
}
.dropdwn_menu {
  display: none;
  position: absolute;
  top: 62px;
  left: 0;
  width: 100%;
  background: #ed7d31;
}
.dropdwn_menu li {
  width: 100%;
  border-bottom: 1px solid #ed7d31;
  border-right: 1px solid #ed7d31;
  border-left: 1px solid #ed7d31;
}
.dropdwn_menu li a {
  display: block;
  padding: 10px 15px;
  font-size: 13px;
  color: #ed7d31;
  background-color: #fff;
  text-align: left;
  text-decoration: none;
}
.dropdwn_menu li a:hover {
  color: #fff;
  background: #ffaa00;
}
.dropdwn_menu > li.arrow_menu {
  position: relative;
}
.dropdwn_menu > li.arrow_menu:before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 7px;
  height: 12px;
  right: 10px;
  top: 50%;
  margin-top: -6px;
  background-size: contain;
  background: url(/policy/images/arrow_orange.gif) no-repeat;
}
.dropdwn_sub {
  display: none !important;
}
.dropdwn_menu > li.arrow_menu:hover .dropdwn_sub {
  display: flex !important;
  position: absolute;
  top: 0px;
  left: 178px;
  flex-direction: column;
  width: 100%;
}
.dropdwn_sub:first-of-type {
  border-top: 1px solid #ed7d31;
}
@media screen and (max-width: 767px) {
  #mainContents {
    width: 100%;
  }
  #mainContents .contents {
    padding-top: 0;
  }
  .alert {
    margin: 0 0 30px;
  }
}
