@charset "UTF-8";

/*----------------------------------------------------*/ 
/* structure
-----------------------------------------------------*/ 

#gnavi {
	height: 280px;
}

@media only screen and (max-width: 767px) {

#gnavi {
	height: auto;
}
	
}

/*----------------------------------------------------*/ 
/* mother
-----------------------------------------------------*/ 

#blog {
	position: relative;
	background: #fdfbdc;
	padding-bottom: 50px;
}

#blog .svg_bg {
	height: 50px;
	top: -50px;
	z-index: 1;
}

#blog .blog {
	width: 1000px;
	margin: 0 auto;
	position: relative;
	padding-top: 15px;
}

#blog .blog:after {
	content: "";
	display: block;
	clear: both;
}

#blog h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 150px;
	position: relative;
	margin-bottom: 30px;
}

#blog h1:before,
#blog h1:after {
	content: "";
	width: 204px;
	height: 150px;
	background: url(/kids/lib/img/top/blog_01.png) no-repeat;
	background-size: 204px auto;
	position: absolute;
	top: 0;
	left: 0;
}

#blog h1:after {
	left: auto;
	right: 0;
	transform: scale(-1,1);
}

#main {
	width: 700px;
	float: right;
}

#side {
	width: 250px;
	float: left;
}

.blogBox {
	box-sizing: border-box;
	position: relative;
	background: #fff;
	border-radius: 30px;
	padding: 40px 60px;
	margin-bottom: 20px;
}


.blogBox h2 {
	font-size: 2.0rem;
	margin-bottom: 30px;
	display: flex;
}

.blogBox .date {
	margin: 5px 15px 0 0;
	font-size: 1.6rem;
}

.blogBox .image {
	text-align: center;
	margin-bottom: 30px;
}

.blogBox .image img {
	max-width: 100%;
}

.entryBody p {
	margin-bottom: 20px;
}

#side > section {
	margin-bottom: 50px;
}

#side h2 {
	background: #b4d2dc;
	color: #fff;
	font-size: 1.8rem;
	text-align: center;
	margin-bottom: 20px;
	padding: 5px 0;
	border-radius: 20px;
}

#side .archives li {
	border-bottom: dotted 1px #b4d2dc;
}

#side .archives li a {
	display: block;
	position: relative;
	padding: 10px 25px 10px 0;
	text-decoration: none;
	font-size: 1.6rem;
}

#side .archives li a:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 7px;
	border-color: transparent transparent transparent #b4d2dc;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
}


@media only screen and (max-width: 767px) {

#blog {
	padding-bottom: 25px;
}

#blog .svg_bg {
	height: 25px;
	top: -25px;
}

#blog .blog {
	width: auto;
}

#blog h1 {
	height: 120px;
	margin: 0 15px 15px; 
	box-sizing: border-box;
	padding-top: 25px;
}

#blog h1:before,
#blog h1:after {
	width: 163px;
	height: 120px;
	background-size: auto 120px;
}

#main,
#side {
	width: auto;
	float: none;
	margin: 0 15px;
}

#side {
	margin-top: 50px;
}

.blogBox {
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 50px;
}

.blogBox h2 {
	font-size: 1.6em;
	flex-direction: column;
}

.blogBox .date {
	margin: 0 0 5px 0;
	font-size: 1.4rem;
}

.blogBox .image {
	margin-bottom: 20px;
}
	
}


/*----------------------------------------------------*/ 
/* pager
-----------------------------------------------------*/ 
.pager {
	overflow: hidden;
	margin: 50px 0 0 0;
}

.pager li {
	display: inline-block;
}

.pager li a,
.pager li span {
	display: block;
	padding: 3px 10px;
	background: #f9f9f9;
	color: #333;
	text-decoration: none;
}

.pager li a:hover {
	text-decoration: none;
	background: #eee;
}

.pager li span.current {
	font-weight: bold;
	background: #94c628;
	color: #fff;
}

@media only screen and (max-width: 767px) {
.pager {
	margin: 30px 0 0;
}
}

/*----------------------------------------------------*/ 
/* paging
-----------------------------------------------------*/ 

.paging {
	position:relative;
	margin-top: 30px;
	min-height: 41px;
}

.paging p a {
	background:#94c628;
	box-sizing:border-box;
	color:#fff;
	cursor:pointer;
	display:inline-block;
	font-size:1.4rem;
	text-align:center;
	text-decoration:none;
	padding:10px 15px;
}

.paging p a:hover {
	opacity: .8;
}

.paging p.prev {
	margin-right:6em;
}

.paging p.next {
	position:absolute;
	right:0;
	top:0;
}

.paging p.center {
	text-align: center;
}

@media only screen and (max-width: 767px) {

.paging p a {
	font-size:1.4rem;
	padding:.6em .8em;
}
	
}