@charset "UTF-8";
@import url("ress.css");

*{
  font-family: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  box-sizing: border-box;
}

.index-wrap{
  width: 90%;
  max-width: 1130px;
  margin: 60px auto;
}
section{
  margin-bottom: 120px;
}
h2{
  margin: 0 auto 60px;
  text-align: center;
  font-size: 58px;
}
.thumbnail-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.thumbnail-wrap::after{
  content:"";
  display: block;
  width: calc(100% / 3 - 30px);
  height: 0;
}
.template-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
figure{
  margin: 0;
  width: calc(100% / 3 - 30px);
}
img{
  width: 100%;
  height: auto;
  border: solid 1px #000;
  transition: 0.5s ease;
}
img:hover {
  opacity: 0.75;
  border: solid 1px #777;
}
figcaption{
  text-align: center;
}
figcaption span{
  display: block;
  font-weight: bold;
}
footer{
  width: 100%;
  margin: 0 auto 32px;
}
footer p {
  text-align: center;
}
@media only screen and (max-width: 991px){
  h2{
    font-size: 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 767px){
  figure{
    width: 100%;
  }
}