@charset "UTF-8";

.edit-area.article {
	margin-top: 10.3rem;
	@media screen and (width < 767px) {
		margin-top: 5rem;
	}
}

.common-banner-article {
    background: url(../../img/page/article/article-bk.jpg) no-repeat;
    background-size: cover;
    background-position: center;
	position: relative;
}

.common-banner-article::before {
    content: "";
    position: absolute;
    width: 73.2rem;
    height: 100%;
    background: linear-gradient(to right, #004cff 0%, rgb(2 93 253 / 88%) 17.73%, rgba(52, 115, 201, 0) 100%);
    opacity: 0.5;
    top: 0;
    left: 0;
}

@media screen and (max-width: 767px) {
	.common-banner-article::before {
		width: 50%;
	}
}

/* edit css */
/* h2 */
.article-area {
	& h2 {
		position: relative;
		font-family: "Noto Sans JP";
        font-weight: 500;
        font-size: 24px;
        letter-spacing: 0.06em;
        line-height: 3.8rem;
        text-align: left;
        color: rgb(37, 92, 166);
		margin-bottom: 3.9rem;
		@media screen and (width < 767px) {
			margin-bottom: 1rem;
			font-size: 1.7rem;
			letter-spacing: 0.05em;
			line-height: 2.5rem;
		}
	}

	/* h3 */
	& h3 {
		position: relative;
		margin-bottom: 3.8rem;
		font-family: "Noto Sans JP";
		font-weight: 500;
		font-size: 2rem;
		letter-spacing: 0.06em;
		line-height: 3.6rem;
		text-align: left;
		color: #255ca6;
		@media screen and (width < 767px) {
			margin-bottom: 1rem;
			font-size: 1.6rem;
			line-height: 2.4rem;
		}
	}
	/* h4 */
	& h4 {
		margin-bottom: 1rem;
		font-size: 1.8rem;
		letter-spacing: 0.1em;
		line-height: 160%;
		@media screen and (width < 767px) {
			margin-bottom: 0.5rem;
		}
	}
	/* h5 */
	& h5 {
		position: relative;
		margin-bottom: 1rem;
		padding-left: 1.8rem;
		font-weight: bold;
		@media screen and (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 (width < 767px) {
			margin-bottom: 0.5rem;
		}
	}
	/* p */
	& p {
		margin-bottom: 3.8rem;
		font-family: "Noto Sans JP";
		font-weight: 500;
		font-size: 1.6rem;
		letter-spacing: 0.06em;
		line-height: 3rem;
		text-align: left;
		color: #255ca6;
		@media screen and (width < 767px) {
			margin-bottom: 1.5rem;
			line-height: 2.2rem;
		}
	}
	/* ul */
	& ul {
		margin-bottom: 2rem;
		& li {
			position: relative;
			padding-left: 1rem;
			font-family: "Noto Sans JP";
			font-weight: 500;
			font-size: 1.6rem;
			letter-spacing: 0.06em;
			line-height: 3rem;
			text-align: left;
			color: #255ca6;
			&:after {
				content: "";
				position: absolute;
				left: 0;
				top: 1.3rem;
				display: block;
				width: 0.6rem;
				height: 0.6rem;
				border-radius: 0.3rem;
				background: #255ca6;
			}
		}
	}
	/* ol */
	& ol {
		margin-bottom: 2rem;
		counter-reset: number 0;
		& li {
			position: relative;
			padding-left: 2rem;
			font-family: "Noto Sans JP";
			font-weight: 500;
			font-size: 1.6rem;
			letter-spacing: 0.06em;
			line-height: 3rem;
			text-align: left;
			color: #255ca6;

			counter-increment: number 1;
			&:after {
				content: counter(number) ".";
				position: absolute;
				left: 0;
				top: 0.8rem;
				display: block;
				color: #255CA6;
				font-size: 1.4rem;
				line-height: 100%;
			}
		}
	}
	& a {
		font-family: "Noto Sans JP";
		font-weight: 500;
		text-decoration: underline;
		font-size: 1.6rem;
		letter-spacing: 0.06em;
		line-height: 3rem;
		text-align: left;
		color: #255ca6;
		margin-bottom: 3.3rem;
		@media screen and (max-width: 767px) {
			margin-bottom: 0;
		}
	}
	a[target=_blank] {
		position: relative;
	}
	a[target=_blank]:after {
		position: absolute;
		content: "";
		background: url(../../img/page/article/icon-go-to.png) no-repeat;
		width: 1.5rem;
		height: 1.5rem;
		top: 0;
		bottom: 0;
		right: -2rem;
        margin: auto;
        background-size: 100%;
	}
	/* img float */
	& img.alignleft {
		float: left;
		margin: 0.8rem 1rem 1rem 0;
		@media screen and (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 (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 (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%;
		}
	}
}


h1.article-title {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 2.8rem;
    letter-spacing: 0.06em;
    line-height: 2.8rem;
    text-align: left;
    color: #255ca6;
    margin-bottom: 5.8rem;
	@media screen and (max-width: 767px) {
		margin-bottom: 3.5rem;
		font-size: 2.2rem;
		line-height: 2.8rem;
	}
}

.category-set {
    display: flex;
    gap: 2.4rem;
    align-items: center;
    margin-bottom: 4.8rem;
	@media screen and (max-width: 767px) {
		margin-bottom: 2rem;
	}
}

ul.set-list {
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    text-align: center;
    color: #fff;
    background-color: #255CA6;
    border-radius: 3rem;
    padding: 0.8rem 2rem;
}

time.set-time {
    font-family: Jost;
    font-weight: normal;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    text-align: left;
    color: #255ca6;
}

.wawworld {
	margin: 7rem auto 8.7rem;
	width: 14.6rem;
	height: 14.6rem;
	border-radius: 50%;
	background-color: #3278D6;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	@media screen and (max-width: 767px) {
		width: 10.6rem;
   		height: 10.6rem;
		margin: 4rem auto 5rem;
	}
}

.arrow-container {
	background: url(../../img/home/ichiran-arrow.svg) no-repeat;
	width: 3.5rem;
	height: 0.7rem;
	display: block;
	filter: brightness(999);
	margin-top: 1rem;
	transition: 0.4s;
}

@media screen and (max-width: 1620px) {
	.arrow-container {
		width: 4.5rem;
	}
}

.wawworld:hover .arrow-container {
	transform: translateX(1rem);
}

.text-ichiran {
	font-family: "Noto Sans JP";
	font-weight: bold;
	font-size: 1.6rem;
	letter-spacing: 0.06em;
	/* line-height: 25px; */
	text-align: center;
	color: #fff;
}

a.cover {
    display: flex;
    flex-direction: column;
    align-items: center;
}