/* トップページ独自スタイル */

@charset "utf-8";

a {
  text-decoration: none;
}

a:focus {
  outline: none;
}

.sub-title {
  margin-bottom: 1rem;
}

#sub02 .img-container {
  margin-top: 0;
}

.term-list {
  display: flex;
  flex-wrap: wrap;
}

.term-list .text {
  font-size: 0.75em;
}

.term-list .img-container {
  max-width: 200px;
  min-height: 0%; /* IE対応 */
 }

.btn-download {
  color: #fff;
  background-color: #716f63;
  text-align: center;
  width: 80%;
  margin: 0.625em auto 0 auto;
  padding: 0.625em 0;
  border-radius: 5px;
}

.flex-container {
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.flex-item {
  margin-top: auto;
  padding-top: 0.7rem;
  min-height: 0%;
}

a.hovering.fade {
  opacity: .6;
  transition: 0.5s ease 0s;
}

/* SP */
@media only screen and (max-width: 767px) {
  .term-list {
    justify-content: space-between;
  }

  .term-list li {
    width: 48%;
  }

  .term-list li:last-child {
    margin-top: 1rem;
  }

  .term-list .text {
    padding-left: 1.0em;
  }

  .flex-container .flex-item {
    margin-top: auto;
  }
}

/* PC */
@media print,
screen and (min-width: 768px) {
  .term-list {
    justify-content: center;
  }

  .term-list li {
    width: 30%;
  }

  .term-list li:not(:first-of-type){
    margin-left: 2.0rem;
  }

  .term-list .text {
    text-align: center;
  }
  
  .has-arrow-left {
    margin-left: auto;
    margin-right: auto;
  }
}