@charset "utf-8";
/*----------トップ画像-----------------*/
.top-img{
    max-width: 1360px;
    margin: 0 auto;
    margin-bottom: 5%;
}
.top-img img{
    border-radius: 0px 0px 20px 20px;
}

/*----pcとスマホで画像を切り替えるため-----*/
.pc-img{
    display: block;
}
.sp-img { 
    display: none; 
}
/*----pcとスマホで画像を切り替えるため-----*/

/*----------トップ画像-----------------*/
#news{
    padding-bottom: 2%;
}

.news-area{
    margin: 0px 3.5% 2% 3.5%;
    padding: 4% 6% 2% 6%;
    background-color: #ffffff;
    border-radius: 20px;
    text-align: center;
    /*position: relative;*/
    
}
.news-contents li{
    border-bottom: dotted 2px #F2EDE1;
    margin-bottom: 1%;
}
.news-contents ul li a{
    display: flex;
    font-size: 1.2rem;
    color: #453012;
    padding: 1% 5%;
}
.news-contents ul li a date{
    margin-right: 5.5%;
}




.btn_news{
	position: relative;
	overflow: hidden;
	text-decoration: none;
	display: inline-block;
	border-radius: 5px;
	border: 2px solid #453012;
	color: #453012;
	text-align: center;
	outline: none;
    top: 10%;
    left: 45%;
    margin-top: 2%;
    font-size: 1rem;
}

.btn_border_type1 {
  padding: 5px 30px;
  border: 2px solid #453012;
  transition: border-color 0.3s ease;
  
}
.btn_border_type1:hover {
  border-color: #F2EDE1;
}

/*wordpressで追加したぺージャーのCSS*/
.navigation.pagination{
    width: 15%;
    margin: 0 auto;
}
.nav-links ul{
    display: flex;
}
.page-numbers li,.page-numbers li span{
    border-bottom: none;
    margin-bottom: 0;
    font-size: 1.2rem;
    margin-right: 10%;
}



@media screen and (max-width: 1024px) {
    #news h2{
        font-size: 1.2rem;
        
    }
    .news-contents ul li a{
        font-size: 1rem;
    }
    .btn_news{
        left: 0;
        margin-top: 6%;
    }
    .btn_border_type1{
        padding: 5px 30px;
    }
}


@media screen and (max-width: 599px) {
/*----一番上の画像をpcとスマホで切り替えるため-----*/
    .pc-img{
        display: none;
    }
    .sp-img { 
        display: block; 
    }
    /*----一番上の画像をpcとスマホで切り替えるため-----*/
}