@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: #f9ff40;
	color: #242424;
	padding: 0 4px 1px;
	margin-right: 8px;
	font-size: 10px;
}

.cate_news_list {
}
.cate_blog_list {
}




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

	タグアイコン

================================================================================ */
.blog_tag a {
	display: block;
	background-color: #333333;
	color: #ffffff;
	padding: 0 0.3em;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.blog_tag {
		margin-top: 20px;
	}
	.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 {
		margin-top: 3vw;
	}
	.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 > div {
	border-color: #cccccc;
	margin: 1em 0 0 0;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.blog_iine {
		margin: 20px 0 0 0;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.blog_iine {
		margin: 4vw 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;
		font-size: 32px;
		text-align: center;
	}


	/* ブログレイアウト */
	.blog_wrap {
		max-width: 1000px;
		width: 100%;
		margin: 0 auto;
	}
	.blog_wrap > ul > li {
		width: 1000px;
		margin-bottom: 60px;
		padding: 44px;
		display: inline-block;
		margin: 0 auto;
		margin-bottom: 0px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #333333;
		background-color: #ffffff;
		font-size: 30px;
		border-radius: 3px;
		box-shadow: 0px 5px 15px 0px rgba(139, 139, 139, 0.35);
	}
	.blog_wrap > ul > li:last-of-type {
		margin-bottom: 0;
	}


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

	/* タイトル */
	.blog_title_link {
		font-size: 25px;
		margin-bottom: -4px;
		line-height: 1.3;
		border-bottom: 2px dotted #DCDCDC;
		padding-bottom: 15px;
	}
	.blog_title_link a{
		color:#000000;
	}


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

	/* 記事の内容：画像 */
	.blog_wrap img {
		max-width: 100%;
		height: auto;
		margin: 16px 0;
		display: block;
	}
	.blog_wrap > ul > li >div{
		width:100%!important;
	}
	.guide_kiji_text{
		font-size:16px;
	}
	.kiji_block{
		border-bottom: 1px solid #DCDCDC;
		width: 800px !important;
		margin: 0 auto;
	}
	.guide_kiji_advice{
		display: flex;
		align-items: center;
		color: #333333;
		background-color: #fff;
		font-size: 13px;
		width: 300px;
		height: 100px;
		border-radius: 3px;
		box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0);
		border: 2px solid #DCDCDC;
		padding: 20px 20px 20px 20px;
	}
	.guide_kiji_denkyu{
		display: flex;
		align-items: center;
		color: #333333;
		background-color: #fff;
		font-size: 13px;
		width: 300px;
		height: 100px;
		border-radius: 3px;
		box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0);
		border: 2px solid #DCDCDC;
		padding: 20px 20px 20px 20px;
	}
	.guide_kiji_advice::before{
		content: "";
		display: inline-block;
		width: 43px;
		height: 43px;
		background-image: url('../img/26050081.png');
		background-position: left;
		background-size: 100%;
		background-repeat: no-repeat;
		padding-right: 10px;
		margin-right: 10px;
}
.guide_kiji_denkyu::before{
	content: "";
	display: inline-block;
	width: 43px;
	height: 43px;
	background-image: url('../img/denkyu.png');
	background-position: left;
	background-size: 100%;
	background-repeat: no-repeat;
	padding-right: 10px;
	margin-right: 10px;
}
.blog_wrap_page{
	width: 1200px;
    margin: 0 auto;
}
.blog_wrap_page .blog_title_link {
    font-size: 20px;
    margin-bottom: 14px;
    line-height: 1.3;
  }
.blog_wrap_page .main_cate_in {
	text-align: center;
    padding: 0px!important;
    font-size: 33px;
    font-weight: 600;
  }
.blog_wrap_page .main_cate_list {
    text-align: center;
    background-color: #f4f4f4;
    padding: 62px 0 70px!important;
  }
.blog_wrap_page > ul >li{
	width: calc(calc(100% / 3.1) );
    display: inline-block;
}
.page_thu{


}
.page_thu img{
	width: 100%;
    height: auto;
}
.blog_content{
	font-size:16px;
	padding: 41px 0 0 0;
}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	/* 月別アーカイブ・タグページタイトル */
	.category_title {
		margin-bottom: 40px;
		font-size: 32px;
		text-align: center;
	}


	/* ブログレイアウト */
	.blog_wrap {
		max-width: 97vw;
		width: 100%;
		margin: 0 auto;
	}
	.blog_wrap > ul > li {
		width: 100%;
		margin-bottom: 60px;
		padding: 6vw;
		display: inline-block;
		margin: 0 auto;
		margin-bottom: 0px;
		margin-bottom: 0px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #333333;
		background-color: #ffffff;
		font-size: 5vw;
		border-radius: 3px;
		box-shadow: 0px 1px 6px 0px rgba(139, 139, 139, 0.35);
	}
	.blog_wrap > ul > li:last-of-type {
		margin-bottom: 0;
	}


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

	/* タイトル */
	.blog_title_link {
		font-size: 6vw;
		margin-bottom: 0;
		line-height: 1.3;
		border-bottom: 2px dotted #DCDCDC;
		padding-bottom: 7vw;
	}
	.blog_title_link a{
		color:#000000;
	}


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

	/* 記事の内容：画像 */
	.blog_wrap img {
		max-width: 100%;
		height: auto;
		margin: 16px 0;
		display: block;
	}
	.blog_wrap > ul > li >div{
		width:100%!important;
	}
	.guide_kiji_text{
		font-size:16px;
	}
	.kiji_block{
		border-bottom: 1px solid #DCDCDC;
		width: 100% !important;
		margin: 0 auto;
	}
	.guide_kiji_advice{
		display: flex;
		align-items: center;
		color: #333333;
		background-color: #fff;
		font-size: 13px;
		width: 300px;
		height: 100px;
		border-radius: 3px;
		box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0);
		border: 2px solid #DCDCDC;
		padding: 20px 20px 20px 20px;
	}
	.guide_kiji_denkyu{
		color: #333333;
		background-color: #fff;
		font-size: 4vw;
		width: 300px;
		height: auto;
		border-radius: 3px;
		box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0);
		border: 2px solid #DCDCDC;
		padding: 5vw;
	}
	.guide_kiji_advice::before{
		content: "";
		display: block;
		width: 43px;
		height: 43px;
		background-image: url('../img/denkyu.png');
		background-position: left;
		background-size: 100%;
		background-repeat: no-repeat;
		padding-right: 0;
		margin: 0 auto;
}
.guide_kiji_denkyu::before{
	content: "";
	display: inline-block;
	width: 43px;
	height: 43px;
	background-image: url('../img/denkyu.png');
	background-position: left;
	background-size: 100%;
	background-repeat: no-repeat;
	padding-right: 10px;
	margin-right: 10px;
}
.blog_wrap_page{
	width: 1200px;
    margin: 0 auto;
}
.blog_wrap_page .blog_title_link {
    font-size: 20px;
    margin-bottom: 14px;
    line-height: 1.3;
  }
.blog_wrap_page .main_cate_in {
	text-align: center;
    padding: 0px!important;
    font-size: 33px;
    font-weight: 600;
  }
.blog_wrap_page .main_cate_list {
    text-align: center;
    background-color: #f4f4f4;
    padding: 62px 0 70px!important;
  }
.blog_wrap_page > ul >li{
	width: 91vw;
    display: block;
}
.page_thu{


}
.page_thu img{
	width: 100%;
    height: auto;
}
.blog_content{
	font-size:16px;
	padding: 41px 0 0 0;
}
}




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

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

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

/* 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;
	}
}