@charset "utf-8";


/* ============================================================================================== */
/* WP                                                                                             */
/* ============================================================================================== */

.floating-container {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}

.floating-container .side-area {
	width: 100%;
	order: 2;
}

.floating-container .body-area {
	width: 100%;
	order: 1;
	margin-bottom: 2em;
}

/* ---------------------------------------------------------------------------------------------- */
/* pager                                                                                          */

.pager .wp-pagenavi {
	text-align: center;
	font-family: 'Varela Round', sans-serif;
	line-height: 1;
}

.pager .pages {
	text-align: center;
	font-size: 1.3rem;
	color: #fff;
	margin: 2em 0 .5em;
	display: block;
}

.pager a {
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: center;
	        align-items: center;
	color: rgba(0,144,217,1);
	font-size: 1.8rem;
	line-height: 1;
	width: 40px;
	height: 40px;
	background-color: #fff;
	/*border: solid 1px rgba(0,144,217,1);*/
	border-radius: 50%;
	text-decoration: none;
	margin: 2px;
}

.pager .current {
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: center;
	        align-items: center;
	color: #fff;
	font-size: 1.8rem;
	line-height: 1;
	width: 40px;
	height: 40px;
	background-color: rgba(0,144,217,1);
	border-radius: 50%;
	margin: 2px;
}

.pager a:hover {
	color: #fff;
	background-color: rgba(0,144,217,1);
}

/* ---------------------------------------------------------------------------------------------- */
/* side-area                                                                                      */

.side-area .category__title,
.side-area .archive__title {
	font-family: 'Varela Round', sans-serif;
	font-size: 2rem;
	line-height: 1.2;
	color: #fff;
	margin-bottom: .25em;
}

.side-area .archive__title {
	margin-bottom: .5em;
}

.category__list li a {
	color: #fff;
	font-weight: 500;
	padding-left: 15px;
	position: relative;
}

.category__list li a:before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 5px;
	margin: auto 0;
}

.side-area .archive {
	margin-top: 2em;
}

.side-area .input-state-select {
	color: rgba(0,144,217,1);
	background: url(../images/common/ic_arrow_select__blue.png) no-repeat left top #fff;
	background-position: calc(100% - 10px) center;
	background-size: 9px;
}


/* ============================================================================================== */
/* news                                                                                           */
/* ============================================================================================== */

.news {
	position: relative;
}

.news-list {
	padding: 20px;
	border-radius: 20px;
	background: #fff;
}

.news-list__item {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
	-webkit-align-items: center;
	        align-items: center;
	text-decoration: none;
	border-bottom: solid 1px rgba(0,144,217,.1);
	padding: 10px 0;
	transition: all .2s ease;
	-webkit-transform: translateX(0);
	        transform: translateX(0);
}

.news-list__item:hover {
	-webkit-transform: translateX(5px);
	        transform: translateX(5px);
}

.news-list__item:first-child {
	padding-top: 0;
}

.news-list__item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.news-list__item .svg-icon {
	width: 10px;
	height: 10px;
	fill: none;
	stroke-width: 6px;
	stroke: rgba(0,144,217,1);
	vertical-align: middle;
	margin-left: auto;
}

.news-list__item .date {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(0,144,217,1);
	font-family: 'Varela Round', sans-serif;
	font-size: 1.3rem;
	line-height: 1.2;
	color: #fff;
	text-align: center;
}

.news-list__item .date span {
	display: block;
	margin-top: 11px;
	font-size: 1.0rem;
}

.news-list__item .detail {
	width: calc(100% - 60px);
	box-sizing: border-box;
	padding: 0 10px;
}

.news-list__item .detail .category {
	font-size: .8em;
	font-weight: 400;
	color: rgba(0,0,0,.8);
}

.news-list__item .detail .title {
	color: rgba(0,144,217,1);
	font-weight: 500;
	line-height: 1.5;
}

/* ============================================================================================== */
/* photoblog                                                                                      */
/* ============================================================================================== */

.photoblog {
	position: relative;
}

.photoblog-list {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}

.photoblog-list__item {
	width: calc(50% - 5px);
	border-radius: 20px;
	background: #fff;
	margin-bottom: 10px;
	transition: all .2s ease;
	-webkit-transform: translateX(0);
	        transform: translateX(0);
}

.photoblog-list__item:hover {
	-webkit-transform: translateY(-2px);
	        transform: translateY(-2px);
	box-shadow: 0 15px 25px rgba(0,0,0,.1);
}

.photoblog-list__item a {
	display: block;
	text-decoration: none;
	color: rgba(0,0,0,.8);
	position: relative;
}

.photoblog-list__item .img-wrap {
	width: 100%;
	position: relative;
}

.photoblog-list__item .img-wrap:before {
	content:"";
	display: block;
	padding-top: 75%;
}
.photoblog-list__item .img-wrap figure {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
}

.photoblog-list__item .img-wrap img {
	object-fit: cover;
	font-family: 'object-fit: cover';
	object-position: 50% 50%;
	width: 100%;
	height: 100%;
	border-radius: 20px 20px 0 0;
}

.photoblog-list__item .txt-wrap {
	padding: 15px 15px 20px 15px;
}

.photoblog-list__item .date {
	position: absolute;
	top: -10px;
	left: -10px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(0,144,217,1);
	font-family: 'Varela Round', sans-serif;
	font-size: 1.3rem;
	line-height: 1.2;
	color: #fff;
	text-align: center;
}

.photoblog-list__item .date span {
	display: block;
	margin-top: 11px;
	font-size: 1.0rem;
}

.photoblog-list__item .title {
	color: rgba(0,144,217,1);
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: .25em;
}

.photoblog-list__item .excerpt {
	font-size: .9em;
	line-height: 1.5;
}


/* ============================================================================================== */
/* signle                                                                                         */
/* ============================================================================================== */

.single {
	border-radius: 20px;
	background: #fff;
}

.single__inner {
	padding: 20px 20px 30px 20px;
}

.single__header {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: solid 1px rgba(0,0,0,.1);
}

.single__header .single__title {
	margin: 10px 0 15px;
	font-size: 1.2em;
	font-weight: 500;
	line-height: 1.5;
	color: rgba(0,0,0,1);
}

.single__header .single__post-info li {
	font-size: 1.1rem;
	line-height: 1.5;
	color: rgba(0,0,0,.3);
}

.single__header .single__post-info .en {
	font-family: 'Varela Round', sans-serif;
}

.single__header .single__post-info .jp {
	font-weight: 400;
}

.single__pager {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	        align-items: center;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
	background: rgba(0,0,0,.05);
	height: 50px;
	border-radius: 0 0 20px 20px;
}

.single__pager .single__pager__item {
	width: calc(50% - 10px);
	padding: 0 20px;
	box-sizing: border-box;
}

.single__pager .single__pager__item a {
	font-size: .9em;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
}

.single__pager .single__pager__item.pre {
	text-align: right;
}

.single__pager .single__pager__item.pre a:hover {
	-webkit-transform: translateX(5px);
	        transform: translateX(5px);
}

.single__pager .single__pager__item.next a:hover {
	-webkit-transform: translateX(-5px);
	        transform: translateX(-5px);
}

.single__pager .single__pager__item .svg-icon {
	width: 10px;
	height: 10px;
	fill: none;
	stroke-width: 6px;
	stroke: rgba(0,144,217,1);
	vertical-align: middle;
}

.single__pager .single__pager__item.next .svg-icon {
	-webkit-transform: scale(-1, 1);
	        transform: scale(-1, 1);
}


/* ============================================================================================== */
/* init                                                                                           */
/* ============================================================================================== */

.single__body p {
	margin: 1em 0;
}

.single__body p:first-of-type {
	margin-top: 0;
}

.single__body h1 {
	font-size: 1.5em;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 1em;
}

.single__body h2 {
	font-size: 1.4em;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 1em;
}

.single__body h3 {
	font-size: 1.3em;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 1em;
}

.single__body h4 {
	font-size: 1.2em;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 1em;
}

.single__body h5 {
	font-size: 1.1em;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 1em;
}

.single__body h6 {
	font-size: 1em;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 1em;
}

.single__body ul {
	margin: 1em 0 1em 1.5rem;
}

.single__body ul li {
	list-style-type: disc;
}

.single__body ol {
	margin: 1em 0 1em 2.0rem;
}

.single__body ol li {
	list-style-type: decimal;
}

.single__body img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 800px;
	vertical-align: bottom;
}

.single__body img:first-of-type {
	margin-top: 0;
}

.single__body a {
	color: rgba(0,144,217,1);
	text-decoration: underline;
}

.single__body a:hover {
	text-decoration: none;
}

.aligncenter {
	display: block !important;
	margin: 0 auto !important;
}

.alignright {
	float: right !important;
}

.alignleft {
	float: left !important;
}


/* ============================================================================================== */
/* Media query                                                                                    */
/* ============================================================================================== */

/* ---------------------------------------------------------------------------------------------- */
/* SmartPhone                                                                                     */

@media screen and (min-width: 375px) {

}

@media screen and (min-width: 414px) {

	.photoblog-list__item {
		width: calc(50% - 10px);
		margin-bottom: 20px;
	}

	.single__inner {
		padding: 30px 30px 40px 30px;
	}

}

@media screen and (orientation:landscape) {

}

/* over iphone 6 plus landscape */
@media screen and (orientation:landscape) and (min-width: 736px) {

}

/* ---------------------------------------------------------------------------------------------- */
/* Tablet                                                                                         */

@media screen and (min-width: 768px) {

	.news-list {
		border-radius: 30px;
	}

	.photoblog-list__item {
		width: calc((100% / 3) - 10px);
		margin-bottom: 15px;
	}

	.photoblog-list:after {
		content: '';
		display: block;
		width: calc((100% / 3) - 10px);
	}

	.single {
		border-radius: 30px;
	}

	.single__inner {
		padding: 40px 40px 50px 40px;
	}

	.single__header {
		padding-bottom: 40px;
		margin-bottom: 40px;
		border-bottom: solid 1px rgba(0,0,0,.1);
	}

	.single__header .single__title {
		margin: 20px 0 30px;
	}

	.single__pager {
		height: 80px;
		border-radius: 0 0 30px 30px;
	}

	.single__pager .single__pager__item {
		padding: 0 40px;
	}

	.single__pager .single__pager__item .svg-icon {
		width: 15px;
		height: 15px;
	}

}

/* over ipad landscape */
@media screen and (orientation:landscape) and (min-width: 1024px) {

	.floating-container .side-area {
		width: 220px;
		order: 1;
	}

	.floating-container .body-area {
		width: calc(100% - 250px);
		order: 2;
		margin-bottom: 0;
	}

	.news-list__item .svg-icon {
		width: 15px;
		height: 15px;
	}

	.news-list__item .detail {
		width: calc(100% - 65px);
	}

	.side-area .input-state-select {
		height: 35px;
		font-size: .8em;
	}

	.photoblog-list__item .date {
		position: absolute;
		top: -15px;
		left: -15px;
		width: 60px;
		height: 60px;
	}

	.photoblog-list__item .date span {
		margin-top: 16px;
	}

}

/* ---------------------------------------------------------------------------------------------- */
/* Desktop                                                                                        */

@media screen and (min-width: 1280px) {

	.photoblog-list__item {
		width: calc((100% / 3) - 20px);
		margin-bottom: 30px;
	}

	.photoblog-list:after {
		width: calc((100% / 3) - 20px);
	}

}

@media screen and (min-width: 1440px) {

}