@charset "UTF-8";

.content .text-box h1 {
  margin-bottom: 1.5em;
  border: none;
  line-height: 1.1905;
  font-family: 'Comfortaa', cursive;
  font-weight: 500;
  font-size: 4.2rem;
  text-align: center;
}

.content .text-box .list {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 740px;
}

.content .text-box .list a {
  margin-bottom: 40px;
  display: block;
  width: 350px;
  text-decoration: none;
  transition: .4s opacity;
}
.content .text-box .list a:hover {
  opacity: 0.7;
}

.content .text-box .list a .image {
  margin-bottom: 10px;
}

.content .text-box .list a p {
  margin: 0;
  color: #260c09;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .content .text-box h1 {
    font-size: 3rem;
  }

  .content .text-box .list {
    display: block;
    width: auto;
  }

  .content .text-box .list a {
    margin-bottom: 30px;
    width: auto;
  }

  .content .text-box .list a .image {
    margin-bottom: 5px;
  }

  .content .text-box .list a p {
    font-size: 1.6rem;
    text-align: center;
  }
}

