#wrapper.ksvr-site {
	padding-top: 0;
}

.ksvr-site {
	min-height: 100vh;
	background: #fff;
	color: #292929;
	font-family: Pretendard, "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ksvr-site *,
.ksvr-site *::before,
.ksvr-site *::after {
	box-sizing: border-box;
}

.ksvr-site ul,
.ksvr-site ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ksvr-site li {
	float: none;
}

.ksvr-site a {
	color: inherit;
	text-decoration: none;
}

.ksvr-site img {
	max-width: 100%;
	height: auto;
}

.main_contents {
	margin-top: 0;
	text-align: left;
}

.ksvr-header {
	position: relative;
	z-index: 1000;
	background: #fff;
}

.ksvr-header-top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: min(100%, 1600px);
	min-height: 120px;
	margin: 0 auto;
	padding: 24px 20px 18px;
}

.ksvr-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: min(325px, 62vw);
}

.ksvr-logo img {
	display: block;
	width: 100%;
}

.ksvr-auth {
	position: absolute;
	top: 50px;
	right: 20px;
	display: flex;
	align-items: center;
	gap: 24px;
	color: #555;
	font-size: 14px;
	line-height: 1;
}

.ksvr-auth a {
	transition: color 0.18s ease;
}

.ksvr-auth a:hover {
	color: #1d75b8;
}

.ksvr-nav-wrap {
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
	background: #fff;
}

.ksvr-nav-inner {
	display: grid;
	grid-template-columns: 1fr 70px;
	align-items: center;
	width: min(100%, 1600px);
	min-height: 77px;
	margin: 0 auto;
	padding: 0 20px;
}

.ksvr-nav {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	align-items: center;
	min-height: 77px;
}

.ksvr-nav-item {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: center;
	min-height: 77px;
}

.ksvr-nav-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 77px;
	color: #111;
	font-size: 20px;
	font-weight: 500;
	transition: color 0.18s ease;
}

.ksvr-nav-link:hover,
.ksvr-nav-item:focus-within .ksvr-nav-link,
.ksvr-nav-item:hover .ksvr-nav-link {
	color: #1d75b8;
}

.ksvr-nav-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 1005;
	display: grid;
	min-width: 210px;
	padding: 14px 0;
	border: 1px solid #e5e7eb;
	border-radius: 0 0 12px 12px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity 0.16s ease, transform 0.16s ease;
}

.ksvr-nav-item:hover .ksvr-nav-dropdown,
.ksvr-nav-item:focus-within .ksvr-nav-dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.ksvr-nav-dropdown a {
	display: block;
	padding: 9px 22px;
	color: #333;
	font-size: 15px;
	line-height: 1.35;
	text-align: center;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease;
}

.ksvr-nav-dropdown a:hover,
.ksvr-nav-dropdown a:focus {
	background: #eef7ff;
	color: #1d75b8;
}

.ksvr-menu-button {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	justify-self: end;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	gap: 7px;
	cursor: pointer;
}

.ksvr-menu-button span {
	display: block;
	width: 25px;
	height: 2px;
	background: #111;
}

.ksvr-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 1990;
	display: none;
	background: rgba(15, 23, 42, 0.45);
}

.ksvr-menu-overlay.is-open {
	display: block;
}

.ksvr-menu-panel {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 2000;
	width: min(760px, 100vw);
	height: 100vh;
	overflow-y: auto;
	padding: 30px;
	background: #fff;
	box-shadow: none;
	transform: translateX(100%);
	transition: transform 0.24s ease;
}

.ksvr-menu-panel.is-open {
	transform: translateX(0);
}

body.ksvr-menu-open {
	overflow: hidden;
}

.ksvr-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 26px;
	border-bottom: 1px solid #e5e7eb;
}

.ksvr-menu-head img {
	width: 230px;
}

.ksvr-menu-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	background: #fff;
	color: #111;
	font-size: 20px;
	cursor: pointer;
}

.ksvr-menu-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px 26px;
	padding-top: 34px;
}

.ksvr-menu-group {
	min-height: 150px;
	border-top: 2px solid #111;
	padding-top: 13px;
}

.ksvr-menu-group h2 {
	margin: 0 0 18px;
	color: #111;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.25;
}

.ksvr-menu-group a {
	display: block;
	padding: 5px 0;
	color: #222;
	font-size: 15px;
	line-height: 1.45;
}

.ksvr-menu-group a:hover {
	color: #1d75b8;
}

.ksvr-hero {
	min-height: 610px;
	background: #dce8f7 url("/assets/img/pages/images/visual-bg.jpg") center top / cover no-repeat;
}

.ksvr-hero-inner {
	display: grid;
	grid-template-columns: minmax(480px, 622px) minmax(360px, 510px);
	align-items: center;
	justify-content: start;
	gap: 18px;
	width: min(100%, 1420px);
	min-height: 610px;
	margin: 0 auto;
	padding: 70px 20px;
}

.ksvr-hero-side {
	display: grid;
	gap: 22px;
}

.ksvr-hero-card {
	display: block;
	overflow: hidden;
	border-radius: 26px;
	box-shadow: 0 14px 28px rgba(42, 78, 120, 0.08);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ksvr-hero-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 34px rgba(42, 78, 120, 0.16);
}

.ksvr-hero-card img {
	display: block;
	width: 100%;
}

.ksvr-main-info {
	background: #f4f4f5;
	padding: 70px 20px 76px;
}

.ksvr-info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	width: min(100%, 1340px);
	margin: 0 auto;
}

.ksvr-section-head h1 {
	margin: 0 0 22px;
	color: #2a2a2a;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
}

.ksvr-notice-card,
.ksvr-office-card {
	min-height: 210px;
	border-radius: 24px;
	background: #fff;
}

.ksvr-notice-card {
	padding: 36px 50px;
}

.ksvr-notice-card a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	padding: 7px 0;
	color: #737373;
	font-size: 19px;
	line-height: 1.45;
}

.ksvr-notice-card a:hover span {
	color: #1d75b8;
}

.ksvr-notice-card span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ksvr-notice-card time {
	color: #6d6d6d;
}

.ksvr-notice-empty {
	display: flex;
	align-items: center;
	min-height: 138px;
	color: #737373;
	font-size: 18px;
	line-height: 1.5;
}

.ksvr-office-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	text-align: center;
}

.ksvr-office-card strong {
	display: block;
	margin-bottom: 10px;
	color: #252525;
	font-size: 52px;
	font-weight: 900;
	line-height: 1;
}

.ksvr-email {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	margin: 0 0 18px;
	padding: 3px 20px 5px;
	border-radius: 999px;
	background: #1d75b8;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
}

.ksvr-bank {
	margin: 0;
	color: #777;
	font-size: 18px;
	line-height: 1.45;
}

.ksvr-sub-page {
	min-height: 520px;
	padding: 38px 20px 120px;
	background: #fff;
}

.ksvr-sub-wrap {
	width: min(100%, 1600px);
	margin: 0 auto;
}

.ksvr-sub-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 auto 24px;
}

.ksvr-sub-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 20px;
	border: 1px solid #d8e1ea;
	border-radius: 999px;
	background: #fff;
	color: #46515c;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.ksvr-sub-tab:hover {
	border-color: #1d75b8;
	color: #1d75b8;
}

.ksvr-sub-tab.is-active {
	border-color: #1d75b8;
	background: #1d75b8;
	color: #fff;
}

.user_board_pagination .pagination,
.pastEvent_pagination .pagination,
.educationVet_pagination .pagination,
.educationAnimalHealth_pagination .pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.user_board_pagination .page-link,
.pastEvent_pagination .page-link,
.educationVet_pagination .page-link,
.educationAnimalHealth_pagination .page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	min-height: 36px;
	padding: 0 12px;
	border: 1px solid #d8e1ea;
	border-radius: 6px;
	background: #fff;
	color: #46515c;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.user_board_pagination .page-link:hover,
.user_board_pagination .page-link.active,
.pastEvent_pagination .page-link:hover,
.pastEvent_pagination .page-link.active,
.educationVet_pagination .page-link:hover,
.educationVet_pagination .page-link.active,
.educationAnimalHealth_pagination .page-link:hover,
.educationAnimalHealth_pagination .page-link.active {
	border-color: #1d75b8;
	background: #1d75b8;
	color: #fff;
}

.ksvr-sub-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	margin: 0 auto;
	background: #fff;
	text-align: center;
}

.ksvr-sub-inner h1 {
	margin: 0;
	color: #222;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.25;
}

.ksvr-greeting {
	padding-top: 20px;
}

.ksvr-greeting h1 {
	margin: 0 0 150px;
	color: #1f1f1f;
	font-size: 54px;
	font-weight: 900;
	line-height: 1.15;
	text-align: center;
}

.ksvr-greeting-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 700px);
	align-items: center;
	gap: 82px;
}

.ksvr-greeting-copy h2 {
	margin: 0 0 58px;
	color: #1d6dac;
	font-size: 39px;
	font-weight: 900;
	line-height: 1.55;
	letter-spacing: 0;
}

.ksvr-greeting-copy p {
	margin: 0;
	color: #747474;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.52;
	letter-spacing: 0;
	word-break: keep-all;
}

.ksvr-greeting-copy p + p {
	margin-top: 78px;
}

.ksvr-greeting-image {
	overflow: hidden;
	border-radius: 38px;
}

.ksvr-greeting-image img {
	display: block;
	width: 100%;
	height: auto;
}

.ksvr-history {
	width: min(100%, 1180px);
	margin: 0 auto;
	padding-top: 20px;
}

.ksvr-history h1 {
	margin: 0 0 80px;
	color: #1f1f1f;
	font-size: 46px;
	font-weight: 900;
	line-height: 1.15;
	text-align: center;
}

.ksvr-history-copy {
	margin-bottom: 34px;
}

.ksvr-history-copy p {
	margin: 0;
	color: #747474;
	font-size: 18px;
	line-height: 1.75;
	letter-spacing: 0;
	word-break: keep-all;
}

.ksvr-history-list {
	display: grid;
	gap: 26px;
}

.ksvr-history-item {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 28px;
}

.ksvr-history-year {
	display: grid;
	grid-template-columns: 64px auto;
	align-items: center;
	color: #1d6dac;
	font-size: 40px;
	font-weight: 900;
	line-height: 1;
}

.ksvr-history-year span {
	position: relative;
	display: block;
	width: 48px;
	height: 1px;
	background: #a8cbe8;
}

.ksvr-history-year span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 13px;
	height: 13px;
	border: 4px solid #e6f2fb;
	border-radius: 50%;
	background: #1d75b8;
	transform: translateY(-50%);
}

.ksvr-history-detail {
	padding-top: 2px;
	color: #737373;
	font-size: 18px;
	line-height: 1.65;
	word-break: keep-all;
}

.ksvr-history-detail ul {
	display: grid;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ksvr-history-detail li {
	position: relative;
	padding-left: 18px;
}

.ksvr-history-detail li::before {
	content: "";
	position: absolute;
	top: 0.82em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #111;
	transform: translateY(-50%);
}

.ksvr-organization {
	width: min(100%, 1440px);
	margin: 0 auto;
	padding-top: 28px;
}

.ksvr-organization h1 {
	margin: 0 0 92px;
	color: #1f1f1f;
	font-size: 54px;
	font-weight: 900;
	line-height: 1.15;
	text-align: center;
}

.ksvr-org-chart {
	width: min(100%, 1056px);
	margin: 0 auto 76px;
	text-align: center;
}

.ksvr-org-chart img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.ksvr-officer-table-wrap {
	width: 100%;
	overflow-x: auto;
	border-top: 3px solid #1d75b8;
	-webkit-overflow-scrolling: touch;
}

.ksvr-officer-table {
	width: 100%;
	min-width: 960px;
	border-collapse: collapse;
	table-layout: fixed;
	color: #555;
	font-size: 16px;
	text-align: center;
}

.ksvr-officer-table caption {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.ksvr-officer-table th,
.ksvr-officer-table td {
	height: 66px;
	padding: 14px 18px;
	border: 1px solid #d6d6d6;
	vertical-align: middle;
}

.ksvr-officer-table th {
	background: #f7f8fb;
	color: #222;
	font-size: 18px;
	font-weight: 500;
}

.ksvr-officer-table td {
	background: #fff;
	color: #747474;
}

.ksvr-officer-table th:nth-child(1) {
	width: 14%;
}

.ksvr-officer-table th:nth-child(2) {
	width: 14%;
}

.ksvr-officer-table th:nth-child(3) {
	width: 42%;
}

.ksvr-officer-table th:nth-child(4) {
	width: 30%;
}

.ksvr-officer-links {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.ksvr-officer-links a,
.ksvr-profile-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 31px;
	height: 27px;
}

.ksvr-officer-links img,
.ksvr-profile-link img {
	display: block;
	width: 31px;
	height: 27px;
}

.ksvr-contact {
	width: min(100%, 1180px);
	margin: 0 auto;
	padding-top: 20px;
}

.ksvr-contact h1 {
	margin: 0 0 34px;
	color: #1f1f1f;
	font-size: 54px;
	font-weight: 900;
	line-height: 1.15;
	text-align: center;
}

.ksvr-contact-intro {
	margin-bottom: 44px;
	color: #747474;
	font-size: 20px;
	line-height: 1.65;
	text-align: center;
	word-break: keep-all;
}

.ksvr-contact-intro p {
	margin: 0;
}

.ksvr-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.ksvr-contact-panel {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 22px;
	min-height: 220px;
	padding: 34px 38px;
	border: 1px solid #dce9f4;
	border-top: 3px solid #1d75b8;
	background: #fff;
}

.ksvr-contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: #eef7ff;
	color: #1d75b8;
	font-size: 34px;
}

.ksvr-contact-content h2 {
	margin: 2px 0 18px;
	color: #1d6dac;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
}

.ksvr-contact-value {
	display: inline-block;
	color: #222;
	font-size: 27px;
	font-weight: 800;
	line-height: 1.35;
	word-break: break-all;
}

.ksvr-contact-value:hover {
	color: #1d75b8;
}

.ksvr-contact-bank-owner {
	margin: 0 0 6px;
	color: #747474;
	font-size: 18px;
	line-height: 1.45;
}

.ksvr-contact-bank-name {
	margin: 0 0 18px;
	color: #222;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.35;
}

.ksvr-account-copy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 18px;
	border: 1px solid #dce9f4;
	background: #f7fbff;
}

.ksvr-account-copy strong {
	color: #111;
	font-size: 23px;
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: 0;
}

.ksvr-account-copy button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 76px;
	min-height: 38px;
	border: 1px solid #1d75b8;
	background: #fff;
	color: #1d75b8;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.16s ease, color 0.16s ease;
}

.ksvr-account-copy button:hover {
	background: #1d75b8;
	color: #fff;
}

.ksvr-contact-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 34px 0 0;
	color: #8a8a8a;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
}

.ksvr-member-inquiry {
	width: min(100%, 1180px);
	margin: 0 auto;
	padding-top: 20px;
}

.ksvr-member-inquiry h1 {
	margin: 0 0 34px;
	color: #1f1f1f;
	font-size: 54px;
	font-weight: 900;
	line-height: 1.15;
	text-align: center;
}

.ksvr-member-inquiry-lead {
	margin-bottom: 40px;
	color: #747474;
	font-size: 20px;
	line-height: 1.65;
	text-align: center;
	word-break: keep-all;
}

.ksvr-member-inquiry-lead p {
	margin: 0;
}

.ksvr-member-inquiry-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 28px;
}

.ksvr-member-inquiry-main,
.ksvr-member-inquiry-side {
	border: 1px solid #dce9f4;
	border-top: 3px solid #1d75b8;
	background: #fff;
}

.ksvr-member-inquiry-main {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr);
	align-items: center;
	gap: 26px;
	min-height: 250px;
	padding: 42px 46px;
}

.ksvr-member-inquiry-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 86px;
	height: 86px;
	border-radius: 50%;
	background: #eef7ff;
	color: #1d75b8;
	font-size: 38px;
}

.ksvr-member-inquiry-label {
	margin: 0 0 12px;
	color: #1d6dac;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
}

.ksvr-member-inquiry-email {
	display: inline-block;
	color: #222;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.25;
	word-break: break-all;
}

.ksvr-member-inquiry-email:hover {
	color: #1d75b8;
}

.ksvr-member-inquiry-desc {
	margin: 18px 0 0;
	color: #747474;
	font-size: 18px;
	line-height: 1.65;
	word-break: keep-all;
}

.ksvr-member-inquiry-side {
	padding: 38px 42px;
}

.ksvr-member-inquiry-side h2 {
	margin: 0 0 24px;
	color: #1d6dac;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
}

.ksvr-member-inquiry-side ul {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #555;
	font-size: 18px;
	line-height: 1.5;
}

.ksvr-member-inquiry-side li {
	position: relative;
	padding-left: 18px;
}

.ksvr-member-inquiry-side li::before {
	content: "";
	position: absolute;
	top: 0.75em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #1d75b8;
	transform: translateY(-50%);
}

.ksvr-member-inquiry-tags {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.ksvr-member-inquiry-tags span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 18px;
	border: 1px solid #d8e1ea;
	border-radius: 999px;
	background: #fff;
	color: #46515c;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.ksvr-policy {
	width: min(100%, 1180px);
	margin: 0 auto;
	padding-top: 64px;
}

.ksvr-policy h1 {
	margin: 0 0 44px;
	color: #1f1f1f;
	font-size: 54px;
	font-weight: 900;
	line-height: 1.15;
	text-align: center;
}

.ksvr-policy-content {
	padding-top: 8px;
	color: #555;
	font-size: 18px;
	line-height: 1.8;
	word-break: keep-all;
	white-space: pre-wrap;
}

.ksvr-policy-content p {
	margin: 0 0 18px;
}

.ksvr-policy-content ul {
	margin: 14px 0 18px;
	padding-left: 1.35em;
	list-style: disc;
}

.ksvr-policy-content ol {
	margin: 14px 0 18px;
	padding-left: 1.45em;
	list-style: decimal;
}

.ksvr-policy-content li {
	margin: 4px 0;
}

.ksvr-policy-content table {
	width: 100%;
	margin: 18px 0;
	border-collapse: collapse;
}

.ksvr-policy-content th,
.ksvr-policy-content td {
	padding: 12px 14px;
	border: 1px solid #d6d6d6;
	vertical-align: top;
}

.ksvr-policy-content th {
	background: #f7f8fb;
	color: #222;
	font-weight: 700;
}

.ksvr-footer {
	padding: 58px 20px 86px;
	background: #fff;
	color: #8b8b8b;
	text-align: center;
}

.ksvr-footer-logo {
	display: block;
	width: 270px;
	margin: 0 auto 24px;
	opacity: 0.72;
}

.ksvr-footer p {
	margin: 5px 0;
	font-size: 14px;
	line-height: 1.5;
}

#dialog {
	display: none;
}

@media (max-width: 1100px) {
	.ksvr-hero-inner {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
	}

	.ksvr-section-head h1 {
		font-size: 36px;
	}

	.ksvr-greeting h1 {
		margin-bottom: 90px;
		font-size: 46px;
	}

	.ksvr-greeting-body {
		gap: 44px;
		grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
	}

	.ksvr-greeting-copy h2 {
		margin-bottom: 36px;
		font-size: 30px;
	}

	.ksvr-greeting-copy p {
		font-size: 19px;
	}

	.ksvr-greeting-copy p + p {
		margin-top: 44px;
	}

	.ksvr-history {
		padding-top: 54px;
	}

	.ksvr-history h1 {
		margin-bottom: 58px;
		font-size: 40px;
	}

	.ksvr-history-item {
		grid-template-columns: 210px minmax(0, 1fr);
	}

	.ksvr-history-year {
		grid-template-columns: 54px auto;
		font-size: 34px;
	}

	.ksvr-organization h1 {
		margin-bottom: 62px;
		font-size: 46px;
	}

	.ksvr-org-chart {
		margin-bottom: 54px;
	}

	.ksvr-contact {
		padding-top: 52px;
	}

	.ksvr-contact h1 {
		font-size: 46px;
	}

	.ksvr-member-inquiry {
		padding-top: 52px;
	}

	.ksvr-member-inquiry h1 {
		font-size: 46px;
	}

	.ksvr-member-inquiry-main {
		padding: 34px;
	}

	.ksvr-member-inquiry-email {
		font-size: 28px;
	}

	.ksvr-policy {
		padding-top: 52px;
	}

	.ksvr-policy h1 {
		font-size: 46px;
	}

	.ksvr-contact-panel {
		padding: 30px;
	}

	.ksvr-contact-value,
	.ksvr-account-copy strong {
		font-size: 22px;
	}

	.ksvr-notice-card {
		padding: 30px;
	}

	.ksvr-office-card strong {
		font-size: 44px;
	}

	.ksvr-email {
		font-size: 20px;
	}
}

@media (max-width: 860px) {
	.ksvr-header-top {
		justify-content: flex-start;
		min-height: 86px;
		padding: 18px 18px 14px;
	}

	.ksvr-logo {
		width: min(260px, 64vw);
	}

	.ksvr-auth {
		top: 17px;
		right: 18px;
		gap: 12px;
		font-size: 12px;
	}

	.ksvr-nav-inner {
		grid-template-columns: 1fr auto;
		min-height: 60px;
	}

	.ksvr-nav {
		display: none;
	}

	.ksvr-menu-button {
		width: 44px;
		height: 44px;
	}

	.ksvr-hero {
		min-height: auto;
		background-position: 60% top;
	}

	.ksvr-hero-inner {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 38px 18px 46px;
	}

	.ksvr-hero-side {
		gap: 16px;
	}

	.ksvr-hero-card {
		border-radius: 18px;
	}

	.ksvr-main-info {
		padding: 46px 18px 54px;
	}

	.ksvr-greeting h1 {
		margin-bottom: 46px;
		font-size: 40px;
	}

	.ksvr-greeting-body {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.ksvr-greeting-copy {
		order: 2;
	}

	.ksvr-greeting-image {
		order: 1;
		border-radius: 24px;
	}

	.ksvr-history {
		padding-top: 42px;
	}

	.ksvr-history h1 {
		margin-bottom: 42px;
		font-size: 36px;
	}

	.ksvr-history-copy p {
		font-size: 17px;
	}

	.ksvr-history-copy p br {
		display: none;
	}

	.ksvr-history-item {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.ksvr-history-year {
		grid-template-columns: 48px auto;
		font-size: 32px;
	}

	.ksvr-organization {
		padding-top: 36px;
	}

	.ksvr-organization h1 {
		margin-bottom: 42px;
		font-size: 40px;
	}

	.ksvr-org-chart {
		margin-bottom: 38px;
	}

	.ksvr-contact {
		padding-top: 40px;
	}

	.ksvr-contact h1 {
		font-size: 40px;
	}

	.ksvr-member-inquiry {
		padding-top: 40px;
	}

	.ksvr-member-inquiry h1 {
		font-size: 40px;
	}

	.ksvr-member-inquiry-grid {
		grid-template-columns: 1fr;
	}

	.ksvr-member-inquiry-main {
		grid-template-columns: 68px minmax(0, 1fr);
		min-height: auto;
		padding: 28px;
	}

	.ksvr-member-inquiry-icon {
		width: 68px;
		height: 68px;
		font-size: 30px;
	}

	.ksvr-member-inquiry-side {
		padding: 28px;
	}

	.ksvr-member-inquiry-lead,
	.ksvr-member-inquiry-desc,
	.ksvr-member-inquiry-side ul {
		font-size: 16px;
	}

	.ksvr-policy {
		padding-top: 40px;
	}

	.ksvr-policy h1 {
		font-size: 40px;
	}

	.ksvr-policy-content {
		font-size: 16px;
	}

	.ksvr-contact-grid {
		grid-template-columns: 1fr;
	}

	.ksvr-info-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.ksvr-menu-panel {
		padding: 22px 18px 30px;
	}

	.ksvr-menu-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 18px;
	}
}

@media (max-width: 560px) {
	.ksvr-header-top {
		min-height: 76px;
		padding-top: 14px;
	}

	.ksvr-logo {
		width: 210px;
	}

	.ksvr-auth {
		position: static;
		margin-left: auto;
	}

	.ksvr-nav-inner {
		padding: 0 14px;
	}

	.ksvr-menu-grid {
		grid-template-columns: 1fr;
	}

	.ksvr-menu-group {
		min-height: auto;
	}

	.ksvr-section-head h1 {
		margin-bottom: 16px;
		font-size: 30px;
	}

	.ksvr-notice-card,
	.ksvr-office-card {
		min-height: auto;
		border-radius: 18px;
	}

	.ksvr-notice-card {
		padding: 24px 20px;
	}

	.ksvr-notice-card a {
		grid-template-columns: 1fr;
		gap: 2px;
		font-size: 16px;
	}

	.ksvr-notice-card span {
		white-space: normal;
	}

	.ksvr-office-card {
		padding: 28px 18px;
	}

	.ksvr-office-card strong {
		font-size: 34px;
	}

	.ksvr-email {
		width: 100%;
		min-height: 34px;
		padding: 5px 12px;
		font-size: 16px;
	}

	.ksvr-bank {
		font-size: 15px;
	}

	.ksvr-sub-page {
		min-height: 380px;
		padding: 24px 18px 80px;
	}

	.ksvr-sub-tabs {
		justify-content: flex-start;
		flex-wrap: nowrap;
		gap: 8px;
		margin-left: -18px;
		margin-right: -18px;
		padding: 0 18px 4px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.ksvr-sub-tab {
		flex: 0 0 auto;
		min-height: 38px;
		padding: 0 15px;
		font-size: 14px;
	}

	.ksvr-sub-inner {
		min-height: 220px;
	}

	.ksvr-sub-inner h1 {
		font-size: 30px;
	}

	.ksvr-greeting {
		padding-top: 14px;
	}

	.ksvr-greeting h1 {
		margin-bottom: 34px;
		font-size: 34px;
	}

	.ksvr-greeting-copy h2 {
		margin-bottom: 26px;
		font-size: 25px;
		line-height: 1.45;
	}

	.ksvr-greeting-copy p {
		font-size: 17px;
		line-height: 1.65;
	}

	.ksvr-greeting-copy p br,
	.ksvr-greeting-copy h2 br {
		display: none;
	}

	.ksvr-greeting-copy p + p {
		margin-top: 30px;
	}

	.ksvr-history {
		padding-top: 26px;
	}

	.ksvr-history h1 {
		margin-bottom: 30px;
		font-size: 32px;
	}

	.ksvr-history-copy {
		margin-bottom: 28px;
	}

	.ksvr-history-copy p,
	.ksvr-history-detail {
		font-size: 16px;
		line-height: 1.7;
	}

	.ksvr-history-list {
		gap: 24px;
	}

	.ksvr-history-year {
		font-size: 29px;
	}

	.ksvr-organization {
		padding-top: 26px;
	}

	.ksvr-organization h1 {
		margin-bottom: 30px;
		font-size: 34px;
	}

	.ksvr-officer-table {
		min-width: 920px;
		font-size: 14px;
	}

	.ksvr-officer-table th {
		font-size: 15px;
	}

	.ksvr-officer-table th,
	.ksvr-officer-table td {
		height: 58px;
		padding: 12px 14px;
	}

	.ksvr-contact {
		padding-top: 28px;
	}

	.ksvr-contact h1 {
		margin-bottom: 22px;
		font-size: 34px;
	}

	.ksvr-contact-intro {
		margin-bottom: 28px;
		font-size: 17px;
	}

	.ksvr-contact-panel {
		grid-template-columns: 1fr;
		gap: 18px;
		min-height: auto;
		padding: 26px 22px;
	}

	.ksvr-contact-icon {
		width: 62px;
		height: 62px;
		font-size: 28px;
	}

	.ksvr-contact-content h2 {
		font-size: 21px;
	}

	.ksvr-contact-value,
	.ksvr-account-copy strong {
		font-size: 19px;
	}

	.ksvr-account-copy {
		align-items: stretch;
		flex-direction: column;
	}

	.ksvr-account-copy button {
		width: 100%;
	}

	.ksvr-member-inquiry {
		padding-top: 28px;
	}

	.ksvr-member-inquiry h1 {
		margin-bottom: 22px;
		font-size: 34px;
	}

	.ksvr-member-inquiry-lead {
		margin-bottom: 28px;
		font-size: 17px;
	}

	.ksvr-member-inquiry-main {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 18px;
		padding: 26px 22px;
		text-align: center;
	}

	.ksvr-member-inquiry-icon {
		width: 62px;
		height: 62px;
		font-size: 28px;
	}

	.ksvr-member-inquiry-label,
	.ksvr-member-inquiry-side h2 {
		font-size: 21px;
	}

	.ksvr-member-inquiry-email {
		font-size: 23px;
	}

	.ksvr-member-inquiry-side {
		padding: 26px 22px;
	}

	.ksvr-member-inquiry-tags {
		justify-content: flex-start;
	}

	.ksvr-footer {
		padding: 44px 18px 64px;
	}

	.ksvr-footer-logo {
		width: 220px;
	}
}
