@charset "UTF-8";

html {
	background: #E3EFFF;
}

main {
	margin-top: 18.9rem;

	@media screen and (max-width: 767px) {
		margin-top: 10rem;
	}
}

.article-contents {
	background-color: #FFFFFF;
	padding: 9rem 19.1rem 9rem 19.4rem;

	@media screen and (max-width: 767px) {
		padding: 4rem 2rem;
	}
}

.category-set {
	display: flex;
	gap: 1.9rem;
	margin-bottom: 2rem;
	align-items: center;

	.set-time {
		font-family: 'Outfit';
		font-style: normal;
		font-weight: 500;
		font-size: 1.8rem;
		line-height: 1.8rem;
		letter-spacing: 0.05em;
		color: #000000;

		@media screen and (max-width: 767px) {
			font-size: 1.4rem;
			line-height: 1.4rem;
		}
	}

	.set-list {
		display: flex;
		gap: 2rem;

		& li {
			padding: 0.5rem 1rem;
			font-family: 'Noto Sans JP';
			font-style: normal;
			font-weight: 500;
			font-size: 1.8rem;
			line-height: auto;
			letter-spacing: 0.08em;
			color: #FFFFFF;
			border-radius: 0.3rem;
			margin-right: 3rem;
			background: #1863C5;

			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
			}
		}
	}
}

.article-title {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 700;
	font-size: 3.4rem;
	line-height: 4rem;
	letter-spacing: 0.1em;
	color: #000000;
	padding-bottom: 3rem;
	border-bottom: solid 0.1rem #ACACAC;
	margin-bottom: 3rem;

	@media screen and (max-width: 767px) {
		font-size: 2rem;
		line-height: 3rem;
		padding-bottom: 2rem;
		margin-bottom: 2rem;
	}
}

.edit-area {
	&.article {
		@media screen and (max-width: 767px) {}
	}
}

/* edit css */
/* h2 */
.article-area {
	& h2 {
		position: relative;
		font-family: 'Noto Sans JP';
		font-style: normal;
		font-weight: 700;
		font-size: 2.8rem;
		line-height: 2.8rem;
		letter-spacing: 0.08em;
		color: #000000;
		padding-left: 3.3rem;
		margin-bottom: 3rem;

		@media screen and (max-width: 767px) {
			margin-bottom: 1rem;
			padding-left: 1.2rem;
			font-size: 1.7rem;
			letter-spacing: 0.05em;
		}

		&:after {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			display: block;
			width: 2.3rem;
			height: 2.3rem;
			background: #1863C5;
			top: 0;
			bottom: 0;
			margin: auto;
		}

		@media screen and (max-width: 767px) {
			&:after {
				width: 0.3rem;
			}
		}
	}

	/* h3 */
	& h3 {
		font-family: 'Noto Sans JP';
		font-style: normal;
		font-weight: 700;
		font-size: 2rem;
		line-height: 2.8rem;
		letter-spacing: 0.08em;
		color: #000000;
		margin-bottom: 1.6rem;

		@media screen and (max-width: 767px) {
			margin-bottom: 1rem;
			padding: 0 0 0.5rem;
			font-size: 1.6rem;
			line-height: 160%;
		}
	}

	/* h4 */
	& h4 {
		margin-bottom: 1rem;
		font-size: 1.8rem;
		letter-spacing: 0.1em;
		line-height: 160%;

		@media screen and (max-width: 767px) {
			margin-bottom: 0.5rem;
		}
	}

	/* h5 */
	& h5 {
		position: relative;
		margin-bottom: 1rem;
		padding-left: 1.8rem;
		font-weight: bold;

		@media screen and (max-width: 767px) {
			margin-bottom: 0.5rem;
		}
	}

	/* h6 */
	& h6 {
		margin-bottom: 1rem;
		font-weight: bold;

		@media screen and (max-width: 767px) {
			margin-bottom: 0.5rem;
		}
	}

	/* p */
	& p {
		margin-bottom: 3rem;

		font-family: 'Noto Sans JP';
		font-style: normal;
		font-weight: 400;
		font-size: 1.8rem;
		line-height: 3.2rem;
		letter-spacing: 0.08em;
		color: #000000;
		margin-bottom: 2rem;

		@media screen and (max-width: 767px) {
			margin-bottom: 1.5rem;
			line-height: 160%;
			font-size: 1.4rem;
		}
		
	}

	& a,
	& a span {
		color: #003EC3;
		text-decoration: underline;
		text-underline-position: under;

		&[target="_blank"] {
			position: relative;
			padding-right: 3rem;

			&:before {
				content: "";
				position: absolute;
				background: url(../../common/img/go-to-article.svg) no-repeat;
				background-size: 100%;
				right: 2rem;
				bottom: 0;
				top: 0;
				margin: auto;
				display: block;
				width: 1.4rem;
				height: 1.4rem;
			}
		}

		&:hover {
			text-decoration: none;
		}
	}

	/* ul */
	& ul {
		margin-bottom: 2rem;

		& li {
			position: relative;
			padding-left: 1rem;
			font-weight: bold;
			line-height: 2;

			&:after {
				content: "";
				position: absolute;
				left: 0;
				top: 1.3rem;
				display: block;
				width: 0.6rem;
				height: 0.6rem;
				border-radius: 0.3rem;
				background: #003EC3;
			}
		}
	}

	/* ol */
	& ol {
		margin-bottom: 2rem;
		counter-reset: number 0;

		& li {
			position: relative;
			padding-left: 2rem;
			line-height: 2;
			font-weight: bold;
			counter-increment: number 1;

			&:after {
				content: counter(number) ".";
				position: absolute;
				left: 0;
				top: 0.8rem;
				display: block;
				color: #003EC3;
				font-size: 1.4rem;
				line-height: 100%;
			}
		}
	}

	/* img float */
	& img.alignleft {
		float: left;
		margin: 0.8rem 1rem 1rem 0;

		@media screen and (max-width: 767px) {
			float: none;
			display: block;
			margin: 0 auto 1rem;
		}
	}

	& img.aligncenter {
		display: block;
		margin: 0 auto 2rem;
	}

	& img.alignright {
		float: right;
		margin: 0.8rem 0 1rem 1rem;
	}

	@media screen and (max-width: 767px) {
		& img.alignright {
			float: none;
			display: block;
			margin: 0 auto 1rem;
		}
	}

	& img {
		vertical-align: top;
		max-width: 100%;
		height: auto;
	}

	/* blockquote */
	& blockquote {
		position: relative;
		margin: 0 0 3rem 3rem;
		padding-left: 6rem;
		font-size: 1.4rem;
		line-height: 180%;

		@media screen and (max-width: 767px) {
			margin: 0 0 1.5rem 0;
			padding-left: 4rem;
			line-height: 160%;
		}

		&:after,
		&:before {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			display: block;
		}

		&:after {
			top: 0.5rem;
			width: 0.2rem;
			height: 5rem;
			background: #ccc;
		}

		&:before {
			content: "“";
			position: absolute;
			left: 1rem;
			top: -0.5rem;
			color: #ccc;
			font-size: 6rem;
			line-height: 100%;
		}
	}
}