/* ===pc=== */
.year_pulldown {
  width: 182px;
  height: 42px;
  position: relative;
  display: inline-block;
  border: 1px solid #CDD6DD;
}

/* btn */
.year_pulldown_btn {
  width: 180px;
  height: 40px;
  position: relative;
  background-color: #FFFFFF;
  color: #222222;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border: none;
  outline: none;
  padding: 0;
  padding-right: 90px;
  appearance: none;
}
.is-year_pulldown_btn__active-bg {
  background-color: #F6F8F9;
}
.year_pulldown_btn:hover {
  background-color: #F6F8F9;
}
.year_pulldown_btn::after {
  width: 6px;
  height: 6px;
  content: "";
  display: inline-block;
  position: absolute;
  top: 40%;
  right: 18px;
  border-right: 1.5px solid #2078C7;
  border-bottom: 1.5px solid #2078C7;
  transform: rotate(45deg);
}

/* pulldown list */
.year_pulldown_list {
  width: 182px;
  height: auto;
  max-height: 50vh;
  display: none;
  position: absolute;
  top: 102%;
  left: -1px;
  overflow: auto;
  list-style: none;
  background-color: #FFFFFF;
  border-right: 1px solid #CDD6DD;
  border-bottom: 1px solid #CDD6DD;
  border-left: 1px solid #CDD6DD;
  padding: 0;
  margin: 0;
  z-index: 1;
}
.is-year_pulldown_list__open {
  display: block;
}

/* puldown list item */
.year_pulldown_list__item {
  height: 42px;
  cursor: pointer;
  border-bottom: 1px solid #CDD6DD;
  padding-left: 0;
}
.year_pulldown_list__item p {
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  line-height: 42px;
  text-align: left;
  position: relative;
}
.year_pulldown_list__item a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-left: 35px;
}
.year_pulldown_list__check {
  padding-left: 35px;
}
.year_pulldown_list__item:hover {
  background-color: #F6F8F9;
}
.year_pulldown_list__check::before {
  width: 6px;
  height: 10px;
  content: "";
  display: inline-block;
  position: absolute;
  top: 35%;
  left: 16px;
  border-right: 1.5px solid #2078C7;
  border-bottom: 1.5px solid #2078C7;
  transform: rotate(45deg);
}


/* ===sp=== */
@media screen and (max-width: 471px) {
  .year_pulldown {
    margin-bottom: 20px;
  }
}


