@charset "UTF-8";

.main .video {
  height: 330px;
  background: url(../images/video/video-top01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 10px #4b2c14;
}

.title h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: bold;
}

.main h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
}

.main h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin: 20px auto 0;
}

.video iframe {
  width: 350px;
  height: 315px;
}

.item-list {
  width: 930px;
  max-width: 90%;
  margin-top: 55px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, 350px);
  column-gap: 95px;
  row-gap: 70px;
  justify-content: center;
}

.item-list img {
  width: 240px;
}

.item-list dl {
  margin-top: 20px;
}

.item-list dt {
  font-weight: bold;
}

.item-list dd {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}

footer {
  margin-top: 100px;
}

@media (max-width: 800px) {
  
  .main h2 {
    margin-top: 25px;
  }


  .item-list {
    margin-top: 40px;
    row-gap: 40px;
  }

}