@charset "utf-8";

.title {
  height: 240px;
  background-color: #fff3fb;　
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 38px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title h1 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 32px;
  font-weight: bold;
}

.title p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 15px;
  margin-bottom: 15px; 
}

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

.item-list dl {
  margin-top: 20px;
}

.item-list dt {
  font-weight: bold;
}

.item-list dd {
  font-size: 16px;
  line-height: 20px;
  margin-top: 10px;
}

.item-list li {
  position: relative;
}

.item-list .item-label {
  position: absolute;
  top: 0;
  left: calc(100% + 18px);
  font-size: 12px;
  white-space: nowrap;
  transform-origin:top left;
  transform: rotate(90deg);
  
.footer {
  margin-top: 100px;
  }

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