@charset "utf-8";


/*
	** 레이아웃
*/

/* ## common ## */
.container {
	max-width: 1340px;
	padding: 0 20px;
	margin: 0 auto;
}
.sub-contents {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 0 100px;
}
.sub-contents .sub-contents {
    padding:0;
}
.sub-contents.login {
    padding: 180px 20px;
}
h2.sub-title {
    padding:60px 0;
    text-align: center;
    font-size: 3.2em;
    font-weight: 700;
}
@media all and (max-width: 1024px) {
    .sub-contents {
        padding: 0 20px 80px 20px;
    }
    .sub-contents.login {
        padding: 80px 20px;
    }
    h2.sub-title {
        padding: 30px 0;
    }
}

/* ## breadcrumb ## */
.breadcrumb-wrap {
    width: 100%;
    border-bottom: 1px solid #E9E9E9;
    background: #F8F9FA;
}
.breadcrumb {
    display: flex;
    align-items: center;
    max-width: 1280px;
    height: 60px;
    margin: 0 auto;
}
.breadcrumb .home {
    display: flex;
    align-items: center;
    height: 100%;
}
.breadcrumb .home .lnk {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    border-right: 1px solid #E9E9E9;
    border-left: 1px solid #E9E9E9;
    transition: opacity 0.2s ease;
}
.breadcrumb .home .lnk:hover {
    opacity: 0.7;
}
.breadcrumb-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
.breadcrumb-item:last-of-type {
	display: none;
}
.breadcrumb-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 240px;
    height: 100%;
    padding: 0 17px 0 20px;
    border-right: 1px solid #E9E9E9;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s ease;
}
.breadcrumb-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}
.breadcrumb-btn .ellipsis-1 {
    color: #333;
    font-family: Pretendard;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px; /* 125% */
}
.breadcrumb-btn svg {
    transition: transform 0.3s ease;
}
.breadcrumb-item.active .breadcrumb-btn {
    background: #fff;
}
.breadcrumb-item.active .breadcrumb-btn .ellipsis-1 {
    color: #10488C;
}
.breadcrumb-item.active .breadcrumb-btn svg {
    transform: rotate(180deg);
}
.breadcrumb-btn.active {
    background: #fff;
}
.breadcrumb-btn.active .ellipsis-1 {
    color: #10488C;
}
.breadcrumb-btn.active svg {
    transform: rotate(180deg);
}
.breadcrumb-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #F8F9FA;
    border: 1px solid #E9E9E9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}
.breadcrumb-item.active .breadcrumb-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.breadcrumb-list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.breadcrumb-list li {
    border-bottom: 1px solid #F0F0F0;
}
.breadcrumb-list li:last-child {
    border-bottom: none;
}
.breadcrumb-list .lnk {
    display: block;
    padding: 15px 20px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
}
.breadcrumb-list .lnk:hover {
    background: #fff;
    color: #10488C;
}
.breadcrumb-list .lnk.active {
    color: #10488C;
    font-weight: 600;
    background: #fff;
}

@media all and (max-width: 768px) {
    .breadcrumb-item {
        width: calc(100% - 62px);
    }
	
    .breadcrumb-item:nth-of-type(2) {
        display: none;
    }
    .breadcrumb-btn {
        width: 100%;
        min-width: 0;
    }
}

/* ## tab ## */
.sub-tab-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 100px;
    padding: 4px;
    border-radius: 42px;
    border: 1px solid #E9E9E9;
}
.tab-pill {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    background: #10488C;
    border-radius: 40px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}
.sub-tab-list .sub-tab-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    color: #111;
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.2; /* 125% */
    border-radius: 40px;
    max-width: 250px;
    height: 60px;
    text-align: center;
    word-break: keep-all;
    z-index: 1;
    transition: color 0.3s ease;
}
.sub-tab-list .sub-tab-btn.active,
.sub-tab-list .sub-tab-btn.hovered {
    color: #FBF8F8;
}
@media all and (max-width: 1280px) {
    .sub-tab-list .sub-tab-btn {
        padding: 18px 30px;
    }
}
@media all and (max-width: 1024px) {
    .sub-tab-list {
        margin: 0 auto 50px;
        padding: 0;
        border: none;
    }
    .sub-tab-list .sub-tab-btn {
        padding: 18px 20px;
        color: #111;
        font-size: 18px;
    }
    .sub-tab-list .sub-tab-btn.active,
    .sub-tab-list .sub-tab-btn.hovered {
        color: #FBF8F8;
        background: #10488C;
    }
}
@media all and (max-width: 768px) {
    .sub-tab-list {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .sub-tab-list .sub-tab-btn {
        width: 50%;
        text-align: center;
    }
}

/* ## sub-top ## */
.sub-top {
    width: 100%;
    padding-bottom: 80px;
    border-bottom: 3px solid #E9E9E9;
}
.sub-top h2 {
    color: #10488C;
    font-size: 18px;
    font-weight: 700;
}
.sub-top h3 {
    margin: 30px 0 34px 0;
    color: #111;
    font-size: 48px;
    font-weight: 700;
}
.sub-top p {
    color: #333;
    font-size: 20px;
    font-weight: 400;
}
@media all and (max-width: 1024px) {
    .sub-top {
        padding-bottom: 50px;
        border-bottom: 2px solid #E9E9E9;
    }
    .sub-top h2 {
        font-size: 16px;
    }
    .sub-top h3 {
        margin: 14px 0 20px 0;
        font-size: 28px;
        line-height: 34px; /* 121.429% */
    }
    .sub-top p {
        font-size: 18px;
        line-height: 24px; /* 133.333% */
    }
}

/* ## sub-bottom ## */
.sub-bottom {
    width: 100%;
    padding-top: 80px;
}
.sub-bottom-sections {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.sub-bottom-section {
    width: 100%;
}
.sub-bottom-title {
    margin-bottom: 40px;
    color: #111;
    font-size: 32px;
    font-weight: 700;
}
.text-box {
    padding: 30px;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
}
.text-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.text-list.info-list {
    gap: 30px;
}
.text-list li {
    color: #333;
    font-size: 20px;
    font-weight: 400;
}
.text-list li .text-contents {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.text-list li .text-contents::before {
    content: "";
    display: inline-block;
    margin-top: 7px;
    min-width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10488C;
}
.text-list li > span {
    display: block;
    margin: 4px 0 0 12px;
}
.text-list li .info-contents {
    display: flex;
    align-items: center;
    gap: 23px;
}
.text-list li .info-contents span {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 88px;
    font-weight: 600;
}
.divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #E9E9E9;
    margin: 30px 0;
}
.process-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 20px;
    width: 100%;
}
.process-list-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 38px;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
}
.process-list-item p {
    color: #111;
    font-size: 20px;
    font-weight: 700;
}
.process-list-item span {
    color: #333;
    font-size: 18px;
    font-weight: 400;
}
.next-icon {
    width: 17px;
    margin: 0 6px;
}
.btn-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 60px;
    margin: 30px auto 0;
    background: #10488C;
    border-radius: 10px;
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 20px; /* 83.333% */
    transition: all 0.3s ease;
}
.btn-apply:hover {
    background: #0d3a6f;
}
@media all and (max-width: 1024px) {
    .sub-bottom {
        padding-top: 50px;
    }
    .sub-bottom-sections {
        gap: 40px;
    }
    .sub-bottom-title {
        margin-bottom: 20px;
        font-size: 24px;
    }
    .text-box {
        padding: 20px;
        font-size: 18px;
    }
    .text-list {
        gap: 12px;
    }
    .text-list.info-list {
        align-items: flex-start;
        gap: 20px;
    }
    .text-list li {
        font-size: 18px;
        line-height: 24px; /* 133.333% */
    }
    .text-list li .text-contents {
        gap: 6px;
    }
    .text-list li .text-contents::before {
        margin-top: 9px;
        min-width: 5px;
        height: 5px;
    }
    .text-list li .info-contents {
        align-items: flex-start;
        gap: 16px;
    }
    .text-list li .info-contents span {
        gap: 8px;
        min-width: 75px;
    }
    .divider {
        margin: 10px 0;
    }
    .process-list {
        align-items: center;
        row-gap: 10px;
    }
    .process-list-item {
        gap: 8px;
        width: 100%;
        padding: 16px 0;
    }
    .process-list-item p {
        font-size: 18px;
    }
    .process-list-item span {
        font-size: 16px;
    }
    .next-icon {
        margin: 0 auto;
        transform: rotate(90deg);
    }
    .btn-apply {
        width: 100%;
        height: 50px;
        margin: 20px auto 0;
        font-size: 20px;
    }
}

/* ## 조직구성도 ## */
.organ-img {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}
.organ-img img {
    width: 100%;
}
.organ-img img.mb {
    display: none;
}
@media all and (max-width: 768px) {
    .organ-img img.pc {
        display: none;
    }
    .organ-img img.mb {
        display: block;
    }
}

.organ-table {
    width: 100%;
    overflow-x: auto;
    margin-top: 80px;
}
.organ-table table {
    width: 1280px;
    border-top: 2px solid #000;
    border-collapse: collapse;
}
.organ-table table th {
    padding: 24px;
    border: 1px solid #767676;
    vertical-align: middle;
    color: #111;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px; /* 122.222% */
}
.organ-table table th:first-child {
    border-left: none;
}
.organ-table table th:last-child {
    border-right: none;
}
.organ-table table td {
    padding: 24px;
    border: 1px solid #767676;
    vertical-align: middle;
    text-align: center;
    line-height: 22px; /* 122.222% */
}
.organ-table table td:first-child {
    border-left: none;
}
.organ-table table td:last-child {
    border-right: none;
}
.table-text-box{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    color: #111;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px; /* 122.222% */
}
.table-text-box-item p::before {
    content: "";
    display: inline-block;
    min-width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #10488C;
}
.table-text-box-item p {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.table-text-list {
    display: block;
    margin-left: 12px;
}
@media all and (max-width: 1024px) {
    .organ-table {
        margin-top: 40px;
    }
    .organ-table table {
        width: 1024px;
    }
    .organ-table table th {
        padding: 16px;
        font-size: 16px;
    }
    .organ-table table td {
        padding: 16px;
    }
    .table-text-box{
        font-size: 16px;
    }
    .table-text-list {
        margin-left: 12px;
    }
    .table-text-box-item p.mb-0 {
        margin-bottom: 0;
    }
}
@media all and (max-width: 768px) {
    .organ-table table {
        width: 768px;
    }
}

/* ## 인사말 ## */
.sub-bottom.greeing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}
.leader-profile-container {
    position: relative;
    width: 100%;
}
.leader-profile-texts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 10px;
    height: 100%;
    background: #10488C;
}
.leader-profile-texts {
    position: relative;
    width: 100%;
    padding: 80px;
    background: #F8F9FA;
}
.leader-profile-texts .greeting-text1 {
    color: #111;
    font-size: 32px;
    font-weight: 600;
    line-height: 150%; /* 48px */
    letter-spacing: -1.28px;
}
.leader-profile-texts .line {
    display: block;
    width: 500px;
    height: 2px;
    margin: 20px 0 40px 0;
    background: #10488C;
}
.leader-profile-texts .greeting-text2 {
    color: #111;
    font-size: 36px;
    font-weight: 400;
    line-height: 150%; /* 54px */
    letter-spacing: -1.44px;
    word-break: keep-all;
}
.leader-profile-img {
    position: absolute;
    top: -80px;
    right: 80px;
    width: 353px;
    height: 424px;
    border-radius: 20px;
    border: 1px solid var(--lightgrey, #E9E9E9);
    background: #FFF;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
    overflow: hidden;
}
.leader-profile-img > span {
    display: block;
    width: 100%;
    height: 324px;
    padding: 42px 42px 0 42px;
    overflow: hidden;
    background: #E9E9E9;
}
.leader-profile-img > span > img {
    width: 100%;
}
.leader-profile-img > p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100% - 324px);
    gap: 10px;
    color: #111;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.88px;
    background: #fff;
}
.leader-profile-img > p span {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.96px;
}

.leader-comment-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.leader-comment-list p {
    color: #111;
    font-size: 24px;
    font-weight: 400;
    line-height: 150%; /* 36px */
    letter-spacing: -0.96px;
}
.sub-bottom.greeing > .line {
    width: 2px;
    height: 150px;
    background: #E9E9E9;
}
.point-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.point-texts > span {
    color: #111;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}
.point-texts p {
    color: #111;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
}
.point-texts p > span {
    color: #ED6D00;
}
.point-texts p > span > span {
    color: #10488C;
}
@media all and (max-width: 1120px) {
    .leader-profile-texts {
        padding: 30px;
    }
    .leader-profile-img {
        top: -30px;
        right: 30px;
    }
}
@media all and (max-width: 1024px) {
    .sub-bottom.greeing {
        gap: 40px;
    }
    .leader-profile-texts::before {
        width: 6px;
    }
    .leader-profile-texts .greeting-text1 {
        font-size: 28px;
        letter-spacing: -1.12px;
    }
    .leader-profile-texts .line {
        width: 50px;
        margin: 20px 0 50px 0;
    }
    .leader-profile-texts .greeting-text2 {
        font-size: 24px;
        letter-spacing: -0.96px;
    }
    .leader-profile-img {
        position: static;
        margin-top: 40px;
        width: 315px;
        height: 382px;
        margin: 40px auto 0;
    }
    .leader-profile-img > span {
        display: flex;
        align-items: flex-end;
        height: 295px;
    }
    .leader-profile-img > p {
        height: calc(100% - 295px);
        font-size: 18px;
        letter-spacing: -0.72px;
    }
    .leader-profile-img > p span {
        font-size: 20px;
        letter-spacing: -0.8px;
    }

    .leader-comment-list p {
        font-size: 20px;
        letter-spacing: -0.8px;
    }
    .sub-bottom.greeing > .line {
        height: 100px;
    }
    .point-texts > span {
        word-break: keep-all;
        line-height: 140%;
    }
    .point-texts p {
        line-height: 140%;
    }

}

/* 비전 */
.sub-bottom.vision {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}
.sub-bottom.vision .point-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.sub-bottom.vision .point-texts > span {
    color: #000;
    font-size: 40px;
    font-weight: 400;
}
.sub-bottom.vision .point-texts p {
    color: #000;
    font-size: 40px;
    font-weight: 700;
}
.vision-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
.vision-box h4 {
    color: #111;
    font-size: 36px;
    font-weight: 700;
}
.vision-box > p {
    width: 100%;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #E9E9E9;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
    color: var(--black, #111);
    font-size: 24px;
    font-weight: 400;
}
.purpose-list{
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 50px 36px;
    border-radius: 20px;
    background: #F8F9FA;
}
.purpose-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: calc(33.3% - 20px);
    text-align: center;
    border-top: 2px solid #0067DB;
}
.purpose-item.green {
    border-top: 2px solid #00AA4F;
}
.purpose-item.org {
    border-top: 2px solid #ED6D00;
}
.purpose-item > p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    color: #111;
    font-size: 32px;
    font-weight: 700;
}
.purpose-item > p > span {
    color: #333;
    font-size: 20px;
    font-weight: 400;
}
.purpose-text-box {
    width: 100%;
    padding: 40px 0;
    border-radius: 10px;
    border: 1px solid #0067DB;
    background: #FFF;
    color: #111;
    font-size: 24px;
    font-weight: 500;
    line-height: 130%; /* 36px */
}
.purpose-item.green .purpose-text-box {
    border: 1px solid #00AA4F;
}
.purpose-item.org .purpose-text-box {
    border: 1px solid #ED6D00;
}
.vision-box > img {
    width: 100%;
}
@media all and (max-width: 1180px) {
    .purpose-text-box {
        font-size: 19px;
    }
}
@media all and (max-width: 1024px) {
    .sub-bottom.vision {
        gap: 60px;
    }
    .sub-bottom.vision .point-texts {
        gap: 0;
    }
    .sub-bottom.vision .point-texts > span {
        font-size: 24px;
    }
    .sub-bottom.vision .point-texts p {
        font-size: 36px;
    }
    .vision-box {
        gap: 20px;
    }
    .vision-box h4 {
        font-size: 24px;
    }
    .vision-box > p {
        padding: 20px;
        font-size: 20px;
    }
    .purpose-list{
        align-items: center;
        flex-direction: column;
        padding: 40px 16px;
    }
    .purpose-item {
        gap: 20px;
        width: 100%;
    }
    .purpose-item > p {
        margin-top: 20px;
        font-size: 24px;
    }
    .purpose-item > p > span {
        font-size: 18px;
    }
    .purpose-text-box {
        padding: 26px 0;
        font-size: 20px;
    }
}

/* 연혁 */
.history-list {
    margin: 0 auto;
    padding-left: 100px;
}
.history-item {
    display: flex;
    gap: 80px;
    position: relative;
    padding-bottom: 100px;
}
.history-item:last-child {
    padding-bottom: 0;
}
.history-item:last-child .timeline-line {
    display: none;
}
.history-timeline {
    position: relative;
    flex-shrink: 0;
    width: 45px;
}
.timeline-year-dot {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.timeline-year-dot .dot-inactive {
    opacity: 1;
    transition: opacity 0.3s ease;
}
.timeline-year-dot .dot-active {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.history-item.active .timeline-year-dot .dot-inactive {
    opacity: 0;
}
.history-item.active .timeline-year-dot .dot-active {
    opacity: 1;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: 29px;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 183px);
    background: #E9E9E9;
    z-index: 1;
}
.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #10488C;
    transition: none;
}
.history-content {
    flex: 1;
    padding-top: 0;
}
.history-year {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 60px;
}
.history-details {
    list-style: none;
    position: relative;
}
.history-details li {
    position: relative;
    margin-bottom: 28px;
}
.history-details li:last-child {
    margin-bottom: 0;
}
.detail-dot {
    position: absolute;
    left: -106px;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #E9E9E9;
    transition: background-color 0.3s ease;
    z-index: 2;
}
.detail-dot.active {
    background: #10488C;
}
.history-details p {
    font-size: 24px;
    color: #111;
    letter-spacing: -0.96px;
    line-height: 130%;
    word-break: keep-all;
}

/* 모바일 반응형 */
@media (max-width: 1024px) {
    .history-list {
        margin: 0 auto;
        padding-left: 0;
    }
    .history-timeline {
        width: 25px;
    }
    .history-item {
        gap: 30px;
        padding-bottom: 40px;
    }

    .timeline-line {
        top: 16px;
        height: calc(100% + 80px);
    }
    .timeline-year-dot {
        width: 25px;
        height: 25px;
    }

    .timeline-year-dot svg {
        width: 100%;
        height: 100%;
    }

    .timeline-year-dot .dot-inactive {
        width: 15px;
        height: 15px;
    }

    .timeline-year-dot .dot-active {
        width: 25px;
        height: 25px;
    }
    .detail-dot {
        left: -46px;
        top: 7px;
    }
    .history-year {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .history-details li {
        margin-bottom: 20px;
    }

    .history-details p {
        font-size: 18px;
    }
}

/* 찾아오시는길 */
.sub-bottom.location {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.location-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-bottom: 60px;
    width: 100%;
    border-bottom: 1px solid #E9E9E9;
}
#map {
    width: 100%;
    height: 400px;
    background-color: #D9D9D9;
}
.location-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.location-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.location-info-list li {
    display: flex;
    align-items: center;
    gap: 24px;
}
.location-info-list li span {
    color: #10488C;
    font-size: 24px;
    font-weight: 700;
}
.location-info-list li p {
    color: #111;
    font-size: 24px;
    font-weight: 400;
}
.map-button-container {
    display: flex;
    gap: 12px;
}
.map-button-container a {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 50px;
    padding: 0 16px;
    border-radius: 6px;
    border: 1px solid #E9E9E9;
    background: #FFF;
    transition: all 0.3s ease;
}
.map-button-container a:hover {
    background: #E9E9E9;
}
.map-button-container a span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 40px;
    background: #FBE300;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
    overflow: hidden;
}
.map-button-container a img {
    width: 100%;
}

.location-method {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
}
.location-method h4 {
    color: #111;
    font-size: 32px;
    font-weight: 700;
}
.location-method-list {
    width: 100%;
    border-top: 2px solid #111;
}
.location-method-list > li {
    display: flex;
    align-items: center;
    gap: 120px;
    width: 100%;
    padding: 50px;
    border-bottom: 1px solid #E9E9E9;
}
.method-title {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    min-width: 157px;
    color: #111;
    text-align: center;
    font-size: 23px;
    font-weight: 700;
}
.method-content-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: calc(100% - 157px);
}
.method-content-list li {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.method-content-list.subway li {
    flex-direction: row;
    gap: 16px;
}
.method-content-list li span {
    display: block;
    width: fit-content;
    padding: 6px 20px;
    border-radius: 10px;
    background: #10488C;
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
}
.method-content-list.subway li span {
    padding: 4px 10px;
    height: 32px;
}
.method-content-list.subway li span.green1 {
    background: #00A144;
}
.method-content-list.subway li span.green2 {
    background: #696E2E;
}
.method-content-list.subway li span.gc {
    padding: 4px 8px;
    background: #026550;
}
.method-content-list li p {
    color: #111;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%; /* 36px */
}
@media all and (max-width: 1024px) {
    .sub-bottom.location {
        gap: 40px;
    }
    .location-container {
        gap: 30px;
        padding-bottom: 40px;
    }
    .location-info {
        flex-direction: column;
        justify-content: flex-start;
        gap: 30px;
    }
    .location-info-list li {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
    .location-info-list li span {
        font-size: 20px;
    }
    .location-info-list li p {
        font-size: 20px;
        line-height: 130%;
    }
    .map-button-container {
        flex-direction: column;
        gap: 10px;
    }
    .map-button-container a {
        justify-content: center;
        gap: 10px;
        width: 100%;
        height: 50px;
        padding: 0;
    }

    .location-method {
        gap: 20px;
    }
    .location-method h4 {
        font-size: 24px;
    }
    .location-method-list > li {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
        width: 100%;
        padding: 30px 0;
    }
    .method-title {
        gap: 20px;
        min-width: unset;
        margin: 0 auto;
        font-size: 20px;
    }
    .method-content-list {
        gap: 10px;
        width: 100%;
    }
    .method-content-list li {
        gap: 10px;
    }
    .method-content-list.subway li {
        align-items: center;
        gap: 20px;
    }
    .method-content-list li span {
        padding: 6px 16px;
        font-size: 18px;
    }
    .method-content-list.subway li span {
        padding: 8px 12px;
        height: 34px;
    }
    .method-content-list.subway li span.gc {
        padding: 8px 10px;
    }
    .method-content-list li p {
        font-size: 18px;
    }
}
@media all and (max-width: 768px) {
    #map {
        height: 250px;
    }
}