.business-area {
	width: 100%;
	box-sizing: border-box;
}

.business-inner {
	margin: 0 auto;
	display: flex;
	gap: 80px;
}

.business-img {
	flex: 1;
}

.business-img img {
	width: 100%;
	display: block;
	border-radius:20px
}

.business-cont {
	flex: 1;
}

.business-en {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #2bb5c4;
	margin-bottom: 14px;
}

.business-title {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 26px;
	color: #111;
}

.business-lead {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 26px;
	line-height: 1.6;
	color: #222;
}

.business-cont p {
	font-size: 16px;
	line-height: 1.85;
	color: #000;
	margin-bottom: 18px;
}

/* 태블릿 */
@media (max-width: 1024px) {
	.business-inner {
		gap: 50px;
	}

	.business-title {
		font-size: 34px;
	}
}

/* 모바일 */
@media (max-width: 768px) {
	.business-inner {
		flex-direction: column;
		gap: 40px;
	}

	.business-title {
		font-size: 28px;
	}

	.business-lead {
		font-size: 16px;
	}

	.business-cont p {
		font-size: 15px;
	}
}

/*인사말*/

.section_address, .wrap_controllers  {display:none}
/*오시는길*/


/* =========================
   KIM 조직도 전용
   ========================= */
.kim-org {
    width: 100%;
    padding: 0;
    background: #fff;
    box-sizing: border-box;
}

.kim-org * {
    box-sizing: border-box;
}

.kim-org__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.kim-org__header {
    text-align: center;
    margin-bottom: 42px;
}

.kim-org__title {
    margin: 0;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
}

.kim-org__desc {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.kim-org__flow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================
   노드 공통
   ========================= */
.kim-org__node {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    word-break: keep-all;
    background: #fff;
    color: #111;
    border: 1px solid #d8dde6;
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
}

/* 메인 박스 */
.kim-org__node--primary {
    min-width: 260px;
    min-height: 70px;
    padding: 16px 22px;
    border-radius: 16px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

/* 보조 박스 */
.kim-org__node--sub {
    min-width: 180px;
    min-height: 60px;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    background: #f7f9fc;
}

/* 원형 */
.kim-org__node--circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    border: 1px solid #cfd9ea;
}

/* =========================
   연결선
   ========================= */
.kim-org__arrow {
    width: 2px;
    height: 34px;
    background: linear-gradient(180deg, #b9c8e8 0%, #6f93d8 100%);
    margin: 8px 0;
    position: relative;
}

.kim-org__arrow::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #6f93d8;
    border-bottom: 2px solid #6f93d8;
    transform: translateX(-50%) rotate(45deg);
}

.kim-org__arrow--lg {
    height: 46px;
}

/* =========================
   이사회 + 감사
   ========================= */
.kim-org__branch-top {
    width: 100%;
    max-width: 620px;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

/* =========================
   주사무소 + 분사무소
   ========================= */
.kim-org__branch-office {
    width: 100%;
    max-width: 760px;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 24px;
    align-items: center;
}

.kim-org__office-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* =========================
   하단 부서
   ========================= */
.kim-org__dept {
    width: 100%;
    max-width: 620px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.kim-org__dept-card {
    border-radius: 20px;
    padding: 24px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #dfe6ef;
    box-shadow: 0 16px 36px rgba(18, 33, 61, 0.08);
    text-align: center;
}

.kim-org__dept-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #1e4fa3;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kim-org__dept-name {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
}

/* =========================
   태블릿
   ========================= */
@media (max-width: 900px) {
    .kim-org {
        padding: 40px 16px 60px;
    }

    .kim-org__title {
        font-size: 28px;
    }

    .kim-org__desc {
        font-size: 16px;
    }

    .kim-org__node--primary {
        min-width: 100%;
        font-size: 20px;
        min-height: 66px;
    }

    .kim-org__node--sub {
        min-width: 100%;
        font-size: 17px;
        min-height: 56px;
    }

    .kim-org__node--circle {
        width: 108px;
        height: 108px;
        font-size: 18px;
    }

    .kim-org__branch-top,
    .kim-org__branch-office,
    .kim-org__dept {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .kim-org__office-group {
        width: 100%;
    }

    .kim-org__dept-name {
        font-size: 18px;
    }
}

/* =========================
   모바일
   ========================= */
@media (max-width: 767px) {
    .kim-org {
        padding: 32px 14px 50px;
    }

    .kim-org__header {
        margin-bottom: 30px;
    }

    .kim-org__title {
        font-size: 26px;
    }

    .kim-org__desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .kim-org__node--primary {
        font-size: 18px;
        border-radius: 14px;
        padding: 14px 16px;
        min-height: 60px;
    }

    .kim-org__node--sub {
        font-size: 16px;
        border-radius: 12px;
        padding: 12px 14px;
        min-height: 52px;
    }

    .kim-org__node--circle {
        width: 96px;
        height: 96px;
        font-size: 17px;
    }

    .kim-org__arrow {
        height: 28px;
    }

    .kim-org__arrow--lg {
        height: 34px;
    }

    .kim-org__dept-card {
        border-radius: 16px;
        padding: 20px 16px;
    }

    .kim-org__dept-icon {
        width: 38px;
        height: 38px;
        font-size: 12px;
        margin-bottom: 12px;
    }

    .kim-org__dept-name {
        font-size: 17px;
    }
}
/*조직도*/


 /* =========================
   GSI Organization
   ========================= */
.gsi_org_wrap {
    width: 100%;
    background: #fff;
    color: #111;
    word-break: keep-all;
}

.gsi_org_inner {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

/* 상단 비주얼 */
.gsi_org_visual {
    padding: 0 0 40px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 50px;
}

.gsi_org_kicker {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #0b5ed7;
    text-transform: uppercase;
}

.gsi_org_title {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.gsi_org_desc {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #000;
}

/* 섹션 */
.gsi_org_section {
    margin-bottom: 50px;
}

.gsi_org_chart {
    max-width: 980px;
    margin: 0 auto;
}

/* 공통 행 */
.gsi_org_top_single {
    display: flex;
    justify-content: center;
}

.gsi_org_row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

/* 아래방향 화살표 연결 */
.gsi_org_connector {
    position: relative;
    width: 100%;
    height: 36px;
    margin: 10px auto;
}

.gsi_org_connector::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 18px;
    background: #7d8aff;
    transform: translateX(-50%);
}

.gsi_org_connector::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 18px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #7d8aff; /* 화살표 색상 */
    transform: translateX(-50%);
}

/* 공통 박스 */
.gsi_org_box {
    min-height: 88px;
    border-radius: 20px;
    padding: 22px 18px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.gsi_org_label {
    display: block;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    color: #111;
}

/* 박스별 스타일 */
.gsi_org_box_top {
    width: 320px;
    background: #f5f8ff;
    border-color: #dbe7ff;
}

.gsi_org_box_main {
    width: 320px;
    background: #f8fafc;
    border-color: #e5e7eb;
}

.gsi_org_box_sub {
    width: 180px;
    min-height: 72px;
    background: #fafbfc;
    border-color: #e5e7eb;
}

.gsi_org_box_circle {
    width: 150px;
    min-width: 150px;
    min-height: 150px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #d9dee7;
}

.gsi_org_box_support {
    width: 320px;
    background: #f7fbe8;
    border-color: #dce9a8;
}

.gsi_org_box_branch {
    width: 320px;
    min-height: 76px;
    background: #eef9fd;
    border-color: #b9e3ef;
}

.gsi_org_box_bottom {
    width: 320px;
    background: #f2f6ff;
    border-color: #cfdaf8;
}

/* 개별 행 */
.gsi_org_row_board {
    gap: 28px;
}

.gsi_org_row_office {
    align-items: stretch;
    gap: 34px;
}

.gsi_org_branch_col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gsi_org_row_bottom {
    gap: 28px;
}

/* 태블릿 */
@media (max-width: 1024px) {
    .gsi_org_inner {
        padding: 0;
    }

    .gsi_org_title {
        font-size: 26px;
    }

    .gsi_org_chart {
        max-width: 100%;
    }

    .gsi_org_box_top,
    .gsi_org_box_main,
    .gsi_org_box_support,
    .gsi_org_box_branch,
    .gsi_org_box_bottom {
        width: 280px;
    }

    .gsi_org_box_sub {
        width: 160px;
    }

    .gsi_org_label {
        font-size: 20px;
    }
}

/* 모바일 */
@media (max-width: 767px) {
    .gsi_org_inner {
        padding: 0;
    }

    .gsi_org_visual {
        padding-bottom: 28px;
        margin-bottom: 36px;
    }

    .gsi_org_kicker {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .gsi_org_title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .gsi_org_desc {
        font-size: 15px;
        line-height: 1.8;
    }

    .gsi_org_row {
        flex-direction: column;
        gap: 14px;
    }

    .gsi_org_branch_col {
        width: 100%;
        gap: 14px;
    }

    .gsi_org_box_top,
    .gsi_org_box_main,
    .gsi_org_box_sub,
    .gsi_org_box_support,
    .gsi_org_box_branch,
    .gsi_org_box_bottom {
        width: 100%;
        min-height: 72px;
        padding: 18px 14px;
        border-radius: 18px;
    }

    .gsi_org_box_circle {
        width: 120px;
        min-width: 120px;
        min-height: 120px;
        padding: 0;
    }

    .gsi_org_label {
        font-size: 18px;
    }

    .gsi_org_connector_short {
        height: 20px;
    }
}


/* =========================
   GSI Warranty
   ========================= */
.gsi_warranty_wrap {
    width: 100%;
    background: #fff;
    color: #111;
    word-break: keep-all;
}

.gsi_warranty_inner {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

/* 상단 비주얼 */
.gsi_warranty_visual {
    padding: 0 0 40px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 50px;
}

.gsi_warranty_kicker {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #0b5ed7;
    text-transform: uppercase;
}

.gsi_warranty_title {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.gsi_warranty_desc {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #000;
}

/* 공통 */
.gsi_warranty_section {
    margin-bottom: 50px;
}

.gsi_warranty_sec_head {
    margin-bottom: 18px;
}

.gsi_warranty_sec_head h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
}

.gsi_warranty_card {
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #fff;
    padding: 30px 28px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.gsi_warranty_card:last-child {
    margin-bottom: 0;
}

.gsi_warranty_card_title {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
}

.gsi_warranty_subtitle {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    color: #111;
}

.gsi_warranty_text,
.gsi_warranty_notice p {
    margin: 0;
    font-size: 16px;
    line-height: 1.95;
    color: #000;
}

.gsi_warranty_text_intro {
    margin-bottom: 14px;
}

/* 안내문 */
.gsi_warranty_notice {
    padding: 28px 30px;
    border-radius: 22px;
    background: #f8fbff;
    border: 1px solid #d9e8ff;
}

/* 표 */
.gsi_warranty_table_wrap {
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
}

.gsi_warranty_table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    table-layout: fixed;
}

.gsi_warranty_table th,
.gsi_warranty_table td {
    padding: 16px 14px;
    border-right: 1px solid #eef1f4;
    border-bottom: 1px solid #eef1f4;
    text-align: center;
    vertical-align: middle;
    font-size: 15px;
    line-height: 1.75;
    color: #000;
}

.gsi_warranty_table th {
    background: #f8fafc;
    font-weight: 700;
    color: #111;
}

.gsi_warranty_table tr:last-child td {
    border-bottom: none;
}

.gsi_warranty_table th:last-child,
.gsi_warranty_table td:last-child {
    border-right: none;
}

.gsi_warranty_table td span {
    color: #666;
}

/* 리스트 */
.gsi_warranty_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gsi_warranty_list_num {
    counter-reset: item;
}

.gsi_warranty_list_num li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 34px;
    font-size: 16px;
    line-height: 1.9;
    color: #000;
}

.gsi_warranty_list_num li:last-child {
    margin-bottom: 0;
}

.gsi_warranty_list_num li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #f4f8ff;
    border: 1px solid #dbe7ff;
    color: #0b5ed7;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    box-sizing: border-box;
}

/* 하단 2열 */
.gsi_warranty_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
	align-items: stretch; /* 높이 동일하게 */
	
}

.gsi_warranty_grid .gsi_warranty_card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 연락처 */
.gsi_warranty_contact {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #d9e8ff;
}

.gsi_warranty_contact strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #0b5ed7;
}

.gsi_warranty_contact a {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

/* 태블릿 */
@media (max-width: 1024px) {
    .gsi_warranty_inner {
        padding: 0;
    }

    .gsi_warranty_title {
        font-size: 26px;
    }

    .gsi_warranty_sec_head h3,
    .gsi_warranty_card_title {
        font-size: 24px;
    }

    .gsi_warranty_grid {
        grid-template-columns: 1fr;
    }
}

/* 모바일 */
@media (max-width: 767px) {
    .gsi_warranty_inner {
        padding: 0;
    }

    .gsi_warranty_visual {
        padding-bottom: 28px;
        margin-bottom: 36px;
    }

    .gsi_warranty_kicker {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .gsi_warranty_title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .gsi_warranty_desc {
        font-size: 15px;
        line-height: 1.8;
    }

    .gsi_warranty_section {
        margin-bottom: 36px;
    }

    .gsi_warranty_sec_head {
        margin-bottom: 14px;
    }

    .gsi_warranty_sec_head h3 {
        font-size: 22px;
    }

    .gsi_warranty_card {
        padding: 22px 18px;
        border-radius: 18px;
        margin-bottom: 16px;
    }

    .gsi_warranty_cardTitle,
    .gsi_warranty_card_title {
        font-size: 22px;
    }

    .gsi_warranty_subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .gsi_warranty_text,
    .gsi_warranty_notice p {
        font-size: 15px;
        line-height: 1.85;
    }

    .gsi_warranty_notice {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .gsi_warranty_table th,
    .gsi_warranty_table td {
        font-size: 14px;
        line-height: 1.7;
        padding: 12px 10px;
    }

    .gsi_warranty_list_num li {
        padding-left: 30px;
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 12px;
    }

    .gsi_warranty_list_num li::before {
        width: 22px;
        height: 22px;
        font-size: 12px;
        line-height: 20px;
    }

    .gsi_warranty_contact {
        margin-top: 16px;
        padding: 16px;
        border-radius: 16px;
    }

    .gsi_warranty_contact strong {
        font-size: 14px;
    }

    .gsi_warranty_contact a {
        font-size: 22px;
    }
}


/* =========================
   GSI Exemption
   ========================= */
.gsi_exempt_wrap {
    width: 100%;
    background: #fff;
    color: #111;
    word-break: keep-all;
}

.gsi_exempt_inner {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

/* 상단 비주얼 */
.gsi_exempt_visual {
    padding: 0 0 40px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 50px;
}

.gsi_exempt_kicker {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #0b5ed7;
    text-transform: uppercase;
}

.gsi_exempt_title {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.gsi_exempt_desc {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #000;
}

/* 공통 */
.gsi_exempt_section {
    margin-bottom: 32px;
}

/* 법령 */
.gsi_exempt_law {
    padding: 24px 28px;
    border-radius: 22px;
    background: #f8fbff;
    border: 1px solid #d9e8ff;
}

.gsi_exempt_law strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #0b5ed7;
}

.gsi_exempt_law p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    font-weight: 600;
}

/* 상단 프로세스 */
.gsi_exempt_process {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.gsi_exempt_process_item {
    min-width: 0;
}

.gsi_exempt_thumb {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    background: #f3f6fb;
    aspect-ratio: 1.35 / 1;
}

.gsi_exempt_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.72);
}

.gsi_exempt_thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.04) 0%,
        rgba(11,94,215,0.06) 100%
    );
    pointer-events: none;
}

.gsi_exempt_thumb_label {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
}

/* 하단 카드 */
.gsi_exempt_docs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.gsi_exempt_card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #fff;
    padding: 28px 24px;
    box-sizing: border-box;
}

.gsi_exempt_card_title {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.4;
    font-weight: 700;
    color: #111;
}

.gsi_exempt_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gsi_exempt_list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.9;
    color: #000;
}

.gsi_exempt_list li:last-child {
    margin-bottom: 0;
}

.gsi_exempt_list li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0b5ed7;
}

/* 태블릿 */
@media (max-width: 1024px) {
    .gsi_exempt_inner {
        padding: 0;
    }

    .gsi_exempt_title {
        font-size: 26px;
    }

    .gsi_exempt_process,
    .gsi_exempt_docs {
        grid-template-columns: 1fr;
    }

    .gsi_exempt_card_title {
        font-size: 24px;
    }
}

/* 모바일 */
@media (max-width: 767px) {
    .gsi_exempt_inner {
        padding: 0;
    }

    .gsi_exempt_visual {
        padding-bottom: 28px;
        margin-bottom: 36px;
    }

    .gsi_exempt_kicker {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .gsi_exempt_title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .gsi_exempt_desc {
        font-size: 15px;
        line-height: 1.8;
    }

    .gsi_exempt_section {
        margin-bottom: 20px;
    }

    .gsi_exempt_law {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .gsi_exempt_law strong {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .gsi_exempt_law p {
        font-size: 15px;
        line-height: 1.8;
        font-weight: 600;
    }

    .gsi_exempt_thumb {
        border-radius: 18px;
    }

    .gsi_exempt_thumb_label {
        left: 16px;
        bottom: 16px;
        font-size: 22px;
    }

    .gsi_exempt_card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .gsi_exempt_card_title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .gsi_exempt_list li {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 10px;
        padding-left: 16px;
    }

    .gsi_exempt_list li::before {
        top: 11px;
        width: 5px;
        height: 5px;
    }
}

.map_info_box {
    padding:16px;
    border:1px solid #eee;
    border-radius:10px;
    background:#fafafa;
    font-size:14px;
    line-height:1.6;
}

.map_info_box p {
    margin:4px 0;
}