section.staff {
    background: #D6F2FC;
    padding-top: clamp(14px, 1.97vw, 27px);
    padding-bottom: clamp(40px, 5.85vw, 80px);
}

.staff-Box {
    width: min(1166px, calc(100% - clamp(60px, 14.65vw, 200px)));
    margin: auto;
    background: #FBFBFB;
    border-radius: 10px;
}

.breadcrumbBox {
    width: min(1166px, calc(100% - clamp(60px, 14.65vw, 200px)));
    margin: auto;
}

.staff-container {
    width: clamp(375px, 74.7vw, 1020px);
    margin: auto;
    padding: clamp(20px, 2.93vw, 40px) 0;
}

.staff-title {
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
    font-size: clamp(22px, 2.93vw, 40px);
    font-weight: bold;
    margin-bottom: clamp(16px, 2.19vw, 30px);
    color: #504947;
}


@media (max-width:768px) {
    .staff-Box {
        width: calc(100% - 20px);
        border-radius: 8px;
    }

    .breadcrumbBox {
        width: calc(100% - 20px);
    }

    .staff-container {
        width: 100%;
        padding: 20px 15px 30px;
    }

    .staff-title {
        font-size: 24px;
        margin-bottom: 18px;
    }
}

.staff2 {
    padding: clamp(24px, 4.39vw, 60px) 0;
}

.staff-inner {
    margin: auto;
    display: flex;
    gap: clamp(36px, 6.59vw, 90px);
}

.staff-left {
    width: clamp(64px, 11.71vw, 160px);
}

.staff-name {
    font-size: clamp(16px, 2.93vw, 40px);
    font-weight: bold;
    margin-bottom: clamp(22px, 3.88vw, 53px);
    color: #504947;
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
}

.staff-image {
    width: clamp(64px, 11.71vw, 160px);
}

.staff-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

.staff-right {
    flex: 1;
    line-height: normal;
}

.staff-row {
    display: flex;
    padding: clamp(8px, 1.46vw, 20px) 0;
    border-bottom: 1px dotted #000000;
    gap: clamp(24px, 4.39vw, 60px);
}


.staff-label {
    width: clamp(140px, 26.35vw, 360px);
    color: #000000;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    font-size: clamp(12px, 1.46vw, 20px);
}

.staff-value {
    flex: 1;
    color: #000000;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    font-size: clamp(12px, 1.46vw, 20px);
}

.staff-btn {
    margin-top: clamp(24px, 4.39vw, 60px);
    text-align: right;
}

.staff-btn a {
    display: inline-block;
    background: #FF6200;
    color: #fff;
    padding: clamp(6px, 0.73vw, 10px) clamp(8px, 1.46vw, 20px);
    border-radius: 999px;
    text-decoration: none;
    font-size: clamp(10px, 1.02vw, 14px);
    transition: 0.2s;
    font-weight: bold;
    letter-spacing: -0.05em;
    font-family: "Zen Maru Gothic", sans-serif;
}

.staff-btn a:hover {
    opacity: 0.8;
}

.staff-row:first-of-type {
    padding-top: 0;
}



@media (max-width: 768px) {

    .staff-inner {
        flex-direction: column;
        gap: 30px;
    }

    .staff-left {
        width: 100%;
        text-align: center;
    }

    .staff-image {
        margin: auto;
        width: 100%;
    }

    .staff-name {
        letter-spacing: 4px;
        font-size: 26px;
    }

    .staff-image img {
        width: 160px;
        margin: auto;
    }

    .staff-row {
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
    }

    .staff-label {
        width: 100%;
        font-size: 16px;
    }

    .staff-value {
        font-size: 14px;
    }

    .staff-btn {
        text-align: center;
    }

    .staff-btn a {
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 30px;
    }
}