@charset "utf-8";
/* ===================================================================
CSS information
 file name  :  news.css
 style info :  スタイル指定
=================================================================== */

/* header menu
----------------------------------------------------------------------------- */
nav.menu{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	background-color: #fff;
    z-index: 200;
	border-bottom: 1px solid #EAEAEA;
}
nav.menu.fixed{
	position: fixed;
	display: block;
}
nav.menu h1{
    line-height: 50px;
    width: 100%;
    text-align: right;
    padding: 0 17px;
    font-size: 11px;
}
nav.menu h1.close{
    display: none;
}
/* title
----------------------------------------------------------------------------- */
.title{
    margin-top: 100px;
    width: 100%;
    height: 166px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F4F2EA;
}


/* list
----------------------------------------------------------------------------- */
.list {
    margin-top: 150px;
}
.list .news-li{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
.list .news-li li{
    width: 30%;
    margin-bottom: 100px;
    text-align: left;
    margin-right: 5%;
}
.list .news-li li:nth-of-type(3n){
    margin-right: 0;
}
.list .news-li li:nth-last-of-type(-n+3){
    margin-bottom: 0;
}
.list .news-li li a{
    display: block;
}
.list .news-li li a div{
    position: relative;
    width: 100%;
    background: #eee;
}
.list .news-li li a img{
    width: 100%;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}
.list .news-li li a:hover img{
    opacity: 0.5;
}
.list .news-li li a p.date{
    font-size: 14px;
    color: #C1BDBC;
    margin-top: 25px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.list .news-li li a p.text{
    font-size: 14px;
    color: #222;
    line-height: 1.6;
    margin-top: 13px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.list .news-li li a:hover p{
    color: #F99F87;
}
/* BreakPoint 1200px
=============================================================*/
@media only screen and (max-width: 1200px) {
.title {
    margin-top: 86px;
}
.list {
    padding: 0 3%;
}
}

/* BreakPoint 1000px
=============================================================*/
@media only screen and (max-width: 1000px) {
h2{
    font-size: 14px;
}

.title {
    margin-top: 40px;
    height: 60px;
}

.list {
    margin-top: 30px;
    padding-bottom: 40px;
}
.list .news-li {
    display: block;
}
.list .news-li li {
    width: 100%;
    margin-bottom: 40px;
}
.list .news-li li a p{
    margin: 0 7%;
}
.list .news-li li a p.date {
    font-size: 12px;
    margin-top: 10px;
    margin: 10px 0 0;
    padding: 0 3%;
}
.list .news-li li a p.text {
    font-size: 12px;
    line-height: 1.4;
    padding: 0 3%;
    margin: 0;
}
.list .news-li li:nth-last-of-type(-n+3){
    margin-bottom: 40px;
}


}