@charset "utf-8";

body {
	margin: 0;
	padding: 0;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    letter-spacing: 0.07em;
    line-height: 1.5;
	opacity: 0;
}
body.anim{
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-fill-mode:forwards;
    animation-timing-function: ease;
    animation-iteration-count: 1;
}
@keyframes fadeIn{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
img{
	max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a{
	color: #555;
    display: block;
    text-decoration: none;
    transition: all 300ms 0s ease;
}

.wrapper{
	width: 1000px;
    max-width: 90%;
	margin: 120px auto 4rem;
}
.page_title{
	margin: 60px 0;
}
h1{
	text-align: center;
	font-family: "trajan-pro-3", serif;
	font-weight: 700;
	color: #66828d;
    font-size: 4.8em;
    letter-spacing: 0.15em;
	border-bottom: double;
	width: 60%;
    margin: auto;
}
ol {
	margin: 0;
	padding-left: 0;
}
li {
	list-style: none;
}

.pager {
	text-align: center;
}
.pager a {
	margin: 0 10px;
}
.pager_list {
	display: inline-block;
	font-size: 12px;
}
.pager_list li,
.pager_next,
.pager_prev {
	width: 36px;
    height: 36px;
    border: solid 1px #999;
    border-radius: 5px;
    display: inline-block;
    line-height: 36px;
    transition: all 300ms;
}
.pager_list li+li {
    margin-left: 10px;
}
.pager_item {
	display: inline-block;
}
.pager_item.is-current {
	border: solid 1px cadetblue;
    color: cadetblue;
    font-weight: bold;
}


.article {
	display: flex;
	justify-content: space-between;
    align-items: flex-start;
	margin: 5%;
	position: relative;
}
.article:nth-child(even){
	display: flex;
	flex-direction: row-reverse; /*左右入れ替え*/
}
.article a {
	position: absolute;
	width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.article_left {
	width: 58%;
}
.article_right {
	width: 35%;
	margin-top: 2%;
}
.article_img img{
	border-radius: 2vw;
}
.article_date {
	font-size: 1.2em;
	color: #555;
	border-bottom: solid #999 4px;
    display: inline-block;
    margin-bottom: 40px;
    padding: 0.2rem;
    text-transform: uppercase;
}
.article_ttl {
	color: #66828d;
}
.article_ttl h2{
	font-weight: normal;
	font-size: 2.8rem;
    padding-bottom: 20px;
	border-bottom: 1px #000 solid;
}
.article_body{
	color: #555;
	font-size: 1.2em;
	line-height: 2;
	margin-top: 5%;
	position: relative;
}
.white-gradient{
	position: absolute;
	bottom: 0px; 
	width: 100%; 
	height: 70%; 
	background: linear-gradient(to top,#ffffff 30%, transparent 100%);
}

.js-pager{
	margin-top: 10%;
	margin-bottom: 10%;
}


@media screen and (max-width: 768px) {
	h1 {
		font-size: 3.2em;
		width: 90%;
		margin: auto;
	}
	.article{
		display: block;
		margin-bottom: 20%;
	}
	.article_left{
		width: 100%;
	}
	.article_right {
		width: 100%;
		margin-top: 10%;
	}
	.article_img img {
		border-radius: 7vw;
	}
	.article_date{
		font-size: 1.4em;
	}
	.article_body {
		font-size: 1.4em;
	}
	.article:nth-child(even){
		display: block;
	}


}