
/* CSS Document */

/*==================================================

news-contents
=================================================*/

.news-info .top-image {
    text-align: right;
    background-color: #fed900;
}
.news-info .top-image .title {
    width: 80%;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    padding: 14% 0 10%;
    z-index: 2;
}
@media only screen and (min-width:1600px) {
    
    .news-info .top-image .title {
        padding: 180px 0 120px;
    }
    .news-info .top-image .title h1 {
        font-size: 12rem;
        line-height: 120%;
    }
}
.news {
    width: 90%;
    max-width: 1200px;
    position: relative;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    
    margin: 120px auto 0;
}
.news-info .news {
    margin: 0 auto 0;
}

.news .menu {
    width: 240px;
}
.news .menu a {
    width: 100%;
    display: block;
    color: #000;
    text-align: left;
    font-size: clamp(1.2rem, 1.6vw, 1.6rem);
    text-decoration: none;
    border: 1px solid #000;
    background-image: url("../images/arrow_b.png");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 15px;
    margin-bottom: 20px;
    padding: .6em;
    padding-right: 20px;
}
.news .menu a.c1 {
    color: #FFF;
    border-color: #e68200;
    background-color: #e68200;
}
.news .menu a.c2 {
    color: #FFF;
    border-color: #e60000;
    background-color: #e60000;
}
.news h1 {
    width: 240px;
    color: #000;
    font-size: clamp(3rem, 7vw, 7rem);
    text-align: left;
    line-height: 100%;
    background-size: auto;
}
.news h1 span {
    display: block;
    font-size: 40%;
    line-height: 100%;
    margin-top: 15px;
}
.news .list {
    flex: 1;
    padding-left: 5%;
}
.news .list ul {
    margin-bottom: 4%;
}
.news .list ul li:nth-of-type(odd) {
    background-color: #EEE;
}
.news .list ul li a,.news .list ul li > p {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    
    color: #000;
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
    line-height: 160%;
    text-decoration: none;
}
.news .list ul li span.date {
    display: block;
    padding: 1em .8em;
}
.news .list ul li span.category {
    width: 9em;
    display: block;
    font-size: .7em;
    color: #FFF;
    text-align: center;
    border-radius: 4px;
    background-color: #e68200;
    padding: .3em .5em;
}
.news .list ul li span.category.c2 {
    background-color: #e60000;
}
.news .list ul li span.about {
    display: block;
    flex: 1;
    padding: 1em .8em;
}

.news .detail {
    flex: 1;
    padding-left: 5%;
}
.news .detail .date {
    vertical-align: middle;
}
.news .detail .date span.category {
    display: inline-block;
    width: 9em;
    font-size: .7em;
    color: #FFF;
    text-align: center;
    border-radius: 4px;
    background-color: #000;
    margin-right: 1em;
    padding: .2em .5em;
}
.news .detail .date span.category.c1 {
    background-color: #e68200;
}.news .detail .date span.category.c2 {
    background-color: #e60000;
}
.news .detail h2 {
    background-image: url("../../news/images/border.png");
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: auto;
    margin-bottom: .8em;
    padding: .8em 0;
}
.news .detail .button {
    margin: 8% auto 0;
}
.news .detail .button::before {
    background-image: url("../images/arrow_r.png");
    background-position: left center;
}

@media only screen and (min-width:1px) and (max-width: 768px) {
	
    .news-info .top-image .title {
        padding: 15% 0;
        z-index: 2;
    }
    .news .menu {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;

        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 6%;
    }
    .news .menu a {
        margin-bottom: 10px;
        padding: .8em;
        padding-right: 20px;
    }
    .news .menu a.c1,.news .menu a.c2 {
        width: 49%;
    }
	.news {
        width: 90%;
        max-width: 1200px;
        position: relative;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;

        margin: 10% auto 8%;
    }
    .news h1 {
        width: 100%;
        text-align: center;
        padding: 0 0 .5em;
    }
    .news .list {
        width: 100%;
        padding-left: 0;
    }
    .news .list ul li span.date {
        display: block;
        padding: .8em .8em;
    }
    .news .list ul li span.about {
        display: block;
        flex: 1;
        padding: .8em .8em;
    }
    .news .list .button-s {
        margin: 0 auto;
    }
    .news .detail {
        padding-left: 0;
    }
}

@media only screen and (min-width:1px) and (max-width: 568px) {
	

}
	
@media only screen and (min-width:1px) and (max-width: 480px) {
	

}

