@charset "UTF-8";

.edit-area.article {
	padding-bottom: 14rem;

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

	.title-box {
		margin-bottom: 7rem;
		padding-bottom: 7rem;
		border-bottom: 1px solid #ACACAC;
		display: flex;
		flex-direction: column;
		gap: 3rem;

		.set-time {
			font-size: 2.4rem;
			font-weight: bold;
			color: var(--primary-color);
		}

		.article-title {
			font-size: 3.2rem;
			font-weight: bold;

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

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

			& li {
				font-size: 1.8rem;
				font-weight: bold;
				color: #fff;
				background-color: var(--primary-color);
				line-height: 1;
				padding: 7px 12px;
				border-radius: 30px;
				letter-spacing: 1px;

				@media screen and (max-width: 767px) {
				  font-size: 1.4rem;
				  line-height: 1.4;
				  padding: 8px 10px;
				  text-align: center;
				}

			}
		}

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

.content-box {
	font-weight: 500;
	padding-bottom: 8rem;
	line-height: 1.6;

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

/* edit css */
/* h2 */
.article-area {
	& h2 {
		position: relative;
		margin-bottom: 2.6rem;
		padding-left: 1.7rem;
		font-weight: bold;
		font-size: 2.2rem;
		letter-spacing: 0.1em;
		line-height: 1.5;
		color: #000;
		@media screen and (max-width: 767px) {
			margin-bottom: 1.6rem;
			padding-left: 1.2rem;
			font-size: 1.7rem;
			letter-spacing: 0.05em;
		}

		&:after {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			display: block;
			width: 8px;
			height: 100%;
			background: var(--primary-color);
		}
		@media screen and (max-width: 767px) {
			&:after {
				width: 0.3rem;
			}
		}
	}

	/* h3 */
	& h3 {
		color: var(--primary-color);
		margin-bottom: 4rem;
		font-size: 1.8rem;
		font-weight: bold;
		border: none;
		padding-left: 0;

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

	}
	/* 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: var(--primary-color);
	}
	/* h6 */
	& h6 {
		margin-bottom: 1rem;
		font-weight: bold;
		@media screen and (max-width: 767px) {
			margin-bottom: 0.5rem;
		}
	}
	/* p */
	& p {
		margin-bottom: 3.7rem;
		font-weight: 500;
		letter-spacing: 0.05em;
		line-height: 2;
		@media screen and (max-width: 767px) {
			margin-bottom: 1.7rem;
			line-height: 160%;
		}
	}
	/* 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: var(--primary-color);
			}
		}
	}
	/* 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: var(--primary-color);
				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%;
		}
	}

	/* link */
	& a {
		text-decoration: underline;
		color: var(--primary-color);
		position: relative;

                                &[target="_blank"]::after {
                                    position: absolute;
                                    content: '';
                                    top: 5px;
                                    right: -3rem;
                                    width: 2.5rem;
                                    height: 2.5rem;
                                    background-size: contain;
                                    background-repeat: no-repeat;
                                    background-image: url(../../common/img/icon_external_arrow.svg);

                                    @media screen and (max-width: 767px) {
                                      width: 2rem;
                                      height: 2rem;
                                      top: 40%;
                                      right: -2rem;
                                    }

                                }
	}
}


.common-btn-box {
	display: flex;
	justify-content: center;
}