/* WordPress管理バー非表示 */
html[class] {
	margin-top: 0 !important;
}

#wpadminbar {
	display: none !important;
}

p {
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
}

[class*="prow"]>*,
[class*="mrow"]>* {
	text-align: center;
}

[class*="prow"],
[class*="mrow"] {
	justify-content: center !important;
}

article>div>section {
	text-align: center;
}

.center {
	text-align: center;
}

.plans {
	flex-wrap: wrap;
}

.plans li {
	flex: 1 1 50%;
}

.blog ul {
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}

.blog li {
	height: 200px;
	box-sizing: border-box;
}

.blog li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 15px;
	box-sizing: border-box;
	color: inherit;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.blog li a:hover {
	color: inherit;
	text-decoration: none;
	background: rgba(0, 0, 0, 0.3);
}

.blog li .blog-tags {
	line-height: 1.1;
}

.blog li .blog-tags span {
	color: #ddd;
	font-size: 65%;
	display: inline-block;
	margin-right: 1em;
}

.blog li .blog-tags span::before {
	content: "#";
}

.detail {
	color: #000;
	margin-bottom: 60px;
}

.detail h2 {
	color: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: stretch;
	text-shadow: 3px 4px 7px rgba(107, 107, 107, 0.4);
}

.detail-content {
	font-size: 200%;
	margin: 30px;
	text-align: center;
}

.insta-detail .detail-content {
	font-size: unset;
	margin: unset;
}

.detail-content .small {
	font-size: 60%;
	text-align: left;
}

.detail-content .wp-block-gallery,
.detail-content .wp-block-image img {
	display: none;
}

.detail-tags {
	text-align: center;
	font-size: 150%;
}

.detail-tags span {
	display: inline-block;
	background: rgba(119, 119, 119, 0.3);
	padding: 5px 25px 5px 15px;
	border-radius: 999px;
	margin: 0 10px 10px;
	color: #fff;
	text-align: left;
}


/*-----------------------------------------------------------------*/
/*PC*/
/*-----------------------------------------------------------------*/
@media screen and (min-width: 501px) {
	.blog li {
		flex: 0 0 20%;
	}

	.detail h2 {
		height: 750px;
		box-sizing: border-box;
		padding: 50px;
		font-size: 400%;
	}
}


/*-----------------------------------------------------------------*/
/*MOBILE*/
/*-----------------------------------------------------------------*/
@media screen and (max-width: 500px) {
	#service+.row {
		flex-wrap: wrap;
	}

	#service+.row>* {
		flex: 0 0 50%;
	}

	.blog li {
		flex: 0 0 50%;
	}

	.detail h2 {
		height: 300px;
		padding: 20px;
		font-size: 200%;
	}

}