﻿@charset "utf-8";

/* お知らせ的な表示
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.so-info-list {
	width:100%;
	margin: 10px 0;
	padding:0px;
	font-size: 100%;
	word-break: break-all;
	overflow: hidden;
}
.so-info-list hr {
	border: 1px #e6e6e6 solid;
	margin: 0;
	padding: 0;
}
.so-info-list dl {
	margin: 0;
	padding: 0;
	border: 0;
}
.so-info-list a {
	padding: 7px 0;
	display: block;
	text-decoration: none;
	box-shadow: none;
}
.so-info-list dt {
	margin: 0 0 0 0.3em;
	padding: 0;
	border: 0;
	color: Gray;
	font-weight: normal;
	white-space: nowrap;
}
.so-info-list dd {
	margin: 0;
	padding: 0 2px;
}

/* ブログカードType00
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* ブログカード全体 */
.so-blog-card-type00 {
	width: 100%;
	margin: 10px 0;
	padding:0px;
	box-shadow: 2px 2px 7px 0 rgb(0 0 0/ 10%);
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
/* リンク */
.so-blog-card-type00 a {
	text-decoration: none;
}
/* 画像データ格納要素 */
.so-blog-card-type00 .so-base-img {
	visibility: hidden;
	width: 100%;
}
/* 背景ベース色 */
.so-blog-card-type00 a:hover .so-thumb {
	background-color: black;
}
/* 背景 */
.so-blog-card-type00 .so-thumb-image-bg {
	background: no-repeat center;
	background-size: cover;
	position: relative;
	z-index: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
}
/* 背景ぼかしを消す */
.so-blog-card-type00 .so-thumb-image-bg:before {
	content: '';
	background: inherit;
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	z-index: -1;
}
/* 画像のセンター寄席 */
.so-blog-card-type00 .so-thumb-image {
	margin: auto;
}
/* 薄くして背景色を出す */
.so-blog-card-type00 a:hover .so-thumb-image-bg {
	transition: 0.5s;
	opacity: .6;
}
/* 画像を大きくする */
.so-blog-card-type00 a:hover .so-thumb-image {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	transition: transform 0.3s;
}
/* コンテンツエリア */
.so-blog-card-type00 .so-content {
	padding: 10px 25px 51px;
}
/* ラベル*/
.so-blog-card-type00 .so-tab-wrap {
	margin: 0px 0px 0px 0px;
}
/* ラベルタブ */
.so-blog-card-type00 .so-tab-wrap span {
	font-size: 0.6em;
	color: white;
	text-align: center;
	margin: 0px 5px 0px 0px;
	padding: 2px 15px;
	background-color: #0d91d3;
}
/* タイトル */
.so-blog-card-type00 .post-title {
	margin: 0px 0px 0px 0px;
}

/* ブログカードType01
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.so-blog-card-type01 {
	min-width:230px;
	width:100%;
	margin: 10px 0;
	padding:0px;
    background-color:#ffffff;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),0 1px 5px 0 rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease-out;
}
.so-blog-card-type01:hover {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
    transform: scale(1.02);
    opacity: 0.7;
    transition: all 0.3s ease-out;
}
.so-blog-card-type01 a {
    text-decoration:none;
}
.so-blog-card-type01 img {
    width:100%;
    border-radius: 10px 10px 0px 0px;
}
.so-blog-card-type01 .text-area {
    margin:0px;
    padding:0px;
    background-color:#ffffff;
    border-radius: 0px 0px 10px 10px;
}
.so-blog-card-type01 .tag-area {
    margin-left:5px;
}
.so-blog-card-type01 .tag-area span {
    padding:3px 15px 3px 15px;
}

.so-blog-card-type01 .title-area {
    margin:10px;
    text-align:left;
}
.so-blog-card-type01 .excerpt-area {
    margin:10px;
    text-align:left;
}
/* 背景画像設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* 基本サイズ */
.so-background-image {
	width:100%;
	margin: 10px 0;
	padding:0px;
}
/* 背景画像設定 */
.so-background-image .bg-image {
	position:absolute;
	background-repeat:no-repeat;
	background-size:cover;
	z-index:-1;
}
.so-background-image .hight-data {
	display:none;
}

/* 背景画像設定(自動高さ調整)
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* 基本サイズ */
.so-background-image-autosize {
	width:100%;
	margin: 10px 0;
	padding:0px;
}

.so-background-image-autosize img {
	width:100%;
}

/* 背景画像設定 */
.so-background-image-autosize .bg-image {
	width:100%;
	position:absolute;
	background-repeat:no-repeat;
	background-size: contain;
	z-index:-1;
}

/* 高さ可変スペーサ
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* 基本サイズ */
.so-spacer-autosize {
	visibility:hidden;
	margin: 0px 0;
	padding:0px;
}

/* アーカイブ月表示
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* 基本サイズ */
.so-archive-month-list {
    width:100%;
	margin: 10px 0;
	padding:0px;
}
.so-archive-month-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.so-archive-month-list ul li a {
    position: relative;
    color: inherit;
    padding-left: 1em;
    transition: all 0.3s ease-out;
}
.so-archive-month-list ul li a:hover {
    color: inherit;
    background: transparent;
    transition: all 0.3s ease-out;
}
.so-archive-month-list ul li a::before {
	font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-size: 15px;
	font-weight:900;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -0.5em;
    line-height: 1.2;
    transition: all 0.3s ease-out;
}
.so-archive-month-list ul li a:hover::before {
	font-family: "Font Awesome 5 Free";
    left: 0.2em;
}

/* タグ表示Type00
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.so-tag-view-type00 {
	width:100%;
	margin: 10px 0;
	padding:0px;
}
.so-tag-view-type00>.box {
	width:100%;
	margin:0px auto;
}
.so-tag-view-type00 .box .tag {
	float:left;
	margin:2px 5px;
	padding:0px 10px;
}
.so-tag-view-type00 .box .tag:before {
	content: '\f02b';
	font-weight: 900;
	margin-right: 4px;
	color:#808080;
}
.so-tag-view-type00 .box .tag:hover {
	color:#808080;
	background-color:#dcdcdc;
}

/* 検索機能
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.so-search-code {
	width:100%;
	margin: 10px 0;
	padding:0px;
	vertical-align:middle;
}
.so-search-code>form {
	width:400px;
}
.so-search-code>form>input.input-text {
	font-size:17px;
	margin-right:2px;
	height:27px;
}
.so-search-code>form>input.fas {
	height:30px;
	padding:0px 15px;
}
