.article {
	scroll-margin-top: 200px;
}

.article-text img {
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	object-fit: contain !important;

}
.article-top .title {
	max-width: 800px;
}
.article .container.article__container {
	display: grid;
	grid-template-columns: 1fr 330px;
	gap: 40px;
	padding-right: 0;
}

.article .container.article__container .article-img {
	height: auto !important;
}

.article .container.article__container .article-img img {
	display: block;
}

@media screen and (max-width: 1536px) {
	.article .container.article__container {
		gap: 28px;
	}
}

@media screen and (max-width: 1278px) {
	.article .container.article__container {
		gap: 20px;
		display: block;
	}
}
@media screen and (max-width: 767px) {
	.article .container.article__container {
	}
}
.article__main {
	display: flex;
	flex-direction: column;
	gap: 40px;
	grid-column: 1 / 2;
}
@media screen and (max-width: 1278px) {
	.article__main {
		gap: 4.16vw;
	}
}

@media screen and (max-width: 767px) {
	.article__main {
		gap: 8.8vw;
	}
}
.article__index {
	grid-column: 2 / 3;
	align-self: start;
	background-color: #F2F2F2;
	padding: 28px;
	border-radius: 20px;
}
.article__index-control {
	display: none;
}
@media screen and (max-width: 1278px) {
	.article__index-control {
		position: fixed;
		bottom: calc(9.37vw + 12px);
		right: calc(3.125vw - 12px);
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 98;
		padding: 12px;
		width: auto;
		height: auto;
		aspect-ratio: 1;
		border-radius: 50%;
		background-color: #F2F2F2;
	}
	.article__index-control-icon {
		flex-shrink: 0;
		width: 24px;
		height: auto;
		aspect-ratio: 1
	}
	.article__index-control-icon--close {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.article__index-control {
		position: fixed;
		bottom: calc(20vw + 12px);
		right: calc(5.56vw - 12px);
		display: flex;
	}
}
@media screen and (max-width: 1278px) {
	.article__index {
		display: none;
		position: fixed;
		top: calc(43.61vw * 0.19512195122 + 3.125vw * 2);
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #ffffff;
		height: calc(100% - 43.61vw * 0.19512195122 - 3.125vw * 4);
		padding: 24px;
		border-radius: 0;
		z-index: 98;
	}
	.article__index.is-selected {
		display: block;
		z-index: 105;
	}
	.article__index.is-selected+.article__index-control {
		bottom: unset;
		top: calc(43.61vw * 0.19512195122 + 3.125vw * 2);
		background-color: #ffffff;
		border-radius: 0;
		z-index: 105;
	}
	.article__index.is-selected+.article__index-control .article__index-control-icon--close {
		display: block;
	}
	.article__index.is-selected+.article__index-control .article__index-control-icon--open {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.article__index {
		position: fixed;
		top: calc(40vw * 0.19512195122 + 4.44vw * 2 - 2px);
		height: calc(100% - 40vw * 0.19512195122 - 4.44vw * 4 - 2px);
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #ffffff;
		padding: 24px;
		border-radius: 0;
	}
	.article__index.is-selected+.article__index-control {
		bottom: unset;
		top: calc(40vw * 0.19512195122 + 4.44vw * 2 - 2px);
	}
}
@media screen and (max-width: 370px) {
	.article__index {
		height: calc(100% - 40vw * 0.19512195122 - 4.44vw * 4.6 - 2px);
	}
}
.article__index-title {
	margin: 0 0 22px 0;
	font-size: 26px;
	font-weight: 600;
}
@media screen and (max-width: 1278px) {
	.article__index-title {
		margin-bottom: 16px;
		font-size: 20px;
	}
}
.article__index-list {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
}
@media screen and (max-width: 1278px) {
	.article__index-list-wrap {
		margin-right: -24px;
		padding-right: 24px;
		overflow: auto;
		max-height: calc(100% - 48px);
		height: 100%;
	}
}

.article__index-item:not(:last-child) {
	border-bottom: 1px solid #DDDDDD;
	padding-bottom: 8px;
}

.article__index-link {
	text-decoration: none;
	color: #2C3439;
}

@media (hover: hover) and (pointer: fine) {
	.article__index-link:hover {
		color: #009439;
		text-decoration: underline;
	}
}

body.index-is-selected {
	overflow: hidden;
	overscroll-behavior: none;
	height: 100dvh;
	max-height: 100dvh;
}
body.index-is-selected #bx-panel {
	display: none !important;
}

.article-read {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #80878F;
	font-size: 14px;
	font-weight: 400;
}

.article-read__icon {
	width: 16px;
	height: 16px;
}

@media screen and (max-width: 1278px) {
	.article-read {
		font-size: 12px;
	}
	.article-read__icon {
		width: 12px;
		height: 12px;
	}
}