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

/*===index.php(メイン)用==============================*/
.blog-box{
width: 100%;
display: flex;    
flex-wrap:wrap;
justify-content:space-between;
align-items:center;
margin: 0 auto 0.5rem;
padding:0.5rem 1rem;    
background: #fff;    
}
.blog_img{
width: 35%; 
display: block;    
}
.blog_img img{
width: 100%;
height: 100%;
display: block;
object-fit: cover;    
}
.blog_text{
width: 65%;
padding: 0 3%; 
display: block;     
}
.blog_text .blog_up_ymd{
display: block;   
width: 100%;  
margin-right: 0;  
color:#03bffc;    
font-family: "Nunito", sans-serif;       
}
.blog_text .title{
   color: #333; 
}
.blogList{
	width: 100%;
	padding: 0 10px;
}
.news{
width: 100%;
position: relative;
}

.n-box{
background: #fff;  
width: 100%;    
padding: 3%;    
position: relative;
z-index: 2;   
border-radius: 10px;
}
.n-box::after{
content: "";
top: 10%;
left:10%;    
position: absolute;
background: url("../img/illust12.png");
background-size: contain;
background-repeat: no-repeat;    
width: 80px;
height:30%; 
}
.n-box::before{
content: "";
top: 20%;
right:5%;    
position: absolute;
background: url("../img/illust13.png");
background-size: contain;
background-repeat: no-repeat;    
width: 80px;
height: 30%;    
z-index: 5;    
}
#newsWrap{
width: 100%;      
}
#newsWrap ul#newsList{
	overflow-y: scroll;
	max-height: 200px;
	width: 100%;
	padding: 0 10px;
}

#newsWrap ul#newsList::-webkit-scrollbar-track{
border-right: solid #ababab 1px;
}
#newsWrap ul#newsList::-webkit-scrollbar-thumb{
 border-right: solid #999 1px   
}
#newsWrap ul#newsList li{
	list-style-type:none;
    border-bottom: 1px solid #ababab;
    padding: 10px 0;
}

#newsWrap ul#newsList li .up_ymd{
	display: inline-block;
	margin-right: 20px;
	letter-spacing: 0.05em;
	font-size: 1rem;
	color:#03bffc;
	padding: 1px 10px;
   font-family: "Nunito", sans-serif;   
  font-weight: 700;
}
#newsWrap ul#newsList li .title{
	letter-spacing: 0.12em;
}
#newsWrap ul#newsList li .title a{
color: #333;
font-size: 1rem;    
}
#newsWrap ul#newsList li .title a:hover{
	opacity: 0.6;
    background-size: 0% 1px;
}

@media (max-width: 690px){

	#newsWrap ul#newsList li .up_ymd{
		padding: 0 ;
		margin-bottom: 8px;
	}
	#newsWrap ul#newsList li .title{
		display: block;
		font-size: 0.9rem;
	}
}

/*スクロールバー*/
#newsWrap ul#newsList::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #999;
}
#newsWrap ul#newsList::-webkit-scrollbar-button {
    display: none;
}
#newsWrap ul#newsList::-webkit-scrollbar-thumb, #newsWrap ul#newsList::-webkit-scrollbar-corner {
    background: #444;
}
#newsWrap ul#newsList::-webkit-scrollbar-thumb, #newsWrap ul#newsList::-webkit-scrollbar-corner {
    background: #444;
}


/*===news-detail(詳細ページ)用==============================*/
.news-detail .flex{
	display: flex;
	justify-content: space-between;
}
.news-detail .flex #main{
	width: calc(100% - 270px);
}
.news-detail .flex #side{
	width: 220px;
}

/*main*/
.news-detail .flex #main #up_ymd{
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	color: #fd9fb5;
      font-family: "Nunito", sans-serif;   
  font-weight: 500;
}
.news-detail .flex #main #up_ymd::before{
	font-family: "Font Awesome 5 Free";
	content: '\f017';
	font-weight: 900;
	padding-right: 0.5em;
}
.news-detail .pages{
	display: flex;
	justify-content: space-around;
	margin-top: 30px;
}
.news-detail .pages > div{
	width: 45%;
}
.news-detail .pages .page_next{
}
.news-detail .pages .page_prev{
}
.news-detail .pages a{
	display: block;
	width: 100%;
	background: #75CCE8;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 15px;
	transition: 0.4s;
    color: #fff;
}
.news-detail .pages .page_prev a{
	text-align: right;
}
.news-detail .pages a:hover{
opacity: 0.7;
}

/*side*/
.news-detail .flex #side h3{
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 10px;
}
.news-detail .flex #side h3::before{
	font-family: "Font Awesome 5 Free";
	content: '\f0ca';
	font-weight: 900;
	padding-right: 0.5em;
	color: #fd9fb5;
}
.news-detail .flex #side ul{

}
.news-detail .flex #side ul li a{
	display: block;
	width: 100%;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
    background: #75CCE8;
	color: #fff;
	padding: 15px;
	margin-bottom: 7px;
	transition: 0.4s;
}
.news-detail .flex #side ul li a::before{
	font-family: "Font Awesome 5 Free";
	content: '\f017';
	font-weight: 900;
	padding-right: 0.5em;
}
.news-detail .flex #side ul li a:hover{
opacity: 0.7;
}

@media (max-width: 960px){
	.news-detail .pages{
		display: block;
		margin-top: 30px;
	}
	.news-detail .pages > div{
		width: 100%;
	}
	.news-detail .pages .page_next{
		margin-bottom: 7px;
	}
    
}
@media (max-width: 690px){
	.news-detail .flex{
		display: block;
	}
	.news-detail .flex #main{
		width: 100%;
		margin-bottom: 40px;
	}
	.news-detail .flex #side{
		width: 100%;
	}
.n_text{
width: 100%;
}

}


/*一覧ページ*/

.news-detail .flex #main ul{
	list-style-type:none;
}
.news-detail .flex #main li{
	border-bottom: 1px solid #999;
	padding: 8px 0;
    color: #fd9fb5;
}
.news-detail .flex #main li .up_ymd::before{
	font-family: "Font Awesome 5 Free";
	content: '\f017';
	font-weight: 900;
	padding-right: 0.5em;
}
.news-detail .flex #main li:first-child{
	border-top: 1px solid #999;
}
.news-detail .flex #main li span{
    	display:block;
}
.news-detail .flex #main li .up_ymd{
	display: inline-block;
	font-size: 1rem;
	letter-spacing: 0.05em;
      font-family: "Nunito", sans-serif;   
  font-weight: 500;
	margin-right: 20px;
}
.n_text{
width: 65%;
}
.news-detail .flex #main li .news_img{
    width: 20%;
    margin-right: 2%;
    display: block;
}
.news-detail .flex #main li .news_img img{
    width: 100%;
}
.news-detail .flex #main li .title{
font-weight: 500;
	display: inline-block;    
}
.news-detail .flex #main li .title a{
	font-weight: 500;
    color: #333;
}
.news-detail .flex #main li .title a:hover{
	opacity: 0.7;
}

/*アーカイブのスクロール指定*/
.news-detail #side ul{
	overflow-y: scroll;
	max-height: 300px;
	padding-right: 10px;
}
/*スクロールバー*/
.news-detail #side ul::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #999;
}
.news-detail #side ul::-webkit-scrollbar-button {
    display: none;
}
.news-detail #side ul::-webkit-scrollbar-thumb, .news-detail #side ul::-webkit-scrollbar-corner {
    background: #333;
}
.news-detail #side ul::-webkit-scrollbar-thumb, .news-detail #side ul::-webkit-scrollbar-corner {
    background: #333;
}

.news_t ul{
    margin: 1em 0;
	padding-left: 40px;
    color: #333;
	list-style-type: disc!important;
}
.news_t ol{
        margin: 1em 0;
	padding-left: 40px;
    color: #333;
	list-style-type: decimal!important;
}

.news_t li{
 border-bottom: 0px solid #ababab!important;   
}
.news_t li:first-child{
	border-top: 0px solid #ababab!important;
}
@media (max-width: 690px){
.n_text{
width: 100%;
}
.news-detail .flex #main li .news_img{
    width:100%;
    margin:2% auto;
    display: block;
}

.news-detail .flex #main li .up_ymd{
	display: block;
	margin-right: 20px;
}
}



.blog-detail .flex #main li{
	display: flex;
    flex-wrap:wrap;
    justify-content:flex-start;
    align-items:center;
}
.blog-detail .flex #main li .up_ymd{
	display: block;
	margin-right: 0;
}