.type-B {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 60px 0 100px;
}

body {
    background-color: #fcf7f4;
}

.type-B::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;

    /* background: #f3f3f3; */
    /* background: #f1e7d4; */
    z-index: -1;
}

/* 헤더 */
.type-B .header {
    width: 100%;
    padding: 40px 0;
    position: relative;
}

.type-B .header-bg-text {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 120px;
    font-weight: 700;
    color: #faeed7;
    /* color: #e5dac6; */
    font-style: italic;
    white-space: nowrap;
    z-index: 0;
    font-family: 'GmarketSansBold', sans-serif;
    letter-spacing: -0.08em;
    pointer-events: none;
    animation: flowText 18s linear infinite;
    animation-delay: 0s;
    animation-play-state: running;
}

@keyframes flowText {
    0% {
        transform: translateY(-50%) translateX(0);
    }

    100% {
        transform: translateY(-50%) translateX(-120%);
    }
}

.type-B .header-inner {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.quick-groups {
    max-width: 1520px;
    margin: 0 auto;
    padding: 20px 60px 0;
    flex-direction: row;
    justify-content: space-between;
}

.type-B .logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.type-B .logo-area img {
    width: auto;
    height: 60px;
    display: block;
}



/* 메인 콘텐츠 */
.type-B .main-content {
    width: 100%;
    padding: 40px 0;
}

.type-B .card-list {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.type-B .card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.type-B .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.type-B .card-reservation:hover {
    transform: none;
}

.type-B .card-image {
    position: relative;
    width: 100%;
    padding-top: 140%;
    overflow: hidden;
}

.type-B .card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.type-B .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    pointer-events: none;
}

/* 카드별 오버레이 색상 */
.type-B .card-culture .card-overlay {
    background: linear-gradient(to top, rgba(30, 80, 35, 0.9) 0%, rgba(30, 80, 35, 0.5) 50%, transparent 100%);
}


.card-culture {
    border-radius: 150px 40px 40px 40px !important;
}

.type-B .card-tourism {
    border-radius: 80px 40px 40px 40px !important;

}

.type-B .card-city {
    border-radius: 40px 40px 150px 40px !important;
}

.type-B .card-tourism .card-overlay {
    background: linear-gradient(to top, rgba(32, 43, 100, 0.9) 0%, rgba(32, 43, 100, 0.5) 50%, transparent 100%);
}

.type-B .card-city .card-overlay {
    background: linear-gradient(to top, rgba(200, 130, 80, 0.9) 0%, rgba(200, 130, 80, 0.5) 50%, transparent 100%);
}

.type-B .card-reservation {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100%;
    box-shadow: none;
    border-radius: 0;
}

.type-B .card-reservation:hover {
    box-shadow: none;
}

.type-B .card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    z-index: 2;
}

.type-B .card-title {
    position: absolute;
    top: 45px;
    right: 45px;
}

.type-B .card-title strong {
    display: block;
    font-size: 36px;
    line-height: 36px;
    border-bottom: 2px solid #fff;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'GmarketSansBold';
    /*position: relative;*/
    padding-bottom: 8px;
}

.type-B .card-text strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fff;
}

.type-B .card-text p {
    font-size: 21px;
    color: #fff;
    margin: 0;
    line-height: 1.5;
    /*font-family: 'GmarketSansMedium';*/
}

.type-B .card-links {
    max-width: 1520px;
    margin: 30px auto 0;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.type-B .card-link-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px 4px 16px;
    border-radius: 999px;
    background: #fff;
    color: #4b4370;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    font-family: 'GmarketSansMedium';
}

.type-B .card-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
    border-radius: 10px;
    background: rgb(159 139 134);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'GmarketSansMedium';
    position: relative;
    overflow: hidden;
    text-align: left;
    text-decoration: none;
    gap: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12),
        0 1px 3px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    word-break: keep-all;
}

.type-B .card-link:nth-child(1) {
    background: linear-gradient(135deg, #1e5023 0%, #3c8c46 100%);
}

.type-B .card-link:nth-child(2) {
    background: linear-gradient(135deg, #202b64 0%, #4457b0 100%);
}

.type-B .card-link:nth-child(3) {
    background: linear-gradient(135deg, #c88250 0%, #f0a96a 100%);
}

.type-B .card-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.type-B .card-link:hover::before {
    left: 100%;
}

.type-B .card-link:hover {
    background: rgb(215, 95, 65);
    transform: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.type-B .card-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* 푸터 */
.type-B .footer {
    width: 100%;
    padding: 0 0 40px;
    margin-top: 50px;
}

.type-B .footer-inner {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: flex-end;
    gap: 40px;
}

.type-B .footer-left {
    grid-column: 1;
}

.type-B .sns-list {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.type-B .sns-list li {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.type-B .sns-list li a {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.type-B .sns-list li a:hover {
    transform: scale(1.1);
}

.type-B .sns-list li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.type-B .footer-right {
    text-align: center;
    grid-column: 2;
    min-width: 0;
    word-break: keep-all;
}

.type-B .footer-right address {
    color: #666;
    font-style: normal;
    margin: 0 0 8px 0;
    line-height: 1.6;
    font-family: 'GmarketSansMedium';
    word-break: keep-all;
}

.type-B .footer-right .copyright {
    font-size: 14px;
    color: #999;
    margin: 0;
    font-family: 'GmarketSansMedium';
}


/* 퀵 메뉴 리스트 */
.type-B .quick-list {
    display: flex;
    flex-shrink: 0;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.type-B .quick-list + .quick-list li a {
    background: #c41e3a;
}

.type-B .quick-list + .quick-list li a:hover {
    background: #c41e3a;
}

.type-B .quick-list li {
    margin: 0;
    flex-shrink: 0;
    position: relative;
}

.type-B .quick-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgb(159 139 134); */
    /*background: rgb(218 140 36);*/
    background: #1A3A6B;
    color: #fff;
    padding: 10px 26px;
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    min-height: 45px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12),
        0 1px 3px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    font-family: 'GmarketSansMedium';
    gap: 0 7px;
}


.type-B .quick-list .quick-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    padding: 10px;
    margin: 0 0 0 0;
    list-style: none;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.type-B .quick-list li:hover .quick-submenu,
.type-B .quick-list .quick-submenu:hover {
    display: block;
}

.type-B .quick-list .quick-submenu li {
    width: 100%;
}

.type-B .quick-list .quick-submenu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    background: transparent;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: none;
    border: none;
    min-height: auto;
    transform: none;
}

.type-B .quick-list .quick-submenu a::before {
    content: none;
}

.type-B .quick-list li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.type-B .quick-list li a:hover::before {
    left: 100%;
}

.type-B .quick-list li a:hover {
    color: #fff;
    background: oklch(0.517 0.212 29.234);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.highlight {
    position: relative;
}

.highlight > a {
    background: #fff !important;
    /*color: rgb(26, 58, 107) !important;*/
    color: rgb(218 140 36) !important;
    /*color: rgb(218 140 36) !important;*/
    /*background: linear-gradient(135deg, rgb(218 140 36), rgb(243 157 15)) !important;*/
}

.highlight > a:hover {
    background: #fff !important;
    /*color: rgb(26, 58, 107) !important;*/
    color: rgb(218 140 36) !important;
    /*color: rgb(218 140 36) !important;*/
    /*background: linear-gradient(135deg, rgb(218 140 36), rgb(231 150 19)) !important;*/
}

.speech-bubble {
    position: absolute;
    top: -44px;
    right: 0;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgb(5 157 163 / 0.4);
    z-index: 10;
    animation: bubbleBounce 2s ease-in-out infinite;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -7px;
    right: 30px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-right: 1px solid rgb(5 157 163 / 0.4);
    border-bottom: 1px solid rgb(5 157 163 / 0.4);
    transform: rotate(45deg);
}

@keyframes bubbleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.type-B .quick-list li a:active {
    transform: translateY(-2px) scale(1);
}

/* 햄버거 버튼 */
.intro-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 56px;
    height: 56px;
    padding: 14px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.intro-hamburger:hover {
    background: linear-gradient(135deg, rgb(218 140 36), rgb(218 140 36));
    /*border-color: transparent;*/
    /*box-shadow: 0 6px 18px rgba(5, 157, 163, 0.3);*/
    /*transform: translateY(-2px);*/
}

.intro-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.intro-hamburger span:nth-child(2) {
    width: 70%;
    align-self: flex-end;
}

.intro-hamburger:hover span {
    background: #fff;
}

.intro-hamburger:hover span:nth-child(2) {
    width: 100%;
}

@media (max-width: 768px) {
    .intro-hamburger {
        width: 44px;
        height: 44px;
        padding: 10px;
        border-radius: 12px;
        box-shadow: none;
    }
    .intro-hamburger span {
        height: 3px;
    }
    .intro-hamburger span:nth-child(2) {
        width: 100%;
    }
}

/* 사이트맵 오버레이 */
.intro-sitemap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.35s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    padding: 30px;
}

.intro-sitemap.open {
    right: 0;
}

.intro-sitemap-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.intro-sitemap-logo {
    height: 40px;
    width: auto;
}

.intro-sitemap-close {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-sitemap-close .material-symbols-outlined {
    font-size: 28px;
    color: #333;
}

.intro-sitemap-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-sitemap-menu > li {
    border-bottom: 1px solid #eee;
}

.intro-sitemap-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.intro-sitemap-depth1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    /*font-family: 'GmarketSansBold', sans-serif;*/
}

.intro-sitemap-depth2 {
    display: none;
    list-style: none;
    padding: 0 0 16px 12px;
    margin: 0;
}

.intro-sitemap-depth2.open {
    display: block;
}

.intro-sitemap-depth2 li a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    color: #666;
    text-decoration: none;
    font-family: 'GmarketSansMedium', sans-serif;
    transition: color 0.2s;
}

.intro-sitemap-depth2 li a:hover {
    color: rgb(242, 156, 16);
}

/* 사이트맵 배경 딤 */
.intro-sitemap-dim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.intro-sitemap-dim.open {
    opacity: 1;
    visibility: visible;
}

.intro-sitemap-highlight .intro-sitemap-depth1 {
    /*color: #e69513;*/
}

.intro-sitemap-highlight2 .intro-sitemap-depth1 {
    color: #c41e3a;
}

/* PC 버전 사이트맵 - 전체 화면 */
@media (min-width: 769px) {
    .intro-sitemap {
        right: 0;
        width: 100%;
        max-width: 100%;
        padding: 40px 60px;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .intro-sitemap.open {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .intro-sitemap-top {
        max-width: 1400px;
        margin: 0 auto 60px;
        padding-bottom: 24px;
        border-bottom: 1px solid #eee;
    }

    .intro-sitemap-logo {
        height: 48px;
    }

    .intro-sitemap-close {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        border: 1px solid #eaeaea;
        transition: all 0.25s ease;
    }

    .intro-sitemap-close:hover {
        background: #f5f5f5;
        transform: rotate(90deg);
    }

    .intro-sitemap-close .material-symbols-outlined {
        font-size: 32px;
    }

    .intro-sitemap-menu {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 40px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .intro-sitemap-menu > li {
        border-bottom: none;
        border-top: 3px solid #333;
        padding-top: 20px;
    }

    .intro-sitemap-highlight > .intro-sitemap-depth1,
    .intro-sitemap-highlight2 > .intro-sitemap-depth1 {
        font-weight: 800;
    }

    /*.intro-sitemap-menu > .intro-sitemap-highlight {*/
    /*    border-top-color: #059da3;*/
    /*}*/

    .intro-sitemap-menu > .intro-sitemap-highlight2 {
        border-top-color: #c41e3a;
    }

    .intro-sitemap-depth1 {
        padding: 0 0 20px;
        font-size: 22px;
        pointer-events: none;
    }

    .intro-sitemap-depth1 .material-symbols-outlined {
        display: none;
    }

    .intro-sitemap-depth2 {
        display: block !important;
        padding: 0;
    }

    .intro-sitemap-depth2 li a {
        padding: 8px 0;
        font-size: 16px;
        color: #555;
    }

    .intro-sitemap-depth2 li a:hover {
        color: #059da3;
        padding-left: 6px;
    }

    .intro-sitemap-dim {
        display: none;
    }
}

.sitemap-bubble {
    display: none;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #059da3, #0d9d5a);
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 8px;
    font-family: 'GmarketSansMedium', sans-serif;
    animation: bubbleBounce 2s ease-in-out infinite;
    vertical-align: middle;
}

/* 반응형 */
@media (max-width: 1024px) {

    .type-B .header-inner,
    .type-B .card-list,
    .type-B .footer-inner,
    .type-B .card-links {
        padding: 0 40px;
    }

    .quick-groups {
        padding: 20px 40px 0;
    }

    .type-B .card-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .type-B .quick-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .type-B .quick-list li a {
        padding: 12px 20px;
        font-size: 16px;
        min-height: 45px;
    }

    .type-B .quick-list li a img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .type-B {
        padding: 40px 0 80px;
    }

    .quick-groups {
        display: none !important;
    }

    .type-B .header {
        padding: 30px 0;
    }

    .type-B .header-bg-text {
        font-size: 60px;
        letter-spacing: 5px;
    }

    .type-B .header-inner,
    .type-B .card-list,
    .type-B .footer-inner,
    .type-B .card-links {
        padding: 0 24px;
    }

    .quick-groups {
        padding: 20px 24px 0;
    }

    .type-B .card-links {
        margin-top: 24px;
        gap: 16px;
    }

    .type-B .header-inner {
        flex-wrap: wrap;
    }

    .type-B .quick-list .quick-submenu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
        padding: 4px 0 0;
        min-width: auto;
    }

    .type-B .quick-list .quick-submenu a {
        color: #fff;
        padding: 6px 8px;
        font-size: 14px;
    }

    .type-B .quick-list li.has-sub .quick-submenu {
        display: none;
    }

    .type-B .quick-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    .type-B .quick-list li a {
        padding: 14px 20px;
        font-size: 16px;
        min-height: 48px;
    }

    .type-B .quick-list li a img {
        width: 20px;
        height: 20px;
    }

    .type-B .logo-area img {
        height: 50px;
    }

    .type-B .card-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .type-B .card-image {
        padding-top: 80%;
    }

    .type-B .card-text {
        padding: 25px 20px;
    }

    .type-B .card-text strong {
        font-size: 24px;
    }

    .type-B .card-text p {
        font-size: 14px;
    }

    .type-B .footer {
        padding: 0 0 30px;
        margin-top: 60px;
    }

    .type-B .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .type-B .footer-left {
        grid-column: 1;
    }

    .type-B .footer-right {
        text-align: center;
        grid-column: 1;
    }

    .type-B .sns-list li {
        width: 42px;
        height: 42px;
    }

    .type-B .sns-list {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .type-B {
        padding: 30px 0 60px;
    }

    .type-B .header-bg-text {
        font-size: 40px;
        letter-spacing: 3px;
    }

    .type-B .header-inner,
    .type-B .card-list,
    .type-B .footer-inner,
    .type-B .card-links {
        padding: 0 20px;
    }

    .quick-groups {
        padding: 16px 20px 0;
        flex-direction: column;
        gap: 10px;
    }

    .type-B .main-content {
        padding: 0 0 40px 0;
    }

    .speech-bubble {
        font-size: 12px;
        padding: 4px 12px;
        top: -38px;
    }

    .type-B .card-links {
        grid-template-columns: 1fr;
        margin-top: 20px;
        gap: 12px;
    }

    .type-B .quick-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    .type-B .quick-list li a {
        padding: 12px 16px;
        font-size: 15px;
        min-height: 44px;
    }

    .type-B .quick-list li a img {
        width: 18px;
        height: 18px;
    }

    .type-B .logo-area {
        gap: 15px;
    }

    .type-B .logo-area img {
        height: 40px;
    }

    .type-B .card-list {
        gap: 20px;
    }

    .type-B .card-text strong {
        font-size: 22px;
    }

    .type-B .card-text p {
        font-size: 14px;
    }


    .type-B .card-link {
        font-size: 14px;
    }

    .type-B .footer-right address {
        font-size: 13px;
    }

    .type-B .footer-right .copyright {
        font-size: 11px;
    }


}