@charset "utf-8";
/* CSS Document */
@import url("sns.css");
@import url("sidebar.css");
/* --------------mobaile_fast--------------------- */
/* =====================================================
  ・ #wrapSingle (SP)
======================================================== */
#wrapSingle {
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: left;
}
#wrapSingle .boxHeader h1 {
	font-size: 2.4rem;
	text-align: center;
	letter-spacing: .2em;
	font-weight: bold;
}
#wrapSingle .postHeader {
	width: 100%;
  margin-bottom: 1em;
}
#wrapSingle .iconCategory {
  display: inline-block;
  background: #d1c74e; /* カテゴリー背景色 */
	margin-right: 1em;
	padding: 2px 1em;
  border-radius: 3px;
  font-size: 1.4rem; 
  color: #fff;
  text-align: center;
}
#wrapSingle .postHeader time {
	display: inline-block;
  font-size: 1.2rem; 
}
#wrapSingle .postBox h1 {
	margin-top: 1em;
	margin-bottom: 1em;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.6;
}
#wrapSingle .postContents h2, 
#wrapSingle .postContents h3, 
#wrapSingle .postContents h4 {
	margin-top: 1em;
	margin-bottom: 1em;
	font-size: 1.6rem;
	font-weight: bold;
}
#wrapSingle .boxImage {
	width: 100%;
	margin-bottom: 30px;
}
#wrapSingle .postContents p {
	margin-bottom: 26px;
	font-size: 1.4rem;
	line-height: 2;
	text-align: justify;
}
#wrapSingle .postContents ul {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 1em;
}
#wrapSingle .postContents a {
  transition: all 0.2s ease-in-out;
}
#wrapSingle .postContents ol {
	list-style-position: inside;
	margin-bottom: 1em;
}
/* =====================================================
・ .btnLinkList (SP)
======================================================== */
.btnLinkList a {
	display: block;
	position: relative;
	width: 100%;
	max-width: 375px;
	height: 60px;
	background: #756f65; /* 一覧ボタン背景色 */
	margin: 60px auto;
	text-align: center;
	font-size: 1.8rem;
	line-height: 60px;
	color: #fff;
	transition: all 0.3s ease-in-out;
}
.btnLinkList a::after {
	position: absolute;
	top: 40%;
	right: 20%;
	display: block;
	content: "";
  width: 9px;
  height: 9px;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
  transition: all 0.2s ease-in-out;
}
/* =====================================================
	#boxPager (SP)
======================================================== */
#boxPager {
	width: 100%;
}
#boxPager .btnPager {
  position: relative;
  width: 100%;
	display: table;
	margin-bottom: 1em;
	vertical-align: middle;
}
#boxPager .btnPager a {
	display: table-cell;
	vertical-align: middle;
  width: 100%;
  height: auto;
  padding: 0 2em;
	margin: 0;
  box-sizing: border-box;
	color: #333;
	transition: all 0.3s ease-in-out;
}
#boxPager .btnNext a::after,
#boxPager .btnPrevious a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: .5em;
  height: .5em;
  margin: auto;
}
#boxPager .btnPrevious a {
	padding-left: 6em;
}

#boxPager .btnNext a::after {
  left: 1em;
  border-bottom: 2px solid #666;
  border-left: 2px solid #666;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#boxPager .btnPrevious a::after {
  right: 1em;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*================================
  ▼ブレイクポイントのルール▼
  -スマホを基本設計にする-
  *〜479px：SP縦
  *480px〜：SP横 
  *600px〜タブレット
  *960px〜小型PC
  *1280px〜大型PC
================================*/

/* --------------mobaile_fast--------------------- */
@media screen and (min-width:480px) { 
	/*　for iPhone (iPhone 横)　*/
/* =====================================================
・ .btnLinkList (min-width:480px) 
======================================================== */
	.btnLinkList a {
		border-radius: 3px;
	}
}
@media screen and (min-width:600px) {
	/*　for tablet 　*/
/* =====================================================
	・ #wrapSingle (min-width:600px) 
======================================================== */
	#wrapSingle h1 {
		font-size: 2.2rem;
	}
	#wrapSingle .postContents h2, 
	#wrapSingle .postContents h3, 
	#wrapSingle .postContents h4 {
		font-size: 2.0rem;
	}
	
/* =====================================================
	#boxPager (min-width:600px) 
======================================================== */
	#boxPager {
		display: table;
	}
	#boxPager .btnPager {
		width: 50%;
		display: table-cell;
	}
	#boxPager .btnPager a {
		display: table-cell;
	}
	#boxPager .btnPrevious a {
		padding-left: 1em;
	}
}
@media screen and (min-width:960px) {
  /*　for PC　*/
	/* =====================================================
		・ #wrapSingle (min-width:960px)
	======================================================== */
	#wrapSingle {
		width: 100%;
		max-width: 1000px;
		padding-top: 40px;
		margin: 0 auto;
	}
	#wrapSingle main {
		width: 68%;
		max-width: 680px;
		float: left;
	}
	#wrapSingle main .boxInner {
		width: 100%;
	}
	#wrapSingle .postContents a:hover {
		opacity: .7;
		text-decoration: underline;
	}
	/* =====================================================
	・ .btnLinkList (min-width:960px)
	======================================================== */
	.btnLinkList a:hover {
		opacity: .7;
	}
	/* =====================================================
		#boxPager (PC)
	======================================================== */
	#boxPager .btnPager a:hover {
		opacity: .7;
		text-decoration: underline;
	}

	
}