@charset "utf-8";

.ContentWrap{
	margin: 60px 0 0;
}
.ContentWrap p{
	margin-bottom: 20px;
}
/*画像テキスト系*/
.ContentBox {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.ContentBox .ContentText {
	width: 70%;
}
.ContentBox .ContentPict {
	width: 30%;
	margin-left: 3%;
}
@media screen and (max-width: 599px) {
	.ContentBox {
	  display: block;
	}
	.ContentBox .ContentText {
		width: 100%;
	}
	.ContentBox .ContentPict {
		width: 100%;
		margin-left: 0;
		margin-bottom: 20px;
	}
}
.returnLink{
	position: relative;
    padding-left: 14px;
	margin-bottom: 40px;
}
.returnLink::before,
.returnLink::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 12px;
	height: 2px;
	border-radius: 9999px;
	background-color: #000000;
	transform-origin: 1px 50%;
}
.returnLink::before {
	transform: rotate(45deg);
}
.returnLink::after {
	transform: rotate(-45deg);
}
.returnLink a:hover ,a.returnLink:hover {
	text-decoration: underline;
}

/*調整*/
.taRight{
	text-align: right;
}
.W10{
	width: 10% !important;
}
.W20{
	width: 20% !important;
}
.W30{
	width: 30% !important;
}
.W40{
	width: 40% !important;
}
.W50{
	width: 50% !important;
}
.W60{
	width: 60% !important;
}
.W70{
	width: 70% !important;
}
.W80{
	width: 80% !important;
}
.W90{
	width: 90% !important;
}
.W100{
	width: 100% !important;
}