:root {
	--white-color: rgba(255, 255, 255, 0.842);
	--font-color: #333333;
	--sub-color: #1b96f3;
	--momenu-color: rgba(9, 9, 20, 0.87);
	--downbox-color: #0e0e0fbb;
	--light-gray: rgb(226, 226, 226);
	--gray-color: rgb(156, 156, 156);
	--footer-color: #434343;
}

/* °øÅëºÎºÐ */
body,
html {
	font-family: "Noto Sans KR", sans-serif;
	height: 100%;
	color: var(--font-color);
}
button {
	border: none;
	background-color: transparent;
	outline: none;
	cursor: pointer;
}
a {
	color: var(--font-color);
	text-decoration: none;
}
.section_c {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.page {
	height: 100%;
}
.hide {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* jquery class */
.block {
	display: block !important;
}

/* pc ºÎºÐ¿¡¼­ hide */
.close_btn,
.list_btn {
	display: none;
	width: 35px;
	height: 35px;
}

/* nav */
nav {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--white-color);
}
nav > .section_c {
	position: relative;
}
nav > .section_c > h1 {
	position: absolute;
	top: 10px;
	left: 5px;
	width: 163px;
}
nav > .section_c > h1 > a {
	display: block;
	width: 100%;
	height: 100%;
}
nav > .section_c > h1 > a > img {
	display: block;
	width: 100%;
	height: 100%;
}
nav > .section_c > .menu {
	margin-left: 230px;
	display: inline-block;
	width: 1020px;
}
nav > .section_c > .menu > ul {
	width: 100%;
}
nav > .section_c > .menu > ul > li {
	float: left;
	width: 16%;
	text-align: center;
}
nav > .section_c > .menu > ul > li > a {
	display: block;
	font-size: 20px;
	font-weight: 600;
	padding-top: 30px;
}
nav > .section_c > .menu > ul > li > a::after {
	display: block;
	content: "";
	width: 0;
	height: 5px;
	margin-top: 25px;
	background-color: var(--sub-color);
	transition: 250ms ease-in-out;
}
nav > .section_c > .menu > ul > li:hover > a::after {
	width: 100%;
}
nav > .section_c > .menu > ul > li > .menu_list {
	display: none;
	height: 215px;
	margin-top: 16px;
}
nav > .section_c > .menu > ul > li > .menu_list > li > a {
	display: block;
	font-size: 15px;
	padding: 8px 0;
	cursor: pointer;
}
nav > .section_c > .menu > ul > li > .menu_list > li:hover > a {
	text-decoration: underline;
}
nav > .section_c > .menu > ul::after {
	content: "";
	display: block;
	clear: both;
}

/* ·Î±×ÀÎ È¸¿ø°¡ÀÔ */
nav > .section_c > .menu > .log_in {
	position: absolute;
	right: 20px;
	top: 21px;
	margin: 0 0 20px 20px;
}
nav > .section_c > .menu > .log_in > ul > li {
	position: relative;
	float: left;
}
nav > .section_c > .menu > .log_in > ul > li > a {
	display: block;
	padding: 18px;
	margin: 0 12px;
}
nav > .section_c > .menu > .log_in > ul > li:nth-child(1) {
	background: url(/images/main/login_icon.webp) no-repeat center;
	background-size: 45%;
}
nav > .section_c > .menu > .log_in > ul > li:nth-child(2) {
	background: url(/images/main/sigup_icon.webp) no-repeat center;
	background-size: 45%;
}
nav > .section_c > .menu > .log_in > ul > li:nth-child(1)::after,
nav > .section_c > .menu > .log_in > ul > li:nth-child(2)::after {
	position: absolute;
	left: 0px;
	bottom: -25px;
	display: block;
	clear: both;
	padding: 2px;
	width: 65px;
	text-align: center;
	border-radius: 5px;
	background-color: var(--light-gray);
	transition-duration: 400ms;
	opacity: 0;
}
nav > .section_c > .menu > .log_in > ul > li:nth-child(1)::after {
	content: "·Î±×ÀÎ";
}
nav > .section_c > .menu > .log_in > ul > li:nth-child(2)::after {
	content: "È¸¿ø°¡ÀÔ";
}
nav > .section_c > .menu > .log_in > ul > li:hover::after {
	opacity: 1;
}

/* ¸ÞÀÎ ½½¶óÀÌµå */
#slide > ul {
	position: relative;
	width: 100%;
	height: 100%;
}
#slide > ul::after {
	content: "";
	display: block;
	clear: both;
}
#slide > ul > li {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#slide > ul > li:nth-child(1) {
	z-index: 3;
}
#slide > ul > li:nth-child(2) {
	z-index: 2;
}
#slide > ul > li:nth-child(3) {
	z-index: 1;
}
#slide > ul > #slide1 {
	background: url(/images/main/main_01.webp) no-repeat center;
	background-size: cover;
}
#slide > ul > #slide2 {
	background: url(/images/main/main_02.webp) no-repeat center;
	background-size: cover;
}
#slide > ul > #slide3 {
	background: url(/images/main/main_03.webp) no-repeat center;
	background-size: cover;
}
#slide > ul > li > .slide_txt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#slide > ul > li > .slide_txt > p {
	margin: 50px 0;
	font-size: 50px;
	font-weight: 700;
	color: white;
	text-align: center;
	text-shadow: 2px 2px 5px black;
	line-height: 1.3;
}
#slide > ul > li > .slide_txt > .top_line,
#slide > ul > li > .slide_txt > .under_line {
	width: 800px;
	height: 50px;
	margin: 0 auto;
	border: 20px solid var(--white-color);
}
#slide > ul > li > .slide_txt > .top_line {
	border-bottom: none;
}
#slide > ul > li > .slide_txt > .under_line {
	border-top: none;
}

.prev_btn,
.next_btn {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
	width: 30%;
	background: url(/images/main/left_arrow.webp) no-repeat center;
	background-position: 20px;
}
.prev_btn {
	left: auto;
	right: 0;
	background: url(/images/main/right_arrow.webp) no-repeat center;
	background-position: 95% 50%;
}

/* down box */
.down_box {
	position: absolute;
	z-index: 4;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--downbox-color);
}
.down_box > ul::after {
	content: "";
	display: block;
	clear: both;
}
.down_box > ul > li {
	position: relative;
	float: left;
	width: 50%;
}
.down_box > ul > li:nth-child(1)::after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	content: "";
	display: block;
	width: 2px;
	height: 80px;
	background-color: white;
}
.down_box > ul > li > a {
	color: white;
	display: block;
	padding: 30px 0;
}
.down_box > ul > li > a > span {
	position: absolute;
	top: 45px;
	left: 85px;
	display: block;
	color: transparent;
	width: 50px;
	height: 50px;
}
.down_box > ul > li:nth-child(1) > a > span {
	background: url(/images/main/fb_box_icon1.webp) no-repeat center;
	background-size: contain;
}
.down_box > ul > li:nth-child(2) > a > span {
	background: url(/images/main/fb_box_icon2.webp) no-repeat center;
	background-size: contain;
}
.down_box > ul > li > a > div {
	margin-left: 180px;
}
.down_box > ul > li > a > div > span {
	display: block;
	font-size: 28px;
	font-weight: 500;
	padding: 6px 0;
}
.down_box > ul > li > a > div > span:nth-child(2) {
	font-size: 18px;
	font-weight: 400;
}
.down_box > ul > li:nth-child(1) > a > div > span:nth-child(2) {
	margin-left: 100px;
}
.down_box > ul > li:nth-child(2) > a > div > span:nth-child(2) {
	margin-left: 35px;
}

/* ¸µÅ©¸®½ºÆ® */
#link_list {
	margin: 100px 0;
}
#link_list > ul > li {
	position: relative;
	float: left;
	width: 30%;
	height: 228px;
	margin: 0 15px;
	border-radius: 25px;
	transition-duration: 400ms;
}
#link_list > ul > li:hover {
	box-shadow: 2px 2px 10px black;
}
#link_list > ul > li:nth-child(1) {
	background: url(/images/main/value_01.webp) no-repeat center;
	background-size: 100%;
}
#link_list > ul > li:nth-child(2) {
	background: url(/images/main/value_02.webp) no-repeat center;
	background-size: 100%;
}
#link_list > ul > li:nth-child(3) {
	background: url(/images/main/value_03.webp) no-repeat center;
	background-size: 100%;
}
#link_list > ul > li > a {
	display: block;
	padding: 40px 30px;
}
#link_list > ul > li > a > span {
	display: block;
	font-size: 28px;
	font-weight: 600;
	color: white;
}
#link_list > ul > li > a > p {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
	color: white;
}
#link_list > ul > li > a > span:nth-child(1):after {
	content: "";
	display: block;
	clear: both;
	width: 50px;
	height: 5px;
	margin: 12px 0;
	background-color: white;
}
#link_list > ul > li > a > span:nth-child(3) {
	position: absolute;
	bottom: 30px;
	right: 20px;
	color: transparent;
	background: url(/images/main/arrow_13.webp) no-repeat center;
}
#link_list > ul::after {
	content: "";
	display: block;
	clear: both;
}

/* family site */
#f_site {
	border-top: 1px solid #ccc;
}
.f_list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	gap: 1%;
}
.f_list li {
	margin: 10px;
	flex: 1;
}
.f_list img {
	max-width: 100%;
}
.f_list_title {
	font-size: 20px;
	font-weight: 700; 
	text-align: center; 
	background: #d82121; 
	padding: 10px; 
	color: #fff;
}

/* ºñÁö´Ï½º ÆäÀÌÁö */
#main_b {
	background: url(/images/main/bi_bg.webp) no-repeat center;
	background-size: cover;
	background-attachment: fixed;
	padding-bottom: 50px;
}
#main_b > div > h2 {
	position: relative;
	font-size: 45px;
	width: 100%;
	text-align: center;
	font-weight: 700;
	text-align: center;
	padding: 50px 0;
	text-shadow: 2px 2px 5px black;
	color: white;
}
#main_b > div > h2::after {
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	display: block;
	clear: both;
	width: 50px;
	height: 5px;
	background-color: var(--sub-color);
}
#main_b > div > ul {
	margin-top: 20px;
}
#main_b > div > ul > li {
	float: left;
	width: 350px;
	height: 380px;
	margin: 0 17px;
	border-radius: 0 20px 0 20px;
	background-color: white;
	text-align: center;
	box-shadow: 5px 4px 10px black;
}
#main_b > div > ul > li > a {
	width: 100%;
	height: 100%;
}
#main_b > div > ul > li > a > div {
	transition-duration: 200ms;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 50px auto 20px auto;
}
#main_b > div > ul > li:hover > a > div {
	background-color: var(--sub-color);
}
#main_b > div > ul > li:hover > a > div > span {
	filter: brightness(0) invert(1);
}
#main_b > div > ul > li:hover > a > span {
	color: var(--sub-color);
}
#main_b > div > ul > li > a > div > span {
	transition-duration: 200ms;
	display: inline-block;
	width: 50px;
	height: 50px;
	margin: 15px auto;
	color: transparent;
	background-color: violet;
	background: url(/images/main/bicon_01.webp) no-repeat center;
	background-size: contain;
}
#main_b > div > ul > li:nth-child(2) > a > div > span {
	background: url(/images/main/bicon_02.webp) no-repeat center;
	background-size: contain;
}
#main_b > div > ul > li:nth-child(3) > a > div > span {
	background: url(/images/main/bicon-03.webp) no-repeat center;
	background-size: contain;
}
#main_b > div > ul > li > a > span {
	transition-duration: 200ms;
	display: block;
	font-size: 30px;
	font-weight: 600;
	padding-bottom: 35px;
}
#main_b > div > ul > li > a > p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	padding-bottom: 20px;
}
#main_b > div > ul::after {
	content: "";
	display: block;
	clear: both;
}

/* »çÀÌÆ® ¸µÅ©¿¬°á */
#other_link > div > ul {
	width: 95%;
	margin: 15px auto;
}
#other_link > div > ul::after {
	display: block;
	clear: both;
	content: "";
}
#other_link > div > ul > li {
	float: left;
	width: 25%;
}
#other_link > div > ul > li > a {
	display: block;
	padding: 25px 100px;
}
#other_link > div > ul > #lslide01 > a {
	background: url(/images/main/o_logo01.webp) no-repeat center;
	background-size: contain;
}
#other_link > div > ul > #lslide02 > a {
	background: url(/images/main/o_logo02.webp) no-repeat center;
	background-size: contain;
}
#other_link > div > ul > #lslide03 > a {
	background: url(/images/main/o_logo03.webp) no-repeat center;
	background-size: contain;
}
#other_link > div > ul > #lslide04 > a {
	background: url(/images/main/o_logo04.webp) no-repeat center;
	background-size: contain;
}

/* footer */
footer {
	background-color: var(--footer-color);
	padding: 40px 0;
}
footer > div > p,
footer > div > ul {
	padding-left: 15px;
	box-sizing: border-box;
}
footer > div > ul:nth-child(1) {
	padding: 17px 15px;
}
footer > div > ul > li {
	float: left;
}
footer > div > ul:nth-child(1) > li:nth-child(1) > a {
	display: block;
	width: 250px;
}
footer > div > ul:nth-child(1) > li:nth-child(1) > a > img {
	display: block;
	width: 100%;
	height: 100%;
}
footer > div > ul:nth-child(1) > li:not(:nth-child(1)) {
	padding-top: 10px;
	margin: 30px 10px 0 10px;
}
footer > div > ul:nth-child(1) > li:not(:nth-child(1)) > a {
	display: block;
	cursor: pointer;
	width: 100px;
	height: 20px;
	background: url(/images/main/f_icon01.webp) no-repeat left;
	background-size: contain;
}
footer > div > ul:nth-child(1) > li:nth-child(3) > a {
	background: url(/images/main/f_icon02.webp) no-repeat left;
	background-size: contain;
}
footer > div > ul:nth-child(1) > li:not(:nth-child(1)) > a > span {
	display: block;
	color: white;
	padding-left: 30px;
}
footer > div > ul::after {
	display: block;
	content: "";
	clear: both;
}
footer > div > ul:nth-child(2) > li > a {
	display: block;
	margin-right: 50px;
	font-size: 25px;
	font-weight: 600;
	color: white;
}
footer > div > ul:nth-child(2) > li:nth-child(2) > a {
	color: #f6d156;
}
footer > div > p {
	padding: 20px 15px 30px 15px;
	line-height: 1.5;
	font-size: 18px;
	font-weight: 300;
	color: white;
}
footer br.mo {
	display: none;
}

#familySiteSelect {
	background: #434343;
	height: 34px;
	line-height: 34px;
	font-weight: 600;
	color: #fff;
}
#familySiteSelect > option {
	line-height: 1.5;
}

@media screen and (max-width: 1200px) {
	html, body {
		overflow-x: clip;
	}

	nav {
		height: 70px;
	}
	nav > .section_c {
		width: 100%;
	}
	nav > .section_c > h1 {
		left: 50%;
		transform: translateX(-50%);
	}
	.list_btn {
		display: block;
		position: absolute;
		top: 18px;
		right: 20px;
		background: url(/images/main/list.webp) no-repeat center;
		background-size: 80%;
	}
	nav > .section_c > .menu {
		position: fixed;
		right: -100%;
		top: 0;
		bottom: 0;
		width: 100%;
		margin: 0;
		background-color: var(--momenu-color);
		overflow-y: scroll;
	}
	nav > .section_c > .menu > .log_in {
		position: absolute;
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		top: 40px;
		margin: 0;
	}
	nav > .section_c > .menu > .log_in > ul > li:nth-child(1),
	nav > .section_c > .menu > .log_in > ul > li:nth-child(2) {
		filter: invert(1);
	}
	nav > .section_c > .menu > ul {
		margin: 80px auto;
	}
	nav > .section_c > .menu > ul > li {
		float: none;
		margin: 20px auto 0px auto;
		width: 80%;
	}
	nav > .section_c > .menu > ul > li > a {
		color: var(--white-color);
		font-size: 30px;
		padding-top: 16px;
	}
	nav > .section_c > .menu > ul > li > .menu_list {
		display: block;
		height: auto;
	}
	nav > .section_c > .menu > ul > li > .menu_list > li > a {
		color: var(--white-color);
		text-align: center;
	}
	nav > .section_c > .menu > ul > li > a::after {
		display: none;
	}

	.close_btn {
		position: absolute;
		top: 20px;
		left: 20px;
		display: block;
		background: url(/images/main/close.webp) no-repeat center;
		background-size: contain;
	}
	#slide > ul > li > .slide_txt > p {
		margin: 20px 0;
		font-size: 35px;
	}
	#slide > ul > li > .slide_txt > .top_line,
	#slide > ul > li > .slide_txt > .under_line {
		width: 550px;
	}

	/* down box */
	.down_box > ul {
		width: 100%;
	}
	.down_box > ul > li:nth-child(1)::after {
		height: 50px;
	}
	.down_box > ul > li > a {
		padding: 15px 0;
	}
	.down_box > ul > li > a > span {
		top: 3.5vw;
		left: 7vw;
		width: 4vw;
		height: 4vw;
	}
	.down_box > ul > li > a > div {
		margin-left: 0;
		width: 100%;
		text-align: center;
	}
	.down_box > ul > li > a > div > span {
		font-size: 2.5vw;
		font-weight: 500;
		padding: 6px 0;
	}
	.down_box > ul > li > a > div > span:nth-child(2) {
		font-size: 1.8vw;
		font-weight: 400;
	}
	.down_box > ul > li:nth-child(1) > a > div > span:nth-child(2) {
		margin-left: 2vw;
	}
	.down_box > ul > li:nth-child(2) > a > div > span:nth-child(2) {
		margin-left: 1vw;
	}

	/* ¸µÅ©¸®½ºÆ® */
	#link_list {
		margin: 80px 0;
	}
	#link_list > ul {
		width: 100%;
	}
	#link_list > ul > li {
		float: none;
		width: 95%;
		height: 186px;
		border-radius: 25px;
		margin: 15px auto;
	}
	#link_list > ul > li:nth-child(1) {
		background: url(/images/main/mo_value_01.webp) no-repeat center;
		background-size: cover;
	}
	#link_list > ul > li:nth-child(2) {
		background: url(/images/main/mo_value_02.webp) no-repeat center;
		background-size: cover;
	}
	#link_list > ul > li:nth-child(3) {
		background: url(/images/main/mo_value_03.webp) no-repeat center;
		background-size: cover;
	}
	#link_list > ul > li > a {
		padding: 40px 30px;
	}

	/* ºñÁö´Ï½ºÆäÀÌÁö */
	#main_b > div {
		width: 100%;
	}
	#main_b > div > h2 {
		font-size: 40px;
		padding: 40px 0;
	}
	#main_b > div > ul {
		width: 720px;
		margin: 0 auto;
	}
	#main_b > div > ul > li {
		width: 165px;
		height: 300px;
		padding: 10px 25px;
		margin: 0 10px;
	}
	#main_b > div > ul > li > a > div {
		margin: 10px auto 20px auto;
	}
	#main_b > div > ul > li > a > span {
		font-size: 18px;
		padding-bottom: 30px;
	}
	#main_b > div > ul > li > a > p {
		font-size: 16px;
		font-weight: 500;
		padding-bottom: 30px;
	}
	#main_b > div > ul > li > a > p > br {
		display: none;
	}

	/* ÆÐ¹Ð¸®»çÀÌÆ® */
	#f_site > .section_c {
		width: 100%;
	}

	/* »çÀÌÆ® ¸µÅ©¿¬°á */
	#other_link > div {
		width: 100%;
	}
	#other_link > div > ul {
		width: 80%;
		margin: 15px auto;
		overflow: hidden;
	}
	#other_link > div > ul > li > a {
		display: block;
		width: 100%;
		height: 30px;
		padding: 0;
	}

	/* footer */
	footer > .section_c {
		width: 100%;
	}
	footer > .section_c > ul,
	footer > .section_c > p {
		margin-left: 3%;
		font-size: 15px;
	}
	footer br.mo {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.list_btn,
	.close_btn {
		width: 5vw;
		height: 5vw;
	}
	nav {
		height: 12vw;
	}
	nav > .section_c > h1 {
		top: 1vw;
		width: 28vw;
	}
	nav > .section_c > h1 > a > img {
		width: 100%;
	}
	.list_btn {
		top: 3.5vw;
		right: 4.3vw;
	}
	nav > .section_c > .menu > .log_in {
		top: 7vw;
	}
	nav > .section_c > .menu > .log_in > ul > li:nth-child(1),
	nav > .section_c > .menu > .log_in > ul > li:nth-child(2) {
		filter: invert(1);
	}
	nav > .section_c > .menu > ul {
		margin: 5vh auto;
	}
	nav > .section_c > .menu > ul > li {
		margin: 3vw auto;
	}
	nav > .section_c > .menu > ul > li > a {
		font-size: 5vw;
	}
	nav > .section_c > .menu > ul > li > a::after {
		display: none;
	}
	nav > .section_c > .menu > ul > li > .menu_list {
		display: block;
		height: auto;
		margin-top: 3vw;
	}
	nav > .section_c > .menu > ul > li > .menu_list > li > a {
		padding: 1.5vw 0;
		margin: 1vw 0;
		font-size: 3.5vw;
	}
	.close_btn {
		top: 5vw;
		left: 5vw;
	}

	/* ¸ÞÀÎ½½¶óÀÌµåÅØ½ºÆ® */
	#slide > ul > li > .slide_txt > .top_line,
	#slide > ul > li > .slide_txt > .under_line {
		border: 4vw solid var(--white-color);
	}
	#slide > ul > li > .slide_txt > .top_line {
		border-bottom: none;
	}
	#slide > ul > li > .slide_txt > .under_line {
		border-top: none;
	}
	#slide > ul > li > .slide_txt > p {
		margin: 3vw 0;
		font-size: 6vw;
		text-shadow: 2px 2px 5px black;
		line-height: 1.3;
	}
	#slide > ul > li > .slide_txt > p > br {
		display: none;
	}
	#slide > ul > li > .slide_txt > .top_line,
	#slide > ul > li > .slide_txt > .under_line {
		width: 70vw;
		height: 10vw;
	}
	.prev_btn,
	.next_btn {
		display: none;
	}

	/* down box */
	.down_box > ul > li:nth-child(1)::after {
		display: none;
	}
	.down_box > ul > li > a {
		padding: 5vw 0;
		margin-left: 5vw;
	}
	.down_box > ul > li:nth-child(1) > a {
		margin-left: 14vw;
	}
	.down_box > ul > li > a > span {
		top: 5.5vw;
		left: 5vw;
		width: 8vw;
		height: 8vw;
	}
	.down_box > ul > li > a > div {
		margin-left: 0;
		width: 100%;
		text-align: center;
	}
	.down_box > ul > li > a > div > span {
		font-size: 3.5vw;
		padding: 1.2vw 0;
	}
	.down_box > ul > li > a > div > span:nth-child(2) {
		font-size: 3vw;
	}
	.down_box > ul > li:nth-child(1) > a > div > span:nth-child(2) {
		margin-left: 2vw;
	}
	.down_box > ul > li:nth-child(2) > a > div > span:nth-child(2) {
		margin-left: 1vw;
	}

	/* ¸µÅ©¸®½ºÆ® */
	#link_list {
		margin: 10vw 0;
	}
	#main_b > div > ul {
		width: 100%;
	}
	#link_list > ul > li {
		float: none;
		width: 95%;
		height: 40vw;
		border-radius: 5vw;
		margin: 5vw auto;
	}
	#link_list > ul > li > a {
		padding: 6vw;
	}
	#link_list > ul > li > a > span {
		font-size: 7vw;
	}
	#link_list > ul > li > a > p {
		font-size: 4.5vw;
		line-height: 1.5;
	}
	#link_list > ul > li > a > span:nth-child(1):after {
		width: 10vw;
		height: 1.3vw;
		margin: 2.8vw 0;
	}
	#link_list > ul > li > a > span:nth-child(3) {
		bottom: 3vw;
		right: 3vw;
	}

	/* ºñÁö´Ï½º ÆäÀÌÁö */
	#main_b {
		padding-bottom: 8vw;
	}
	#main_b > div > h2 {
		font-size: 7vw;
		padding: 8vw 0;
	}
	#main_b > div > h2::after {
		bottom: 2vw;
		width: 10vw;
		height: 1.2vw;
	}
	#main_b > div > ul {
		width: 100%;
		margin-top: 5vw;
	}
	#main_b > div > ul > li {
		float: none;
		width: 90%;
		height: auto;
		padding: 1.2vw;
		margin: 2vw auto;
	}
	#main_b > div > ul > li > a > div {
		width: 10vw;
		height: 10vw;
		margin: 2.5vw auto;
	}
	#main_b > div > ul > li > a > div > span {
		width: 8vw;
		height: 6vw;
		margin: 2vw auto;
	}
	#main_b > div > ul > li > a > span {
		font-size: 6vw;
		padding-bottom: 6vw;
	}
	#main_b > div > ul > li > a > p {
		width: 60%;
		margin: 0 auto;
		font-size: 4vw;
		padding-bottom: 3vw;
	}
	#main_b > div > ul::after {
		display: none;
	}

	/* »çÀÌÆ® ¸µÅ©¿¬°á */
	/* #other_link > div {
		width: 100%;
		overflow: hidden;
	}
	#other_link > div > ul {
		width: 400%;
		margin: 2vw 0;
		overflow-x: hi;
	}
	#other_link > div > ul > li > a {
		display: block;
		width: 100%;
		height: 10vw;
		padding: 0;
	} */
	#other_link {
		overflow-x: clip;
	}
	#other_link > div {
		width: 100%;
		overflow: hidden;
	}
	#other_link > div > ul {
		display: flex;
		width: 100%;
		margin: 2vw 0;
	}
	#other_link > div > ul > li {
		flex: 0 0 100%;
		float: none;
		width: 100%;
	}
	#other_link > div > ul > li > a {
		display: block;
		width: 100%;
		height: 10vw;
		padding: 0;
	}

	/* footer */
	footer {
		width: 100%;
		padding: 5vw;
		box-sizing: border-box;
	}
	footer > div > ul:nth-child(1) {
		width: 80%;
		margin: 0 auto !important;
		padding: 5vw 0 3vw 0;
	}
	footer > div > ul:nth-child(1) > li:nth-child(1) {
		width: 100%;
	}
	footer > div > ul:nth-child(1) > li:nth-child(1) > a {
		width: 50vw;
		height: auto;
		margin: 0 auto;
	}
	footer > div > ul:nth-child(1) > li:not(:nth-child(1)) {
		width: 30%;
		text-align: center;
		padding-top: 0;
		margin: 2vw auto 0 9vw;
	}
	footer > div > ul:nth-child(1) > li:not(:nth-child(1)) > a {
		width: 100%;
		height: 5vw;
		line-height: 5vw;
		text-align: right;
		background-position: 12%;
	}
	footer > div > ul:nth-child(1) > li:not(:nth-child(1)) > a > span {
		font-size: 3vw;
	}
	footer > div > ul:nth-child(2) {
		width: 90%;
		margin: 3vw auto 0 auto;
		padding: 0;
	}
	footer > div > ul:nth-child(2) > li {
		width: 33%;
		text-align: center;
	}
	footer > div > ul:nth-child(2) > li > a {
		font-size: 3.6vw;
		margin: 0;
	}
	footer > div > p {
		padding: 6vw 0;
		margin: 0 3vw;
		line-height: 1.5;
		font-size: 3vw;
	}
	footer br.mo {
		display: inline;
	}

	/* ÆÐ¹Ð¸®»çÀÌÆ® */
	.f_list {
		width: 95%;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.f_list li {
		margin: 0;
		height: 70px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.f_list li.f_list_title {
		grid-column: 1 / -1;
		height: auto;
	}
	.f_list img {
		max-height: 60%;
	}
}