@charset "utf-8";

.title {
  height: 310px;
  background-image: url(../images/sky/star-sky.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #bbbce5;
  text-shadow: 1px 1px 30px #ffffff
}

.title h1 {
  font-family: "Train One", system-ui;
  font-size: 32px;
}

.title p {
  font-size: 20px;
  margin-top: 15px;
}

.item-group  h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 60px ;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 3px;
  margin-top: 60px;
}

.item-list {
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,240px);
  column-gap: 95px;
  row-gap: 70px;
  justify-content: center;
}

.item-list dl {
  text-align: center;
}

.item-list img {
  width: 250px;
  height: 250px;
  border: solid 8px ;
  border-image-slice: 1; 
  border-image-source: linear-gradient(to right, #e3ffc0, #9dc2f4);
}

.item-list dt {
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 5px;
}

.item-list  dd {
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 3px;
  margin-top: 10px;
  font-weight: bold;
}

.link-button-area {
  text-align: center;
  margin-top: 30px;
}

.link-button {
  background-color: #fff199;
  display: inline-block;
  min-width: 100px;
  line-height: 25px;
  border-radius: 24px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 3px;
}

.link-button:hover {
  background-color: #f9e981;
}

.footer {
  margin-top: 100px;
}

@media (max-width: 800px) {
  .item-list {
    margin-top: 45px;
    row-gap: 40px;
  }
}