#mediaService {
    counter-reset: item-num;
}

#mediaService .content-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--row-gap) var(--grid-gap);
    backdrop-filter: blur(15px);
}

#mediaService .item {
    --border-use: 1px dashed rgb(153 153 153 / 35%);
    position: relative;
    padding: 55px;
    border-bottom: var(--border-use);
    border-right: var(--border-use);

    background: var(--box-color);
    border-radius: 40px 0;
}

#mediaService .item .en-tit {
    margin-bottom: 3px;
    font-size: var(--f16);
    letter-spacing: 0.2px;
    color: #aaa;
}

#mediaService .item h4 {
    --letter-spacing: 0;
    font-size: var(--f32);
    margin-bottom: 30px;
}

#mediaService .item dl {
    padding: 20px 25px;
    background: #000;
    border-radius: 15px;
}

#mediaService .item dl~dl {
    margin-top: 15px;
}

#mediaService .item dl dt {
    font-size: var(--f20);
    font-weight: 500;
}

#mediaService .item dl dd {
    font-size: var(--f18);
    font-weight: 400;
    color: #aaa;
    margin-top: 3px;
}

#mediaChoose {
    --bg-color: #030303;
}

#mediaChoose .bg {
    opacity: 0.6;
    background-attachment: fixed;
}

#mediaChoose .choose-item {
    --before-size: 120%;
    --after-size: 80%;
    margin: 230px auto 300px;
    backdrop-filter: blur(8px);
}

#mediaChoose .choose-item .inner {
    width: clamp(700px, 39.0625vw, 750px);
    height: auto;
    aspect-ratio: 1/1;

    border-radius: 100%;
    margin: 0 auto;
    position: relative;
}

#mediaChoose .choose-item .inner:before,
#mediaChoose .choose-item .inner:after {
    content: '';
    display: block;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 20px rgb(0 0 0 / 15%);
    filter: blur(3px);
}

#mediaChoose .choose-item .inner:before {
    width: var(--before-size);
    height: var(--before-size);
}

#mediaChoose .choose-item .inner:after {
    width: var(--after-size);
    height: var(--after-size);
    animation: circle-scale 3s linear infinite alternate;
}

@keyframes circle-scale {
    0% {
        width: var(--after-size);
        height: var(--after-size);
    }

    100% {
        width: calc(var(--after-size) * 1.1);
        height: calc(var(--after-size) * 1.1);
    }
}

#mediaChoose .circle-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

#mediaChoose .circle-wrap::before,
#mediaChoose .circle-wrap::after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    opacity: 0.5;
}

#mediaChoose .circle-wrap::before {
    width: 1px;
    height: 100%;
    border-right: 1px dashed #fff;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

#mediaChoose .circle-wrap::after {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #fff;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#mediaChoose .circle-item {
    width: clamp(280px, 15.625vw, 300px);
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
    padding: 50px;
    position: absolute;
    overflow: hidden;
    transform: translate(-50%, -50%);
    row-gap: 15px;
}

#mediaChoose .circle-item h5,
#mediaChoose .circle-item h5 span,
#mediaChoose .circle-item p {
    text-align: center;
    word-break: keep-all;
}

#mediaChoose .circle-item h5 {
    font-size: 22px;
    font-weight: 700;
}

#mediaChoose .circle-item h5 span {
    color: var(--color-sub);
}

#mediaChoose .circle-item p {
    font-size: var(--f16);
    color: #aaa;
}

#mediaChoose .circle-item:nth-child(1) {
    top: 0;
    left: 50%;
}

#mediaChoose .circle-item:nth-child(2) {
    top: 50%;
    left: 0;
}

#mediaChoose .circle-item:nth-child(3) {
    top: 50%;
    left: 50%;
}

#mediaChoose .circle-item:nth-child(4) {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}

#mediaChoose .circle-item:nth-child(5) {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

#mediaProcess .process-wrap .item:not(:first-child) {
    margin-top: -60px;
}

#mediaProcess .process-wrap .item .circle {
    width: 26vw;
    max-width: 400px;
}

#mediaProcess .process-wrap .item .circle h4 {
    font-size: 28px;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
    #mediaService .item {
        padding: 46px;
    }

    #mediaService .item h4 {
        font-size: 26px;
    }

    #mediaProcess .process-wrap .item:not(:first-child) {
        margin-top: -25px;
    }

    #mediaProcess .process-wrap .item .text ul {
        margin-top: 15px;
    }
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
    #mediaService .content-wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    #mediaService .item h4 {
        margin-bottom: 25px;
    }

    #mediaChoose .choose-item {
        margin: 190px auto 220px;
    }

    #mediaChoose .choose-item .inner {
        width: clamp(520px, 68vw, 700px);
    }

    #mediaChoose .circle-item {
        width: clamp(220px, 29vw, 280px);
        padding: 25px;
        row-gap: 12px;
    }

    #mediaChoose .circle-item h5 {
        font-size: 20px;
        line-height: 1.35;
    }

    #mediaProcess .process-wrap .item:not(:first-child) {
        margin-top: 20px;
    }

    #mediaProcess .process-wrap .item .circle {
        width: 29vw;
        max-width: 290px;
        min-width: 220px;
    }

    #mediaProcess .process-wrap .item .circle h4 {
        font-size: 20px;
    }

    #mediaProcess .process-wrap .item .text {
        max-width: 380px;
        padding: 30px 33px;
    }

    #mediaProcess .process-wrap .item .text ul {
        margin-top: 10px;
    }

    #mediaProcess .process-wrap .item .text ul li {
        font-size: 16px;
    }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
    #mediaService .content-wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    #mediaService .item {
        padding: 30px;
        border-radius: 30px 0;
    }

    #mediaService .item h4 {
        margin-bottom: 15px;
        font-size: 20px;
    }

    #mediaService .item dl {
        padding: 15px 20px;
    }

    #mediaService .item dl~dl {
        margin-top: 10px;
    }

    #mediaChoose {
        --bg-color: #090909;
    }

    #mediaChoose .bg {
        background-attachment: scroll;
        background-position: top center;
        opacity: 1;
        background-size: 350%;
        background-repeat: repeat;
        filter: blur(3px);
    }

    #mediaChoose .choose-item {
        margin: 0;
        backdrop-filter: none;
    }

    #mediaChoose .choose-item .inner {
        width: 100%;
        aspect-ratio: unset;
    }

    #mediaChoose .choose-item .inner:before,
    #mediaChoose .choose-item .inner:after {
        display: none;
    }

    #mediaChoose .circle-wrap {
        position: static;
        transform: unset;
        display: flex;
        flex-direction: column;
        gap: 20px;
        counter-reset: item-num;
    }

    #mediaChoose .circle-wrap::after {
        display: none;
    }

    #mediaChoose .circle-item {
        position: static;
        transform: unset;
        width: 70%;
        padding: 0;
        margin: 0 auto;
        row-gap: 12px;
    }

    #mediaChoose .circle-item h5 {
        font-size: 19px;
    }

    #mediaChoose .circle-item h5:before {
        content: counter(item-num, decimal-leading-zero);
        counter-increment: item-num;
        display: block;
        font-size: 0.65em;
        font-weight: 600;
        letter-spacing: 0.4px;
        color: #999;
        margin-bottom: 3px;
    }

    #mediaChoose .circle-item p {
        font-size: 14px;
    }

    #mediaChoose .circle-item:nth-child(4),
    #mediaChoose .circle-item:nth-child(5) {
        transform: unset;
    }

    #mediaProcess .process-wrap .item:not(:first-child) {
        margin-top: 50px;
    }

    #mediaProcess .process-wrap .item .circle {
        width: 100%;
        max-width: unset;
    }

    #mediaProcess .process-wrap .item .circle h4 {
        font-size: 20px;
    }
}