/*!----------------------------*
 * ICT Program : research.css  *
**-----------------------------*/
/*! indivisual setting
***--------------------------------------------------*/
#sec_research h2 {
  position: relative;
  left: 0;
  top: 0;
}
#sec_research h2::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 42.5%;
  width: 15%;
  height: 3px;
  background-color: #60CAAD;
}
#sec_research .vBox {
  display: flex;
  flex-direction: column;
  list-style: none;
}
#sec_research .vBox li {
  margin: 5px 0;
}
#sec_research .vBox li p {
  margin: 0.5em 0;
}
@media screen and (min-width: 897px) {
  #sec_research .vBox {
    flex-flow: row nowrap;
    justify-content: space-around;
  }
  #sec_research .vBox li {
    flex: 1;
    margin: 5px 10px;
  }
}
#sec_research .card_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  list-style: none;
}
#sec_research .card_list li {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 1% 20px 1%;
  border-bottom: solid 1px rgba(68, 68, 68, 0.25);
  background: #FBFBFB;
  border-radius: 3px;
  box-shadow: 0px 2px 6px rgba(68, 68, 68, 0.25);
  list-style: none;
  transition: 0.16s ease-in-out 0s;
  cursor: pointer;
}
#sec_research .card_list li:hover {
  transform: translateY(-3px);
  box-shadow: 0px 5px 10px rgba(68, 68, 68, 0.32);
}
@media screen and (min-width: 481px) {
  #sec_research .card_list li {
    width: 48%;
    margin: 0 1% 20px 1%;
    border-bottom: none;
  }
}
@media screen and (min-width: 897px) {
  #sec_research .card_list li {
    width: 31%;
  }
}
#sec_research .card_list li[class|=categ] figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 3px;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #444444, #444444 50%, transparent 50%, transparent 100%);
}
#sec_research .card_list li.categ-A figure::before {
  background: linear-gradient(135deg, #46DEE1, #46DEE1 50%, transparent 50%, transparent 100%);
}
#sec_research .card_list li.categ-B figure::before {
  background: linear-gradient(135deg, #FFC107, #FFC107 50%, transparent 50%, transparent 100%);
}
#sec_research .card_list li.categ-C figure::before {
  background: linear-gradient(135deg, #FF6347, #FF6347 50%, transparent 50%, transparent 100%);
}
#sec_research .card_list li figure {
  position: relative;
  top: 0;
  left: 0;
}
#sec_research .card_list li figure:not(:first-of-type) {
  display: none;
}
#sec_research .card_list li figure img {
  width: 100%;
  height: 30vw;
  max-height: 196px;
  min-height: 180px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  object-position: center;
  object-fit: cover;
}
#sec_research .card_list li figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0 0.5em;
  background: rgba(68, 68, 68, 0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  font-weight: 600;
  color: #FBFBFB;
  text-align: center;
}
#sec_research .card_list li dl {
  position: relative;
  top: 0;
  left: 0;
}
#sec_research .card_list li dl dt {
  font-size: 0.85em;
  margin: 0.2em 1rem;
  border-bottom: solid 1px rgba(68, 68, 68, 0.4);
}
#sec_research .card_list li dl dt strong {
  font-size: 1.2em;
  padding: 0 0.2em;
}
#sec_research .card_list li dl dd {
  padding: 0 1rem 0.5em 1rem;
}
#sec_research .card_list li dl dd p {
  position: relative;
  top: 0;
  left: 0;
  font-size: 0.85em;
  line-height: 1.5;
  margin: 0;
  /* orver-flow */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
  height: 4.5em;
}
#sec_research .card_list li dl dd p::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 1.5em;
  width: 100%;
  background: linear-gradient(to top, #fbfbfb, rgba(251, 251, 251, 0) 100%);
}
#sec_research .bg_card {
  display: none;
}
#sec_research .bg_card.fixed {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  animation: fade-in 0.25s 0s both;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: inherit;
  }
}
#sec_research .bg_card.fixed .close_card {
  display: block;
  margin: 10px;
  padding: 0.2em 1em;
  border-bottom: solid 1px #FBFBFB;
  color: #FBFBFB;
  line-height: 1;
  text-align: center;
  transition: 0.16s ease-in-out 0s;
}
#sec_research .bg_card.fixed:hover .close_card {
  color: #C5E1A5;
  border-bottom: solid 1px #C5E1A5;
}
#sec_research .bg_card.fixed .card-wrap {
  position: relative;
  top: 0;
  left: 0;
  width: 95%;
  height: auto;
  max-width: 580px;
  max-height: 85%;
  overflow-y: scroll;
  padding-right: 5px;
}
#sec_research .bg_card.fixed .card-wrap::-webkit-scrollbar {
  width: 2px;
  border-radius: 2px;
}
#sec_research .bg_card.fixed .card-wrap::-webkit-scrollbar-track {
  background-color: rgba(251, 251, 251, 0.2);
}
#sec_research .bg_card.fixed .card-wrap::-webkit-scrollbar-thumb {
  background-color: rgba(251, 251, 251, 0.8);
}
#sec_research .bg_card.fixed .card-wrap figure {
  position: relative;
  top: 0;
  left: 0;
}
#sec_research .bg_card.fixed .card-wrap figure img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: contain;
}
#sec_research .bg_card.fixed .card-wrap figure figcaption {
  margin: 1rem 0;
  padding: 0 0.5em;
  background: #444444;
  color: #FBFBFB;
  font-size: 1.2em;
  font-weight: 500;
  text-align: center;
}
#sec_research .bg_card.fixed .card-wrap dl {
  color: #FBFBFB;
}
#sec_research .bg_card.fixed .card-wrap dl dt {
  font-size: 0.85em;
  margin: 0.2em 1rem;
  padding-bottom: 5px;
  border-bottom: solid 1px #EFEBE9;
}
#sec_research .bg_card.fixed .card-wrap dl dt strong {
  font-size: 1.2em;
  padding: 0 0.2em 0 0;
}
#sec_research .bg_card.fixed .card-wrap dl dd {
  padding: 0 1rem 0.5em 1rem;
}
#sec_research .bg_card.fixed .card-wrap dl dd p {
  margin: 0;
}
