@charset "UTF-8";
/* CSS Document */

#top {
background-image: url(/summer/images/news/top.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: top center;
height: 18vw;
margin-bottom: 4rem;
}
#top .inner {
display: flex;
align-items: center;
}
#top h1 {
 font-size: var(--font-size-42);
color: #fff;
margin-top: 7vw;
}
.list {
margin-bottom: 6rem;
}
.list h2 {
 font-size: var(--font-size-24);
 text-align: center;
}
.list ul {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.list ul li {
width: 45%;
display: flex;
flex-direction: column;
margin-bottom: 4rem;
}
.list ul li .thumb {
width: 100%;
  aspect-ratio: 16 / 9;  
  background: #eee;   
  overflow: hidden;
  margin-bottom: 1rem;
}
.list ul li .thumb img {
 width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;
  display: block;
}
.list ul li dl {
margin: 0;
padding: 0;
}
.list ul li dl dt {
 font-size: var(--font-size-18);
 text-align: left;
margin-bottom: 1rem;
}
.list ul li dl dt span {
display: inline;
background: #39663F;
text-align: center;
padding: 0.2rem 1rem;
color: #fff;
margin-right: 2rem;
}
.list ul li dl dd {
 font-size: var(--font-size-24);
 font-weight: 700;
}


@media screen and (min-width:769px)and (max-width:1024px){
}


@media screen and (min-width:521px) and (max-width:768px) {
#top {
margin-top: 8.5vw;
}
}

@media screen and (max-width:520px) {

#top {
height: 36vw;
}
#top h1 {
margin-top: 14vw;
margin-left: 1rem;
font-size: 24px;
}
.list ul li {
width: 100%;
}

}