@charset "UTF-8";
/*----------------------------------
  info
----------------------------------*/
.info {
  margin-top: 80px;
}

.info-title {
  color: var(--color02);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 0.37em;
  position: relative;
  line-height: 1.2;
}

.info-title::after {
  background-color: var(--color02);
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 3px;
  width: 2em;
}

.info-btn {
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
}

.info-btn__link {
  align-items: center;
  display: flex;
  background-color: var(--color03);
  border: 3px solid var(--color03);
  border-radius: 50px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  justify-content: center;
  position: relative;
  height: 3.27em;
  transition: 0.2s;
  width: 100%;
}

.info-btn__link::after {
  background: #fff;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  height: 20px;
  width: 16px;
}

/*----------------------------------
  entries
----------------------------------*/
.entries {
  margin-top: 100px;
}

.entries-title {
  max-width: 510px;
  margin-left: auto;
  margin-right: auto;
  width: 42.5%;
}

.entries-items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 58px;
}

.entries-item {
  border: 1px solid #707070;
  transition: opacity 0.3s;
  width: 18.666%;
}

.entries-item:not(:nth-child(5n)) {
  margin-right: 1.666%;
}

.entries-item:not(:nth-child(-n + 5)) {
  margin-top: 20px;
}

.entries-item:hover {
  opacity: 0.6;
}

/* entries-modal */
.entries-modal__item {
  margin-left: auto;
  margin-right: auto;
  width: 88.636%;
}

.entries-modal__img {
  border: 1px solid #707070;
}

.entries-modal__cap {
  margin-top: 22px;
  padding-top: 68px;
  padding-bottom: 73px;
  position: relative;
}

.entries-modal__cap::before,
.entries-modal__cap::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  width: 100%;
}

.entries-modal__cap::before {
  background-image: url(../images/top/deco-01.svg);
  top: 0;
  right: 0;
  padding-top: 9.744%;
}

.entries-modal__cap::after {
  background-image: url(../images/top/deco-02.svg);
  bottom: 0;
  left: 0;
  padding-top: 13.59%;
}

.entries-modal__title {
  font-size: 16px;
  line-height: 1.5;
}

.entries-modal__name {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 30px;
}

.entries-modal__title,
.entries-modal__name {
  align-items: center;
  display: flex;
  justify-content: left;
  margin-left: 30px;
  margin-right: 30px;
}

.entries-modal__title__label,
.entries-modal__name__label {
  background-color: #5db324;
  border-radius: 5px;
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
  margin-right: 1.66em;
  padding-top: 0.5em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 0.5em;
}

/*----------------------------------
  sp
----------------------------------*/
@media not all and (min-width: 768px) {
  /* info */
  .info {
    margin-top: 20px;
  }

  .info-title {
    font-size: 20px;
    line-height: 1.6;
  }

  .info-btn {
    margin-top: 30px;
  }

  .info-btn__link {
    font-size: 16px;
  }

  .info-btn__link::after {
    height: 15px;
    width: 12px;
  }

  /* entries */
  .entries {
    margin-top: 50px;
  }

  .entries-title {
    max-width: 316px;
    width: 100%;
  }

  .entries-items {
    margin-top: 50px;
  }

  .entries-item {
    width: 45.797%;
  }

  .entries-item:not(:nth-child(5n)) {
    margin-right: 0;
  }

  .entries-item:not(:nth-child(-n + 5)) {
    margin-top: 0;
  }

  .entries-item:not(:nth-child(2n)) {
    margin-right: 5.797%;
  }

  .entries-item:not(:nth-child(-n + 2)) {
    margin-top: 20px;
  }

  /* entries-modal */
  .entries-modal__item {
    width: 93.623%;
  }

  .entries-modal__cap {
    margin-top: 15px;
    padding-top: 44px;
    padding-bottom: 85px;
  }

  .entries-modal__cap::before {
    padding-top: 11.765%;
  }

  .entries-modal__cap::after {
    padding-top: 12.258%;
  }

  .entries-modal__title {
    font-size: 14px;
  }

  .entries-modal__name {
    margin-top: 20px;
  }

  .entries-modal__title,
  .entries-modal__name {
    margin-left: 20px;
    margin-right: 20px;
  }
}
