@charset "UTF-8";

/*----------------------------------------
	- base
-----------------------------------------*/

/*=======================================
	base
=======================================*/
.wp-content img,
.wp-content figure,
.wp-content picture {
	display: inline-block;
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
.wp-content strong {
	font-weight: bold;
}
.wp-content a {
	text-decoration: none;
	opacity: 1;
	transition: all 0.3s ease;
}
@media (hover: hover) {
	.wp-content a:hover {
		opacity: 0.8;
	}
}

.wp-content * {
	max-width: 100%;
	word-break: break-all;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.wp-content ul,
.wp-content li {
	list-style: none;
}

/*=======================================
	各タグについてスタイル
=======================================*/
.wp-content h2 {
	font-size: 26px;
	font-weight: 500;
	line-height: 1.26;
	margin-bottom: 40px;
}
.wp-content h3 {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.26;
	margin-bottom: 35px;
	padding-left: 8px;
	position: relative;
}
.wp-content h3::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 3px;
	height: 100%;
	background-color: #252526;
}
.wp-content h4 {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.16;
	margin-bottom: 30px;
}

.wp-content p {
	font-size: 18px;
	line-height: 2.333;
	font-weight: 400;
	margin-bottom: 50px;
}

.wp-content .alignleft,
.wp-content .a_left {
	text-align: left;
	margin-bottom: 5px;
}
.wp-content .aligncenter,
.wp-content .a_center {
	text-align: center;
	margin-bottom: 5px;
}
.wp-content .alignright,
.wp-content .a_right {
	text-align: right;
	margin-bottom: 5px;
}

.wp-content a {
	width: fit-content;
	display: block;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 500;
	margin-bottom: 30px;
	padding-bottom: 4px;
	border-bottom: 1px solid #252526;
	opacity: 1;
	transition: all .3s ease;
}
@media (hover: hover) {
	.wp-content a:hover {
		opacity: .8;
	}
}

@media screen and (max-width: 1160px) {
	.wp-content h2 {
		font-size: calc((26 / 1160)* 100vw);
		margin-bottom: 35px;
	}
	.wp-content h3{
		font-size: calc((24 / 1160)* 100vw);
		margin-bottom: 30px;
	}
	.wp-content h4{
		font-size: calc((22 / 1160)* 100vw);
		margin-bottom: 25px;
	}
	.wp-content p {
		font-size: calc((18 / 1160)* 100vw);
		margin-bottom: 40px;
	}
	.wp-content a {
		font-size: calc((20 / 1160)* 100vw);
	}
}

@media screen and (max-width: 768px) {
	.wp-content h2 {
		font-size: 20px;
		margin-bottom: 30px;
		line-height: 1.8;
	}
	.wp-content h3 {
		font-size: 18px;
		margin-bottom: 25px;
		line-height: 1.8;
	}
	.wp-content h4 {
		font-size: 18px;
		margin-bottom: 25px;
		line-height: 1.8;
	}
	.wp-content h3::before {
		width: 1px;
	}
	.wp-content p {
		font-size: 16px;
		line-height: 2.25;
		margin-bottom: 32px;
	}
	.wp-content a {
		font-size: 18px;
	}
}
