@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
/* Reset */
*,
*:before,
*:after {
    box-sizing: border-box;
}
html,
body {
    width: 100%;
}
body {
    line-height: 1.4;
    color: #404040;
    font-weight: 400;
    font-size: 16px;
    font-family: "Noto Sans KR", sans-serif;
    word-break: keep-all;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
p,
button,
iframe,
th,
td {
    margin: 0;
    padding: 0;
	font-family: "Noto Sans KR", sans-serif;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
    display: block;
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
dt,
th {
    font-weight: 400;
}
img,
fieldset,
iframe,
button {
    border: 0 none;
}
li {
    list-style: none;
}
button {
    border: 0 none;
    outline: none;
    cursor: pointer;
    background-color: transparent;
    font-size: 16px;
    font-weight: 500;
    color: inherit;
    line-height: 1;
    font-family: "Noto Sans KR", sans-serif;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    border-collapse: collapse;
}
legend,
caption,
hr {
    display: none;
}
select,
input,
textarea {
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: none;
    font-size: 14px;
    font-weight: 400;
    color: inherit;
    line-height: inherit;
    outline: none;
    resize: none;
    font-family: "Noto Sans KR", sans-serif;
}
select,
input {
    vertical-align: middle;
    &::placeholder{
        color: #aaa;
    }
}
em,
cite,
address {
    font-style: normal;
}
strong {
    font-weight: 500;
}
img {
    border: 0;
    vertical-align: middle;
}
a {
    color: inherit;
    text-decoration: none;
    outline-offset: -1px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
select,
mark {
    background-color: transparent;
    outline: none;
}
label {
    vertical-align: middle;
}
@media (max-width: 768px) {
	body {
		font-size: 12px;
	}
}

/* layout */
.header {
	z-index: 15;
	position: sticky;
	top: 0;
	display: flex;
	height: 126px;
	border-bottom: 1px solid #d8d8d8;
	background-color: #fff;
	line-height: 1;
	--layer-height: 0;
}
.header:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: var(--layer-height);
	background-color: rgba(35, 31, 32, 0.85);
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}
.header.open:before {
	opacity: 1;
}
.header-inner {
	display: flex;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}
.header-logo {
	flex: none;
	width: 360px;
	height: 100%;
}
.header-logo a {
	display: block;
	height: 100%;
	background: url('../images/img_logo.png') no-repeat center center;
	font-size: 0;
}
.header-util {
	flex: none;
	z-index: 11;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 20px;
	width: 360px;
	height: 100%;
	font-weight: 500;
	color: #000;
}
.header-util__item {
	position: relative;
	padding-bottom: 23px;
}
.header-util__item + .header-util__item:before {
	content: '';
	position: absolute;
	top: 2px;
	bottom: 23px;
	left: -10px;
	display: block;
	width: 1px;
	background-color: #000;
}
.family-layer {
	position: absolute;
	top: 100%;
	left: 50%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 12px;
	margin-top: -10px;
	border-radius: 8px;
	background-color: rgba(35, 31, 32, 0.85);
	box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.06);
	white-space: nowrap;
	transform: translateX(-50%);
	color: #898989;
	font-size: 12px;
	opacity: 0;
	visibility: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-in-out;
}
.family-layer dt {
	padding-bottom: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}
.family-layer a {
	display: block;
	padding: 4px 0;
}
.header-gnb {
	flex: 1;
	display: flex;
	z-index: 10;
	position: relative;
	height: 100%;
	font-weight: 500;
	color: #000;
}
.header-gnb__item > a {
	display: flex;
	align-items: flex-end;
	height: 100%;
	padding: 0 50px 20px 0;
}
.header-gnb__item.selected > a,
.header-gnb__item.overed > a {
	color: #009bc0;
}
.header-gnb__item:last-child > a {
	padding-right: 0;
}
.header-gnb__item-sub {
	position: absolute;
	left: 0;
	top: 100%;
	display: none;
	gap: 10px;
	padding-top: 22px;
	padding-bottom: 60px;
	font-size: 14px;
	color: #898989;
	font-weight: 400;
}
.header-gnb__item-sub.display--show {
	display: flex;
}
.header-gnb__item-sub > strong {
	flex: none;
	width: 90px;
	padding-top: 3px;
	color: #43a0b6;
	font-size: 16px;
}
.header-gnb__item-sub dl {
	min-width: 130px;
}
.header-gnb__item-sub dt {
	display: flex;
	align-items: center;
	height: 24px;
	border-bottom: 2px solid #575354;
	font-weight: 500;
}
.header-gnb__item-sub dl.selected dt a {
	color: #fff;
}
.header-gnb__item-sub dd {
	padding-top: 10px;
	font-size: 12px;
}
.header-gnb__item-sub dd a {
	display: flex;
	align-items: center;
	height: 22px;
}
.header-gnb__item-sub dd a.selected {
	color: #fff;
}
.header-menu {
	flex: none;
	display: none;
	width: 74px;
	height: 100%;	
}
.header-menu a {
	display: block;
	height: 100%;
	background: url('../images/btn_menu-mo.png') no-repeat center center;
	background-size: 22px 20px;
	font-size: 0;
}
.header.open-mo .header-menu a {
	background: url('../images/btn_menu-close-mo.png') no-repeat center center;
	background-size: 21px 21px;
}
@media (hover: hover) {
	.header-gnb__item:hover > a {
		color: #009bc0;		
	}
	.header-gnb__item-sub dl:hover dt a {
		color: #fff;
	}
	.header-gnb__item-sub dd a:hover {
		color: #fff;
	}
	.family-layer a:hover {
		color: #fff;
	}
	.header-util__item:hover .family-layer {
		opacity: 1;
		visibility: 1;
		pointer-events: auto;
	}
}
@media (max-width: 1300px) {
	.header-logo {
		width: 240px;
	}
	.header-util {
		width: 210px;
	}
}
@media (max-width: 960px) {
	.header-logo {
		width: 160px;
	}
	.header-logo a {
		background-size: auto 32px;
	}
	.header-util {
		width: 180px;
		font-size: 14px;
	}
	.header-gnb__item > a {
		padding-right: 30px;
	}
}
@media (max-width: 768px) {
	.header {
		height: 76px;
		border-bottom: 1px solid #dedede;
		background-color: #fff;
	}
	.header:before {
		display: none;
	}
	.header-inner {
		justify-content: space-between;
	}
	.header-logo {
		width: 173px;
	}
	.header-util {
		position: absolute;
		top: 100%;
		align-items: flex-start;
		gap: 0;
		display: none;
		width: 100%;
		height: auto;
		background-color: #43a0b6;
		color: #fff;
	}
	.header.open-mo .header-util {
		display: flex;
	}
	.header-util__item {
		flex: 1;
		height: auto;
		padding-bottom: 0;
	}
	.header-util__item:last-child {
		background-color: #222;
	}
	.header-util__item + .header-util__item:before {
		display: none;
	}
	.header-util__item > a {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 39px;
	}
	/*.header-util__item div {
		position: static;
		display: none;
		padding: 12px;
		margin: 0;
		border-radius: 0;
		background-color: #43a0b6;
		box-shadow: none;
		transform: translateX(0);
		text-align: center;
		opacity: 1;
		visibility: 1;
		pointer-events: auto;
	}
	.header-util__item div {
		gap: 10px;
		font-size: 10px;
	}
	.header-util.open .header-util__item div {
		display: block;
	}
	.header-util__item div dt {
		padding-bottom: 5px;
		font-size: 12px;
	}*/
	.family-layer {
		display: none;
		width: 100%;
		margin: 0;
		border-radius: 0;
		background-color: #43a0b6;
		font-size: 10px;
		color: #fff;
		opacity: 1;
		visibility: 1;
		pointer-events: auto;
	}
	.header-util.open .family-layer {
		display: flex;
	}
	.family-layer dt {
		padding-bottom: 5px;
		font-size: 12px;
	}
	.family-layer dl + dl {
		padding-top: 12px;
		border-top: 1px solid #fff;
	}
	.header-gnb {
		position: fixed;
		top: 114px;
		left: 0;
		right: 0;
		bottom: 0;
		display: none;
		flex-direction: column;
		height: auto;
		background-color: #222;
		overflow: hidden;
	}
	.header.open-mo .header-gnb {
		display: flex;
	}
	.header-gnb:before {
		z-index: 0;
		content: '';
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		left: 145px;
		background-color: #fff;
		pointer-events: none;
	}
	.header-gnb__item {
		max-height: 100%;
		overflow: hidden;
	}
	.header-gnb__item > a {
		display: none;
	}
	.header-gnb__item-sub {
		position: static;
		display: flex;
		flex-direction: column;
		gap: 0;
		max-height: 100%;
		padding: 0 0 0 145px;
		color: #797979;
		font-size: 12px;
		overflow: auto;
	}
	.header-gnb__item-sub > strong {
		position: absolute;
		left: 0;
		top: 0;
		display: flex;
		align-items: center;
		width: 145px;
		height: 50px;
		padding: 0 25px;
		color: #fff;
		font-size: 15px;
		cursor: pointer;
	}
	.header-gnb__item:nth-child(2) .header-gnb__item-sub > strong {
		top: 50px;
	}
	.header-gnb__item:nth-child(3) .header-gnb__item-sub > strong {
		top: 100px;
	}
	.header-gnb__item:nth-child(4) .header-gnb__item-sub > strong {
		top: 150px;
	}
	.header-gnb__item:nth-child(5) .header-gnb__item-sub > strong {
		top: 200px;
	}
	.header-gnb__item.opened .header-gnb__item-sub > strong {
		background-color: #fff;
		color: #43a0b6;
	}
	.header-gnb__item-sub dl {
		display: none;
		position: relative;
		min-width: 0;
		padding: 12px 15px 20px 15px;
		background-color: #fff;
	}
	.header-gnb__item.opened dl {
		display: block;
	}
	.header-gnb__item-sub dl + dl {
		padding-top: 20px;
	}
	.header-gnb__item-sub dl + dl:before {
		content: '';
		position: absolute;
		left: 15px;
		right: 15px;
		top: 0;
		display: block;
		height: 1px;
		background-color: #e1e1e1;
	}
	.header-gnb__item-sub dt {
		height: 30px;
		border-bottom: 0;
		font-size: 13px;
	}
	.header-gnb__item-sub dl.selected dt a {
		color: inherit;
	}
	.header-gnb__item-sub dd {
		padding-top: 0;
	}
	.header-gnb__item-sub dd a {
		height: 28px;
		padding-left: 13px;
	}
	.header-gnb__item-sub dd a.selected {
		color: inherit;
	}
	.header-menu {
		display: block;
	}	
}

/* Footer */
.footer {
	padding: 0 !important;
}
.footer-map {
	padding: 60px 20px 100px 20px;
	background-color: #dbdbdb;
	color: #222;
	line-height: 1;
	white-space: nowrap;
}
.footer-map__inner {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
}
.footer-map dl {
	flex: 1;
	display: flex;
	flex-direction: column;	
}
.footer-map dl:last-child {
	flex: none;
}
.footer-map dt {
	display: flex;
	align-items: center;
	height: 38px;
	font-weight: 500;
}
.footer-map dd a {
	display: flex;
	align-items: center;
	height: 40px;
}
.footer-copyright {
	padding: 80px 20px;
	background-color: #222;
	color: #fff;
	line-height: 1;
	font-size: 15px;
}
.footer-copyright__inner {
	position: relative;
	max-width: 1200px;
	padding-top: 100px;
	margin: 0 auto;
	background: url('../images/img_logo-white.png') no-repeat 0 0;
}
.footer-copyright__link {
	display: flex;
	gap: 60px;
}
.footer-copyright__text {
	display: flex;
	flex-wrap: wrap;
	column-gap: 10px;
	row-gap: 7px;
	margin-top: 30px;
}
.footer-copyright__text p {
	width: 100%;
}
.footer-copyright__text p:last-child {
	margin-top: 10px;
}
.footer-copyright__site {
	position: absolute;
	right: 0;
	top: 0;
}
.footer-copyright__site > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 52px;
	border: 1px solid #a6a6a6;
	color: #a6a6a6;
	font-size: 18px;
}
.footer-copyright__site .family-layer {
	top: unset;
	bottom: 100%;
	width: 100%;
	margin: 0;
}
.pop {
	z-index: 20;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background-color: rgba(0, 0, 0, 0.85);
}
.pop.display--show {
	display: flex;
}
.pop-inner {
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
	max-width: 500px;
	padding: 30px;
	border-radius: 8px;
	background-color: #fff;
}
.pop-header {
	font-size: 20px;
	font-weight: 500;
}
.pop-close {
	position: absolute;
	right: 0;
	top: 0;
	width: 60px;
	height: 60px;
	font-size: 0;
}
.pop-close  a {
	display: block;
	height: 100%;
	background: url('../images/btn_menu-close-mo.png') no-repeat center center;
	background-size: 21px 21px;
}
@media (hover: hover) {
	.footer-copyright__link a:hover {
		text-decoration: underline;
	}
	.footer-copyright__site:hover .family-layer {
		opacity: 1;
		visibility: 1;
		pointer-events: auto;
	}
}
@media (max-width: 768px) {
	.footer-map {
		display: none;
	}
	.footer-copyright {
		padding: 60px 20px;
		font-size: 12px;
	}
	.footer-copyright__inner {
		padding-top: 60px;
		background-size: auto 32px;
	}
	.footer-copyright__link {
		gap: 20px;
	}
	.footer-copyright__link a {
		text-decoration: underline;
	}
	.footer-copyright__site {
		position: absolute;
		right: 0;
		top: 0;
	}
	.footer-copyright__site > a {
		width: 130px;
		height: 30px;
		font-size: 14px;
	}
	.footer-copyright__site .family-layer {
		bottom: unset;
		top: 100%;
		max-height: 200px;
		background-color: rgba(35, 31, 32, 0.85);
		overflow: auto;
	}
	.footer-copyright__site.open .family-layer {
		display: flex;
	}
	.pop {
		font-size: 12px;
	}
	.pop-inner {
		gap: 8px;
		padding: 20px;
	}
	.pop-header {
		font-size: 16px;
	}
	.pop-close {
		width: 40px;
		height: 40px;
	}
	.pop-close  a {
		background-size: 16px 16px;
	}
}

/* Main */
body.index .header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	height: 68px;
	border: 0;
	background-color: rgba(35, 31, 32, 0.15);
	transition: height 0.3s ease-in-out;
}
body[class*="fp-viewing-section1"] .header {
    height: 126px;
}
body.index .header-logo a {
	background: url('../images/img_logo-white.png') no-repeat center center;
}
body.index .header-gnb {
	color: #fff;
}
body.index .header-util {
	color: #fff;
}
body.index .header-util__item + .header-util__item:before {
	background-color: #fff;
}
#fullpage .section.m1 .slide:nth-child(1) {
	background: url('../images/img_main-section1_1.jpg') no-repeat center center;
	background-size: cover;
}
#fullpage .section.m1 .slide:nth-child(2) {
	background: url('../images/img_main-section1_2.jpg') no-repeat center center;
	background-size: cover;
}
.fp-slidesNav.bottom {
	bottom: 149px;
	margin: 0 0 0 -20px !important;
}
.fp-slidesNav.bottom ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
.fp-slidesNav.bottom ul li {
	flex: none;
	width: 8px;
	height: 8px;
	margin: 0 6px;
}
.fp-slidesNav.bottom ul li a {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	border-radius: 4px;
}
.fp-slidesNav.bottom ul li a.active {
	background-color: #fff;
}
.fp-slidesNav.bottom ul li a span {
	position: static;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	background: none;
}
.fp-controlArrow {
	height: 106px;
	margin-top: 0;
	border: 0;
	transform: translateY(-50%);
}
.fp-controlArrow.fp-prev {
	width: 72px;
	left: 70px;
	background: url('../images/btn_slide-arrow-l.png') no-repeat center center;
}
.fp-controlArrow.fp-next {
	width: 72px;
	right: 70px;
	background: url('../images/btn_slide-arrow-r.png') no-repeat center center;
}
.section-controls {
	position: fixed;
	left: 50%;
	bottom: 138px;
	width: 28px;
	height: 30px;
	margin-left: 20px;
}
.section-controls button {
	display: block;
	width: 100%;
	height: 100%;
	background: url('../images/btn_play-stop.png') no-repeat center center;
}
.section-controls button.stop {
	background: url('../images/btn_play.png') no-repeat center center;
}
.section-arrow {
	position: fixed;
	left: 50%;
	bottom: 63px;
	width: 94px;
	height: 75px;
	transform: translateX(-50%);
}
.section-arrow button {
	display: block;
	width: 100%;
	height: 100%;
	background: url('../images/icon_arrow-section.png') no-repeat center center;
	animation: bounce 1s infinite;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(-15%);
        animation-timing-function: ease-in;
    }
    50% {
        transform: none;
        animation-timing-function: ease-in;
    }
}
.section {
	padding: 0 20px;
}
.section.m1 {
	padding: 0;
}
.section.m2 {
	background: url('../images/img_main-section2.jpg') no-repeat center center;
	background-size: cover;
}
.section.m3 {
	background: url('../images/img_main-section3.jpg') no-repeat center center;
	background-size: cover;
}
.main-vs {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 30px;
	color: #fff;
	font-weight: 500;
	font-size: 22px;
	text-align: center;
}
.section.m1 .main-vs {
	padding: 0 20px;
	transform: translateY(-100%);
}
.main-vs strong {
	font-size: 38px;
}
.main-vs br.mo {
	display: none;
}
.main-link {
	display: flex;
	max-width: 1200px;
	margin: 120px auto 0 auto;
	background-color: #fff;
	color: #222;
}
.main-link__item {
	flex: 1;
	display: flex;
	justify-content: center;
	position: relative;
}
.main-link__item + .main-link__item:before {
	content: '';
	position: absolute;
	left: 0;
	top: 30px;
	bottom: 30px;
	display: block;
	width: 1px;
	background-color: #009bc0;
}
.main-link__item a {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 30px 20px;
}
.main-link__item strong {
	font-weight: 500;
	font-size: 20px;
}
.main-link__item em {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	min-height: 16px;
	margin-top: auto;
	padding-right: 30px;
	background: url('../images/icon_plus-blue.png') no-repeat right center;
	font-weight: 500;
	font-size: 13px;
	color: #009bc0;
}
.main-tab {
	max-width: 1200px;
	margin: 50px auto 0 auto;
	background-color: #fff;
}
.main-tab__header {
	display: flex;
	height: 60px;
}
.main-tab__header a {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-weight: 500;
	color: #2b2b2b;
	font-size: 18px;
}
.main-tab__header a.selected {
	background-color: #009bc0;
	color: #fff;
}
.main-tab__body {
	height: 475px;
}
.main-tab__item {
	display: none;
	align-items: center;
	height: 100%;
}
.main-tab__item.display--show {
	display: flex;
}
.main-tab__item:nth-child(1) {
	background: url('../images/img_main-tab1.jpg') no-repeat center center;
	background-size: cover;
}
.main-tab__item:nth-child(2) {
	background: url('../images/img_main-tab2.jpg') no-repeat center center;
	background-size: cover;
}
.main-tab__item:nth-child(3) {
	background: url('../images/img_main-tab3.jpg') no-repeat center center;
	background-size: cover;
}
.main-tab__item div {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 35px 50px;
	margin-top: 50px;
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
}
.main-tab__item strong {
	font-weight: 700;
	font-size: 21px;
	line-height: 1.4;
}
.main-tab__item a {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	height: 34px;
	margin-top: 40px;
	padding: 0 70px 2px 70px;
	background-color: #fff;
	line-height: 1;
	color: #009bc0;
	transition: all 0.2s ease-in-out;
}
@media (hover: hover) {
	.main-tab__item a:hover {
		background-color: #009bc0;
		color: #fff;
	}
}
@media (max-width: 1100px) {
	.main-link__item br {
		display: none;
	}
}
@media (max-width: 960px) {
	body.index .header-logo a {
		background-size: auto 32px;
	}
}
@media (max-width: 768px) {
	body.index .header {
		height: 76px;
	}
	body.index .header-menu a {
		background-image: url('../images/btn_menu-white-mo.png');
	}
	body.index .header.open-mo .header-menu a {
		background-image: url('../images/btn_menu-close-white-mo.png');
	}
	.fp-slidesNav.bottom {
		bottom: 75px;
		margin-left: -10px !important;
	}
	.section-controls {
		bottom: 64px;
	}
	.fp-controlArrow {
		display: none;
	}
	.section-arrow {
		bottom: 40px;
		width: 26px;
		height: 24px;
	}
	.section-arrow button {
		background: url('../images/icon_arrow-section-mo.png') no-repeat center center;
		background-size: 16px 14px;
	}
	.main-vs {
		gap: 20px;
		padding-top: 76px;
		font-size: 12px;
	}
	.section.m1 .main-vs {
		justify-content: flex-start;
		gap: 25px;
		height: 100%;
		padding-top: 140px;
		transform: translateY(0);
	}
	.main-vs strong {
		font-size: 20px;
	}
	.main-vs br.mo {
		display: inherit;
	}
	.main-link {
		flex-direction: column;
		gap: 15px;
		margin-top: 30px;
		background-color: transparent;
		font-size: 11px;
	}
	.main-link__item {
		flex: none;
		justify-content: flex-start;
		background-color: #fff;
	}
	.main-link__item + .main-link__item:before {
		display: none;
	}
	.main-link__item a {
		gap: 10px;
		padding: 15px 15px 20px 15px;
	}
	.main-link__item:first-child a {
		padding-bottom: 30px;
	}
	.main-link__item strong {
		font-size: 14px;
	}
	.main-link__item em {
		position: absolute;
		right: 15px;
		bottom: 10px;
		min-height: 10px;
		padding-right: 25px;
		background-size: 10px 10px;
		font-size: 11px;
	}
	.main-link__item br {
		display: inherit;
	}
	.main-tab {
		margin-top: 30;
	}
	.main-tab__header {
		height: 30px;
	}
	.main-tab__header a {
		font-size: 13px;
	}
	.main-tab__body {
		height: 300px;
	}
	.main-tab__item div {
		gap: 10px;
		max-width: 330px;
		padding: 20px 15px;
		margin-top: 30px;
		font-size: 12px;
		line-height: 1.6;
	}
	.main-tab__item span br {
		display: none;
	}
	.main-tab__item strong {
		font-size: 14px;
		line-height: 1.6;
	}
	.main-tab__item a {
		height: 24px;
		margin-top: 20px;
		padding: 0 25px 2px 25px;
	}
}

/* Body */
.body {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
	padding: 80px 20px 100px 20px;
}
.title {
	z-index: 10;
	position: sticky;
	top: 126px;
	display: flex;
	align-items: center;
	height: 50px;
	margin-bottom: 80px;
	border-bottom: 1px solid #d8d8d8;
	background-color: #fff;
	line-height: 1;
	color: #2a2a2a;
	font-weight: 500;
	font-size: 24px;
	transition: top 0.3s ease-in-out;
}
.body-tab {
	z-index: 11;
	position: sticky;
	top: 134px;
	display: flex;
	justify-content: flex-end;
	height: 42px;
	margin-top: -122px;
	margin-bottom: 80px;
}
.body-tab a {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-width: 110px;
	height: 100%;
	padding: 0 20px;
	border-bottom: 2px solid transparent;
	font-size: 14px;
	font-weight: 700;
	color: #393939;
	line-height: 1;
}
.body-tab a.selected {
	border-color: #009bc0;
	color: #009bc0;
}
.body-inner {
	display: flex;
	gap: 20px;
}
.aside {
	position: sticky;
	top: 256px;
	flex: none;
	align-self: flex-start;
	width: 280px;
	line-height: 1;
}
.aside-header {
	display: flex;
	align-items: center;
	height: 74px;
	font-weight: 500;
	font-size: 32px;
	color: #6f6f6f;
}
.aside-body {
	display: flex;
	flex-direction: column;
}
.aside-body a {
	display: flex;
	align-items: center;
	height: 37px;
	font-weight: 700;
	color: #7e7e7e;
}
.aside-body a.selected {
	color: #009bc0;
}
.content {
	flex: 1;
	overflow: hidden;
}
.content-title {
	display: flex;
	gap: 10px;
	margin-bottom: 50px;
	padding-top: 24px;
	line-height: 1;
	font-weight: 500;
	font-size: 20px;
	color: #2a2a2a;
}
.content-title.size--big {
	font-size: 30px;
}
.ctt_admin {
	display: none;
}
@media (max-width: 768px) {
	.body {
		padding-top: 40px;
		padding-bottom: 50px;
	}
	.title {
		position: static;
		height: 45px;
		margin-bottom: 0;
		border: 0;
		font-size: 16px;
	}
	.body-tab {
		position: relative;
		right: unset;
		top: unset;
		display: flex;
		height: 35px;
		margin-top: 0;
		margin-bottom: 20px;
	}
	.body-tab:before {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		display: block;
		height: 1px;
		background-color: #d8d8d8;
	}
	.body-tab a {
		flex: 1;
		min-width: 0;
		font-size: 12px;
	}
	.body-inner {
		flex-direction: column;
		gap: 0;
	}
	.aside {
		flex: none;
		position: static;
		width: auto;
	}
	.aside-header {
		height: 60px;
		font-size: 24px;
	}
	.aside-body {
		display: none;
	}
	.content-title {
		display: flex;
		align-items: center;
		height: 55px;
		margin-bottom: 20px;
		padding-top: 0;
		font-size: 14px;
	}
	.content-title.size--big {
		max-width: 200px;
		height: auto;
		font-size: 22px;
		line-height: 1.4;
	}
	.content-title.no--width {
		max-width: none;
	}
}