@charset "UTF-8";

/* --------------------------------------------------
 concept-blc
-------------------------------------------------- */

#concept-blc .concept-ul li {
  display: flex;
  margin-top: 2rem;
}

#concept-blc .concept-ul li:first-child {
  margin-top: 0;
}

#concept-blc .concept-ul li .txt-blc {
  width: 50%;
}

#concept-blc .concept-ul li .img-blc {
  width: 50%;
  padding-left: 4%;
  box-sizing: border-box;
}

#concept-blc .concept-ul li .img-blc figure>img {
  border-radius: 10px;
  overflow: hidden;
}

#concept-blc .concept-ul li .txt-blc .tag {
  width: 80px;
  height: 80px;
  background-color: #c30d23;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 150%;
  font-weight: bold;
}

#concept-blc .concept-ul li .txt-blc .ttl {
  display: block;
  margin-top: 10px;
  font-size: 150%;
  color: #c30d23;
  font-weight: bold;
}

#concept-blc .concept-ul li .txt-blc .txt {
  margin-top: 10px;
  display: block;
}

@media screen and (max-width:767px) {
  #concept-blc .concept-ul li {
    flex-wrap: wrap;
    margin-top: 3rem;
  }

  #concept-blc .concept-ul li .txt-blc {
    width: 100%;
  }

  #concept-blc .concept-ul li .img-blc {
    width: 100%;
    padding-left: 0;
    margin-top: 1rem;
  }

  #concept-blc .concept-ul li .txt-blc .ttl {
    font-size: 120%;
  }
}