
:root {
	--main-color: #14559a;
	--green-dark: #315d4c;

	--brand-deep: #123d6a;
	--muted: #6c757d;
	--brand: #14559a;
	--ink: #222222;
	--line: #e5e8eb;
	--line-color: #e5e8eb;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'IBMPlexSansKR-Regular', sans-serif;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.5;
    color: #111;
    background-color: #fff !important;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

a {
	color: inherit;
	text-decoration: none;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: -100px;
    z-index: 1100;
    padding: .75rem 1rem;
    color: #fff;
    background: var(--brand-deep);
    border-radius: .5rem;
}

.skip-link:focus { top: 1rem; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(15, 40, 75, .1);
    box-shadow: 0 8px 24px rgba(15, 40, 75, .05);
}

.navbar { min-height: 86px; }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .85rem;
    min-width: 0;
    margin-right: 1.5rem;
}

.brand-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(22, 79, 156, .12);
}

.brand-name {
    display: block;
    color: var(--brand-deep);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.25;
}

.brand-sub {
    display: block;
    margin-top: .2rem;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .03em;
}

.navbar-toggler {
    border-color: rgba(22, 79, 156, .22);
    padding: .55rem .65rem;
}

.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(22, 79, 156, .15); }

.navbar-nav { gap: .25rem; }

.nav-link {
    position: relative;
    padding: .7rem 1.05rem !important;
    color: #364152;
    font-size: 1rem;
    font-weight: 700;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active { color: var(--brand); }

.nav-link::after {
    content: "";
    position: absolute;
    left: 1.05rem;
    right: 1.05rem;
    bottom: .4rem;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after { transform: scaleX(1); }

.hero {
    position: relative;
    overflow: hidden;
    background: var(--brand-deep);
    scroll-margin-top: 86px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 22%;
    pointer-events: none;
    background: linear-gradient(to top, rgba(5, 24, 53, .22), transparent);
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.notice-section {
    padding: clamp(3.5rem, 7vw, 6.5rem) 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafd 100%);
    scroll-margin-top: 86px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .75rem;
    color: var(--brand);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.section-kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--brand);
}

.section-title {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.8rem, 4vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -.055em;
}

.notice-card {
    margin-top: 2rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--brand);
    border-radius: .35rem;
    box-shadow: 0 18px 45px rgba(15, 40, 75, .07);
}

.notice-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    align-items: center;
    min-height: 76px;
    padding: 0 1.5rem;
    border-bottom: 1px solid var(--line);
}

.notice-row:last-child { border-bottom: 0; }

.notice-no,
.notice-date {
    color: var(--muted);
    font-size: .94rem;
    text-align: center;
}

.notice-title {
    min-width: 0;
    margin: 0;
    padding: 0 1rem;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.notice-title:hover,
.notice-title:focus { color: var(--brand); text-decoration: underline; }

.notice-badge {
    display: inline-block;
    margin-right: .65rem;
    padding: .28rem .5rem;
    color: #fff;
    background: var(--brand);
    border-radius: .25rem;
    font-size: .75rem;
    line-height: 1;
    vertical-align: .08rem;
}

.public-links {
    padding: 1.65rem 0;
    background: #eef2f7;
    border-top: 1px solid #dfe5ed;
}

.public-link-label {
    margin: 0 0 .8rem;
    color: #596579;
    font-size: .86rem;
    font-weight: 700;
}

.public-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    min-height: 66px;
    padding: .75rem 1rem;
    background: #fff;
    border: 1px solid #d8dee8;
    border-radius: .35rem;
    color: #25324a;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.public-banner:hover,
.public-banner:focus {
    color: var(--brand);
    border-color: var(--brand);
    box-shadow: 0 8px 22px rgba(15, 40, 75, .08);
    transform: translateY(-2px);
}

.banner-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    color: #fff;
    background: var(--brand);
    border-radius: 50%;
    font-size: .8rem;
    letter-spacing: -.03em;
}

.public-banner.acrc .banner-mark { background: #1b6b5d; }

.site-footer {
    padding: 2.65rem 0 2.1rem;
    color: rgba(255, 255, 255, .8);
    background: #101b2d;
}

.footer-related-title {
    margin: 0 0 .85rem;
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
}

.footer-related-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
}

.footer-logo-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    padding: .7rem;
    overflow: hidden;
    color: #738096;
    background: #fff;
    border: 1px dashed rgba(255, 255, 255, .4);
    border-radius: .3rem;
    font-size: .78rem;
    font-weight: 700;
    text-align: center;
}

.footer-logo-slot img {
    display: block;
    max-width: 100%;
    max-height: 54px;
    object-fit: contain;
}

.footer-brand {
    margin: 0 0 1rem;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.footer-info {
    display: grid;
    gap: .55rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: .91rem;
    line-height: 1.7;
}

.footer-info li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.footer-info strong {
    width: 118px;
    flex: 0 0 118px;
    color: #fff;
    font-weight: 700;
}

.copyright {
    margin: 1.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .5);
    font-size: .82rem;
}

@media (max-width: 575.98px) {
    .footer-related-logos {
        grid-template-columns: 1fr 1fr;
    }

    .footer-info strong {
        width: 104px;
        flex-basis: 104px;
    }
}

@media (max-width: 991.98px) {
    .navbar { min-height: 76px; }

    .navbar-collapse {
        margin-top: .8rem;
        padding: .65rem 0 .85rem;
        border-top: 1px solid var(--line);
    }

    .nav-link { padding: .75rem .5rem !important; }

    .nav-link::after { display: none; }
}

@media (max-width: 575.98px) {
    .brand-logo { width: 48px; height: 48px; }

    .brand-name { font-size: 1.05rem; }

    .brand-sub { font-size: .7rem; }

    .navbar-toggler { padding: .42rem .52rem; }

    .notice-row {
        grid-template-columns: minmax(0, 1fr);
        min-height: 82px;
        padding: .85rem .75rem;
    }

    .notice-title { padding: 0 .5rem; line-height: 1.55; }

    .notice-date {
        grid-column: 2;
        padding: .25rem .5rem 0;
        text-align: left;
        font-size: .8rem;
    }

    .notice-badge { display: none; }

    .footer-info { display: grid; gap: .35rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
}





/* ========================================
   ¼­ºê Å¸ÀÌÆ²
======================================== */
.sub-title-wrap {
	padding: 70px 0 45px;
	border-bottom: 1px solid #eee;
	background: #fafafa;
	text-align: center;
}

.sub-title-wrap h1 {
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: -1.5px;
}

.sub-title-wrap p {
	margin: 12px 0 0;
	font-size: 15px;
	color: #777;
}


/* ========================================
   °øÁö»çÇ×
======================================== */
.notice-wrap {
	padding: 65px 0 100px;
}

.notice-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.notice-count {
	font-size: 14px;
	color: #666;
}

.notice-count strong {
	color: #111;
}


/* ========================================
   Å×ÀÌºí
======================================== */
.notice-table {
	width: 100%;
	margin: 0;
	border-top: 2px solid #222;
	table-layout: fixed;
}

.notice-table thead th {
	padding: 17px 10px;
	border-bottom: 1px solid #ddd;
	background: #fafafa;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	text-align: center;
}

.notice-table tbody td {
	padding: 19px 10px;
	border-bottom: 1px solid #e8e8e8;
	font-size: 15px;
	color: #555;
	text-align: center;
	vertical-align: middle;
}

.notice-table .num {
	width: 90px;
}

.notice-table .title {
	width: auto;
	text-align: left;
}

.notice-table .date {
	width: 160px;
}

.notice-table .hit {
	width: 90px;
}

.notice-table .title a {
	display: block;
	overflow: hidden;
	color: #222;
	font-weight: 500;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: .2s;
}

.notice-table .title a:hover {
	color: #053272;
	text-decoration: underline;
}

.notice-table tbody tr {
	transition: background .2s;
}

.notice-table tbody tr:hover {
	background: #fafcff;
}


/* °øÁö Ç¥½Ã */
.notice-badge {
	display: inline-block;
	padding: 5px 11px;
	border-radius: 30px;
	background: #053272;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
}


/* ========================================
   °Ë»ö
======================================== */
.search-wrap {
	margin-top: 35px;
	padding: 25px;
	background: #f7f7f7;
}

.search-inner {
	display: flex;
	justify-content: center;
	gap: 6px;
	max-width: 580px;
	margin: 0 auto;
}

.search-inner select {
	width: 120px;
}

.search-inner .form-control {
	flex: 1;
}

.btn-search {
	width: 80px;
	border-color: #333;
	background: #333;
	color: #fff;
}

.btn-search:hover {
	border-color: #053272;
	background: #053272;
	color: #fff;
}


/* ========================================
   ÆäÀÌÁö
======================================== */
.pagination-wrap {
	margin-top: 40px;
}

.pagination {
	justify-content: center;
	gap: 4px;
}

.pagination .page-link {
	min-width: 38px;
	height: 38px;
	padding: 7px 10px;
	border: 1px solid #ddd;
	border-radius: 0 !important;
	color: #555;
	text-align: center;
}

.pagination .page-link:hover {
	background: #f5f5f5;
	color: #111;
}

.pagination .page-item.active .page-link {
	border-color: #053272;
	background: #053272;
	color: #fff;
}


/* ========================================
   ¸ð¹ÙÀÏ
======================================== */
@media (max-width: 767.98px) {

	.sub-title-wrap {
		padding: 45px 15px 30px;
	}

	.sub-title-wrap h1 {
		font-size: 28px;
	}

	.sub-title-wrap p {
		font-size: 14px;
	}

	.notice-wrap {
		padding: 40px 0 70px;
	}

	.notice-top {
		margin-bottom: 10px;
	}

	.notice-table thead th {
		padding: 13px 6px;
		font-size: 13px;
	}

	.notice-table tbody td {
		padding: 16px 6px;
		font-size: 14px;
	}

	.notice-table .num,
	.notice-table .hit {
		display: none;
	}

	.notice-table .date {
		width: 88px;
		font-size: 12px;
	}

	.notice-table .title {
		padding-left: 10px;
	}

	.notice-badge {
		padding: 4px 8px;
		font-size: 11px;
	}

	.search-wrap {
		margin-top: 25px;
		padding: 15px;
	}

	.search-inner {
		flex-wrap: wrap;
	}

	.search-inner select {
		width: 100px;
	}

	.search-inner .form-control {
		width: calc(100% - 106px);
		flex: none;
	}

	.btn-search {
		width: 100%;
	}

	.pagination-wrap {
		margin-top: 30px;
	}

	.pagination .page-link {
		min-width: 34px;
		height: 34px;
		padding: 5px 8px;
		font-size: 13px;
	}
}




/* ========================================
   °Ô½Ã±Û º¸±â
======================================== */
.notice-view-wrap {
	padding: 65px 0 100px;
}

.notice-view {
	border-top: 2px solid #222;
}

.notice-view-header {
	padding: 28px 30px;
	border-bottom: 1px solid #ddd;
}

.notice-view-header h2 {
	margin: 0 0 15px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -.5px;
}

.notice-info {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 14px;
	color: #888;
}

.notice-info span {
	position: relative;
}

.notice-info span + span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -10px;
	width: 1px;
	height: 11px;
	background: #ddd;
	transform: translateY(-50%);
}


/* ========================================
   º»¹®
======================================== */
.notice-content {
	min-height: 350px;
	padding: 45px 30px 65px;
	border-bottom: 1px solid #ddd;
	font-size: 16px;
	line-height: 1.9;
	color: #444;
}

.notice-content p {
	margin: 0 0 20px;
}

.notice-content img {
	max-width: 100%;
	height: auto;
}


/* ========================================
   Ã·ºÎÆÄÀÏ
======================================== */
.notice-file {
	display: flex;
	align-items: center;
	padding: 18px 30px;
	border-bottom: 1px solid #ddd;
	background: #fafafa;
	font-size: 14px;
}

.notice-file strong {
	flex: 0 0 90px;
	color: #333;
}

.notice-file a {
	color: #666;
}

.notice-file a:hover {
	color: #053272;
	text-decoration: underline;
}


/* ========================================
   ÀÌÀü / ´ÙÀ½±Û
======================================== */
.notice-nav {
	margin-top: 35px;
	border-top: 1px solid #ddd;
}

.notice-nav-row {
	display: flex;
	align-items: center;
	min-height: 58px;
	border-bottom: 1px solid #ddd;
	font-size: 14px;
}

.notice-nav-label {
	flex: 0 0 110px;
	padding-left: 20px;
	font-weight: 600;
	color: #555;
}

.notice-nav-title {
	flex: 1;
	min-width: 0;
	padding: 0 20px;
}

.notice-nav-title a {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #555;
}

.notice-nav-title a:hover {
	color: #053272;
	text-decoration: underline;
}

.notice-nav-date {
	flex: 0 0 120px;
	padding-right: 20px;
	color: #999;
	text-align: right;
}


/* ========================================
   ¹öÆ°
======================================== */
.btn-wrap {
	margin-top: 35px;
	text-align: center;
}

.btn-list {
	min-width: 120px;
	padding: 11px 25px;
	border: 1px solid #333;
	border-radius: 0;
	background: #333;
	font-size: 15px;
	color: #fff;
}

.btn-list:hover {
	border-color: #053272;
	background: #053272;
	color: #fff;
}


/* ========================================
   ¸ð¹ÙÀÏ
======================================== */
@media (max-width: 767.98px) {

	.sub-title-wrap {
		padding: 45px 15px 30px;
	}

	.sub-title-wrap h1 {
		font-size: 28px;
	}

	.sub-title-wrap p {
		font-size: 14px;
	}

	.notice-view-wrap {
		padding: 40px 0 70px;
	}

	.notice-view-header {
		padding: 22px 15px;
	}

	.notice-view-header h2 {
		margin-bottom: 12px;
		font-size: 20px;
		line-height: 1.45;
	}

	.notice-info {
		gap: 14px;
		font-size: 12px;
	}

	.notice-info span + span::before {
		left: -7px;
	}

	.notice-content {
		min-height: 280px;
		padding: 30px 15px 45px;
		font-size: 15px;
		line-height: 1.8;
	}

	.notice-file {
		align-items: flex-start;
		padding: 15px;
	}

	.notice-file strong {
		flex: 0 0 70px;
	}

	.notice-nav {
		margin-top: 25px;
	}

	.notice-nav-row {
		min-height: 55px;
	}

	.notice-nav-label {
		flex: 0 0 75px;
		padding-left: 10px;
		font-size: 13px;
	}

	.notice-nav-title {
		padding: 0 10px;
		font-size: 13px;
	}

	.notice-nav-date {
		display: none;
	}

	.btn-wrap {
		margin-top: 25px;
	}

	.btn-list {
		width: 100%;
	}
}






/* =========================
   »ó´Ü ºñÁÖ¾ó
========================= */
.sub-visual {
	padding: 90px 0 70px;
	background:
		linear-gradient(135deg, rgba(20,85,154,.96), rgba(18,61,106,.91)),
		linear-gradient(#14559a, #14559a);
	color: #ffffff;
}

.sub-visual .sub-label {
	display: inline-block;
	margin-bottom: 12px;
	font-size: .9rem;
	font-weight: 700;
	letter-spacing: .12em;
	opacity: .8;
}

.sub-visual h1 {
	margin: 0 0 10px;
	font-size: 2.7rem;
	font-weight: 800;
	letter-spacing: -.05em;
}

.sub-visual p {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 400;
	opacity: .88;
}


/* =========================
   ¼­ºê ¸Þ´º
========================= */
.intro-nav-wrap {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,.96);
	border-bottom: 1px solid var(--line-color);
	backdrop-filter: blur(8px);
}

.intro-nav {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.intro-nav li {
	flex: 0 1 190px;
}

.intro-nav a {
	position: relative;
	display: block;
	padding: 20px 10px;
	text-align: center;
	font-size: .98rem;
	font-weight: 600;
	color: #555555;
	transition: .2s;
}

.intro-nav a:hover {
	color: var(--main-color);
}

.intro-nav a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -1px;
	width: 0;
	height: 3px;
	background: var(--main-color);
	transform: translateX(-50%);
	transition: .25s;
}

.intro-nav a:hover::after {
	width: 60%;
}


/* =========================
   °øÅë ¼½¼Ç
========================= */
.intro-section {
	padding: 100px 0;
	scroll-margin-top: 65px;
}

.intro-section.bg-light-section {
	background: #f8f9fa;
}

.section-head {
	margin-bottom: 55px;
	text-align: center;
}

.section-head .section-label {
	display: block;
	margin-bottom: 7px;
	color: var(--main-color);
	font-size: .85rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.section-head h2 {
	margin-bottom: 15px;
	font-size: 2.15rem;
	font-weight: 800;
	letter-spacing: -.05em;
}

.section-head p {
	margin: 0;
	color: #777777;
	font-size: 1rem;
}


/* =========================
   ´ëÇ¥ÀÚ ÀÎ»ç¸»
========================= */
.greeting-wrap {
	position: relative;
}

.greeting-photo {
	position: relative;
	min-height: 580px;
	overflow: hidden;
	border-radius: 6px 40px 6px 6px;
	background: #e9ecef;
}

.greeting-photo img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.greeting-photo-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999999;
	font-size: .95rem;
	background: linear-gradient(135deg, #eeeeee, #dddddd);
}

.greeting-content {
	padding: 20px 0 20px 35px;
}

.greeting-content .hello {
	margin-bottom: 5px;
	color: var(--main-color);
	font-size: 2.3rem;
	font-weight: 800;
	letter-spacing: -.05em;
}

.greeting-content h3 {
	margin-bottom: 35px;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: -.05em;
}

.greeting-content p {
	margin-bottom: 20px;
	font-size: 1.06rem;
	line-height: 2;
	letter-spacing: -.025em;
}

.greeting-sign {
	margin-top: 35px;
	text-align: right;
	font-size: 1rem;
}

.greeting-sign strong {
	margin-left: 10px;
	font-size: 1.65rem;
	font-weight: 800;
}


/* =========================
   ¼³¸³ÃëÁö
========================= */
.purpose-intro {
	max-width: 900px;
	margin: 0 auto 50px;
	text-align: center;
	font-size: 1.22rem;
	line-height: 2;
}

.purpose-card {
	height: 100%;
	padding: 40px 30px;
	background: #ffffff;
	border: 1px solid var(--line-color);
	border-radius: 16px;
	transition: .25s;
}

.purpose-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0,0,0,.07);
}

.purpose-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 25px;
	border-radius: 50%;
	background: var(--main-color);
	color: #ffffff;
	font-size: 1rem;
	font-weight: 800;
}

.purpose-card h3 {
	margin-bottom: 15px;
	font-size: 1.05rem;
	font-weight: 750;
}

.purpose-card p {
	margin: 0;
	color: #666666;
	font-size: .96rem;
	line-height: 1.8;
}


/* =========================
   ¿¬Çõ
========================= */
.history-wrap {
	position: relative;
	max-width: 950px;
	margin: 0 auto;
}

.history-wrap::before {
	content: "";
	position: absolute;
	left: 170px;
	top: 10px;
	bottom: 10px;
	width: 1px;
	background: #d8dde3;
}

.history-item {
	position: relative;
	display: flex;
	padding-bottom: 45px;
}

.history-item:last-child {
	padding-bottom: 0;
}

.history-year {
	width: 170px;
	flex-shrink: 0;
	padding-right: 45px;
	text-align: right;
	color: var(--main-color);
	font-size: 1.8rem;
	font-weight: 800;
}

.history-content {
	position: relative;
	flex: 1;
	padding-left: 48px;
}

.history-content::before {
	content: "";
	position: absolute;
	left: -7px;
	top: 10px;
	width: 15px;
	height: 15px;
	border: 4px solid var(--main-color);
	border-radius: 50%;
	background: #ffffff;
}

.history-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.history-content li {
	position: relative;
	margin-bottom: 12px;
	padding-left: 85px;
	color: #555555;
}

.history-content li:last-child {
	margin-bottom: 0;
}

.history-content .date {
	position: absolute;
	left: 0;
	top: 0;
	color: #222222;
	font-weight: 700;
}


/* =========================
   Á¶Á÷µµ
========================= */
.org-wrap {
	max-width: 1150px;
	margin: 0 auto;
	padding: 20px 0;
}

.org-top {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.org-box {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 74px;
	padding: 15px 40px;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 700;
	background: #ffffff;
	border: 2px solid #dddddd;
}

.org-chairman {
	width: 420px;
	max-width: 90%;
	border-radius: 40px;
	background: #414141;
	border-color: #414141;
	color: #ffffff;
}

.org-board {
	width: 280px;
	margin-top: 85px;
	border-radius: 40px;
	background: #999999;
	border-color: #999999;
	color: #ffffff;
}

.org-board::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -87px;
	width: 2px;
	height: 87px;
	background: #c6c6c6;
	transform: translateX(-50%);
}

.org-side-row {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 850px;
	margin: -60px auto 80px;
}

.org-side-row::before {
	content: "";
	position: absolute;
	left: 17%;
	right: 17%;
	top: 50%;
	height: 2px;
	background: #cccccc;
}

.org-side {
	position: relative;
	z-index: 3;
	width: 185px;
	min-height: 70px;
	background: #adc4b7;
	border: 0;
	color: #ffffff;
}

.org-side-left {
	margin-right: auto;
}

.org-side-right {
	margin-left: auto;
}

.org-committee-wrap {
	position: relative;
	padding-top: 60px;
}

.org-committee-wrap::before {
	content: "";
	position: absolute;
	left: 12.5%;
	right: 12.5%;
	top: 0;
	height: 2px;
	background: #cccccc;
}

.org-committee-wrap::after {
	content: "";
	position: absolute;
	left: 50%;
	top: -81px;
	width: 2px;
	height: 81px;
	background: #cccccc;
	transform: translateX(-50%);
}

.org-committee {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.org-committee-item {
	position: relative;
	min-height: 105px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
	color: #ffffff;
	font-size: 1.15rem;
	font-weight: 700;
	background: var(--green-dark);
	border-radius: 3px;
}

.org-committee-item:nth-child(even) {
	background: #4f8c4a;
}

.org-committee-item::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -62px;
	width: 2px;
	height: 62px;
	background: #cccccc;
}


/* =========================
   »ç¾÷³»¿ë
========================= */
.business-item {
	height: 100%;
	padding: 35px;
	background: #ffffff;
	border-top: 4px solid var(--main-color);
	box-shadow: 0 6px 25px rgba(0,0,0,.05);
}

.business-num {
	margin-bottom: 18px;
	color: var(--main-color);
	font-size: .9rem;
	font-weight: 800;
	letter-spacing: .08em;
}

.business-item h3 {
	margin-bottom: 15px;
	font-size: 1.25rem;
	font-weight: 750;
}

.business-item p {
	margin: 0;
	color: #666666;
	font-size: .96rem;
	line-height: 1.85;
}


/* =========================
   ¹ÝÀÀÇü
========================= */
@media (max-width: 991.98px) {

	.sub-visual {
		padding: 70px 0 55px;
	}

	.sub-visual h1 {
		font-size: 2.2rem;
	}

	.intro-section {
		padding: 75px 0;
	}

	.greeting-photo {
		min-height: 460px;
		margin-bottom: 35px;
		border-radius: 6px 30px 6px 6px;
	}

	.greeting-content {
		padding: 0;
	}

	.greeting-content .hello {
		font-size: 2rem;
	}

	.greeting-content h3 {
		font-size: 1.7rem;
	}

	.org-side-row {
		max-width: 700px;
	}
}


@media (max-width: 767.98px) {

	body {
		line-height: 1.7;
	}

	.sub-visual {
		padding: 55px 0 45px;
		text-align: center;
	}

	.sub-visual h1 {
		font-size: 1.9rem;
	}

	.sub-visual p {
		font-size: .92rem;
	}

	.intro-nav-wrap {
		overflow-x: auto;
		white-space: nowrap;
	}

	.intro-nav {
		justify-content: flex-start;
		min-width: 580px;
	}

	.intro-nav li {
		flex: 1;
	}

	.intro-nav a {
		padding: 16px 8px;
		font-size: .9rem;
	}

	.intro-section {
		padding: 60px 0;
	}

	.section-head {
		margin-bottom: 35px;
	}

	.section-head h2 {
		font-size: 1.75rem;
	}

	.section-head p {
		font-size: .92rem;
	}

	.greeting-photo {
		min-height: 400px;
	}

	.greeting-content .hello {
		font-size: 1.8rem;
	}

	.greeting-content h3 {
		margin-bottom: 25px;
		font-size: 1.4rem;
	}

	.greeting-content p {
		font-size: .98rem;
		line-height: 1.85;
	}

	.greeting-sign strong {
		font-size: 1.4rem;
	}

	.purpose-intro {
		font-size: 1.05rem;
		text-align: left;
	}

	.purpose-card {
		padding: 30px 25px;
	}

	.history-wrap::before {
		left: 15px;
	}

	.history-item {
		display: block;
		padding-left: 42px;
		padding-bottom: 40px;
	}

	.history-year {
		width: auto;
		margin-bottom: 15px;
		padding: 0;
		text-align: left;
		font-size: 1.5rem;
	}

	.history-content {
		padding-left: 0;
	}

	.history-content::before {
		left: -34px;
		top: -45px;
	}

	.history-content li {
		padding-left: 0;
	}

	.history-content .date {
		position: static;
		display: block;
		margin-bottom: 3px;
	}

	.org-wrap {
		padding: 0;
	}

	.org-chairman,
	.org-board,
	.org-side {
		width: 100%;
		max-width: 100%;
		border-radius: 8px;
	}

	.org-board {
		margin-top: 40px;
	}

	.org-board::before {
		top: -42px;
		height: 42px;
	}

	.org-side-row {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		margin: 30px 0 40px;
	}

	.org-side-row::before {
		display: none;
	}

	.org-side-left,
	.org-side-right {
		margin: 0;
	}

	.org-committee-wrap {
		padding-top: 35px;
	}

	.org-committee-wrap::before,
	.org-committee-wrap::after {
		display: none;
	}

	.org-committee {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.org-committee-item {
		min-height: 85px;
		font-size: 1rem;
		border-radius: 6px;
	}

	.org-committee-item::before {
		display: none;
	}

	.business-item {
		padding: 28px 25px;
	}
}


@media (max-width: 480px) {

	.org-committee {
		grid-template-columns: 1fr;
	}

	.greeting-photo {
		min-height: 330px;
	}
}