@charset "utf-8";

main .inner {
	max-width: 76.5rem;
}
@media (max-width: 768px) {
	main .inner {
		max-width: 100%;
	}
}

/* mainContents */
.mainContents h2 {
	font-size: 2.5rem;
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #eb50a0;
	text-align: center;
	line-height: 1.52;
}
@media (max-width: 768px) {
	.mainContents h2 {
		font-size: 3.2rem;
	}
}

/* lead */
.mainContents .lead {
	padding-top: 5.5rem;
	border-top: 2px solid #eb50a0;
}
.mainContents .lead .txt {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.25;
	text-align: center;
}
.mainContents .lead .txt + .txt {
	margin-top: 2.5rem;
}
.mainContents .lead .link {
	margin-top: 2.5rem;
}
.mainContents .lead .link a {
	font-size: 2rem;
	font-weight: bold;
	color: #eb50a0;
	line-height: 1.38;
	text-decoration: underline;
}
.mainContents .lead .note {
	margin-top: 3.5rem;
	font-size: 1.3rem;
	line-height: 1.38;
	text-align: center;
}
.mainContents .lead .note li {
	display: inline-block;
	text-align: left;
}
@media (max-width: 768px) {
	.mainContents .lead .txt {
		font-size: 2.6rem;
		line-height: 1.66;
	}
	.mainContents .lead .link {
		margin-top: 3rem;
	}
	.mainContents .lead .link a {
		font-size: 2.6rem;
		line-height: 1.66;
	}
	.mainContents .lead .note {
		margin-top: 3.5rem;
		font-size: 2.6rem;
		line-height: 1.33;
	}
	/* .mainContents .lead .note li br.sp {
		display: inline-block;
	} */
}

/* code */
.mainContents .code {
	margin-top: 7.5rem;
	padding-top: 5.5rem;
	border-top: 2px solid #eb50a0;
}
.mainContents .code ul {
	margin-top: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mainContents .code ul li {
	width: 24.5rem;
}
.mainContents .code ul li a {
	display: block;
	box-shadow: 2px 2px 2px 0px rgba(235,80,160,1);
}
.mainContents .code .txt {
	margin-top: 3rem;
	font-size: 1.7rem;
	font-weight: bold;
	line-height: 1.88;
	text-align: center;
}
@media (max-width: 768px) {
	.mainContents .code ul {
		margin-top: 3.5rem;
		flex-direction: column;
		row-gap: 2rem;
	}
	.mainContents .code ul li {
		width: 35rem;
	}
	.mainContents .code .txt {
		margin-top: 4rem;
		font-size: 2.8rem;
		line-height: 1.53;
	}
}

/* check */
.mainContents .check {
	margin-top: 7.5rem;
	padding-top: 5.5rem;
	border-top: 2px solid #eb50a0;
}
.mainContents .check .txt {
	margin-top: 2rem;
	font-size: 1.7rem;
	font-weight: bold;
	line-height: 1.88;
	text-align: center;
}
.mainContents .check .checkType {
	margin-top: 3rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	row-gap: 5rem;
}
.mainContents .check .checkType > div {
	width: 50%;
}
.mainContents .check .checkType .pic {
	margin: 0 auto;
	width: 24.7rem;
}
.mainContents .check .checkType > div:nth-child(3) .pic {
	width: 28rem;
}
.mainContents .check .checkType > div:nth-child(3) .pic img {
	margin-left: 1.6rem;
}
.mainContents .check dl {
	margin-top: 2rem;
	text-align: center;
}
.mainContents .check dl dt {
	font-size: 1.7rem;
	font-weight: bold;
	color: #eb50a0;
}
.mainContents .check dl dt span {
	margin-right: 0.8rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 2.5rem;
	height: 2.5rem;
	background: #eb50a0;
	border-radius: 50%;
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #fff;
}
.mainContents .check dl dd {
	margin-top: 0.7rem;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.6;
}
.mainContents .check .link {
	margin-top: 1rem;
}
.mainContents .check .link a {
	font-size: 1.3rem;
	font-weight: bold;
	color: #eb50a0;
	line-height: 1.38;
	text-decoration: underline;
}
.mainContents .check .note {
	margin-top: 0.5rem;
	font-size: 1.3rem;
	font-weight: normal;
	line-height: 1.38;
	text-align: center;
}
.mainContents .check .note li {
	display: inline-block;
	text-align: left;
	padding-left: 1em;
	text-indent: -1em;
}
.mainContents .check .checkType + .note {
	margin-top: 7rem;
	text-align: left;
	padding-left: 1em;
	text-indent: -1em;
}
@media (max-width: 768px) {
	.mainContents .check .txt {
		margin-top: 3rem;
		font-size: 2.8rem;
		line-height: 1.53;
	}
	.mainContents .check .checkType {
		margin-top: 5.5rem;
		flex-direction: column;
		row-gap: 7rem;
	}
	.mainContents .check .checkType > div {
		width: 100%;
	}
	.mainContents .check .checkType .pic {
		width: 32.3rem;
	}
	.mainContents .check .checkType > div:nth-child(3) .pic {
		width: 36.7rem;
	}
	.mainContents .check .checkType > div:nth-child(3) .pic img {
		margin-left: 2rem;
	}
	.mainContents .check dl {
		margin-top: 3rem;
	}
	.mainContents .check dl dt {
		font-size: 2.7rem;
	}
	.mainContents .check dl dt span {
		margin-right: 1rem;
		width: 3.2rem;
		height: 3.2rem;
		font-size: 2.4rem;
	}
	.mainContents .check dl dd {
		margin-top: 1rem;
		font-size: 2.6rem;
		line-height: 1.66;
	}
	.mainContents .check .link {
		margin-top: 3rem;
	}
	.mainContents .check .link a {
		font-size: 2.6rem;
		line-height: 1.66;
	}
	.mainContents .check .note {
		margin-top: 1rem;
		font-size: 2.6rem;
		line-height: 1.3;
	}
	.mainContents .check .checkType + .note {
		margin-top: 9rem;
	}
}

/* zero */
.mainContents .zero {
	margin-top: 7.5rem;
	padding-top: 5.5rem;
	border-top: 2px solid #eb50a0;
}
.mainContents .zero .txt {
	margin-top: 2rem;
	font-size: 1.7rem;
	font-weight: bold;
	line-height: 1.88;
	text-align: center;
}
@media (max-width: 768px) {
	.mainContents .zero .txt {
		font-size: 2.6rem;
		line-height: 1.66;
	}
}

/* lost */
.mainContents .lost {
	margin-top: 7.5rem;
	padding-top: 5.5rem;
	border-top: 2px solid #eb50a0;
}
.mainContents .lost .txt {
	margin-top: 2rem;
	font-size: 1.7rem;
	font-weight: bold;
	line-height: 1.88;
	text-align: center;
}
@media (max-width: 768px) {
	.mainContents .lost .txt {
		font-size: 2.6rem;
		line-height: 1.66;
	}
}

/* together */
.mainContents .together {
	margin-top: 7.5rem;
	padding-top: 5.5rem;
	border-top: 2px solid #eb50a0;
}
.mainContents .together .txt {
	margin-top: 2rem;
	font-size: 1.7rem;
	font-weight: bold;
	line-height: 1.88;
	text-align: center;
}
.mainContents .together ul {
	margin-top: 2rem;
	font-size: 1.5rem;
	font-weight: bold;
	padding-left: 1.8em;
	text-indent: -1.8em;
}
.mainContents .together ul li + li {
	margin-top: 0.5rem;
}
.mainContents .together ul .num {
	margin-right: 0.8rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 2rem;
	height: 2rem;
	border: solid 1px #eb50a0;
	border-radius: 50%;
	font-size: 1.3rem;
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #eb50a0;
	text-indent: 0;
}
.mainContents .together ul .note {
	font-size: 1.3rem;
	font-weight: normal;
	line-height: 1.38;
}
@media (max-width: 768px) {
	.mainContents .together .txt {
		font-size: 2.6rem;
		line-height: 1.66;
	}
	.mainContents .together ul {
		margin-top: 4rem;
		font-size: 2.6rem;
		line-height: 1.66;
		/* font-size: 1.5rem;
		font-weight: bold; */
		padding-left: 1.3em;
		text-indent: -1.3em;
	}
	.mainContents .together ul li + li {
		margin-top: 0.3rem;
	}
	.mainContents .together ul .num {
		width: 2.7rem;
		height: 2.7rem;
		font-size: 1.9rem;
	}
	.mainContents .together ul .note {
		font-size: 2.6rem;
		line-height: 1.3;
	}
}

/* problem */
.mainContents .problem {
	margin-top: 7.5rem;
	padding-top: 5.5rem;
	border-top: 2px solid #eb50a0;
}
.mainContents .problem .txt {
	margin-top: 2rem;
	font-size: 1.7rem;
	font-weight: bold;
	line-height: 1.88;
	text-align: center;
}
.mainContents .problem .note {
	margin-top: 3.5rem;
	font-size: 1.3rem;
	line-height: 1.38;
	padding-left: 1.3em;
	text-indent: -1.3em;
}
@media (max-width: 768px) {
	.mainContents .problem .txt {
		font-size: 2.6rem;
		line-height: 1.66;
	}
	.mainContents .problem .note {
		font-size: 2.6rem;
		line-height: 1.3;
	}
}
