@charset "utf-8";

p.line{
  border-bottom: 1px solid #DBDBDB;
  padding: 0 0 3px 0;
  text-align: center;
}
.section1 {
  padding: 6px 40px 0 0;
  width: 340px;
  float: left;
  text-align: center;
}
.section1 img,
.section2 img {
  border-radius: 6px;
  -webkit-box-shadow: 3px 3px 4px;
  box-shadow: 3px 3px 6px rgb(100,100,100,0.6);
  cursor: pointer;
}
.section2 {
  padding: 6px 0px 0 0;
  width: 340px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
.cards {
  display: grid;
  gap: 0 0.5rem;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
}
.card {
  margin: 1rem 0;
  border-radius: 0.5rem;
  background-color: #FFFDED;
  overflow: hidden;
  box-shadow: 3px 3px 6px rgb(100,100,100,0.6);
}
.card_image {
  aspect-ratio: 16 / 9;
}
.card_title {
  background-color: #fff;
  text-align: center;
}
@media (max-width: 800px){
.section1,
.section2 {
  width: 100%;
  }
.cards {
  display: grid;
  gap: 0 0.5rem;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
}
}