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

.contents_nav {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 6rem;
}
.contents_nav li {
width: 30%;
}
.contents_nav li a {
text-align: center;
 font-size: var(--font-size-24);
 font-weight: 700;
background: #6eaad6;
border-radius: 20px;
padding: 1rem 0;
display: block;
background-position: center left 2rem;
background-size: 12%;
background-repeat: no-repeat;
color: #fff;
letter-spacing: 0.2em;
transition: all 0.2s;
}
.contents_nav li a.active {
background: #246dbd;
background-position: center left 2rem;
background-size: 12%;
background-repeat: no-repeat;
}
.contents_nav li a:hover {
background: #246dbd;
background-position: center left 2rem;
background-size: 12%;
background-repeat: no-repeat;
}
.contents_nav li a.m01 {
background-image: url("/snow/images/news/m01_bg.png");
}
.contents_nav li a.m02 {
background-image: url("/snow/images/news/m02_bg.png");
}
.contents_nav li a.m03 {
background-image: url("/snow/images/news/m03_bg.png");
}
.list {
margin-bottom: 6rem;
}
.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: #2561AC;
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) {
}

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

.list ul li {
width: 100%;
}

}