@charset "UTF-8";
#breadcrumbs,
#contents {
	background-color: #f8f8f8;
}

#contents {
	padding-bottom: 11rem;
	@media screen and (max-width: 767px) {
		padding-bottom: 6rem;
	}
}

.edit-area.article {
	padding-top: 9rem;
	@media screen and (max-width: 767px) {
		padding-top: 6rem;
	}
	.category-set {
		margin-bottom: 4rem;
		@media screen and (max-width: 767px) {
			margin-bottom: 2rem;
		}
		.set-list {
			& li {
				/* height: 3rem;
				border-radius: 0.4rem;
				border: 1px solid #646464;
				display: inline-flex;
				align-items: center;
				font-family: var(--noto);
				font-style: normal;
				font-weight: 400;
				font-size: 1.4rem;
				line-height: 190%;
				letter-spacing: 0.02em;
				color: #646464;
				padding: 0 1.3rem;
				@media screen and (max-width: 767px) {
					font-size: 1.2rem;
					line-height: 165%;
				} */
				font-family: var(--noto);
				font-style: normal;
				font-weight: 500;
				font-size: 1.4rem;
				line-height: 1;
				letter-spacing: 0.05em;
				color: #ffffff;
				background-color: #929292;
				padding: 1rem 1.8rem;
				box-sizing: border-box;
				border-radius: 0.2rem;
				display: inline-block;
				@media screen and (max-width: 767px) {
					padding: 0.6rem 1.2rem;
				}
			}
		}
	}
	.article-title {
		margin-bottom: 2.8rem;
		font-family: var(--noto);
		font-style: normal;
		font-weight: 700;
		font-size: 3.4rem;
		line-height: 1.56;
		letter-spacing: 0.08em;
		color: #000000;
		@media screen and (max-width: 767px) {
			margin-bottom: 2rem;
			font-size: 2.4rem;
		}
	}
	.set-time {
		font-family: var(--noto);
		font-style: normal;
		font-weight: 400;
		font-size: 1.6rem;
		line-height: 190%;
		letter-spacing: 0.02em;
		color: #838383;
		@media screen and (max-width: 767px) {
			font-size: 1.4rem;
			line-height: 165%;
		}
	}
}

/* edit css */
/* h2 */
.article-area {
	padding-top: 5.8rem;

	@media screen and (max-width: 767px) {
		padding-top: 4rem;
	}
	& h2 {
		position: relative;
		font-family: var(--noto);
		font-style: normal;
		font-weight: 700;
		font-size: 3rem;
		line-height: 227%;
		letter-spacing: 0.08em;
		color: #000000;
		margin-bottom: 5.9rem;
		@media screen and (max-width: 767px) {
			margin-bottom: 3rem;
			font-size: 2rem;
		}
	}

	/* h3 */
	& h3 {
		position: relative;
		padding-bottom: 3.5rem;
		border-bottom: 1px solid #a2a2a2;
		margin-bottom: 4.1rem;
		font-family: var(--noto);
		font-style: normal;
		font-weight: 700;
		font-size: 2.6rem;
		line-height: 262%;
		letter-spacing: 0.08em;
		color: #e50012;
		@media screen and (max-width: 767px) {
			padding-bottom: 2.4rem;
			margin-bottom: 3rem;
			font-size: 1.8rem;
			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;
		}
	}
	& h5:after {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 1.4rem;
		height: 1.4rem;
		background: #d20000;
	}
	/* h6 */
	& h6 {
		margin-bottom: 1rem;
		font-weight: bold;
		@media screen and (max-width: 767px) {
			margin-bottom: 0.5rem;
		}
	}
	/* p */
	& p {
		margin-bottom: 2rem;
		font-family: var(--noto);
		font-style: normal;
		font-weight: 400;
		font-size: 1.8rem;
		line-height: 190%;
		letter-spacing: 0.02em;
		color: #000000;
		@media screen and (max-width: 767px) {
			font-size: 1.6rem;
			margin-bottom: 1.5rem;
			line-height: 160%;
		}
	}
	/* ul */
	& ul {
		margin-bottom: 2rem;
		& li {
			position: relative;
			padding-left: 1rem;
			font-weight: 400;
			line-height: 2;
			font-size: 1.8rem;
			@media screen and (max-width: 767px) {
				font-size: 1.6rem;
			}
			&:after {
				content: "";
				position: absolute;
				left: 0;
				top: 1.3rem;
				display: block;
				width: 0.5rem;
				height: 0.5rem;
				border-radius: 0.5rem;
				background: #000;
			}
		}
	}
	/* ol */
	& ol {
		margin-bottom: 2rem;
		counter-reset: number 0;
		& li {
			position: relative;
			padding-left: 2rem;
			line-height: 2;
			font-weight: 400;
			counter-increment: number 1;
			font-size: 1.8rem;
			@media screen and (max-width: 767px) {
				font-size: 1.6rem;
			}
			&:after {
				content: counter(number) ".";
				position: absolute;
				left: 0;
				top: 0.8rem;
				display: block;
				color: #000;
				font-size: 1.6rem;
				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;
		padding: 4rem 0;
		@media screen and (max-width:767px){
			padding: 1rem 0;
		}
	}
	/* 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%;
		}
	}
	& a {
		font-family: var(--noto);
		font-style: normal;
		font-weight: 400;
		font-size: 1.8rem;
		line-height: 190%;
		letter-spacing: 0.02em;
		color: #e50012;
		@media screen and (max-width: 767px) {
			font-size: 1.6rem;
		}
	}
	& a[target="_blank"] {
		padding-right: 2.8rem;
		position: relative;
		&::after {
			content: "";
			position: absolute;
			right: 0;
			top: 0.6rem;
			width: 1.8rem;
			height: 1.335rem;
			background: url("../../img/archive/news/external.png") no-repeat center / contain;
		}
	}
}

.black-btn-container {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 4rem;

	@media screen and (max-width: 767px) {
	}
	.black-btn {
		width: 30rem;
		height: 7rem;
		background-color: #000000;
		border-radius: 0.6rem;
		padding-left: 3rem;
		display: flex;
		align-items: center;
		position: relative;
		transition: all 0.3s ease-in;
		@media screen and (max-width: 767px) {
			width: 22rem;
			height: 5.133rem;
			padding-left: 2.2rem;
		}
		& span {
			font-family: var(--noto);
			font-style: normal;
			font-weight: 500;
			font-size: 2rem;
			line-height: 1;
			letter-spacing: 0.08em;
			color: #ffffff;
			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
			}
		}
		& img {
			width: 0.9rem;
			height: 1.4rem;
			position: absolute;
			right: 1.8rem;
			top: 50%;
			transform: translateY(-50%);
			@media screen and (max-width: 767px) {
				width: 0.7rem;
				height: 1.2rem;
				right: 1.4rem;
			}
		}
	}
	.black-btn:hover {
		border: #000 1px solid;
		background-color: #fff;
		& span {
			color: #000;
		}
		& img {
			filter: brightness(0) saturate(100%) invert(0%) sepia(94%) saturate(23%) hue-rotate(344deg) brightness(102%) contrast(105%);
		}
	}
}
