@charset "UTF-8";


html	{ height: 100%; }
body	{ display: flex; flex-direction: column; height: 100%; }
body > .body	{ flex: auto; display: flex; flex-direction: column; background: url(../image/body_bg.jpg) no-repeat center center / cover; }


/************************************************************************************************************************************************************************

	상단
	
************************************************************************************************************************************************************************/

header	{ display: flex; align-items: flex-end; justify-content: space-between; width: 100%; max-width: 1340px; height: 114px; padding: 0 10px; margin: 0 auto; }
header h1	{ width: 146px; height: 72px; background: url(../image/header_logo.png) no-repeat center center / contain; text-indent: -9999px; overflow: hidden; }
header .weather	{ display: flex; align-items: center; gap: 20px; height: 100%; }
header .weather .temperature	{ display: flex; flex-direction: column; position: relative;  padding-left: 40px; }
header .weather .temperature img	{ position: absolute; left: 0; top: 50%; transform: translate(0, -50%); display: block; }
header .weather .temperature em	{ position: absolute; width: 0; height: 0; font-size: 0; overflow: hidden; }
header .weather .temperature span	{ text-align: center; font-size: 26px; color: #204ccb; font-weight: bolder; }
header .weather .temperature strong	{ text-align: center; font-weight: normal; font-size: 14px; }
header .weather .air	{ display: flex; gap: 6px; }
header .weather .air .air_title	{}
header .weather .air * + .air_title	{ margin-left: 10px; }
header .weather .air .air_value	{ display: inline-block; line-height: 28px; padding: 0 15px; border-radius: 12px; background-color: #666; font-size: 14px; color: #fff; }
header .weather .air .air_value.good	{ background-color: darkgreen; color: #fff; }
header .weather .air .air_value.normal	{ background-color: mediumblue; color: #fff; }
header .weather .air .air_value.bad	{ background-color: darkorange; color: #fff; }
header .weather .air .air_value.verybad	{ background-color: red; color: #fff; }


main	{ flex: auto; width: 100%; max-width: 1340px; padding: 20px 10px; margin: 0 auto; display: flex; flex-direction: column; justify-content: space-evenly; align-items: center; gap: 30px; }
main h2	{ line-height: 70px; text-align: center; font-size: 60px; font-weight: bolder; }
main h2 > span	{ display: block; }
main h2 strong	{ font-weight: bolder; color: #204ccb; }

main ul	{ display: flex; gap: 45px; }
main ul li	{ flex: 1; }
main ul li a	{ display: flex; flex-direction: column; gap: 20px; padding: 25px; background-color: #fff; border-radius: 13px; color: #1b1b1b; transition-duration: .3s; }
main ul li a:focus, main ul li a:hover, main ul li a:active	{ color: #1b1b1b; transform: scale(1.05); box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 5px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.3); }
main ul li a:before	{ display: block; height: 190px; background: no-repeat center center / cover; border-radius: 13px; content: ""; }
main ul li a h3	{ position: relative; font-size: 25px; font-weight: normal; }
main ul li a h3 strong	{ font-size: 40px; font-weight: bold; color: #204bc9; }
main ul li a h3 em	{ position: absolute; right: 7px; top: -120px; width: 120px; height: 120px; border-radius: 50%; background-color: #666; text-align: center; color: #fff; font-size: 18px; }
main ul li a h3 em:before	{ display: block; width: 60px; height: 60px; margin: 7px auto; border-radius: 50%; background: rgba(0, 0, 0, 0.5) url(../image/main_list_icon.png) no-repeat center center; content: ""; }
main ul li a p	{ line-height: 2; word-break: keep-all; font-size: 17px; }

main ul li:nth-child(1) a:before	{ background-image: url(../image/main_list_01.jpg); }
main ul li:nth-child(2) a:before	{ background-image: url(../image/main_list_02.jpg); }
main ul li:nth-child(3) a:before	{ background-image: url(../image/main_list_03.jpg); }
main ul li:nth-child(1) a h3 em	{ background-color: #3e78ff; }
main ul li:nth-child(2) a h3 em	{ background-color: #a536ec; }
main ul li:nth-child(3) a h3 em	{ background-color: #088566; }


main .homepage_link	{ width: 100%; }
main .homepage_link a	{ display: flex; gap: 10px; width: 100%; max-width: 570px; line-height: 1; padding: 17px 20px; margin: 0 auto; border-radius: 38px; background-color: #3868ce; color: #fff; font-weight: bold; }
main .homepage_link a span:first-child	{ flex: auto; display: inline-block; line-height: 1.2; padding: 10px; font-size: 22px; }
main .homepage_link a span:last-child	{ flex: 0 1 150px; display: inline-flex; align-items: center; justify-content: center; width: 150px; line-height: 46px; border-radius: 23px; background-color: #e9e9e9; text-align: center; color: #fff; font-size: 18px; color: #2f343e; }


@media all and ( max-width: 1024px )
{
	main h2	{ line-height: 1.2; font-size: 5.859375vw; }
	main ul	{ flex-direction: column; gap: 10px; }
	main ul li	{ max-width: 410px; }
}

@media all and ( max-width: 600px )
{
	header	{ height: auto; padding: 10px 20px; }
	header .weather *	{ display: none !important; }
}

@media all and ( max-width: 425px )
{
	header h1	{ height: 50px; background-position: 0 center; }
	
	main h2	{ font-size: 7vw; }
	
	main ul li a	{ padding: 10px; }
	main ul li a h3	{ font-size: 20px; }
	main ul li a h3 strong	{ font-size: 30px; }
	main ul li a h3 em	{ top: -80px; width: 100px; height: 100px; line-height: 1; font-size: 14px; }
	main ul li a h3 em:before	{ width: 50px; height: 50px; background-size: 50%; }
	main ul li a p	{ line-height: 1.2; }
	
	main .homepage_link a	{ padding: 10px; }
	main .homepage_link a span:first-child	{ display: inline-flex; align-items: center; font-size: 1.1rem; }
	main .homepage_link a span:last-child	{ flex: auto; width: auto; padding: 0 10px; font-size: 1rem; }
}

/************************************************************************************************************************************************************************

	푸터
	
************************************************************************************************************************************************************************/
footer	{ background-color: #32373c; }
footer aside	{}
footer aside .links	{ border-bottom: 1px solid #d0d0d0; }
footer aside .links ul	{ display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 50px; max-width: 1320px; padding: 20px 10px; margin: 0 auto; }
footer aside .links ul li + li	{ position: relative; }
footer aside .links ul li + li:before	{ position: absolute; left: -25px; top: 50%; width: 1px; height: 15px; margin-top: -7px; background: #fff; content: ""; }
footer aside .links ul li a	{ color: var(--white); }
footer aside .links ul li a:focus, footer aside .links ul li a:hover, footer aside .links ul li a:active	{ text-decoration: underline; font-weight: bolder; }

footer aside .familysite	{ display: flex; gap: 25px; max-width: 1320px; padding: 20px 10px; margin: 0 auto; }
footer aside .familysite dl	{ flex: 1; position: relative; }
footer aside .familysite dl dt button	{ position: relative; display: block; width: 100%; height: 48px; line-height: 1; padding: 0 50px 0 20px; margin: 0; border: 1px solid #d9d9d9; background-color: #f1f1f5; text-align: left; color: #373636; font-size: 1rem; }
footer aside .familysite dl dt button:before	{ position: absolute; right: 49px; top: 0; width: 1px; height: 100%; background-color: #d9d9d9; content: ""; }
footer aside .familysite dl dt button:after	{ position: absolute; right: 20px; top: 15px; width: 10px; height: 10px; border-width: 2px 2px 0 0; border-style: solid; border-color: #000; transform: rotate(135deg); content: ""; }
footer aside .familysite dl dt button:focus	{ box-shadow: 0 0 3px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 30px #fff; }
footer aside .familysite dl.active dt button:after	{ top: 20px; transform: rotate(-45deg); }
footer aside .familysite dl dd	{ display: none; position: absolute; left: 0; bottom: 47px; width: 100%; border: 1px solid #d9d9d9; background-color: #f1f1f5; }
footer aside .familysite dl.active dd	{ display: block; }
footer aside .familysite dl dd ul	{ padding: 10px 20px 0; }
footer aside .familysite dl dd ul li	{}
footer aside .familysite dl dd ul li a	{ display: block; line-height: 1.1; padding: 10px 0; }
footer address	{ position: relative; max-width: 1320px; line-height: 1.5; padding: 0 20px 50px 175px; margin: 20px auto 0 auto; color: var(--white); }
footer address:before	{ position: absolute; left: 10px; top: 5px; width: 108px; height: 49px; background: url(../image/footer_logo.png) no-repeat 0 0; text-indent: -9999px; overflow: hidden; content: "용인시"; }
footer address > span	{ display: inline-block; }
footer address .split	{ display: inline-block; padding: 0 0.5em; }


@media all and ( max-width: 1024px )
{
	footer aside	{ padding-left: 10px; padding-right: 10px; }
	footer aside .links ul	{ justify-content: center; }
}

@media all and ( max-width: 768px )
{
	footer aside .familysite	{ flex-wrap: wrap; gap: 5px; padding: 10px 0; }
	footer aside .familysite dl	{ flex: 1 1 40%; }
	footer aside .links ul	{ justify-content: flex-start; gap: 0 20px; }
	footer aside .links ul li + li:before	{ left: -10px; }
	
	footer address	{ padding: 70px 10px 20px 10px; margin: 0; }
}

@media all and ( max-width: 425px )
{
	footer aside .links ul	{ padding: 10px; }
	
	footer aside .familysite dl dt button	{ height: 37px; padding: 0 30px 0 10px; }
	footer aside .familysite dl dt button:before	{ right: 29px; }
	footer aside .familysite dl dt button:after	{ right: 9px; top: 10px; }
}

@media all and ( max-width: 320px )
{
	footer address	{ font-size: 12px; }
}