@charset "utf-8";

body {
	font-family: "zen-maru-gothic", sans-serif;
	color: #000;
	font-size: 100%;
}

a {
	color: #000;
}

.pc {
	display: block !important;
}

.sp {
	display: none !important;
}

@media only screen and (max-width: 820px) {
	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}
}

/* -----------------------------------------------------------------------------------

ヘッダー

----------------------------------------------------------------------------------- */
#header {
	background: #FFF;
}

#header .siteCopy {
	background: #0251C7;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	padding-bottom: 2px;
}

#header .siteCopy span {
	color: #FFF;
	font-size: 12px;
	line-height: 1.2em;
	display: inline-flex;
}

/* --- PCは通常表示 --- */
.siteCopyWrap {
	overflow: hidden;
}

/* --- SPだけスクロール --- */
@media (max-width: 600px) {

	.siteCopyWrap {
		width: 100%;
		overflow: hidden;
		position: relative;
	}

	.siteCopy {
		display: flex;
		width: max-content;
		animation: scrollText 15s linear infinite;
	}

	.siteCopy span {
		white-space: nowrap;
	}

	@keyframes scrollText {
		0% {
			transform: translateX(0%);
		}

		100% {
			transform: translateX(-50%);
		}
	}

}

#header .inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	padding: 1.2rem 0;
	box-sizing: border-box;
}

header .siteTitle {
	font-weight: 700;
	font-size: 1.2rem;
	width: 300px;
}

header .contactBtn {
	font-size: 1.2rem;
	margin-left: auto;
}

header .contactBtn a {
	color: #fff;
	font-weight: 700;
	background: #02bfd3;
	padding: 0.5em 3em;
	border-radius: 50px;
	text-decoration: none;
}

#header .siteTitle a {
	text-decoration: none;
}

@media screen and (max-width: 787px) {
	#header .siteCopy {
		font-size: 10px;
		padding: 0.2em 0.5em;
	}

	#header .inner {
		padding: 1rem;
	}

	header .siteTitle {
		font-size: 5vw;
		margin: 0 auto;
	}

	header .contactBtn {
		display: none;
	}
}

/*========= ドロワーメニュー ===============*/

#g-nav {
	position: fixed;
	z-index: -1;
	opacity: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	/*ナビの高さ*/
	background: rgb(255 255 255 / 95%);
	transition: all 0.3s;
}

#g-nav.panelactive {
	opacity: 1;
	z-index: 999;
}

#g-nav.panelactive #g-nav-list {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

#g-nav ul {
	display: none;
	position: absolute;
	z-index: 999;
	width: 100%;
	/* top:30%;
left:50%;
transform: translate(-50%,-50%); */
}

#g-nav.panelactive ul {
	display: block;
}

#g-nav li {
	list-style: none;
	text-align: center;
}

#g-nav li:first-child a {
	border-top: 1px solid #00000059;
}

#g-nav li a {
	color: #333;
	text-decoration: none;
	padding: 40px 0;
	border-bottom: 1px solid #00000059;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-size: 2rem;
}

#g-nav li.btn a {
	border: none;
	padding: 10px;
}

.openbtn1 {
	position: fixed;
	z-index: 9999;
	top: 35px;
	right: 5em;
	cursor: pointer;
	width: 50px;
	height: 50px;
	background: #0251c7;
}

.openbtn1 span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 3px;
	border-radius: 2px;
	background-color: #fff;
	width: 45%;
}

.openbtn1 span:nth-of-type(1) {
	top: 15px;
}

.openbtn1 span:nth-of-type(2) {
	top: 23px;
}

.openbtn1 span:nth-of-type(3) {
	top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}


@media screen and (max-width: 800px) {
	.openbtn1 {
		top: 23px;
		right: 10px;
	}

	#g-nav li a {
		padding: 30px 0;
		font-size: 5vw;
	}

	#g-nav ul {
		top: 20vw;
	}
}

/* -----------------------------------------------------------------------------------

サイドバー

----------------------------------------------------------------------------------- */

.postArticle__wrap .postArticle__sidebar {
	width: 340px;
	margin-left: auto;
}

.sidebar__bnrArea {
	background: #f1f1f1;
	margin-bottom: 4em;
}

.sidebar__bnrArea img {
	width: 100%;
}

@media screen and (max-width: 787px) {
	.postArticle__wrap .postArticle__sidebar {
		width: inherit;
		margin-top: 4rem;
	}

	.sidebar__bnrArea {
		margin: 0 5% 3rem;
	}
}

/* MAX787px */


/* 人気記事 */
.postArticle__wrap .postArticle__sidebar .ranking-box {
	padding: 0rem 5% 3rem 5%;
}

.postArticle__wrap .postArticle__sidebar .ranking-box h3 {
	text-align: center;
	border-bottom: 2px solid #ddd;
	margin-bottom: 20px;
}

/* 人気記事リスト */
.popularPosts {
	margin: 0;
	padding: 0;
	list-style: none;
}

.popularPosts__item+.popularPosts__item {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.popularPosts__link {
	display: flex;
	gap: 12px;
	text-decoration: none;
	color: inherit;
}

.popularPosts__thumb {
	flex: 0 0 88px;
	width: 88px;
	height: 66px;
	border-radius: 8px;
	overflow: hidden;
	background: #f2f2f2;
}

.popularPosts__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.popularPosts__thumbFallback {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #eee, #ddd);
}

.popularPosts__body {
	flex: 1;
	min-width: 0;
}

.popularPosts__title {
	margin: 0 0 6px;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 700;

	/* 長いタイトルを2行で省略 */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.popularPosts__meta {
	font-size: 12px;
	opacity: 0.7;
}

.popularPosts__link:hover .popularPosts__title {
	text-decoration: underline;
}


/* -----------------------------------------------------------------------------------

記事詳細

----------------------------------------------------------------------------------- */

.postArticle__wrap {
	font-size: 16px;
	line-height: 1.8;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
}

.postArticle__wrap::after {
	content: "";
	display: block;
	clear: both;
}

.postArticle__wrap .postArticle__main {
	width: 800px;
	max-width: 800px;
}

.postArticle__wrap .postArticle__main #ez-toc-container {
	margin-top: 1em;
	padding: 2em;
}


.postArticle__main .postArticle__categoryList {
	margin-bottom: 2em;
	position: relative;
	padding-left: 1.5em;
	color: #666;
}

.postArticle__main .postArticle__categoryList:before {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	content: "\f07b";
	font-family: FontAwesome;
	color: #FABE00;
}

.postArticle__main .postArticle__categoryList time {
	margin-left: 1em;
	display: none;
}

@media screen and (max-width: 787px) {
	.postArticle__main .postArticle__categoryList {
		font-size: 12px;
		margin: 0.5em 0.5em 2em 1rem;
	}
}

/* 本文 */
.postArticle__wrap .postArticle__main .mainContents {
	padding: 0 3%;
}

.postArticle__wrap .postArticle__main p {
	margin-bottom: 1.5em;
}

.postArticle__wrap .postArticle__main a.btn {
	position: relative;
	display: block;
	width: 80%;
	margin: 1em auto;
	padding: 1em;
	border: 2px solid #0252c6;
	border-radius: 50px;
	color: #0252c6;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
}

.postArticle__wrap .postArticle__main a.btn:hover {
	background: #0252c60f;
	transition: all .3s;
}

.postArticle__wrap .postArticle__main a.btn::after {
	content: '';
	position: absolute;
	top: 42%;
	right: 2em;
	width: 10px;
	height: 10px;
	border-top: 2px solid #0252c6;
	border-right: 2px solid #0252c6;
	transform: rotate(45deg);
	transition: all .3s;
}

.postArticle__wrap .postArticle__main a.btn:hover::after {
	right: 1.5em;
}

.postArticle__wrap .postArticle__main blockquote {
	position: relative;
	padding: 2em 3em;
	line-height: 1.8;
	box-sizing: border-box;
	font-style: italic;
	border: solid 3px #0252c6;
	margin-bottom: 1em;
}

.postArticle__wrap .postArticle__main blockquote:before {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	text-align: center;
	content: "\f10d";
	font-family: FontAwesome;
	font-size: 18px;
	line-height: 30px;
	background: #0252c6;
	font-weight: 900;
	padding-left: 2px;
	color: #FFF;
}

.postArticle__wrap .postArticle__main blockquote p {
	position: relative;
	padding: 0;
	margin: 10px 0;
	z-index: 3;
	line-height: 1.7;
}

.postArticle__wrap .postArticle__main cite {
	display: block;
	color: #888888;
	background: #0252c60d;
	padding: 2em;
	line-height: 1.7;
	margin-bottom: 1em;
}
.footer__cta{
	visibility: hidden;
}

@media screen and (max-width: 787px) {
	.postArticle__wrap .postArticle__main blockquote {
		padding: 20px 1em 0;
		line-height: 1.5;
	}

	.postArticle__wrap .postArticle__main blockquote:before {
		width: 24px;
		height: 24px;
		font-size: 16px;
		line-height: 22px;
		text-align: left;
	}

	.postArticle__wrap .postArticle__main cite {
		padding: 0.5em;
		line-height: 1.3;
		font-size: 0.8rem;
	}

	.footer__cta {
		position: fixed;
		left: 50%;
		bottom: 16px;
		transform: translateX(-50%) translateY(20px);
		z-index: 9999;
		
		opacity: 0;
		visibility: hidden;
		pointer-events: none;

		transition: opacity .4s ease, transform .4s ease, visibility .4s;
	}

	.footer__cta.is-show {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateX(-50%) translateY(0);
	}

	.footer__cta img {
		max-width: 320px;
		height: auto;
		display: block;
	}

}

/* MAX 787px */




.postArticle__wrap .postArticle__main dl.accordionUnit {
	max-width: 1000px;
	margin: 1.5rem auto 0;
	border-radius: 10px;
	overflow: hidden;
	border: 2px solid #222
}

.postArticle__wrap .postArticle__main dl.accordionUnit dt {
	padding: 1em 3em 1em 5rem;
	background: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	position: relative;
	cursor: pointer;
}

.postArticle__wrap .postArticle__main dl.accordionUnit dt::after {
	content: "Q";
	color: #0252c6;
	font-size: 2rem;
	position: absolute;
	top: 0.4em;
	left: 1em;
}

.postArticle__wrap .postArticle__main dl.accordionUnit dt::before {
	content: "";
	width: 12px;
	height: 12px;
	border-top: 3px solid #0252c6;
	border-right: 3px solid #0252c6;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top: 40%;
	right: 2em;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: rotate(135deg);
}

.postArticle__wrap .postArticle__main dl.accordionUnit dt.active::before {
	transform: rotate(-45deg) !important;
}

.postArticle__wrap .postArticle__main dl.accordionUnit dd {
	display: none;
	position: relative;
	background-color: rgba(255, 255, 255, 0.6);
	padding: 0em 2em 2em 5rem;
}

.postArticle__wrap .postArticle__main dl.accordionUnit dd::after {
	content: "A";
	font-weight: 700;
	color: #0252c6;
	font-size: 2rem;
	position: absolute;
	top: 0;
	left: 1em;
}

@media screen and (max-width: 787px) {
	.postArticle__wrap {
		width: 100%;
		display: block;
	}

	.postArticle__wrap .postArticle__main {
		width: 100%;
		background: #fff;
	}

	.postArticle__wrap .postArticle__main h2.mainTitle {
		font-size: 1.5rem;
		line-height: 1.5;
	}

	.postArticle__wrap .postArticle__main dl.accordionUnit dt {
		padding: 1.5rem 30px 1.5rem 30px;
		font-size: 1.1rem;
		line-height: 1.2em;
	}

	.postArticle__wrap .postArticle__main dl.accordionUnit dt::after {
		font-size: 20px;
		line-height: 24px;
		top: 0;
		left: 0;
		background-color: #0252c6;
		width: 26px;
		height: 26px;
		color: #FFF;
		border-bottom-right-radius: 10px;
		text-align: center;
	}

	.postArticle__wrap .postArticle__main dl.accordionUnit dt::before {
		content: "";
		width: 10px;
		height: 10px;
		right: 12px;
	}

	.postArticle__wrap .postArticle__main dl.accordionUnit dd {
		padding: 1.5rem 1.5rem 1.5rem 30px;
	}

	.postArticle__wrap .postArticle__main dl.accordionUnit dd::after {
		content: "A";
		font-weight: 700;
		color: #0252c6;
		font-size: 20px;
		position: absolute;
		top: 0;
		left: 0.8em;
	}
}

/* SP */




/* -----------------------------------------------------------------------------------

カテゴリーから探す

----------------------------------------------------------------------------------- */
.postArticle__wrap2 {
	background: #0251c7;
	color: #fff;
	margin: 5em auto 0;
	padding: 3em 0;
}

.postArticle__wrap2 .postArticle__wrap2__category,
.postArticle__wrap2 .postArticle__wrap2__relation {
	max-width: 1200px;
	margin: 0 auto;
}

.postArticle__wrap2 h6 {
	margin-bottom: 1em;
	padding: 1em;
	line-height: 1.8;
	align-items: center;
	display: flex;
	font-size: 1.2rem;
}

.postArticle__wrap2 h6::before,
.postArticle__wrap2 h6::after {
	background-color: #222;
	border-radius: 5px;
	content: "";
	flex-grow: 1;
	height: 2px;
}

.postArticle__wrap2 h6::before {
	margin-right: 2em;
}

.postArticle__wrap2 h6::after {
	margin-left: 2em;
}

.postArticle__wrap2 ul {
	margin-bottom: 5em;
}

.postArticle__wrap2 ul li {
	display: inline-block;
}

.postArticle__wrap2 ul li a {
	text-decoration: none;
	padding: 5px 20px;
	border-radius: 50px;
	color: #0251c7;
	background: #fff;
	transition: all ease 300ms;
	font-weight: bold;
}

.postArticle__wrap2 ul li a:hover,
.postArticle__wrap2 ul li a:active {
	background: #333;
	color: #FFF;
}

.postArticle__wrap2 .postArticle__wrap2__category h2,
.postArticle__wrap2 .postArticle__wrap2__relation h2 {
	margin-bottom: 1em;
}

.postArticle__wrap2 .postArticle__wrap2__relation a {
	color: #fff;
	background: none;
	padding: 5px 0;
}

.postArticle__wrap2 .postArticle__wrap2__relation a:hover,
.postArticle__wrap2 .postArticle__wrap2__relation a:active {
	background: none;
}

@media screen and (max-width: 787px) {
	.postArticle__wrap2 {
		padding: 4rem 5%;
		margin: 0;
	}

	.postArticle__wrap2 .postArticle__wrap2__category h2,
	.postArticle__wrap2 .postArticle__wrap2__relation h2 {
		font-size: 1.2rem;
	}

	.postArticle__wrap2 .postArticle__wrap2__category ul.category-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: start;
		gap: 14px 4px;
	}

	.postArticle__wrap2 .postArticle__wrap2__category ul.category-list li a {
		font-size: 0.9rem;
		padding: 0.3em 1em;
	}
}

/* MAX787px */






/* -----------------------------------------------------------------------------------

関連記事

----------------------------------------------------------------------------------- */
.postArticle__wrap2__relation {
	margin-bottom: 5em;
}

.postArticle__wrap2__relation .slider {
	width: 94%;
	margin: 0 auto;
}

.postArticle__wrap2__relation .slider a {
	text-decoration: none;
	font-weight: 700;
}

.postArticle__wrap2__relation .slider img,
.postArticle__wrap2__relation .slider img.attachment-medium.size-medium.wp-post-image {
	width: 100%;
	height: 150px;
	object-position: 50% 50%;
	object-fit: contain;
}

.postArticle__wrap2__relation .slider time {
	font-size: 0.8rem;
}

.postArticle__wrap2__relation .slider .slick-slide {
	margin: 0 10px;
}

.postArticle__wrap2__relation .slick-prev,
.postArticle__wrap2__relation .slick-next {
	position: absolute;
	top: 42%;
	cursor: pointer;
	outline: none;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	height: 15px;
	width: 15px;
}

.postArticle__wrap2__relation .slick-prev {
	left: -1.5%;
	transform: rotate(-135deg);
}

.postArticle__wrap2__relation .slick-next {
	right: -1.5%;
	transform: rotate(45deg);
}

.postArticle__wrap2__relation .slick-dots {
	text-align: center;
	margin: 20px 0 0 0;
}

.postArticle__wrap2__relation .slick-dots li {
	display: inline-block;
	margin: 0 5px;
}

.postArticle__wrap2__relation .slick-dots button {
	color: transparent;
	outline: none;
	width: 8px;
	height: 8px;
	display: block;
	border-radius: 50%;
	background: #ccc;
}

.postArticle__wrap2__relation .slick-dots .slick-active button {
	background: #333;
}



/* -----------------------------------------------------------------------------------

パンくず

----------------------------------------------------------------------------------- */
.postArticle__pankuz {
	background: #f5f5f5;
	padding: 1em 4em;
	margin-bottom: 3em;
	font-size: 0.8rem;
	box-sizing: border-box;
}

.postArticle__pankuz ul {
	list-style: none;
	max-width: 1200px;
	margin: 0 auto;
	scrollbar-width: none;
	/* fireFox */
	-ms-overflow-style: none;
	/* Edge */
}

/* スクロールバー　非表示（Crome,Safari） */
.postArticle__pankuz ul::-webkit-scrollbar {
	display: none;
}

.postArticle__pankuz li {
	display: inline;
}

.postArticle__pankuz li a {
	color: inherit;
	text-decoration: none;
}

.postArticle__pankuz li+li:before {
	content: ">";
	margin: .5em;
}

@media screen and (max-width: 787px) {
	.postArticle__pankuz {
		padding: 0.3em 2%;
		margin-bottom: 0;
		width: 100vw;
	}

	.postArticle__pankuz ul {
		overflow-x: scroll;
		white-space: nowrap;
	}
}

/* -----------------------------------------------------------------------------------

フッター

----------------------------------------------------------------------------------- */
footer {
	background: #fff;
	padding: 3em 2em;
	text-align: center;
	font-weight: 700;
}

footer li {
	display: inline-block;
	margin-right: 2em;
	padding-right: 2em;
	border-right: 1px solid #ccc;
}

footer li:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}

footer li a {
	text-decoration: none;
}

footer p {
	margin-top: 2em;
}

@media screen and (max-width: 820px) {
	footer {
		font-size: 3vw;
	}
}

/* -----------------------------------------------------------------------------------

お問い合わせフォーム

----------------------------------------------------------------------------------- */
.main__contact {
	width: 100%;
	background: #0252c6;
	background-image: url(../../img/ouchi-soudan/bg.png);
	background-position: bottom;
	background-repeat: repeat-x;
	padding: 3em 2em 6em;
	text-align: center;
	box-sizing: border-box;
}

.main__contact a.btn {
	display: inline-block;
	margin-top: 2em;
}

.main__contact h2.mainTitle {
	color: #fff;
	font-size: 2.5rem;
	text-align: center;
	font-weight: 700;
	line-height: 1.8;
	position: relative;
}

.main__contact h2.mainTitle .img01 {
	position: absolute;
	top: 0;
	left: 4em;
	max-width: 112px;
}

.main__contact h2.mainTitle .img02 {
	position: absolute;
	top: 0;
	right: 4em;
	max-width: 112px;
}

.main__contact h3.subTitle {
	max-width: 224px;
	margin: 0 auto 1em;
}

@media screen and (max-width: 1150px) {
	.main__contact h2.mainTitle {
		font-size: 4vw;
	}

	.main__contact h2.mainTitle .img01 {
		left: 1em;
		max-width: 90px;
	}

	.main__contact h2.mainTitle .img02 {
		right: 1em;
		max-width: 90px;
	}
}

@media screen and (max-width: 820px) {
	.main__contact {
		padding: 2em 1em 4em;
	}

	.main__contact h2.mainTitle .img01 {
		top: -50px;
	}

	.main__contact h2.mainTitle .img02 {
		top: -50px;
	}

	.main__contact h2.mainTitle {
		font-size: 6vw;
		line-height: 1.5;
	}
}

@media screen and (max-width: 600px) {
	.main__contact h2.mainTitle .img01 {
		top: -20px;
		max-width: 50px;
	}

	.main__contact h2.mainTitle .img02 {
		top: -20px;
		max-width: 50px;
	}
}




/* ------------------------------------
ブログカード
------------------------------------ */
.blog-card-long {
	margin: 0 0 1.8rem;
}

.card-link {
	display: block;
	overflow: hidden;
	max-width: 400px;
	width: 100%;
	box-sizing: border-box;
	padding: 0;
	box-shadow: 0 6px 9px rgba(0, 0, 0, 0.3);
	font-weight: bold;
	text-decoration: none;
	position: relative;
	transform: translateY(-2px);
	transition: all ease-in 200ms;
}

.card-link:hover {
	color: #888;
	text-decoration: none;
	transform: translateY(0px);
}

.blog-card-label-long {
	z-index: 1;
	display: inline-block;
	position: absolute;
	background-color: #FFE210;
	top: 10px;
	left: 10px;
	max-width: 120px;
	height: 25px;
	padding: 0 0.5rem;
	color: #fff;
	font-size: .8rem;
	font-weight: 700;
	text-align: center;
	line-height: 25px;
	transform-origin: 50% 50%;
	animation: animScale 3.5s ease-out;
}

.card-link .blogcard-text {
	display: block;
	padding: 15px 13px;
	line-height: 1.6;
}

.card-link img {
	width: 100%;
}

.longcard-link {
	margin-bottom: 1.5em;
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.25);
}

.longcard-img {
	position: relative;
}

.blogcard-title {
	color: #0252c6;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-card-excerpt-long {
	padding-top: .8em;
	font-size: .8em;
	line-height: 1.4;
	font-weight: normal;
	opacity: .8;
	color: #333;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media only screen and (min-width: 481px) {
	.card-link {
		display: inline-block;
		max-width: 310px;
		margin-right: 20px;
	}

	.longcard-link {
		max-width: 100%;
		display: table;
	}

	.blogcard-title {
		padding-left: 1em;
	}

	.longcard-img,
	.card-link.longcard-link .blogcard-content {
		display: table-cell;
		vertical-align: middle;
		box-sizing: border-box;
	}

	.longcard-img {
		width: 30%;
	}

	.blogcard-content {
		width: 70%;
		padding-left: 1em;
	}

	.longcard-img img {
		width: 100%;
		padding: 10px;
	}
}

@media screen and (max-width: 959px) {
	.blog-card-excerpt-long {
		display: none;
	}
}

/*ブログカードのラベル*/
.blog-card-label {
	display: inline-block;
	position: absolute;
	background-color: #0252c6;
	color: #FFE210 !important;
	top: 0px;
	left: 0px;
	z-index: 2;
	width: 70px;
	height: 25px;
	color: #fff;
	font-size: .8rem;
	font-weight: 700;
	text-align: center;
	line-height: 25px;
	transform-origin: 50% 50%;
	animation: animScale 3.5s ease-out;
}