@charset 'UTF-8';

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

	ブログ用css

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */



/* ================================================================================

	PC・SP共通部分

================================================================================ */

.blog_wrap table {
	width: auto !important;
	margin-top: 0.5em;
}
.blog_wrap table th {
	border: 1px solid;
	padding: 8px;
	width: auto !important;
	vertical-align: middle;
}
.blog_wrap table td {
	border: 1px solid;
	padding: 8px;
	width: auto !important;
	vertical-align: middle;
}

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

.alignleft {
	float: none;
}

.alignright {
	float: none;
}

.embed-youtube iframe,
.blog_wrap iframe {
	width: 100%;
}


/* 次の記事・前の記事 */
.pull-left {
	float: left;
}
.pull-right {
	float: right;
}




/* ================================================================================

	カテゴリアイコン	※カテゴリごとの色変更は「.cate_投稿カテゴリスラッグ名」

================================================================================ */
.blog_icon {
		background-color: #3a58b2;
		color: #ffffff;
		padding: 3px 6px 3px;
		margin-right: 8px;
}

.cate_news_list {
}
.cate_blog_list {
}




/* ================================================================================

	タグアイコン

================================================================================ */
.blog_tag a {
	background-color: #3a58b2;
	color: #ffffff;
	padding: 5px;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.blog_tag {
		padding: 8px 0;
	}
	.blog_tag ul li {
		display: inline-block;
		margin: 0 0 6px 6px;
	}
	.blog_tag ul li:first-of-type {
		margin-left: 0;
	}
	.blog_tag ul li a {
		font-size: 14px;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.blog_tag {
		padding: 2vw 0;
	}
	.blog_tag ul {
	}
	.blog_tag ul li {
		display: inline-block;
		margin: 0 0 2vw 2vw;
	}
	.blog_tag ul li:first-of-type {
		margin-left: 0;
	}
	.blog_tag ul li a {
		font-size: 3.3vw;
	}
}




/* ================================================================================

	いいねボタン

================================================================================ */
.blog_iine {
	margin: 24px 0 0 0;
}

/* いいねボタンのボーダーカラー */
.blog_iine > div {
	border-color: #cccccc;
	margin: 1em 0 0 0;
}




/* ================================================================================

	ページネーション

================================================================================ */

/* 整列位置 (左・真ん中・右) */
.wp-pagenavi {
	clear: both;
	text-align: left;
}


/* ページ色 */
.wp-pagenavi a,
.wp-pagenavi span {
	display: inline-block;
	background-color: #666666;
	color: #ffffff;
	font-size: 13px;
	border: none;
	padding: 6px 12px 7px;
	margin: 0 2px 4px;
	white-space: nowrap;
	border-radius: 3px;
	text-align: center;
	text-decoration: none;
	line-height: 1;
	vertical-align: top;
	transition-property: all;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	transition-delay: 0s;
}

/* 現在のページ色 */
.wp-pagenavi span.current {
	background-color: #000000;
	font-weight: bold;
}

/* ページ以外のリンク色 */
.wp-pagenavi span.extend,
.wp-pagenavi span.pages {
	color: #ffffff;
	background-color: #000000;
}

/* ホバー色 */
.wp-pagenavi a:hover {
	opacity: 1;
	background-color: #000000;
}



/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.wp-pagenavi {
		margin: 40px auto;
	}

	/* 次の記事・前の記事 */
	.prevnext-nav {
		margin: 24px auto;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.wp-pagenavi {
		margin: 4vw auto;
	}

	/* 次の記事・前の記事 */
	.prevnext-nav {
		margin: 4vw auto;
	}
}




/* ================================================================================

	ブログ

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* 月別アーカイブ・タグページタイトル */
	.category_title {
		margin-bottom: 40px;
		margin-top: 40px;
		font-size: 32px;
		text-align: center;
	}


	/* ブログレイアウト */
	.blog_wrap {
		max-width: 1000px;
		width: 100%;
		margin: 0 auto;
	}
	.blog_wrap > ul > li {
		background-color: #f5f5f5;
		margin-bottom: 60px;
		padding: 48px;
	}
	.blog_wrap > ul > li:last-of-type {
		margin-bottom: 0;
	}


	/* 日付 */
	.blog_title_date {
		font-size: 18px;
		margin-bottom: 8px;
	}

	/* タイトル */
	.blog_title_link {
		font-size: 28px;
		margin-bottom: 24px;
		line-height: 1.3;
	}


	/* 記事の内容：pタグ */
	.blog_wrap p {
		overflow: hidden;
	}

	/* 記事の内容：画像 */
	.blog_wrap img {
		max-width: 100%;
		height: auto;
		margin: 16px 0;
		display: block;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* 月別アーカイブ・タグページタイトル */
	.category_title {
		margin-bottom: 8vw;
		margin-top: 8vw;
		font-size: 5.6vw;
		text-align: center;
	}


	/* ブログレイアウト */
	.blog_wrap > ul > li {
		background-color: #f5f5f5;
		margin-bottom: 8vw;
		padding: 6vw;
	}
	.blog_wrap > ul > li:last-of-type {
		margin-bottom: 0;
	}


	/* 日付 */
	.blog_title_date {
		font-size: 3.3vw;
		margin-bottom: 1vw;
	}

	/* タイトル */
	.blog_title_link {
		font-size: 5vw;
		margin-bottom: 1em;
		line-height: 1.3;
	}


	/* 記事の内容：画像 */
	.blog_wrap img {
		display: block;
		max-width: 100%;
		height: auto;
		margin: 1em auto;
	}

	/* 記事の内容：iframe */
	.blog_wrap iframe {
		max-width: 100%;
		width: 100%;
		margin: 4vw auto;
	}
}




/* ================================================================================

	最近の投稿・アーカイブ・カテゴリ

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	.blog_function_wrap {
		position: relative;
	}
	.blog_function_wrap_inner {
		padding: 40px 0 0 0;
	}
	.blog_function_wrap_inner > ul {
		overflow: auto;
		width: 1000px;
		padding: 0 30px;
		margin: 0 auto;
	}
	.blog_function_wrap_inner > ul > li a {
		font-size: 16px;
	}

	/* カテゴリを表示しない場合 */
	.blog_function_wrap_inner > ul > li:nth-of-type(1) {
		width: 50%;
		padding: 0 30px 16px;
		float: left;
	}
	.blog_function_wrap_inner > ul > li:nth-of-type(2) {
		width: 50%;
		padding: 0 30px 16px;
		float: left;
	}

	/* ★カテゴリを表示する場合
		page-〇〇〇.phpとshingle-blog.phpにあるカテゴリ部分の
		コメントアウトを外して、下記cssに差し替えてください。
	----------------------------------------------- */
	/* 
	.blog_function_wrap_inner > ul > li:nth-of-type(1) {
		width: 44%;
		padding: 0 20px 16px;
		float: left;
	}
	.blog_function_wrap_inner > ul > li:nth-of-type(2) {
		width: 28%;
		padding: 0 20px 16px;
		float: left;
	}
	.blog_function_wrap_inner > ul > li:nth-of-type(3) {
		width: 28%;
		padding: 0 20px 16px;
		float: left;
	}
	*/

	.blog_function_wrap_inner > ul > li > ul {
		width: 100%;
		max-height: 210px;
		height: 100%;
		overflow: auto;
		text-align: center;
	}
	.blog_function_wrap_inner > ul > li > ul {
		width: 100%;
		max-height: 210px;
		height: 100%;
		overflow: auto;
		text-align: center;
		padding: 0 8px;
	}
	.blog_function_wrap_inner > ul > li > ul > li {
		font-size: 16px;
		line-height: 40px;
	}
	.blog_function_wrap_inner h2 {
		text-align: center;
		font-size: 24px;
		font-weight: 300;
		border-bottom: 1px solid;
		margin: 8px auto 24px;
	}
	.blog_function_wrap_inner .recent_title_text {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		width: 76%;
		display: block;
		float: left;
		text-align: left;
	}
	.blog_function_wrap_inner .recent_title_date {
		font-size: 14px;
		width: 24%;
		display: block;
		float: left;
		text-align: right;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	.blog_function_wrap {
		position: relative;
	}
	.blog_function_wrap_inner {
		padding: 8vw 0 0 0;
	}
	.blog_function_wrap_inner > ul {
		overflow: auto;
	}
	.blog_function_wrap_inner > ul > li > ul {
		width: 100%;
		max-height: 44vw;
		height: 100%;
		overflow: auto;
		text-align: center;
		padding: 0 2vw;
		margin-bottom: 12vw;
	}
	.blog_function_wrap_inner > ul > li > ul > li {
		line-height: 2.5;
	}
	.blog_function_wrap_inner h2 {
		text-align: center;
		font-size: 5vw;
		border-bottom: 1px solid;
		margin: 4vw auto;
		font-weight: 300;
	}
	.blog_function_wrap_inner .recent_title_text {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		width: 62%;
		display: block;
		float: left;
		text-align: left;
	}
	.blog_function_wrap_inner .recent_title_date {
		width: 38%;
		display: block;
		float: left;
		text-align: right;
	}
}




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

	お客様の声 ブログページ

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* お客様の声 */
	.voice_wrap{
		position:relative;
		width:1000px;
		margin: 0 auto;
	}
	.voice_wrap ul{
		overflow:hidden;
	}
	.voice_wrap > ul > li{
		float:left;
		width:309px;
		margin-right:36px;
		margin-bottom:48px;
	}
	.voice_wrap > ul > li:nth-of-type(3n){
		float:left;
		width:309px;
		margin-right:0;
	}

	.voice_icon{
		position:relative;
		height:0;
	}
	.voice_icon span{
		position:relative;
		transform: translateY(20px);
		-webkit-transform:translateY(20px);
		-ms-transform:translateY(20px);
		color:#ffffff;
		background-color:#3a58b2;
		padding:0 12px 1px;
		z-index:1;
		display:inline-block;
		font-size: 16px;
	}

	.voice_title{
		border-bottom:1px solid #3a58b2;
		padding:8px 0 4px;
		margin-bottom:8px;
		display:block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		color:#3a58b2;
	}
	.voice_title a{
		color: #3a58b2;
		letter-spacing: 0.08em;
		font-size: 18px;
	}

	.voice_thumb img{
		width: 309px;
		height: 249px;
		object-fit: cover;
		font-family: 'object-fit: cover;';
	}

	/* タグ */
	.voice_tag{
		padding:8px 0;
		height:43.2px;
	}
	.voice_tag ul li{
		display:inline-block;
		margin:0 10px 0 0;
	}
	.voice_tag ul li a{
		background-color:#3a58b2;
		padding:0 4px;
		color:#ffffff;
		display:block;
		font-size:14px;
	}

	/* 内容 */
	.voice_text{
		padding:0 8px;
		height:56px;
		overflow: hidden;
	}

	.voice_link{
		padding:8px 0 0;
		text-align:right;
	}
	.voice_link a{
		color:#3a58b2;
	}

	.wp-pagenavi .pages {
		/*padding: 0px 10px 3px;*/
	}
	
	.wp-pagenavi .current {
		/*padding: 0px 10px 3px;*/
		background-color: rgba(255,255,255,0.7);
		border-color: inherit;
	}





	/* お客様の声 投稿詳細ページ */
	.voice_single_wrap{
		border:1px dotted #dddddd;
		border-radius:8px;
		padding:80px;
	}

	.voice_single_wrap ul.voice_single_in{
		border-bottom:1px dotted #3a58b2;
		padding-bottom:48px;
		margin-bottom:16px;
	}

	.voice_single_title{
		font-size:34px;
		font-weight:300;
		color:#3a58b2;
		padding-bottom:8px;
		border-bottom:2px dotted #3a58b2;
		margin-bottom:32px;
	}



	.voice_single_wrap img{
		max-width:100%;
		height:auto;
		margin:8px 0 24px;
	}
	.voice_single_wrap table{
		width:auto !important;
	}
	.voice_single_wrap table td{
		border:1px solid;
		padding:8px;
		width:auto !important;
	}
	.voice_single_wrap p{
		font-size:20px;
		overflow:hidden;
		margin-bottom:32px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* お客様の声 */
	.voice_wrap{
		position:relative;
		margin:0 auto;
	}
	.voice_wrap > ul{
	}
	.voice_wrap > ul > li{
		position:relative;
		margin:0 4vw 10vw;
		padding:0;
	}


	.voice_icon{
		position:relative;
		height:0;
		padding: 0 0 0 0.5vw;
	}
	.voice_icon span{
		position:relative;
		transform: translateY(5vw);
		-webkit-transform:translateY(5vw);
		-ms-transform:translateY(5vw);
		color:#ffffff;
		background-color:#3a58b2;
		padding:0 2vw;
		z-index:1;
		display:inline-block;
	}

	.voice_title{
		border-bottom:1px solid #3a58b2;
		padding:3vw 0 1vw;
		margin:0 0 2vw;
		display:block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		color:#3a58b2;
	}
	.voice_title a{
		font-size:4vw;
		color: #3a58b2;
		letter-spacing: 0.08em;
	}

	.voice_thumb img{
		width: 100%;
		height: 60vw;
		object-fit: cover;
		font-family: 'object-fit: cover;';
	}

	/* タグ */
	.voice_tag{
		padding:8px 0;
	}
	.voice_tag ul li{
		display:inline-block;
		margin:0 10px 0 0;
	}
	.voice_tag ul li a{
		background-color:#3a58b2;
		padding:0 4px;
		color:#ffffff;
		display:block;
		font-size:14px;
	}

	/* 内容 */
	.voice_text{
		padding:0 2vw;
		overflow: hidden;
		height: 13vw;
	}
	.voice_text p{
		font-size:3.5vw;
	}

	.voice_link{
		padding:4vw 0 0;
		text-align:right;
	}
	.voice_link a{
		color:#3a58b2;
		font-size:3.5vw;
	}
	
	
	.wp-pagenavi .pages {
	}
	
	.wp-pagenavi .current {
		background-color: rgba(255,255,255,0.7);
		border-color: inherit;
	}






	/* お客様の声 投稿詳細ページ */
	.voice_single_wrap{
		border:1px dotted #dddddd;
		border-radius:8px;
		padding:24px;
	}

	.voice_single_wrap ul.voice_single_in{
		border-bottom:1px dotted #3a58b2;
		padding-bottom:48px;
		margin-bottom:16px;
	}

	.voice_single_title{
		font-size:18px;
		font-weight:300;
		color:#3a58b2;
		padding-bottom:8px;
		border-bottom:2px dotted #3a58b2;
		text-align:center;
		margin-bottom:32px;
	}



	.voice_single_wrap img{
		max-width:100%;
		height:auto;
		margin:8px auto 24px;
	}
	.voice_single_wrap table{
		width:auto !important;
	}
	.voice_single_wrap table td{
		border:1px solid;
		padding:8px;
		width:auto !important;
	}
	.voice_single_wrap p{
		overflow:hidden;
		margin-bottom:32px;
	}
}
/* ================================================================================

	エディター記事 デザイン追加 署名

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	.blog_shomei{
		border-top: 1px solid #dadde2;
		padding-top: 40px;
		margin-top: 40px;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	.blog_shomei{
		border-top: 1px solid #dadde2;
		padding-top: 6vw;
		margin-top: 6vw;
	}

}