@charset "utf-8";
#article {
	width: 100%;
	height: auto;
	padding: 0 0 125px;
}
	.article__inner {
		width: 90%;
		max-width: 1000px;
		height: auto;
		margin: 0 auto;
	}
		.article__details {
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
			width: 100%;
			height: auto;
			margin-top: 80px;
		}
			.article__wrap {
				width: calc(100% - 315px);
				height: auto;
			}
				.article__ttl {
					width: 100%;
					height: auto;
					margin: 0 auto 20px;
					font-size: 32px;
					font-weight: 500;
					line-height: 1.4;
					letter-spacing: 0.08em;
				}
				.article__contents {
					width: 100%;
					height: auto;
					font-size: 16px;
					font-weight: 500;
					line-height: 2;
				}
			.article__other {
				width: 252px;
				height: auto;
			}
				.article__other__heading {
					width: 100%;
					height: auto;
					margin: 0 auto 35px;
					font-size: 24px;
					font-weight: 500;
					line-height: 1;
				}
				.article__other__list {
					display: flex;
					flex-direction: column;
					justify-content: flex-start;
					row-gap: 18px;
					width: 100%;
					height: auto;
				}
					.article__other__list__item {
						width: 100%;
						height: auto;
						font-size: 16px;
						font-weight: 500;
						line-height: calc(24 / 16);
					}
						.article__other__list__item a {
							color: var(--color--black);
							text-decoration: underline;
						}
					@media (any-hover: hover) {
						.article__other__list__item a:hover {
							text-decoration: none;
						}
					}
			.article__btn_area {
				width: 100%;
				height: auto;
				padding: 60px 0 0;
			}
				.article__btn_wrap {
					width: 162px;
					height: 42px;
					margin: 0 auto;
				}

/* PC ================================================== */
@media all and (min-width: 1101px){


}

@media all and (min-width: 769px){

}

@media all and (max-width: 1100px){

}

@media all and (max-width: 915px){

}

/* Tablet ================================================== */
@media all and (max-width: 768px){
#article {
	padding: 0 0 120px;
}
	.article__inner {
		width: calc((344 / 390) * 100%);
	}
		.article__details {
			flex-direction: column;
			justify-content: flex-start;
			align-items: center;
			flex-wrap: initial;
			margin-top: 40px;
		}
			.article__wrap {
				width: 100%;
				margin-bottom: 80px;
				order: 1;
			}
				.article__ttl {
					margin: 0 auto 16px;
					font-size: 24px;
				}
				.article__contents {
					font-size: 14px;
				}
			.article__other {
				width: 100%;
				order: 3;
			}
				.article__other__heading {
					margin: 0 auto 25px;
					font-size: 20px;
				}
				.article__other__list {
					row-gap: 12px;
				}
					.article__other__list__item {
						font-size: 14px;
					}
}

/* SP ================================================== */
@media all and (max-width: 575px){

}