@charset "utf-8";


/*------------------------------------------------------------
	Blog Archive：レイアウト
------------------------------------------------------------*/

article {
	position: relative;
	margin-top: 20px;
}

@media only screen and (min-width: 768px) {
	
	article {
		margin-top: 40px;
		margin-bottom: 50px;
	}
	
}

/*------------------------------------------------------------
	Blog Archive：サムネイル
------------------------------------------------------------*/

@media only screen and (min-width: 768px) {
		
	article figure {
		width: 360px;
		height: 360px;
		position: absolute;
		top: 0;
		left: 0;
		overflow: hidden;
	}
	
	article figure img {
		max-width: 100%;
		height: auto;
		-webkit-transition:0.3s ease-in-out;
		transition:0.3s ease-in-out;
	}
	
	article figure img:hover {
		-webkit-transform:scale(1.05,1.05);
		transform:scale(1.05,1.05);
		opacity:0.8;
		filter: alpha(opacity=80);
		-ms-filter: "alpha( opacity=80 )";
		background: #fff;
	}

}

/*------------------------------------------------------------
	Blog Archive：タイトル・投稿日・抜粋
------------------------------------------------------------*/

article div {
	background: #fff;
	width: 86vw;
	padding: 20px 20px;
	position: relative;
	top: -30px;
	left: 2vw;
	z-index: 10;
	box-shadow: 0 0 6px rgba(0,0,0,.15);
}

@media only screen and (min-width: 768px) {
	
	article div {
		width: 55%;
		padding: 30px;
		margin-left: 45%;
		top: 30px;
		left: auto;
	}

}

article div h2 {
	font-size: 5vw;
	line-height: 1.6;
}

article div h2 a:link {
	font-weight: 500;
	color: #000;
	text-decoration: none;
}

article div h2 a:hover {
	color: #000;
	text-decoration: underline;
}

@media only screen and (min-width: 768px) {
	
	article div h2 {
		font-size: 2rem;
		line-height: 1.6;
	}
	
}

article div p.date {
	font-size: 1.3rem;
	color: #6c6c6c;
	margin-bottom: 10px;
}

article div p.excerpt {
	line-height: 1.6;
	margin-bottom: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 5; /* 行数をここで制御（例：2行） */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media only screen and (min-width: 768px) {
	
	article div p.date {
		margin-bottom: 15px;
	}
	
	article div p.excerpt {
		margin-bottom: 20px;
	}
	
}


/*------------------------------------------------------------
	Blog Post：レイアウト
------------------------------------------------------------*/

.blog-conts {
	margin: 20px auto 40px;
}

@media only screen and (min-width: 768px) {
	
	.blog-conts {
		width: 740px;
		margin: 60px auto;
	}

}


/*------------------------------------------------------------
	Blog Post：コンテンツ
------------------------------------------------------------*/

.blog-conts h1 {
	font-size: 6.2vw;
	font-weight: 500;
	line-height: 1.4;
}

.blog-conts h2,
.blog-conts h3,
.blog-conts h4 {
	font-weight: 500;
	line-height: 1.4;
	color: #000;
	margin: 30px 0 15px;
}

.blog-conts h2 {
	font-size: 5.8vw;
}

.blog-conts h3 {
	font-size: 5.2vw;
	margin: 25px 0 10px;
}

.blog-conts h4 {
	font-size: 4.8vw;
	margin: 20px 0 10px;
}


@media only screen and (min-width: 768px) {
	
	.blog-conts h1 {
		font-size: 3.4rem;
		line-height: 1.6;
	}
	
	.blog-conts h2 {
		font-size: 3rem;
		margin: 50px 0 15px;
	}

	.blog-conts h3 {
		font-size: 2.2rem;
		margin: 40px 0 10px;
	}
	
	.blog-conts h4 {
		font-size: 1.8rem;
		margin: 40px 0 10px;
	}
	
}



.blog-conts p {
	margin-bottom: 10px;
}

.blog-conts p span.large {
	font-size: 1.6rem;
}

.blog-conts dl {
}

.blog-conts dl dt {
	font-weight: 500;
}

.blog-conts dl dd {
	margin-bottom: 15px;
}

.blog-conts ul {
	padding-left: 1em;
	margin-bottom: 10px;
}

.blog-conts ul li {
}

.blog-conts ul li {
	list-style: disc;
}

.blog-conts ul li ul li {
	list-style: circle;
}

.blog-conts figure {
	margin: 20px 0 20px;
}

.blog-conts figure img {
	width: 100%;
	margin: 0 auto;
}

/*------------------------------------------------------------
	Blog Post：ボタン
------------------------------------------------------------*/

#blog-post a.button:hover {
  color: #fff!important;
  text-decoration: none;
}

#blog-post a.button.reverse:before {
	content: '\f104';
	top: 50%;
	right: auto;
	left: 20px;
	transform: translateY(-50%);
}

#blog-post a.button.reverse:hover:before {
	left: 17px;
}

#blog-post a.button.reverse::after {
	left: auto;
	right: -100%;
}

#blog-post a.button:hover::after {
  right: 0;
}

@media only screen and (min-width: 768px) {
	
	#blog-post a.button {
		width: 240px;
	}

}