@charset "UTF-8";

/**
 * Theme Name: BlankBlanc
 * Theme URI: http://www.sapphirus.biz/wordpress/themes/
 * Author: Naoki Yamamoto
 * Author URI: http://www.sapphirus.biz/
 * Version: 2.0.0
 * Description: ウェブサイト+ブログを構築するためのベーステーマとして、オリジナルのデザインを組み込みやすいように、background-color や border といった飾りを抑えたシンプルな2カラムタイプの HTML5 テーマです。設定した slug 名と同じスタイルシートを用意することで、カテゴリーやページ毎に異なったスタイルの調整を行うことができます。部分的にレスポンシブデザインとして、画面幅が 767px 以下ではスマートフォン向けの表示切り替えを行います。
 * Tags: simple, plain, white, two-columns
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 */

/*--------------------------------------------------------------------
	初期化
--------------------------------------------------------------------*/
* {
	font-family: "Segoe UI", "Lucida Grande", "Yu Gothic Medium", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

html {
	height: 102%;
}

body {
	position: relative;
	font-size: 14px;
	line-height: 1;
	height: 100%;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6, p,
dl, ul, ol,
table, blockquote {
	font-size: 1em;
	line-height: 1;
	margin: 0;
	padding: 0;
}

dt, dd, li {
	margin: 0;
	padding: 0;
}

ul, ol {
	list-style: none;
}

img {
	vertical-align: top;
	border: none;
}

a:link, a:visited {
	text-decoration: none;
}

a:hover, a:active {
	text-decoration: underline;
}

em {
	font-style: normal;
}

form {
	margin: 0;
	padding: 0;
}

input, textarea, select {
	margin: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

input:focus, textarea:focus, select:focus {
	border: 1px solid #6ac !important;
	box-shadow: 0 0 8px -2px #6af;
}

input, textarea, select {
	outline: none;
}

button {
	vertical-align: top;
	-webkit-appearance: none;
	-moz-appearance: none;
}

input[type="submit"], input[type="button"], input[type="reset"] {
	-webkit-appearance: none;
	-moz-appearance: none;
}

/*--------------------------------------------------------------------
	全体
--------------------------------------------------------------------*/
body {
	color: #353535;
	background-color: #f5f5f5;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}

a {
	color: #3b99d8;
}

a:hover {
	color: #e84824;
}

#main-screen {
	min-width: 980px;
	overflow: hidden;
}

.wrap {
	position: relative;
	width: 960px;
	padding: 0 10px;
	margin-left: auto;
	margin-right: auto;
}

.is-mobile {
	display: none;
}

input::-webkit-input-placeholder {
	color: #ddd;
}

input::-moz-placeholder {
	color: #ddd;
}

input:-ms-input-placeholder {
	color: #ddd;
}

input:focus::-webkit-input-placeholder {
	color: transparent;
}

input:focus::-moz-placeholder {
	color: transparent;
}

input:focus:-ms-input-placeholder {
	color: transparent;
}

/*--------------------------------------------------------------------
	レイアウト
--------------------------------------------------------------------*/

/**
 * global-header
 */
#global-header {
	background-color: #fff;
}

#global-header .wrap {
	height: 100px;
}

#global-header .logo {
	position: absolute;
	top: 18px;
	left: 10px;
}

#global-header .logo a {
	display: block;
}

#global-header .logo img {
	width: auto;
	height: 40px;
}

#global-header .copy {
	position: absolute;
	top: 68px;
	left: 10px;
	color: #a0a0a0;
	font-size: 0.93em;
	font-weight: normal;
}

#header-nav {
	position: absolute;
	top: 15px;
	right: 10px;
}

#header-nav .menu {
	font-size: 0;
}

#header-nav .menu > li {
	display: inline-block;
	font-size: 14px;
	line-height: 1.3;
	margin-right: 30px;
}

#header-nav .menu > li:last-of-type {
	margin-right: 0;
}

/**
 * global-nav
 */
#global-nav {
	background-color: #f5f5f5;
}

#global-nav ul.menu {
	padding-bottom: 40px;
}

#global-nav ul.menu > li {
	position: relative;
	float: left;
	border-right: 2px solid #f5f5f5;
	box-sizing: border-box;
}

#global-nav ul.menu > li > a {
	display: block;
	font-size: 14px;
	text-align: center;
	line-height: 40px;
	height: 40px;
	padding: 0 10px;
	background-color: #ebebeb;
	box-sizing: border-box;
}

#global-nav ul.menu > li a {
	color: #a0a0a0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#global-nav ul.menu > li a:hover {
	color: #787878;
	text-decoration: none;
	background-color: #e0e0e0;
}

#global-nav ul.menu > li > .sub-menu {
	display: none;
	position: absolute;
	top: auto;
	left: 0;
	min-width: 160px;
	padding: 0;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	z-index: 99;
	box-sizing: border-box;
}

#global-nav ul.menu > li > .sub-menu li {
	border-top: 1px solid #ebebeb;
}

#global-nav ul.menu > li > .sub-menu li a {
	display: block;
	text-align: left;
	font-size: 14px;
	line-height: 1.3;
	white-space: nowrap;
	width: auto;
	height: auto;
	padding: 8px;
}

#global-nav ul.menu > li > .sub-menu li a:hover {
	text-decoration: none;
	background-color: #f5f5f5;
}

#global-nav ul.menu > li > .sub-menu li > .sub-menu > li {
	border-top-style: dashed;
}

#global-nav ul.menu > li > .sub-menu li > .sub-menu > li > a {
	font-size: 13px;
	padding-left: 12px;
}

#global-nav ul.menu > li > .sub-menu li > .sub-menu > li > a::before {
	font-family: "Material Icons";
	content: "\E5CC";
	color: #d5d5d5;
	vertical-align: -1px;
	margin-right: 3px;
}

#global-nav ul.menu > li > .sub-menu > li:first-child {
	border-top: none;
}

/**
 * bread-crumb
 */
#bread-crumb {
	padding-top: 12px;
	background-color: #fff;
}

#bread-crumb .bread-crumb-list {
	padding-top: 5px;
}

#bread-crumb .bread-crumb-list div, #bread-crumb .bread-crumb-list span, #bread-crumb .bread-crumb-list a {
	display: inline-block;
}

#bread-crumb .bread-crumb-list div {
	font-size: 13px;
	line-height: 1.3;
}

#bread-crumb .bread-crumb-list div a {
	margin: 0 6px;
}

#bread-crumb .bread-crumb-list div i {
	font-size: 15px;
	line-height: 1;
	vertical-align: -3px;
}

#bread-crumb .bread-crumb-list div .page {
	margin-left: -10px;
}

#bread-crumb div:first-child > a {
	margin-left: 0;
}

/**
 * contents
 */
#contents {
	display: block;
	padding-top: 30px;
	padding-bottom: 45px;
	background-color: #fff;
	overflow: hidden;
}

#contents dl, #contents ul, #contents ol {
	overflow: hidden;
}

#one-column {
	width: 100%;
}

#first-column {
	float: left;
	width: 660px;
}

#second-column {
	float: right;
	width: 250px;
}

article {
	line-height: 1.5;
	word-wrap: break-word;
	word-break: break-all;
}

/**
 * gotop-button
 */
#gotop-button {
	display: block;
}

#gotop {
	display: block;
	position: fixed;
	bottom: 15px;
	right: 15px;
	margin-bottom: -65px;
	visibility: hidden;
	opacity: 0;
	z-index: 98;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}

#gotop.show {
	margin-bottom: 0;
	visibility: visible;
	opacity: 1;
}

#gotop * {
	font-family: "Arial Narrow", Helvetica, sans-serif;
}

#gotop p {
	line-height: 0;
}

#gotop p > span {
	display: block;
	color: #a0a0a0;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.1em;
	width: 50px;
	height: 50px;
	padding-top: 5px;
	padding-left: 0.1em;
	background-color: #e0e0e0;
	border-radius: 50%;
	box-sizing: border-box;
	cursor: pointer;
	opacity: 0.65;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#gotop p > span:hover {
	text-decoration: none;
	opacity: 0.9;
}

#gotop p > span::before {
	display: block;
	text-align: center;
	font-family: "Material Icons";
	content: "\E5CE";
	font-size: 22px;
	line-height: 1;
	padding-bottom: 0px;
	margin-bottom: -0.03em;
}

/**
 * global-footer
 */
#global-footer .wrap {
	min-height: 100px;
}

#global-footer .copyright {
	color: #a0a0a0;
	font-size: 13px;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.02em;
	padding: 20px 0 30px;
}

#global-footer .copyright * {
	font-family: Arial, Helvetica, sans-serif;
}

#global-footer .copyright .sign {
	margin-right: 0.3em;
}

#global-footer .copyright .year {
	margin-right: 0.3em;
}

/*--------------------------------------------------------------------
	共通
--------------------------------------------------------------------*/

/**
 * search
 */
.search-form {
	position: relative;
}

.search-form .screen-reader-text {
	display: none;
}

.search-form > label {
	position: relative;
	display: block !important;
}

.search-form > label::after {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 6px;
	color: #d5d5d5;
	font-family: "Material Icons";
	content: "\E8B6";
	font-size: 24px;
	line-height: 1;
	margin-top: -0.46em;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.search-form > label.hover::after {
	color: #a0a0a0;
}

.search-form .search-field {
	font-size: 14px;
	vertical-align: middle;
	width: 100%;
	padding: 8px 35px 8px 8px;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 2px;
	box-sizing: border-box;
}

.search-form .search-submit {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	color: transparent;
	width: 35px;
	padding: 0;
	background-color: transparent;
	border-width: 0;
	cursor: pointer;
}

.search-form .search-submit:focus {
	border-width: 0 !important;
	box-shadow: none;
}

/**
 * error404
 */
#contents.error404 .wrap {
	padding: 100px 0 140px;
}

#contents.error404 .title {
	color: #e0e0e0;
	font-size: 40px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-align: center;
}

#contents.error404 p {
	margin-top: 10px;
	text-align: center;
}

/*--------------------------------------------------------------------
	ウィジェット
--------------------------------------------------------------------*/

/**
 * common
 */
.widget {
	margin-bottom: 30px;
}

.widget ul {
	margin-top: 8px;
}

.widget ul:first-of-type {
	margin-top: 0;
}

.widget ul > li {
	line-height: 1.3;
	list-style: none;
	margin-top: 8px;
}

.widget ul > li:first-of-type {
	margin-top: 0;
}

.widget ul > li .count {
	display: inline-block;
	color: #a0a0a0;
	font-size: 0.9em;
	line-height: 1;
	margin-left: 7px;
	padding: 2px 10px;
	background-color: #f5f5f5;
	border-radius: 15px;
}

.widget ul.children, .widget ul.sub-menu {
	margin-bottom: 16px;
}

.widget ul.children > li, .widget ul.sub-menu > li {
	margin-top: 8px;
	padding-left: 1.5em;
}

.widget .select-area {
	display: inline-block;
	position: relative;
	background-color: #fff;
	border-radius: 2px;
}

.widget .select-area::before {
	position: absolute;
	top: 50%;
	right: 3px;
	font-size: 22px;
	line-height: 1;
	font-family: "Material Icons";
	content: "\E5CF";
	margin-top: -0.45em;
	z-index: 1;
}

.widget label {
	display: none;
}

.widget select {
	position: relative;
	font-size: 14px;
	line-height: 1.56;
	width: 100%;
	padding: 5px 25px 5px 5px;
	margin: 0;
	background-color: transparent;
	border: 1px solid #d5d5d5;
	border-radius: 2px;
	box-sizing: border-box;
	z-index: 2;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.widget select::-ms-expand {
	display: none;
}

/**
 * recent comments
 */
.widget_recent_comments .recentcomments a {
	text-decoration: none;
}

.widget_recent_comments .recentcomments .entry-title:hover {
	text-decoration: underline;
}

.widget_recent_comments .recentcomments .comment-user {
	color: #a0a0a0;
	font-size: 0.83em;
}

/**
 * archive
 */
.widget_archive > ul:last-of-type {
	margin-bottom: -5px;
}

.widget_archive > ul > li.year-title {
	margin-left: 0;
}

.widget_archive > ul > li .month-list {
	margin-top: 4px;
	overflow: hidden;
}

.widget_archive > ul > li .month-list > li {
	float: left !important;
	margin: 0 15px 5px 0 !important;
}

.widget_archive > ul > li .month-list > li:last-of-type {
	margin-right: 0;
}

.widget_archive > ul > li .month-list > li .year {
	display: none;
}

/**
 * tag
 */
.widget_tag_cloud .tagcloud {
	line-height: 1.2;
	margin: -3px;
}

.widget_tag_cloud .tagcloud .wp-tag-cloud {
	font-size: 0;
}

.widget_tag_cloud .tagcloud .wp-tag-cloud > li {
	display: inline-block;
	font-size: 15px;
	margin: 0;
}

.widget_tag_cloud .tagcloud a {
	display: inline-block;
	font-size: 1em;
	line-height: 1;
	text-decoration: none;
	vertical-align: -50%;
	margin: 3px;
	padding: 6px 9px;
	background-color: #f5f5f5;
	border-radius: 2px;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.widget_tag_cloud .tagcloud a:hover {
	background-color: #ebebeb;
}

/**
 * calendar
 */
.widget_calendar table {
	width: 100%;
	border-collapse: collapse;
}

.widget_calendar table caption {
	font-size: 14px;
	line-height: 1;
	margin-bottom: 7px;
}

.widget_calendar table tr {
	font-size: 14px;
	line-height: 1;
}

.widget_calendar table tr th {
	padding: 8px 0 7px;
}

.widget_calendar table tr td {
	padding: 8px 0 7px;
}

.widget_calendar table thead {
	background-color: #f5f5f5;
}

.widget_calendar table thead tr {
	color: #a0a0a0;
}

.widget_calendar table thead tr th {
	font-weight: normal;
	text-align: center;
	border: 1px solid #e0e0e0;
}

.widget_calendar table thead tr th:last-of-type {
	color: #df0002;
}

.widget_calendar table tbody {
	background-color: #fff;
}

.widget_calendar table tbody tr {
	color: #e0e0e0;
}

.widget_calendar table tbody tr td {
	text-align: center;
	border: 1px solid #e0e0e0;
}

.widget_calendar table tbody tr td a {
	display: block;
	margin: -8px 0 -7px;
	padding: 8px 0 7px;
	background-color: #f5f5f5;
}

.widget_calendar table tbody tr td a:hover {
	background-color: #ebebeb;
}

.widget_calendar table tbody tr td:last-of-type {
	color: #df0002;
}

.widget_calendar table tbody tr #today {
	color: #353535;
}

.widget_calendar table tfoot a {
	font-size: 13px;
}

.widget_calendar table tfoot #prev {
	text-align: left;
}

.widget_calendar table tfoot #next {
	text-align: right;
}

/**
 * global-widget
 */
#global-widget .widgettitle {
	font-size: 18px;
	line-height: 1.3;
	font-weight: normal;
	margin-bottom: 10px;
}

#global-widget > ul {
	overflow: visible;
}

#global-widget .widget_nav_menu .menu {
	margin-bottom: 30px;
	background-color: #fff;
	overflow: hidden;
}

#global-widget .widget_nav_menu .menu li {
	margin: 0;
	list-style: none;
}

#global-widget .widget_nav_menu .menu li a {
	display: block;
	line-height: 1.3;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#global-widget .widget_nav_menu .menu li a:hover {
	background-color: #f5f5f5;
}

#global-widget .widget_nav_menu .menu > li {
	border-top: 1px solid #e0e0e0;
}

#global-widget .widget_nav_menu .menu > li > a {
	padding: 12px 8px;
}

#global-widget .widget_nav_menu .menu > li:first-child {
	border-top: none;
}

#global-widget .widget_nav_menu .menu > li .sub-menu {
	margin-bottom: 0;
}

#global-widget .widget_nav_menu .menu > li .sub-menu li {
	padding-left: 0;
	border-top: 1px dotted #ebebeb;
}

#global-widget .widget_nav_menu .menu > li .sub-menu li > a {
	font-size: 0.9em;
	padding: 10px 8px 10px 20px;
}

#global-widget .widget_nav_menu .menu > li .sub-menu .sub-menu a {
	padding-left: 30px;
}

/**
 * footer-widgets
 */
.footer-widgets {
	padding-top: 30px;
	margin: 0 -15px;
	overflow: hidden;
}

.footer-widgets .widgettitle {
	color: #787878;
	font-size: 13px;
	font-weight: normal;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #d5d5d5;
}

.footer-widgets > ul {
	float: left;
	width: 25%;
	padding: 0 15px;
	box-sizing: border-box;
}

.footer-widgets > ul .widget {
	font-size: 13px;
}

.footer-widgets > ul .widget li {
	line-height: 1.4;
}

.footer-widgets > ul .widget .count {
	background-color: #ebebeb;
}

.footer-widgets .tagcloud a {
	background-color: #ebebeb;
}

.footer-widgets .tagcloud a:hover {
	background-color: #e0e0e0;
}

/*--------------------------------------------------------------------
	ブログページ
--------------------------------------------------------------------*/

/**
 * common
 */
#contents #main-visual {
	margin: -12px auto 40px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}

#contents #main-visual .wrap {
	position: relative;
	padding-bottom: 15%;
}

#contents #main-visual .page-title {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	color: #fff;
	font-size: 2em;
	line-height: 1.3;
	font-weight: normal;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

#contents #main-visual .page-title a {
	color: #fff;
}

#contents article .meta .font-icon::before {
	color: #d5d5d5;
	font-size: 15px;
	vertical-align: -3px;
	margin-right: 4px;
}

#contents article .meta .date::before {
	font-family: "Material Icons";
	content: "\E8AE";
}

#contents article .meta .categories::before {
	font-family: "Material Icons";
	content: "\E2C7";
}

#contents article .meta .tags::before {
	font-family: "Material Icons";
	content: "\E54E";
}

#contents article .meta .author::before {
	font-family: "Material Icons";
	content: "\E853";
}

@media screen and (min-width: 1200px) {
	#contents #main-visual .wrap {
		padding-bottom: 180px;
	}
}
/**
 * archive
 */
#contents.archive .archive-list {
	font-size: 1em;
	overflow: hidden;
}

#contents.archive .term-description {
	padding: 20px;
	margin-bottom: 20px;
	border: 1px solid #ebebeb;
}

#contents.archive .term-description p {
	font-size: 1em;
	line-height: 1.75;
}

#contents.archive .archive-header {
	margin-bottom: 25px;
}

#contents.archive .archive-header .page-title {
	font-size: 2em;
	line-height: 1.3;
	font-weight: normal;
}

#contents.archive .entry-article {
	padding: 20px 0;
	border-bottom: 1px solid #ebebeb;
	overflow: hidden;
}

#contents.archive .entry-article:first-of-type {
	padding-top: 0;
}

#contents.archive .thumbnail {
	float: left;
	width: 120px;
	height: 120px;
	margin-right: 20px;
	background-color: #fff;
	overflow: hidden;
}

#contents.archive .thumbnail a {
	display: block;
	opacity: 1;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.archive .thumbnail a:hover {
	opacity: 0.8;
}

#contents.archive .thumbnail img {
	width: auto;
	max-width: 120px;
	height: auto;
	max-height: 120px;
}

#contents.archive .thumbnail.no-thumbnail {
	position: relative;
}

#contents.archive .thumbnail.no-thumbnail a {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #f5f5f5;
}

#contents.archive .thumbnail.no-thumbnail a span {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	color: #e0e0e0;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	margin-top: -0.5em;
}

#contents.archive .entry-block {
	overflow: hidden;
}

#contents.archive .entry-header {
	margin-bottom: 5px;
}

#contents.archive .entry-header .title {
	font-size: 1.6em;
	line-height: 1.3;
	font-weight: normal;
	margin-bottom: 5px;
}

#contents.archive .entry-header .meta {
	line-height: 0;
}

#contents.archive .entry-header .meta li {
	display: inline-block;
	color: #787878;
	font-size: 0.9em;
	line-height: 1.4;
	margin: 0 20px 2px 0;
}

#contents.archive .entry-header .meta li.date .year, #contents.archive .entry-header .meta li.date .month, #contents.archive .entry-header .meta li.date .day {
	margin-right: 3px;
}

#contents.archive .entry-body {
	text-justify: inter-ideograph;
	text-align: justify;
}

#contents.archive .entry-body p {
	font-size: 1em;
	line-height: 1.75;
}

#contents.archive #no-result {
	clear: both;
	text-align: center;
	padding: 60px 0 80px;
}

#contents.archive .pagination {
	font-size: 0;
	text-align: center;
	padding: 0;
	margin: 30px 0;
	overflow: hidden;
}

#contents.archive .pagination .page-numbers {
	display: inline-block;
	font-size: 14px;
	line-height: 34px;
	vertical-align: top;
	width: 36px;
	height: 36px;
	margin: 0 2px;
	border: 1px solid #ebebeb;
	background-color: #fff;
	box-sizing: border-box;
}

#contents.archive .pagination a {
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.archive .pagination a:hover {
	background-color: #f5f5f5;
}

#contents.archive .pagination .current {
	color: #787878;
	background-color: #ebebeb;
	border: 1px solid #e0e0e0;
}

#contents.archive .pagination .first, #contents.archive .pagination .last, #contents.archive .pagination .prev, #contents.archive .pagination .next {
	width: auto;
	padding: 0 8px;
}

#contents.archive .pagination .first::before, #contents.archive .pagination .first::after, #contents.archive .pagination .last::before, #contents.archive .pagination .last::after, #contents.archive .pagination .prev::before, #contents.archive .pagination .prev::after, #contents.archive .pagination .next::before, #contents.archive .pagination .next::after {
	line-height: 1;
	vertical-align: -0.07em;
}

#contents.archive .pagination .first::before {
	font-family: "Material Icons";
	content: "\E5DC\0020";
}

#contents.archive .pagination .last::after {
	font-family: "Material Icons";
	content: "\0020\E5DD";
}

#contents.archive .pagination .prev::before {
	font-family: "Material Icons";
	content: "\E5CB\0020";
}

#contents.archive .pagination .next::after {
	font-family: "Material Icons";
	content: "\0020\E5CC";
}

#contents.archive .pagination .dots {
	color: #a0a0a0;
	border: none;
}

/**
 * article
 */
#contents.article {
	font-size: 1em;
	overflow: hidden;
}

#contents.article .entry-header {
	margin-bottom: 35px;
	overflow: hidden;
}

#contents.article .entry-header .page-title {
	font-size: 2em;
	line-height: 1.3;
	font-weight: normal;
	margin-bottom: 10px;
	overflow: hidden;
}

#contents.article .entry-header .page-title a {
	color: #353535;
}

#contents.article .entry-header .meta {
	line-height: 0;
	overflow: hidden;
}

#contents.article .entry-header .meta > li {
	display: inline-block;
	color: #787878;
	font-size: 0.9em;
	line-height: 1.4;
	white-space: nowrap;
	vertical-align: top;
	margin: 0 20px 2px 0;
}

#contents.article .entry-header .meta > li a {
	display: inline-block;
}

#contents.article .entry-header .date .year, #contents.article .entry-header .date .month, #contents.article .entry-header .date .day {
	margin-right: 3px;
}

#contents.article .post-thumbnail {
	margin-bottom: 30px;
}

#contents.article .post-thumbnail .image {
	margin: 0;
	background-color: #fff;
}

#contents.article .post-thumbnail .image a {
	display: block;
	opacity: 1;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.article .post-thumbnail .image a:hover {
	opacity: 0.8;
}

#contents.article .post-thumbnail .image img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}

#contents.article .post-thumbnail .caption {
	display: inline-block;
	font-size: 0.75em;
	line-height: 1.5;
	min-width: 100%;
	margin: 0;
	padding: 7px;
	background-color: #f5f5f5;
	box-sizing: border-box;
}

#contents.article .entry-body {
	font-size: 15px;
	text-justify: inter-ideograph;
	text-align: justify;
	margin-bottom: 50px;
	overflow: hidden;
}

#contents.article .entry-body abbr, #contents.article .entry-body acronym {
	text-decoration: none;
	border-bottom: 1px dotted #a0a0a0;
	cursor: help;
}

#contents.article .entry-body ins {
	text-decoration: none;
	border-bottom: 1px dotted #a0a0a0;
}

#contents.article .entry-body small {
	font-size: 0.83em;
}

#contents.article .entry-body img.alignnone {
	display: block;
	margin: 20px 0;
}

#contents.article .entry-body img.aligncenter {
	display: block;
	margin: 20px auto;
}

#contents.article .entry-body img.alignleft {
	margin: 0 25px 20px 0;
}

#contents.article .entry-body img.alignright {
	margin: 0 0 20px 25px;
}

#contents.article .entry-body a.more-link {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	padding: 6px 10px 5px;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 2px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.article .entry-body a.more-link::after {
	font-size: 17px;
	font-family: "Material Icons";
	content: "\0020\E5CF";
	vertical-align: -0.24em;
}

#contents.article .entry-body a.more-link:hover {
	background-color: #f5f5f5;
}

#contents.article .entry-body a.more-link.active {
	display: none;
}

#contents.article .entry-body a img {
	display: inline-block;
	opacity: 1;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.article .entry-body a img:hover {
	opacity: 0.8;
}

#contents.article .entry-body .more-content {
	height: 0;
	visibility: hidden;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.article .entry-body .more-content.active {
	height: auto;
	visibility: visible;
	overflow: visible;
	opacity: 1;
}

#contents.article .entry-body .alignleft {
	float: left;
}

#contents.article .entry-body .alignright {
	float: right;
}

#contents.article .entry-body .aligncenter {
	margin-left: auto;
	margin-right: auto;
}

#contents.article .entry-body h1, #contents.article .entry-body h2, #contents.article .entry-body h3 {
	margin-top: 50px;
	overflow: hidden;
}

#contents.article .entry-body h1:first-child, #contents.article .entry-body h2:first-child, #contents.article .entry-body h3:first-child {
	margin-top: 0;
}

#contents.article .entry-body h4, #contents.article .entry-body h5, #contents.article .entry-body h6 {
	margin-top: 25px;
	overflow: hidden;
}

#contents.article .entry-body h4:first-child, #contents.article .entry-body h5:first-child, #contents.article .entry-body h6:first-child {
	margin-top: 0;
}

#contents.article .entry-body p {
	font-size: 1em;
	line-height: 1.75;
	margin-bottom: 20px;
}

#contents.article .entry-body p:first-child {
	margin-top: 0;
}

#contents.article .entry-body h1 {
	font-size: 1.8em;
	line-height: 1.2;
	margin-bottom: 20px;
}

#contents.article .entry-body h2 {
	font-size: 1.65em;
	line-height: 1.3;
	margin-bottom: 20px;
}

#contents.article .entry-body h3 {
	font-size: 1.3em;
	line-height: 1.3;
	margin-bottom: 20px;
}

#contents.article .entry-body h4 {
	font-size: 1.1em;
	line-height: 1.4;
	margin-bottom: 15px;
}

#contents.article .entry-body h4 + p {
	margin-top: 0;
}

#contents.article .entry-body h5 {
	font-size: 1em;
	line-height: 1.5;
	margin-bottom: 5px;
}

#contents.article .entry-body h5 + p {
	margin-top: 0;
}

#contents.article .entry-body h6 {
	font-size: 0.83em;
	line-height: 1.5;
	margin-bottom: 5px;
}

#contents.article .entry-body h6 + p {
	margin-top: 0;
}

#contents.article .entry-body div {
	line-height: 1.75;
}

#contents.article .entry-body hr {
	height: 0;
	margin: 20px 0;
	border: none;
	border-bottom: 1px solid #ebebeb;
}

#contents.article .entry-body pre {
	position: relative;
	font-size: 0.95em;
	line-height: 1.75;
	margin: 25px 0;
	padding: 30px;
	background-color: #f5f5f5;
}

#contents.article .entry-body blockquote {
	position: relative;
	font-size: 0.95em;
	line-height: 1.75;
	margin: 25px 0;
	padding: 30px;
	background-color: #f5f5f5;
}

#contents.article .entry-body blockquote p {
	margin: 0;
}

#contents.article .entry-body blockquote::before {
	display: inline-block;
	position: absolute;
	top: 3px;
	left: 5px;
	font-family: "Material Icons";
	content: "\E244";
	font-size: 32px;
	line-height: 1;
	color: #d5d5d5;
}

#contents.article .entry-body blockquote::after {
	display: inline-block;
	position: absolute;
	bottom: 3px;
	right: 5px;
	font-family: "Material Icons";
	content: "\E244";
	font-size: 32px;
	line-height: 1;
	color: #d5d5d5;
}

#contents.article .entry-body ul {
	font-size: 1em;
	line-height: 1.75;
	margin: 0 0 20px 0;
	padding-left: 2em;
	list-style: disc;
}

#contents.article .entry-body ul > li {
	margin: 8px 0;
}

#contents.article .entry-body ul > li:first-child {
	margin-top: 0;
}

#contents.article .entry-body ul > li:last-child {
	margin-bottom: 0;
}

#contents.article .entry-body ol {
	font-size: 1em;
	line-height: 1.75;
	margin: 0 0 20px 0;
	padding-left: 2em;
	list-style: decimal;
}

#contents.article .entry-body ol > li {
	margin: 8px 0;
}

#contents.article .entry-body ol > li:first-child {
	margin-top: 0;
}

#contents.article .entry-body ol > li:last-child {
	margin-bottom: 0;
}

#contents.article .entry-body dl {
	font-size: 1em;
	line-height: 1.75;
	margin-bottom: 20px;
}

#contents.article .entry-body dl > dt {
	font-weight: bold;
	margin-top: 15px;
}

#contents.article .entry-body dl > dt:first-child {
	margin-top: 0;
}

#contents.article .entry-body dl > dd {
	margin: 15px 0 0 20px;
}

#contents.article .entry-body dl dt + dd {
	margin-top: 0;
}

#contents.article .entry-body table {
	line-height: 1.5;
	margin: 0;
	border-collapse: collapse;
	box-sizing: border-box;
}

#contents.article .entry-body table caption {
	font-size: 0.9em;
	margin-bottom: 5px;
}

#contents.article .entry-body table thead th {
	font-size: 1em;
	padding: 7px;
	background-color: #e0e0e0;
	border: 1px solid #d5d5d5;
}

#contents.article .entry-body table thead td {
	font-size: 1em;
	padding: 7px;
	background-color: #f5f5f5;
	border: 1px solid #d5d5d5;
}

#contents.article .entry-body table tbody th {
	font-size: 1em;
	padding: 7px;
	background-color: #f5f5f5;
	border: 1px solid #d5d5d5;
}

#contents.article .entry-body table tbody td {
	font-size: 1em;
	padding: 7px;
	border: 1px solid #d5d5d5;
}

#contents.article .entry-body table tfoot th {
	font-size: 1em;
	padding: 7px;
	background-color: #e0e0e0;
	border: 1px solid #d5d5d5;
}

#contents.article .entry-body table tfoot td {
	font-size: 1em;
	padding: 7px;
	background-color: #f5f5f5;
	border: 1px solid #d5d5d5;
}

#contents.article .entry-body fieldset {
	border: 1px solid #e0e0e0;
	padding: 16px;
	margin: 0;
	box-sizing: border-box;
}

#contents.article .entry-body fieldset legend {
	padding: 0 5px;
}

#contents.article .entry-body label {
	display: inline-block;
	line-height: 1.3;
	margin-bottom: 3px;
}

#contents.article .entry-body input {
	line-height: 1.5;
}

#contents.article .entry-body input[type="text"] {
	font-size: 15px;
	width: 250px;
	max-width: 250px;
	padding: 6px;
	border: 1px solid #d5d5d5;
	border-radius: 2px;
	box-sizing: border-box;
}

#contents.article .entry-body input[type="password"] {
	font-size: 15px;
	width: 250px;
	max-width: 250px;
	padding: 6px;
	border: 1px solid #d5d5d5;
	border-radius: 2px;
	box-sizing: border-box;
}

#contents.article .entry-body input[type="email"] {
	font-size: 15px;
	width: 250px;
	max-width: 250px;
	padding: 6px;
	border: 1px solid #d5d5d5;
	border-radius: 2px;
	box-sizing: border-box;
}

#contents.article .entry-body input[type="url"] {
	font-size: 15px;
	width: 250px;
	max-width: 250px;
	padding: 6px;
	border: 1px solid #d5d5d5;
	border-radius: 2px;
	box-sizing: border-box;
}

#contents.article .entry-body input[type="number"] {
	font-size: 15px;
	width: 60px;
	min-width: 60px;
	padding: 6px;
	border: 1px solid #d5d5d5;
	border-radius: 2px;
	box-sizing: border-box;
}

#contents.article .entry-body input[type="checkbox"] {
	display: none;
}

#contents.article .entry-body input[type="checkbox"] + label, #contents.article .entry-body input[type="checkbox"] + span {
	display: inline-block;
	font-size: 15px;
	padding: 5px;
	margin: 0 5px 5px 0;
	border-radius: 2px;
	cursor: default;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.article .entry-body input[type="checkbox"] + label::before, #contents.article .entry-body input[type="checkbox"] + span::before {
	position: relative;
	display: inline-block;
	color: transparent;
	font-size: 18px;
	text-align: center;
	font-family: "Material Icons";
	content: "\E5CA";
	line-height: 1;
	vertical-align: -3px;
	width: 20px;
	height: 20px;
	margin-right: 6px;
	background-color: #fff;
	border: 1px solid #d5d5d5;
	border-radius: 2px;
	box-sizing: border-box;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.article .entry-body input[type="checkbox"]:checked + label, #contents.article .entry-body input[type="checkbox"]:checked + span {
	background-color: #f5f5f5;
}

#contents.article .entry-body input[type="checkbox"]:checked + label::before, #contents.article .entry-body input[type="checkbox"]:checked + span::before {
	color: #fff;
	background-color: #787878;
	border-color: #787878;
}

#contents.article .entry-body input[type="radio"] {
	display: none;
}

#contents.article .entry-body input[type="radio"] + label, #contents.article .entry-body input[type="radio"] + span {
	display: inline-block;
	font-size: 15px;
	padding: 5px;
	margin: 0 5px 5px 0;
	border-radius: 2px;
	cursor: default;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.article .entry-body input[type="radio"] + label::before, #contents.article .entry-body input[type="radio"] + span::before {
	position: relative;
	display: inline-block;
	vertical-align: -4px;
	content: "";
	width: 20px;
	height: 20px;
	margin-right: 6px;
	background-color: #fff;
	border: 1px solid #d5d5d5;
	border-radius: 50%;
	box-sizing: border-box;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.article .entry-body input[type="radio"]:checked + label, #contents.article .entry-body input[type="radio"]:checked + span {
	background-color: #f5f5f5;
}

#contents.article .entry-body input[type="radio"]:checked + label::before, #contents.article .entry-body input[type="radio"]:checked + span::before {
	background-color: #fff;
	border: 6px solid #787878;
}

#contents.article .entry-body input[type="range"] {
	width: 250px;
	max-width: 250px;
}

#contents.article .entry-body input[type="range"]:focus {
	border-width: 0 !important;
	box-shadow: none;
}

#contents.article .entry-body input[type="submit"] {
	color: #fff;
	font-size: 15px;
	height: 40px;
	min-width: 160px;
	background-color: #3b99d8;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.article .entry-body input[type="submit"]:hover {
	background-color: #248ac6;
}

#contents.article .entry-body input[type="reset"] {
	color: #fff;
	font-size: 15px;
	height: 40px;
	min-width: 80px;
	background-color: #d5d5d5;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.article .entry-body input[type="reset"]:hover {
	background-color: #c7c7c7;
}

#contents.article .entry-body input[type="button"], #contents.article .entry-body button {
	color: #fff;
	font-size: 15px;
	height: 40px;
	min-width: 160px;
	background-color: #3b99d8;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.article .entry-body input[type="button"]:hover, #contents.article .entry-body button:hover {
	background-color: #248ac6;
}

#contents.article .entry-body .select-area {
	display: inline-block;
	position: relative;
	background-color: #fff;
	border-radius: 2px;
}

#contents.article .entry-body .select-area::before {
	position: absolute;
	top: 50%;
	right: 3px;
	font-size: 22px;
	line-height: 1;
	font-family: "Material Icons";
	content: "\E5CF";
	margin-top: -10px;
	z-index: 1;
}

#contents.article .entry-body select {
	position: relative;
	font-size: 15px;
	line-height: 1.56;
	max-width: 100%;
	padding: 5px 25px 5px 5px;
	margin: 0;
	background-color: transparent;
	border: 1px solid #d5d5d5;
	border-radius: 2px;
	box-sizing: border-box;
	z-index: 2;
	-webkit-appearance: none;
	-moz-appearance: none;
}

#contents.article .entry-body select::-ms-expand {
	display: none;
}

#contents.article .entry-body textarea {
	font-size: 15px;
	line-height: 1.5;
	vertical-align: top;
	width: 100%;
	min-height: 200px;
	padding: 5px;
	border: 1px solid #d5d5d5;
	border-radius: 2px;
	box-sizing: border-box;
}

#contents.article .entry-body .table-content {
	position: relative;
	margin: 20px 0;
}

#contents.article .entry-body .table-content .table-area {
	overflow-x: auto;
}

#contents.article .entry-body .table-content .table-area table {
	position: relative;
}

#contents.article .entry-body .table-content .table-arrow {
	display: none;
	position: absolute;
	top: 50%;
	width: 28px;
	height: 28px;
	margin-top: -14px;
	background-color: #353535;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0.15;
	z-index: 9;
}

#contents.article .entry-body .table-content .table-arrow::after {
	display: block;
	color: #fff;
	font-size: 26px;
	text-align: center;
	line-height: 28px;
}

#contents.article .entry-body .table-content .table-left-arrow {
	left: 5px;
}

#contents.article .entry-body .table-content .table-left-arrow::after {
	font-family: "Material Icons";
	content: "\E5CB";
	margin: 0.03em 2px 0 0;
}

#contents.article .entry-body .table-content .table-right-arrow {
	right: 5px;
}

#contents.article .entry-body .table-content .table-right-arrow::after {
	font-family: "Material Icons";
	content: "\E5CC";
	margin: 0.028em 0 0 2px;
}

#contents.article .entry-body .wp-caption {
	margin: 0;
}

#contents.article .entry-body .wp-caption img {
	display: inline-block;
	margin: 0;
}

#contents.article .entry-body .wp-caption.alignnone {
	margin: 20px 0;
}

#contents.article .entry-body .wp-caption.aligncenter {
	margin: 20px auto;
}

#contents.article .entry-body .wp-caption.alignleft {
	margin: 0 25px 20px 0;
}

#contents.article .entry-body .wp-caption.alignright {
	margin: 0 0 20px 25px;
}

#contents.article .entry-body .wp-caption-text {
	font-size: 0.75em;
	line-height: 1.5;
	text-align: left;
	margin: 0;
	padding: 7px;
	background-color: #f5f5f5;
	min-width: 100%;
	box-sizing: border-box;
}

#contents.article .entry-body .line-height-narrow-lv1 {
	line-height: 1.5 !important;
}

#contents.article .entry-body .line-height-narrow-lv2 {
	line-height: 1.3 !important;
}

#contents.article .entry-body .clear-margin {
	margin: 0 !important;
}

#contents.article .entry-body .margin-top-lv1 {
	margin-top: 20px !important;
}

#contents.article .entry-body .margin-top-lv2 {
	margin-top: 35px !important;
}

#contents.article .entry-body .margin-top-lv3 {
	margin-top: 50px !important;
}

#contents.article .entry-body .margin-bottom-lv1 {
	margin-bottom: 20px !important;
}

#contents.article .entry-body .margin-bottom-lv2 {
	margin-bottom: 35px !important;
}

#contents.article .entry-body .margin-bottom-lv3 {
	margin-bottom: 50px !important;
}

#contents.article .entry-body .overflow-hidden {
	overflow: hidden !important;
}

#contents.article .entry-body .clear {
	clear: both !important;
}

#contents.article .entry-body .block-center {
	text-align: center !important;
}

#contents.article .entry-body .margin-left {
	margin-left: 25px !important;
}

#contents.article .entry-body .margin-right {
	margin-right: 25px !important;
}

#contents.article .link-pages {
	font-size: 0;
	text-align: center;
	padding: 0;
	margin-bottom: 30px;
	overflow: hidden;
}

#contents.article .link-pages .heading {
	display: inline-block;
	font-size: 12px;
	vertical-align: 1px;
	margin-right: 3px;
}

#contents.article .link-pages .heading {
	margin-right: 10px;
}

#contents.article .link-pages .page {
	display: inline-block;
	font-size: 14px;
	line-height: 36px;
	width: 36px;
	height: 36px;
	margin: 0 2px;
	background-color: #ebebeb;
	border: 1px solid #e0e0e0;
	box-sizing: border-box;
}

#contents.article .link-pages > .page {
	color: #787878;
}

#contents.article .link-pages > a {
	display: inline-block;
	margin: 0 2px;
}

#contents.article .link-pages > a > span.page {
	margin: 0;
	border: 1px solid #ebebeb;
	background-color: #fff;
	box-sizing: border-box;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.article .link-pages > a:hover .page {
	background-color: #f5f5f5;
	text-decoration: underline;
}

#contents.article .page-navigation {
	margin-top: 40px;
	border-top: 1px solid #e0e0e0;
}

#contents.article .page-navigation ul {
	padding-top: 15px;
	overflow: hidden;
}

#contents.article .page-navigation ul li {
	width: 50%;
	line-height: 1.3;
	box-sizing: border-box;
}

#contents.article .page-navigation ul li.prev {
	float: left;
	text-align: left;
	padding-right: 15px;
}

#contents.article .page-navigation ul li.prev span {
	left: -4px;
}

#contents.article .page-navigation ul li.prev span::before {
	font-size: 17px;
	font-family: "Material Icons";
	content: "\E5CB";
	vertical-align: -4px;
}

#contents.article .page-navigation ul li.next {
	float: right;
	text-align: right;
	padding-left: 15px;
}

#contents.article .page-navigation ul li.next span {
	right: -4px;
	text-align: right;
}

#contents.article .page-navigation ul li.next span::after {
	font-size: 17px;
	font-family: "Material Icons";
	content: "\E5CC";
	vertical-align: -4px;
}

#contents.article .page-navigation ul li .box {
	display: inline-block;
	text-align: left;
}

#contents.article .page-navigation ul li span {
	position: relative;
	display: block;
	font-size: 0.9em;
	margin-bottom: 3px;
}

#contents.article .page-navigation ul li a {
	display: inline-block;
}

#contents.article .password-block {
	clear: both;
}

#contents.article .post-password-form {
	margin-top: 30px;
	padding: 25px 50px;
	background-color: #f5f5f5;
	text-align: center;
}

#contents.article .post-password-form p {
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
}

#contents.article .post-password-form p:first-of-type {
	display: inline-block;
	text-align: left;
}

#contents.article .post-password-form p:last-of-type {
	text-align: center;
	margin: 15px 0 5px;
}

#contents.article .post-password-form label {
	font-size: 14px;
	line-height: 1;
	display: inline-block;
}

#contents.article .post-password-form input {
	vertical-align: middle;
}

#contents.article .post-password-form input[type="password"] {
	width: 210px;
	height: 30px;
	margin: 0 3px;
}

#contents.article .post-password-form input[type="submit"] {
	min-width: 80px;
	height: 30px;
}

/**
 * attachment
 */
#contents.attachment .entry-attachment {
	margin: 0 auto 35px;
	max-width: 100%;
}

#contents.attachment .entry-attachment .image {
	max-width: 100%;
}

#contents.attachment .entry-attachment .image a {
	display: block;
}

#contents.attachment .entry-attachment .image img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 900px;
}

#contents.attachment .entry-attachment .caption {
	font-size: 0.95em;
	line-height: 1.5;
	text-align: left;
	margin: 0;
	padding: 8px 12px;
	background-color: #f5f5f5;
	min-width: 100%;
	box-sizing: border-box;
}

#contents.attachment .page-navigation {
	text-align: center;
	margin: -20px 0 20px;
	border-top: none;
}

#contents.attachment .page-navigation a {
	display: inline-block;
	color: #fff;
	font-size: 15px;
	line-height: 40px;
	height: 40px;
	background-color: #d5d5d5;
	border: none;
	border-radius: 4px;
	padding: 0 20px;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#contents.attachment .page-navigation a:hover {
	text-decoration: none;
	background-color: #c7c7c7;
}

/**
 * comments
 */
#contents #comments {
	text-justify: auto !important;
	text-align: left !important;
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #e0e0e0;
}

#contents #comments #comments-title {
	font-size: 1.6em;
	font-weight: normal;
	margin-bottom: 15px;
}

#contents #comments #reply-title {
	font-size: 1.6em;
	font-weight: normal;
	margin-bottom: 10px;
}

#contents #comments #reply-title small {
	display: inline-block;
	font-size: 0.7em;
	vertical-align: middle;
	margin: -2px 0 0 8px;
}

#contents #comments #reply-title small a {
	color: #fff;
	text-decoration: none;
	display: inline-block;
	padding: 3px 9px;
	background-color: #d5d5d5;
	border-radius: 50px;
}

#contents #comments #reply-title small a::before {
	font-family: "Material Icons";
	content: "\E14C";
	vertical-align: -0.13em;
	margin-right: 0.25em;
}

#contents #comments #reply-title small a:hover {
	background-color: #a0a0a0;
}

#contents #comments .comment-list {
	margin-bottom: 10px;
	list-style: none;
}

#contents #comments .comment-list #respond {
	margin: 10px 0 30px;
	padding-top: 15px;
	border-top: 1px dotted #ebebeb;
}

#contents #comments .comment-list #respond #reply-title {
	font-size: 1.35em;
}

#contents #comments .comment-list > li {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px dashed #e0e0e0;
	overflow: hidden;
}

#contents #comments .comment-list div.avatar {
	float: left;
	margin-right: 20px;
}

#contents #comments .comment-list div.avatar .thumb {
	overflow: hidden;
}

#contents #comments .comment-list div.avatar .reply {
	font-size: 0.9em;
	margin-top: 10px;
}

#contents #comments .comment-list .comment-block {
	overflow: hidden;
}

#contents #comments .comment-list .comment-block .header {
	font-size: 0.9em;
	line-height: 1.5;
	margin-bottom: 5px;
}

#contents #comments .comment-list .comment-block .header .author {
	display: inline-block;
	margin-right: 15px;
}

#contents #comments .comment-list .comment-block .header .date {
	display: inline-block;
	margin-right: 15px;
}

#contents #comments .comment-list .comment-block .header .date .year, #contents #comments .comment-list .comment-block .header .date .month, #contents #comments .comment-list .comment-block .header .date .day {
	margin-right: 3px;
}

#contents #comments .comment-list .comment-block .comment-text {
	text-justify: inter-ideograph;
	text-align: justify;
}

#contents #comments .comment-list .comment-block .comment-text p {
	font-size: 0.95em;
	line-height: 1.75;
}

#contents #comments .comment-list .comment-block .comment-text .awaiting {
	color: #df0002;
	margin-bottom: 3px;
}

#contents #comments .comment-list .children {
	margin: 20px 0 0 30px;
}

#contents #comments #respond {
	position: relative;
	width: 500px;
}

#contents #comments #respond p {
	line-height: 1.5;
	margin-bottom: 12px;
}

#contents #comments #respond .not-publish {
	line-height: 1.3;
}

#contents #comments #respond .logged-in-as {
	font-size: 0.9em;
}

#contents #comments #respond label {
	display: inline-block;
	line-height: 1.3;
	margin-bottom: 3px;
}

#contents #comments #respond input {
	line-height: 1.5;
}

#contents #comments #respond input[type="text"] {
	font-size: 14px;
	width: 100%;
	padding: 5px;
	border: 1px solid #e0e0e0;
	border-radius: 2px;
	box-sizing: border-box;
}

#contents #comments #respond input[type="submit"] {
	color: #fff;
	font-size: 14px;
	height: 40px;
	width: 160px;
	background-color: #3b99d8;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

#contents #comments #respond input[type="submit"]:hover {
	background-color: #248ac6;
}

#contents #comments #respond textarea {
	font-size: 14px;
	vertical-align: top;
	width: 100%;
	height: 150px;
	padding: 5px;
	border: 1px solid #e0e0e0;
	border-radius: 2px;
	box-sizing: border-box;
}

#contents #comments #respond .required {
	color: #df0002;
	font-size: 12px;
}

#contents #comments #respond .form-submit {
	clear: both;
	margin-bottom: 0;
	padding-top: 5px;
}

#contents #comments #respond .not-publish {
	display: inline-block;
	font-size: 12px;
}

#contents #comments .comment-notes {
	position: absolute;
	top: 32px;
	right: 0;
	font-size: 12px;
	line-height: 1.6;
	width: 235px;
	padding: 0 15px;
	background-color: #f5f5f5;
	box-sizing: border-box;
}

#contents #comments .comment-notes li {
	margin: 20px 0;
}

/**
 * gallery
 */
#contents.article .gallery {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -8px;
}

#contents.article .gallery-item {
	margin: 8px;
	background-color: #fff;
	border: 1px solid #ebebeb;
	box-sizing: border-box;
}

#contents.article .gallery-item img {
	width: auto;
	height: auto;
	max-width: 100%;
}

#contents.article .gallery-columns-1 .gallery-item {
	width: calc(100% - 16px);
}

#contents.article .gallery-columns-2 .gallery-item {
	width: calc(50% - 16px);
}

#contents.article .gallery-columns-3 .gallery-item {
	width: calc(33.33% - 16px);
}

#contents.article .gallery-columns-4 .gallery-item {
	width: calc(25% - 16px);
}

#contents.article .gallery-columns-5 .gallery-item {
	width: calc(20% - 16px);
}

#contents.article .gallery-columns-6 .gallery-item {
	width: calc(16.66% - 16px);
}

#contents.article .gallery-columns-7 .gallery-item {
	width: calc(14.28% - 16px);
}

#contents.article .gallery-columns-8 .gallery-item {
	width: calc(12.5% - 16px);
}

#contents.article .gallery-columns-8 .gallery-item {
	width: calc(12.5% - 16px);
}

#contents.article .gallery-columns-9 .gallery-item {
	width: calc(11.11% - 16px);
}

#contents.article .gallery-icon {
	text-align: center;
	padding: 5%;
	background-color: #fff;
	box-sizing: border-box;
}

#contents.article .gallery-icon a {
	display: inline-block;
	width: 100%;
}

#contents.article .gallery-caption {
	padding: 8px 5% !important;
	background-color: transparent !important;
	border-top: 1px dotted #ebebeb;
}
