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

/*=========================================== 
スマホ向けのレイアウトの指定：～768px 
===========================================*/
@media only screen and (min-width: 0px) {

body{
	overflow-x: hidden;
}
	
#container{
	width:100%;
	margin:0 auto;
	overflow: hidden;
}

#wrapper{
	width:100%;
	margin:0 auto;
}

/*メインビジュアル*/
.mv{
	background: url(../images/news_mv.jpg) no-repeat top center;
	background-size: cover;
}


/*コンテンツ*/
.news{
	width: 90%;
	margin: 80px auto;
}

.news .content{
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	padding: 32px 20px;
	border-top:4px solid rgb(139,199,207);
}

.news .content .date{
	margin: 0 auto 32px;
	font-size: 18px;
	letter-spacing: 0.10em;
	font-family: 'Lekton', sans-serif;
}

.news .content h2.title{
	margin: 0 auto 32px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.3;
}

.news .content .img img{
	width: 100%;
	height: auto;
}

.news .content .sentence p{
	margin: 32px auto 0;
	font-size: 16px;
	line-height: 1.7;
}

.news .content .sentence img{
	max-width: 100%;
	height: auto;
}

.news .content .sentence a{
	color: rgb(139,199,207);
}
    
.news .content .sentence .inline {
    display: inline-block;
    padding: 0 6px;
    font-weight: bold;
}

.news .content .pager{
	margin: 60px auto 0;
	padding: 32px 0 0 0;
	border-top: 1px solid rgb(230,230,230);
}

.news .content .pager .prev{
	font-size: 14px;
	font-weight: bold;
	float: left;
}

.news .content .pager .next{
	font-size: 14px;
	font-weight: bold;
	float: right;
}

.news .content .pager a{
	color:rgb(50,50,50);
}

i.fa-chevron-left,
i.fa-chevron-right{
	color: rgb(139,199,207);
}

.news .sidebar{
	box-sizing: border-box;
	width: 100%;
	margin: 60px auto 0;
	padding: 32px 32px 0;
	border-top:4px solid rgb(200,200,200);
}

.news .sidebar h3.widgettitle{
	margin: 0 auto;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.32em;
}

.news .sidebar ul li{
	margin: 32px auto 0;
	font-size: 16px;
	line-height: 1.7;
	display: block;
}

.news .sidebar .day{
	margin: 0 auto 10px;
	font-size: 16px;
	letter-spacing: 0.10em;
	font-family: 'Lekton', sans-serif;
	display: block;
}

.news .sidebar .sentence{
	margin: 10px auto 0;
	font-size: 14px;
	text-align: justify;
	text-justify: inter-ideograph;
	line-height: 1.7;
	color:rgb(150,150,150);
	display: block;
}

.news .sidebar ul li a{
	color:rgb(50,50,50);
}
}


/*=========================================== 
PC向けのレイアウトの指定：768px〜
===========================================*/
@media only screen and (min-width: 769px) {

#container{
	width:100vw;
}


/*コンテンツ*/
.news{
	width: auto;
	max-width: 940px;
	padding: 0 10px;
}

.news .content{
	width: 66%;
	max-width: 620px;
	float: left;
}

.news .content a:hover{
	opacity: 0.8; 
	filter:alpha(opacity=80); /* IE 6,7*/
	-ms-filter: "alpha(opacity=80)"; /* IE 8,9 */
	-moz-opacity:0.8; /* FF , Netscape */
	-khtml-opacity: 0.8; /* Safari 1.x */
	zoom:1; /*IE*/
}

.news .sidebar{
	width: 32%;
	max-width: 300px;
	margin: 0 auto;
	float: right;
}

.news .sidebar ul li a:hover{
	opacity: 0.8; 
	filter:alpha(opacity=80); /* IE 6,7*/
	-ms-filter: "alpha(opacity=80)"; /* IE 8,9 */
	-moz-opacity:0.8; /* FF , Netscape */
	-khtml-opacity: 0.8; /* Safari 1.x */
	zoom:1; /*IE*/
}
}

