/* ----------------------- */
/* fv
/* ----------------------- */
.fv_news {
  background-image: url(../images/hero-image_news.jpg);
  background-size: cover;
}

/* ----------------------- */
/* pull-down
/* ----------------------- */
.select_nav {
  display: flex;
}

select {
  text-align: center;
}

.selected {
  width: 400px;
  border: 1px solid #bababa;
  border-top: 4px solid #080F73;
  margin-right: 30px;
  text-align: center;
  padding: 14px 0;
  box-sizing: border-box;
}

.selected::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 3px solid #080F73;
  border-right: 3px solid #080F73;
  position: absolute;
  top: 20px;
  right: 20px;
  transform: rotate(135deg);
}

/* ----------------------- */
/* card-list
/* ----------------------- */
.card-list {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
}

.card-item {
  width: 300px;
  box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 25%);
}

.thumbnail {
  position: relative;
  padding-bottom: 220px;
  overflow: hidden;
}

.thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-item dt {
  display: inline-block;
  margin-top: 22px;
  margin-left: 20px;
}

.category {
  display: inline-block;
  width: 109px;
  color: #080F73;
  border: 1px solid #080F73;
  text-align: center;
  font-size: 14px;
}

.card-item dd {
  margin-top: 16px;
  margin-left: 20px;
  margin-right: 20px;
}

.subject {
  margin-bottom: 35px;
}

/* ----------------------- */
/* RWD
/* ----------------------- */

@media screen and (max-width: 768px) {
  /* ----------------------- */
  /* card-list_tab
  /* ----------------------- */
  .card-list {
    flex-wrap: wrap;
  }

  .card-item {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 411px) {
  /* ----------------------- */
  /* pull-down_sp
  /* ----------------------- */
  .select-nav {
    flex-direction: column;
  }
  
  .pd {
    width: 100%;
    margin-bottom: 15px;
  }

  /* ----------------------- */
  /* card-list_sp
  /* ----------------------- */
  .card-list {
    flex-direction: column;
  }

  .card-item {
    width: 100%;
    height: 400px;
  }

}