main .arrow {
    display: inline-flex;
    align-items: center !important;
    gap: 3px;
    position: relative;
    transition: opacity 0.25s;
}
main .arrow::after {
    content: "";
    border: 2px solid;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    display: flex;
}
main .arrow:hover {
    opacity: 0.9;
}
main .arrow-bg {
    color: #fff;
    background-color: #000;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center !important;
    justify-content: space-between;
    gap: 16px;
    min-width: 176px;
    border-radius: 0;
    transition: background-color 0.25s;
}
main .arrow-bg::after {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    background: url("data:image/svg+xml,%3Csvg width='23' height='7' viewBox='0 0 23 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 1L22 6H0' stroke='white' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E%0A")
        no-repeat center;
}
main .arrow-bg:hover {
    background-color: rgba(0, 0, 0, 0.85);
}
main section button {
    padding: 1rem 4rem;
    background-color: #0063fd;
    color: #fff;
    font-size: clamp(16px, 2vw, 18px);
}
main section ul {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 4rem 1rem;
}
main section.section-digital ul {
    width: auto;
}
main section ul li {
    flex: 1;
}
main section .links {
    display: flex;
    gap: 1rem;
    align-items: center;
}
main section .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
header {
    max-width: 100%;
}
footer {
    background-color: #f4f4f4;
    font-size: 16px;
}
footer.type2 {
    font-size: 14px;
    color: #b6b6b6;
    background-color: rgba(0, 0, 0, 0);
    text-align: center;
    padding: 1.5rem 0;
}
footer .dropdown {
    color: #969696;
    font-size: clamp(14px, 2vw, 16px);
    position: relative;
    margin-bottom: 1rem;
}
footer .dropdown a:hover {
    color: #000;
}
footer .dropdown button {
    font-size: clamp(14px, 2vw, 16px);
    color: #969696;
    border: 1px solid #d3d3d3;
    width: 224px;
    height: 48px;
    border-radius: 0;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .dropdown button::after {
    content: "";
    border: 2px solid #969696;
    border-left: 0;
    border-bottom: 0;
    width: 9px;
    height: 9px;
    transform: rotate(135deg);
    display: inline-block;
}
footer .dropdown li {
    background-color: #f4f4f4;
}
footer .dropdown li::after {
    content: none !important;
}
footer .dropdown li a {
    color: #969696;
    width: 100%;
    padding: 3px 1rem;
}
footer .dropdown ul {
    padding: 0.5rem 0;
    width: 100%;
    position: absolute;
    top: 100%;
    margin-top: -1px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    flex-direction: column;
    flex-wrap: nowrap !important;
    background-color: #f4f4f4;
    border: 1px solid #d3d3d3;
    transition: opacity 0.25s;
}
footer .dropdown ul.is-active {
    max-height: 999px;
}
footer .wrapper {
    flex-direction: column;
    gap: 0;
}
footer .section-sitemap {
    border-bottom: 1px solid #e0e0e0;
}
footer .section-sitemap .sitemap {
    gap: 2rem 0;
}
footer .section-sitemap .sitemap a:first-of-type {
    color: #555 !important;
}
footer .section-sitemap .sitemap a:hover {
    color: #000 !important;
}
footer .section-sitemap .sitemap li {
    flex: 0 0 196px;
}
footer .section-sitemap .sitemap li a {
    color: #969696;
    line-height: 1.5;
}
footer .section-contacts {
    border-bottom: 1px solid #e0e0e0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 0;
}
footer .section-contacts p:first-of-type {
    color: #000;
}
footer .section-contacts a {
    letter-spacing: 0;
}
footer .section-contacts i {
    background-color: #fff;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}
footer .section-contacts .texts {
    color: #888;
    flex: 0 0 320px;
    gap: 0.5rem;
}
footer .section-contacts .contacts {
    flex: 1 1 auto;
    gap: 0;
    margin-bottom: -10px;
}
footer .section-contacts .contacts li {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #555;
    min-width: 135px;
    margin-bottom: 10px;
}
footer .section-links {
    padding-bottom: 6rem;
    color: #888;
    gap: 0;
}
footer .section-links .links {
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    line-height: 1.5;
}
footer .section-links .links nav {
    display: flex;
}
footer .section-links .links nav a:not(:last-of-type) {
    color: #888;
}
footer .section-links .links nav a:not(:last-of-type)::after {
    content: "";
    width: 1px;
    height: 1rem;
    display: block;
    background: #d3d3d3;
    margin: 0 0.75rem;
}
footer .section-links .links ul {
    flex-wrap: wrap;
    gap: 0;
}
footer .section-links .links ul li {
    display: flex;
    align-items: center;
}
footer .section-links .links ul li:not(:last-of-type)::after {
    content: "";
    width: 1px;
    height: 1rem;
    display: block;
    background: #d3d3d3;
    margin: 0 0.75rem;
}
footer .section-links .links.sns {
    position: absolute;
    right: 0;
}
footer .section-links .partners {
    flex-wrap: wrap;
    align-items: center;
    gap: 1.75rem;
    margin-top: 1.5rem;
}
.modal#isms .dialog {
    width: 400px;
    height: 350px;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.4);
}
.modal#isms .modal-header {
    padding-bottom: 0;
}
.modal#isms .modal-content {
    padding: 0 2.25rem 2rem;
    align-items: flex-start;
    gap: 0.75rem;
}
.modal#isms .modal-content h3 {
    font-size: 30px;
}
.modal#isms .modal-content li {
    font-size: 18px;
    color: #777;
    position: relative;
    letter-spacing: 0;
    padding-left: 0.65rem;
}
.modal#isms .modal-content li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    background-color: #000;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    display: block;
}
.modal#isms .modal-content ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.section-sticky-button {
    padding: 0;
    position: sticky;
    bottom: 7rem;
    margin-top: -6rem;
    height: 0;
    display: flex;
    justify-content: center;
    z-index: 1000 !important;
}
.section-sticky-button button {
    flex: 0 0 auto;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    padding: 0 5rem;
    border-radius: 5rem;
    height: 4.5rem;
    width: min(380px, 70%);
    font-size: clamp(20px, 2vw, 24px);
    background-color: rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(90deg, #0042cf, #3399ff);
    background-blend-mode: multiply;
    font-weight: 500;
    transition: 0.5s;
}
.section-sticky-button button:hover {
    background-color: rgba(0, 0, 0, 0);
}
.section-sticky-button + section {
    padding: 5rem 0;
}
.section-buttons {
    padding: 3rem 0 !important;
    display: flex;
    justify-content: center;
}
.section-faq .accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 980px;
}
.section-faq .accordion li {
    background-color: #f4f4f4;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    transition: background-color 0.25s;
}
.section-faq .accordion li.is-active .question {
    padding-bottom: 0.5rem;
}
.section-faq .accordion li.is-active .question::after {
    transform: rotate(315deg);
    margin-top: 6px;
}
.section-faq .accordion li.is-active .answer {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    padding: 0.5rem 0 0 1.5rem;
}
.section-faq .accordion .question {
    display: flex;
    align-items: center;
    font-size: clamp(17px, 2vw, 20px);
    padding-right: 2.4rem;
    line-height: 1.5;
    transition: color 0.25s;
    cursor: pointer;
}
.section-faq .accordion .question::before {
    content: "Q";
    color: #0042cf;
    margin-right: 0.75rem;
}
.section-faq .accordion .question::after {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid #000;
    border-left: 0;
    border-bottom: 0;
    display: block;
    transform: rotate(135deg);
    margin-top: -3px;
    position: absolute;
    right: 2rem;
    transition: 0.4s;
}
.section-faq .accordion .answer {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0 1.5rem;
    color: #777;
    transition: 0.25s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.section-faq .accordion .answer small {
    font-size: clamp(14px, 2vw, 16px);
    color: #645c98;
}
.section-faq .accordion .answer a {
    font-size: clamp(14px, 2vw, 16px);
    color: #0042cf;
    margin-top: 1rem;
}
.section-faq .accordion .answer p {
    font-size: clamp(15px, 2vw, 18px);
    flex-direction: row;
    gap: 1.5rem;
    text-align: left;
}
.section-extensions {
    background-color: #f4f4f4;
    padding: 8vh 0;
}
.section-extensions a {
    color: #0042cf;
}
.section-extensions a::after {
    border-color: #0042cf;
}
.section-extensions p {
    font-size: clamp(14px, 2vw, 17px);
    color: #969696;
}
.section-extensions h3 {
    font-size: clamp(17px, 3vw, 24px) !important;
    margin-bottom: 0;
}
.section-extensions h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 0;
}
.section-extensions li {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 2rem;
    gap: 2rem;
}
.section-extensions li .image {
    order: 0;
}
.section-library {
    background-color: #f5faff;
}
.section-library h2 {
    font-size: clamp(26px, 4vw, 34px);
}
.section-library h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    font-size: clamp(16px, 2vw, 18px) !important;
    font-weight: 700;
}
.section-library header {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}
.section-library header::before {
    content: "";
    width: 68px;
    display: block;
}
.section-library header a {
    color: #969696;
}
.section-library li {
    flex: 0 0 calc(25% - 1rem);
}
.section-library li a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
.section-library li a small {
    display: none;
}
.section-library ul {
    justify-content: flex-start;
}
.section-library .image {
    order: 0;
    overflow: hidden;
    aspect-ratio: 1.86/1;
    background: #f3f6f9;
    display: block;
    width: 100%;
}
.section-library .texts {
    gap: 0.5rem;
}
.content-header {
    min-height: 20rem;
}
.content-header a,
.content-header button {
    margin-top: 1rem;
    font-size: 17px;
    letter-spacing: 0;
}
.content-header .wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.content-header .swiper-slide {
    background-position-x: center;
}
.content-header .swiper-slide-active {
    z-index: 1;
}
.content-header .swiper-slide.shop {
    background-color: #39f;
}
.content-header .swiper-slide.editor {
    background-color: #39f;
}
.content-header .swiper-slide.custom {
    background-color: #0063fe;
}
.content-header .swiper-slide.market {
    background-color: #7774ff;
}
.content-header .swiper-slide.global {
    background-color: #fe9d43;
}
.content-header .swiper-slide.ads {
    background-color: #29ce8a;
}
.content-header .swiper-slide .image {
    position: absolute;
    right: 0;
    bottom: 0;
}
.content-header .swiper-slide .images {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    justify-content: center;
}
.content-header .swiper-slide .images img:last-of-type {
    display: none;
}
.content-main .content-header p,
.content-main .content-header h1 {
    color: #fff;
}
.content-main .section-intro {
    height: calc(var(--vh, 1vh) * 100 - 50px);
    background-color: #0063fd;
    overflow: hidden;
}
.content-main .section-intro i {
    position: absolute;
    left: calc(50% - 28px);
    bottom: 5vh;
    animation: moveUpDown 1.5s infinite;
    cursor: pointer;
}
.content-main .section-intro video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
}
.content-main .section-intro video.small {
    display: none;
}
.content-main .section-digital {
    overflow: hidden;
}
.content-main .section-digital.is-active .logo {
    background-color: #000;
    width: 260px;
    height: 260px;
}
.content-main .section-digital i {
    position: absolute;
    top: 0.5rem;
    transition: opacity 0.25s;
}
.content-main .section-digital a {
    opacity: 0;
    visibility: hidden;
    font-size: clamp(20px, 3vw, 25px);
    z-index: 10;
    transform: translateY(5px);
}
.content-main .section-digital a,
.content-main .section-digital h3 {
    position: absolute;
    bottom: 1rem;
    color: #fff;
    transition: opacity 0.25s;
    margin-bottom: 0;
}
.content-main .section-digital h2 {
    /*font-size: clamp(26px, 2.15vw, 34px);*/
}
.content-main .section-digital h3 {
    font-size: clamp(17px, 2.15vw, 22px);
    font-weight: 500;
}
.content-main .section-digital p {
    opacity: 0;
    visibility: hidden;
    font-size: clamp(20px, 3vw, 25px);
    position: absolute;
    transform: translateY(5px);
    transition: 0.25s;
}
.content-main .section-digital img {
    max-width: none;
}
.content-main .section-digital ul {
    align-items: center;
    gap: 0.5rem;
}
.content-main .section-digital ul li {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    opacity: 1 !important;
    animation: none !important;
    flex: 0 0 auto;
    border-radius: 50%;
}
.content-main .section-digital ul li:hover div {
    background-size: 95%;
}
.content-main .section-digital ul li:hover div::before {
    border: 0;
    background: #fff;
    transform: scale(5);
}
.content-main .section-digital ul li:hover i,
.content-main .section-digital ul li:hover h3 {
    opacity: 0;
    visibility: hidden;
}
.content-main .section-digital ul li:hover a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: 0.25s 0.25s;
    text-decoration: underline;
}
.content-main .section-digital ul li:hover p {
    opacity: 1;
    visibility: visible;
    max-height: none;
    color: #0063fd;
    transform: translateY(0);
    z-index: 11;
    transition: 0.25s;
}
.content-main .section-digital ul li.logo {
    width: 200px;
    height: 200px;
    background: #0042cf url("/images/common/logo_commerce_w.svg") no-repeat center;
    background-size: 80%;
    z-index: 1;
    transition: 0.5s 0.25s;
}
.content-main .section-digital ul li.logo::before {
    content: none;
}
.content-main .section-digital ul li div {
    width: 234px;
    height: 212px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition:
        background-size 0.25s,
        transform 0.5s 0.25s;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.content-main .section-digital ul li div::before {
    content: "";
    background: url(/images/main/plus.png) no-repeat center;
    width: 50px;
    height: 50px;
    display: flex;
    transform: scale(1);
    border-radius: 50%;
    transition: transform 0.25s ease-in-out;
    cursor: pointer;
    z-index: 10;
}
.content-main .section-digital ul li:nth-of-type(1) div {
    transform: translateX(30rem);
    background-image: url("/images/main/digital_1.png");
    margin: 0 -0.75rem;
}
.content-main .section-digital ul li:nth-of-type(1) div a,
.content-main .section-digital ul li:nth-of-type(1) div p {
    color: #5096ff;
}
.content-main .section-digital ul li:nth-of-type(2) div {
    transform: translateX(18rem);
    background-image: url("/images/main/digital_2.png");
}
.content-main .section-digital ul li:nth-of-type(2) div a,
.content-main .section-digital ul li:nth-of-type(2) div p {
    color: #7774ff;
}
.content-main .section-digital ul li:nth-of-type(4) div {
    transform: translateX(-18rem);
    background-image: url("/images/main/digital_3.png");
}
.content-main .section-digital ul li:nth-of-type(4) div a,
.content-main .section-digital ul li:nth-of-type(4) div p {
    color: #fdaa5d;
}
.content-main .section-digital ul li:nth-of-type(5) div {
    transform: translateX(-30rem);
    background-image: url("/images/main/digital_4.png");
    margin: 0 -0.75rem;
}
.content-main .section-digital ul li:nth-of-type(5) div a,
.content-main .section-digital ul li:nth-of-type(5) div p {
    color: #6ddcae;
}
.content-main .section-digital.is-active ul li:nth-of-type(1) div {
    transform: translateX(0);
}
.content-main .section-digital.is-active ul li:nth-of-type(2) div {
    transform: translateX(0);
}
.content-main .section-digital.is-active ul li:nth-of-type(4) div {
    transform: translateX(0);
}
.content-main .section-digital.is-active ul li:nth-of-type(5) div {
    transform: translateX(0);
}
.content-main .section-details {
    background-color: #f9f9f9;
}
.content-main .section-details:first-of-type .wrapper {
    overflow: hidden;
}
.content-main .section-details:first-of-type .video {
    margin-right: -1px;
}
.content-main .section-details:not(:first-of-type) {
    padding-top: 0;
}
.content-main .section-details a {
    color: #fff;
    background-color: #000;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center !important;
    justify-content: space-between;
    gap: 0.75rem;
    font-family: "Pretendard";
    transition: 0.25s;
    width: min(176px, 80vw);
    height: 48px;
    margin-top: 1rem;
}
.content-main .section-details a:hover {
    background-color: #333639;
}
.content-main .section-details a::after {
    margin-left: 1rem;
}
.content-main .section-details h3 {
    font-size: clamp(22px, 5vw, 26px);
    color: #39f;
}
.content-main .section-details h2 {
    white-space: nowrap;
}
.content-main .section-details p {
    white-space: nowrap;
    color: #969696;
    font-size: clamp(18px, 3vw, 20px);
}
.content-main .section-details p span {
    line-height: 1.25;
}
.content-main .section-details p strong {
    color: #000;
}
.content-main .section-details .texts {
    margin-top: -3rem;
    gap: 0.5rem;
}
.content-main .section-details .video {
    aspect-ratio: 1.25/1;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.content-main .section-details .video video {
    max-width: 100%;
}
.content-main .section-details .wrapper {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 6vw;
}
.content-main .section-details:nth-of-type(2) h3 {
    color: #7774ff;
}
.content-main .section-details:nth-of-type(2) .texts {
    padding-right: 5vw;
}
.content-main .section-details:nth-of-type(3) h3 {
    color: #fe9d43;
}
.content-main .section-details:nth-of-type(4) {
    padding-bottom: 18vh;
}
.content-main .section-details:nth-of-type(4) h3 {
    color: #29ce8a;
}
.content-main .section-details:nth-of-type(4) .wrapper {
    flex-direction: row-reverse;
    justify-content: center;
}
.content-main .section-details:nth-of-type(4) .video {
    aspect-ratio: 1.5/1;
}
.content-main .section-details.is-active .images ul li img {
    transform: translateX(0);
}
.content-main .section-different {
    color: #fff;
    transition: background-color 0.5s 0.25s;
}
.content-main .section-different.is-active {
    background-color: #000;
}
.content-main .section-different .wrapper {
    gap: 7rem;
}
.content-main .section-different p {
    font-size: clamp(16px, 2vw, 18px);
    display: inline;
}
.content-main .section-different p span {
    display: inline;
    line-height: 1.5;
}
.content-main .section-different h2 {
    font-size: clamp(32px, 5vw, 80px);
}
.content-main .section-different h3 {
    font-size: clamp(22px, 3vw, 26px);
}
.content-main .section-different li {
    flex: 0 0 auto;
    opacity: 1 !important;
    animation: none !important;
    width: min(360px, 80vw);
}
.content-main .section-different li:nth-of-type(1) {
    z-index: 3;
}
.content-main .section-different li:nth-of-type(1) .effect {
    background-color: #0063fd;
    color: #fff;
    transform: translate(21rem, 0) rotate(-10deg);
}
.content-main .section-different li:nth-of-type(2) {
    z-index: 2;
}
.content-main .section-different li:nth-of-type(2) p {
    width: 90%;
}
.content-main .section-different li:nth-of-type(2) .effect {
    transform: translate(0, 0) rotate(0);
}
.content-main .section-different li:nth-of-type(3) {
    z-index: 1;
}
.content-main .section-different li:nth-of-type(3) .effect {
    background-color: #1ad079;
    color: #fff;
    transform: translate(-21rem, 0) rotate(10deg);
}
.content-main .section-different .effect {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem;
    background-color: #fff;
    color: #0063fd;
    width: 100%;
    height: 100%;
    transition: ease-in-out transform 0.5s 0.75s;
}
.content-main .section-different .image {
    order: 0;
    height: 200px;
}
.content-main .section-different .swiper {
    overflow: unset;
}
.content-main .section-different .swiper-pagination-bullet {
    background: #fff;
}
.content-main .section-different.is-active li:nth-of-type(1) .effect {
    transform: translate(3rem, 0) rotate(-10deg);
}
.content-main .section-different.is-active li:nth-of-type(2) .effect {
    transform: translate(0, -2rem) rotate(0);
}
.content-main .section-different.is-active li:nth-of-type(3) .effect {
    transform: translate(-3rem, 0) rotate(10deg);
}
.content-main .section-articles small {
    font-size: clamp(15px, 2vw, 16px);
    color: #777;
    order: 2;
}
.content-main .section-articles h2 {
    font-size: clamp(24px, 3vw, 34px);
}
.content-main .section-articles h3 {
    font-size: clamp(17px, 3vw, 18px);
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    font-weight: 700;
}
.content-main .section-articles header {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.content-main .section-articles header a {
    color: #969696;
}
.content-main .section-articles li {
    flex: 0 0 calc(25% - 1rem);
}
.content-main .section-articles li a {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}
.content-main .section-articles li img {
    min-width: 100%;
}
.content-main .section-articles ul {
    justify-content: flex-start;
}
.content-main .section-articles .image {
    order: 0;
    overflow: hidden;
    aspect-ratio: 1.86/1;
    background: #f3f6f9;
    display: block;
    width: 100%;
}
.content-main .section-articles .texts {
    gap: 0.5rem;
}
.content-main .section-contacts {
    padding: 100px 0 80px;
    background-color: #0042cf;
    color: #fff;
}
.content-main .section-contacts h2 {
    font-size: clamp(26px, 4vw, 45px);
    font-weight: 800;
}
.content-main .section-contacts p {
    font-size: clamp(20px, 3vw, 24px);
}
.content-main .section-contacts button {
    margin-top: 2rem;
    font-size: clamp(20px, 3vw, 24px);
    background-color: #fff;
    color: #0042cf;
    padding: 2.5vh 0;
    border-radius: 50px;
    width: min(70%, 360px);
    justify-content: center;
}
.content-main .section-contacts .wrapper {
    gap: 0;
}
.content-main .section-benefits {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 32px 1rem;
    background-color: #fff;
    border-top: 1px solid #e7e7e7;
}
.content-main .section-benefits a {
    color: #969696;
}
.content-main .section-benefits h2 {
    font-size: clamp(20px, 2.15vw, 24px);
}
.content-main .section-benefits .image {
    order: 0;
    width: min(20vw, 114px);
}
.content-tabs {
    background-color: #f4f4f4;
    padding-bottom: 15vh;
    border-bottom: 1px solid #e3e3e3;
}
.content-tabs h1 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
}
.content-tabs a {
    color: #0042cf;
    position: relative;
}
.content-tabs p {
    color: #555;
    font-size: clamp(16px, 2vw, 18px);
}
.content-tabs p a::before {
    content: "";
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #0042cf;
}
.content-tabs p a[href*="tel"] {
    color: #555;
}
.content-tabs p a[href*="tel"]::before {
    content: none;
}
.content-tabs h3 {
    color: #969696;
}
.content-tabs h3:not(:first-of-type) {
    margin-top: 1.5rem;
}
.content-tabs h3 strong {
    color: #000;
}
.content-tabs .logos li {
    display: flex;
    justify-content: center;
}
.content-tabs .logos img {
    max-height: 50px;
}
.content-tabs .arrow {
    margin-bottom: 1rem;
}
.content-tabs .keyword {
    background-color: #ebf1ff;
    color: #39f;
    border-radius: 3px;
    padding: 0.35rem 0.75rem;
}
.content-tabs .keyword::before {
    content: "#";
    margin-right: 3px;
}
.content-tabs section {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    background-color: #fff;
    flex: 1;
    display: flex;
    padding: 0 2rem;
}
.content-tabs section.is-active {
    max-height: 9999px;
    padding: 4rem 2rem;
}
.content-tabs section.is-active:not(:last-of-type) {
    margin-bottom: 1rem;
}
.content-tabs section.nothing {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}
.content-tabs section li {
    flex: 1 1 auto;
}
.content-tabs section li:not(:last-of-type) {
    position: relative;
    padding-right: 20px;
}
.content-tabs section li:not(:last-of-type)::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    height: 1.5rem;
    width: 1px;
    display: block;
    background-color: #d4d4d4;
}
.content-tabs section ul {
    align-items: center;
    border-radius: 0.5rem;
    background-color: #f4f4f4;
    padding: 0.75rem 20px;
}
.content-tabs section header {
    flex: 0 0 40%;
    gap: 1rem;
}
.content-tabs section p:not(header p) {
    flex-direction: row;
}
.content-tabs section div.texts {
    gap: 5px;
}
.content-tabs section .keywords {
    display: flex;
    gap: 0.5rem;
}
.content-tabs .content-header {
    min-height: 200px;
}
.content-tabs .content-header * {
    align-items: center;
}
.content-tabs .tabs {
    background-color: #fff;
    margin-bottom: 1rem;
}
.content-tabs .tabs::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #d3d3d3;
    bottom: 0;
    position: absolute;
}
.content-tabs .tabs li {
    flex: 1;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(15px, 2vw, 20px);
    color: #777;
}
.content-tabs .tab-content .wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.content-tabs.terms .tabs li a {
    flex: 1;
    justify-content: center;
    height: 100%;
}
.content-tabs.terms .tabs li a:not(:hover) {
    color: #777;
}
.content-tabs.terms .tabs li a[target="_blank"]::after {
    content: "";
    display: inline-block;
    width: 0.7em;
    height: 0.7em;
    margin-left: 0.4em;
    background: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_4748_13597)"><path d="M4 0H0V14H14V10" stroke="%23777777" stroke-width="2.5"/><path d="M8 0H14V6" stroke="%23777777" stroke-width="2.5"/><path d="M13 1L5 9" stroke="%23777777" stroke-width="1.5"/></g><defs><clipPath id="clip0_4748_13597"><rect width="14" height="14" fill="white"/></clipPath></defs></svg>')
        center/contain no-repeat;
}
.content-tabs.terms .tabs li a[target="_blank"]:hover::after {
    background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_4748_13597)"><path d="M4 0H0V14H14V10" stroke="%230042cf" stroke-width="2.5"/><path d="M8 0H14V6" stroke="%230042cf" stroke-width="2.5"/><path d="M13 1L5 9" stroke="%230042cf" stroke-width="1.5"/></g><defs><clipPath id="clip0_4748_13597"><rect width="14" height="14" fill="white"/></clipPath></defs></svg>');
}
.content-tabs.terms h3 {
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: clamp(17px, 2.5vw, 18px);
    font-weight: 600;
    color: #000;
}
.content-tabs.terms dl {
    padding: 5px 0;
    padding-left: 1rem;
    counter-reset: dd;
}
.content-tabs.terms dl dd {
    font-size: 15px;
}
.content-tabs.terms dl dd:before {
    counter-increment: dd;
    content: counter(dd) ". ";
}
.content-tabs.terms section {
    opacity: 1 !important;
    visibility: visible !important;
    flex-direction: column;
    max-height: none;
    padding: 3rem;
    font-size: clamp(13px, 2vw, 16px);
    color: #777;
    line-height: 1.6;
}
.content-tabs.terms section h2 {
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600;
    color: #000;
}
.content-tabs.terms section h2:not(:first-child) {
    margin-top: 4rem;
}
.content-tabs.terms section h2 + h3 {
    margin-top: 0;
}
.form-payments {
    padding-bottom: 5vh;
    min-height: 100%;
    overflow-y: auto;
}
.content-payments {
    padding: 8vh 0;
}
.content-payments .blue {
    color: #0042cf;
}
.content-payments .price.blue {
    font-size: 20px;
}
.content-payments .price::after {
    content: "원";
    font-size: 16px;
    margin-left: 3px;
}
.content-payments .buttons {
    margin-top: 2rem;
}
.content-payments .buttons button:first-of-type:last-of-type {
    background-color: #0042cf;
    border-radius: 50px;
    width: 300px;
    justify-content: center;
}
.content-payments .selectbox select {
    font-weight: 600;
}
.content-payments.checkout small {
    color: #969696;
}
.content-payments.checkout h2 {
    padding: 1.25rem 0 0;
    border-top: 1px solid #e3e3e3;
}
.content-payments.checkout .list ul {
    border: 0;
    padding-bottom: 0;
}
.content-payments.checkout .list {
    gap: 1rem;
}
.content-payments.charged small {
    color: #555;
    justify-content: center;
    font-size: 16px;
    margin-top: 0.5rem;
}
.content-payments.charged .list ul {
    padding: 1rem 1.25rem 1.25rem;
}
.content-payments.charged .total {
    background-color: #ebf1ff;
    color: #0042cf;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}
.content-payments.charged .total strong {
    font-size: 22px;
}
.content-payments.charged .total strong::after {
    content: "토큰";
    font-weight: 400;
    font-size: 18px;
}
.content-payments p {
    font-size: 16px;
    color: #969696;
}
.content-payments header {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.75rem;
}
.content-payments header a {
    margin-top: 0;
}
.content-payments h1 {
    align-items: center;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
}
.content-payments h2 {
    align-items: flex-start;
    font-size: 18px;
    padding: 0 1.25rem;
}
.content-payments section {
    background: #fff;
    width: min(580px, 100%);
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.content-payments .list small {
    padding-top: 1rem;
}
.content-payments .list input[type="text"],
.content-payments .list input[type="number"] {
    flex: 1 1 auto;
}
.content-payments .list button {
    font-size: 14px;
    padding: 0.5rem 2rem;
    background-color: #333;
}
.content-payments .list li {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
}
.content-payments .list li > div:first-child {
    color: #969696;
}
.content-payments .list ul {
    flex-direction: column;
    gap: 0.75rem;
    border-bottom: 1px solid #e3e3e3;
}
.content-payments .list ul.inputs {
    align-items: flex-start;
    flex-direction: column;
    border: 0;
    gap: 0.5rem;
}
.content-payments .list ul.inputs.vertical li {
    padding: 0;
}
.content-payments .list ul.inputs input[type="radio"] + label {
    border: 1px solid #d3d3d3;
    padding: 1rem;
    width: 100%;
    margin-right: 0;
    font-weight: 600;
}
.content-payments .list ul.inputs input[type="radio"]:checked + label {
    border-color: #0042cf;
}
.content-payments .list ul.total {
    border-top: 0;
    font-size: 18px;
    padding: 1.5rem 0;
}
.content-payments .list ul.total .blue {
    color: #0042cf;
}
.content-payments .buttons {
    margin-top: 1rem;
}
.content-shop .content-header {
    background-color: #39f;
    color: #fff;
}
.content-shop .section-only {
    background-color: #253340;
}
.content-shop .section-only h3 {
    font-size: clamp(20px, 2vw, 34px);
}
.content-shop .section-only li {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    flex: 1 1 calc(50% - 0.75rem);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
}
.content-shop .section-only li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.25s;
}
.content-shop .section-only li:hover::after {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.content-shop .section-only li:hover .texts {
    opacity: 0;
    visibility: hidden;
}
.content-shop .section-only li:hover .texts + .texts {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.content-shop .section-only li:nth-of-type(1) {
    background-color: #a966c0;
}
.content-shop .section-only li:nth-of-type(2) {
    background-color: #39f;
}
.content-shop .section-only li:nth-of-type(3) {
    background-color: #1ad079;
}
.content-shop .section-only li:nth-of-type(4) {
    background-color: #7059f4;
}
.content-shop .section-only li .texts {
    opacity: 1;
    visibility: visible;
    transition: 0.25s;
}
.content-shop .section-only li .texts + .texts {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.content-shop .section-skins img {
    max-width: 100%;
}
.content-shop .section-skins li {
    width: auto !important;
    height: auto;
}
.content-shop .section-skins ul {
    width: auto;
    flex-wrap: nowrap;
    gap: 40px;
    justify-content: unset;
}
.content-shop .section-skins .swiper-wrapper {
    transition-timing-function: linear !important;
}
.content-shop .section-skins .tabs .tab-content {
    padding: 2rem 0;
}
.content-shop .section-pricing {
    padding-top: 100px;
    margin-bottom: 2rem;
}
.content-shop .section-pricing h2 {
    font-weight: 800;
}
.content-shop .section-pricing h3 {
    font-size: clamp(24px, 2vw, 26px);
}
.content-shop .section-pricing small {
    width: 100%;
    font-size: clamp(16px, 2vw, 18px);
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}
.content-shop .section-pricing s {
    font-size: clamp(16px, 2vw, 18px);
    color: #969696;
}
.content-shop .section-pricing header p {
    font-size: clamp(17px, 2vw, 24px);
}
.content-shop .section-pricing ul {
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
    width: -moz-fit-content;
    width: fit-content;
}
.content-shop .section-pricing li {
    flex: 1;
    aspect-ratio: 1.2/1;
    border: 1px solid #d3d3d3;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: min(380px, 75vw);
    height: auto;
}
.content-shop .section-pricing li * {
    align-items: center;
    text-align: center;
    justify-content: center;
}
.content-shop .section-pricing .texts p {
    color: #777;
}
.content-shop .section-pricing .percent {
    color: #39f;
}
.content-shop .section-pricing .price {
    margin-top: 3rem;
    font-size: clamp(16px, 2vw, 18px);
}
.content-shop .section-pricing .price strong {
    color: #0042cf;
    font-size: clamp(26px, 3vw, 40px);
}
.content-shop .section-pricing .swiper {
    width: auto;
}
.content-shop .section-contacts {
    padding: 100px 0 15vh;
}
.content-shop .section-contacts p {
    font-size: clamp(20px, 3vw, 24px);
}
.content-shop .section-contacts h2 {
    font-weight: 800;
}
.content-shop.clickn .section-intro h3 {
    font-size: 24px;
    margin-bottom: 0;
}
.content-shop.clickn .section-intro h4 {
    font-size: 20px;
}
.content-shop.clickn .section-intro ul li.quick {
    background-color: #e7f2ff;
}
.content-shop.clickn .section-intro ul li.quick h4 {
    color: #5a9cea;
}
.content-shop.clickn .section-intro ul li.pay {
    background-color: #e0f6fd;
}
.content-shop.clickn .section-intro ul li.pay h4 {
    color: #62a0b1;
}
.content-shop.clickn .section-intro ul li.mobile {
    background-color: #f2f1ff;
}
.content-shop.clickn .section-intro ul li.mobile h4 {
    color: #827cc6;
}
.content-shop.clickn .section-intro .texts {
    padding: 1.25rem;
    gap: 0;
    justify-content: center;
    align-items: center;
}
.content-shop.clickn .section-who {
    padding: 6rem 0;
    background-color: #253340;
    color: #fff;
}
.content-shop.clickn .section-who p {
    font-family: "Pretendard";
}
.content-shop.clickn .section-who h2 {
    white-space: nowrap;
}
.content-shop.clickn .section-who .wrapper {
    flex-direction: row;
}
.content-shop.clickn .section-reviews {
    height: 1400px;
}
.content-shop.clickn .section-reviews p {
    font-size: clamp(16px, 2vw, 18px);
    color: #777;
}
.content-shop.clickn .section-reviews h3 {
    font-size: clamp(20px, 2vw, 22px);
    font-weight: 600;
}
.content-shop.clickn .section-reviews header {
    flex-direction: row;
    position: absolute;
    left: 0;
    top: 0;
}
.content-shop.clickn .section-reviews header h2 {
    align-items: flex-start;
}
.content-shop.clickn .section-reviews article {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 5rem 1.5rem 2.5rem;
    box-shadow: 0px 1px 20px 5px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
    justify-content: space-between;
    aspect-ratio: 1/1.5;
    position: relative;
    background: url("/images/subs/shop/clickn_reviews_quote.png") no-repeat top 2.5rem left 1rem;
}
.content-shop.clickn .section-reviews li {
    flex: 0 0 auto;
    width: calc(25% - 1.15rem);
    display: flex;
    flex-direction: column;
    position: relative;
    height: -moz-fit-content;
    height: fit-content;
}
.content-shop.clickn .section-reviews li:nth-of-type(1) {
    flex: 1 1 auto;
    justify-content: center;
    height: 100%;
}
.content-shop.clickn .section-reviews li:nth-of-type(2) {
    flex: 1 1 auto;
    justify-content: center;
    height: 100%;
    margin-top: -20vh;
}
.content-shop.clickn .section-reviews li:nth-of-type(5) {
    padding-top: 10vh;
}
.content-shop.clickn .section-reviews ul {
    gap: 1.5rem;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    overflow: unset;
}
.content-shop.clickn .section-reviews .swiper {
    height: 100%;
    overflow: unset;
}
@keyframes upAndDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(1rem);
    }
}
.content-shop.clickn .section-skins {
    background-color: #000;
    color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    overflow: hidden;
}
.content-shop.clickn .section-skins * {
    opacity: 1 !important;
    animation: none !important;
}
.content-shop.clickn .section-skins .tabs {
    width: auto;
    justify-content: center;
}
.content-shop.clickn .section-skins .tabs li {
    flex: 0 0 auto;
    background-color: #555;
    color: #969696;
    border-radius: 50px;
    padding: 0.75rem 1rem;
    white-space: nowrap;
    font-family: "Pretendard";
    transition: 0.25s;
}
.content-shop.clickn .section-skins .tabs li:hover,
.content-shop.clickn .section-skins .tabs li.is-active {
    background-color: #0042cf;
    color: #fff;
}
.content-shop.clickn .section-skins .image {
    min-width: 200px;
    width: 15vw;
}
.content-shop.clickn .section-build {
    padding: 8rem 0 4rem;
    background-color: #fff;
}
.content-shop.clickn .section-build p {
    color: #777;
}
.content-shop.clickn .section-build ul {
    flex-direction: column;
    gap: 6rem;
}
.content-shop.clickn .section-build ul li {
    display: flex;
    justify-content: space-between;
}
.content-shop.clickn .section-build ul li:nth-of-type(1) .image img {
    margin-left: -5rem;
}
.content-shop.clickn .section-build ul li:nth-of-type(2) {
    justify-content: flex-start;
}
.content-shop.clickn .section-build ul li:nth-of-type(2) .image img {
    margin-left: -6.5rem;
}
.content-shop.clickn .section-build .texts {
    padding-top: 3rem;
}
.content-shop.clickn .section-icons {
    background-color: #f4f4f4;
}
.content-shop.clickn .section-icons p {
    font-size: 16px;
    align-items: flex-start;
    text-align: left;
    color: #777;
    font-family: "Pretendard";
}
.content-shop.clickn .section-icons p span {
    text-align: left;
}
.content-shop.clickn .section-icons h2 {
    align-items: flex-start;
}
.content-shop.clickn .section-icons h2 strong {
    color: #0042cf;
}
.content-shop.clickn .section-icons h3 {
    margin: 1.5rem 0 1rem;
}
.content-shop.clickn .section-icons ul {
    max-width: 730px;
    gap: 56px 2rem;
}
.content-shop.clickn .section-icons ul li {
    flex: 0 0 auto;
    width: min(220px, 50% - 0.5rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.content-shop.clickn .section-icons .image {
    order: 0;
}
.content-shop.clickn .section-icons .wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.content-shop.clickn .section-benefits {
    background: #39f url(/images/subs/shop/clickn_benefits_bg.jpg) no-repeat;
    background-size: cover;
    color: #fff;
    padding: 0;
}
.content-shop.clickn .section-benefits small {
    color: #c1ddf9;
    font-size: 18px;
    font-family: "Pretendard";
}
.content-shop.clickn .section-benefits p {
    font-family: "Pretendard";
}
.content-shop.clickn .section-benefits h2 {
    font-weight: normal;
    line-height: 1.35;
}
.content-shop.clickn .section-benefits h3 {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: normal;
    margin-top: 0.5rem;
}
.content-shop.clickn .section-benefits li {
    background-color: #196de6;
    padding: 2.5rem 1rem;
    aspect-ratio: 1/1.2;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.content-shop.clickn .section-benefits .image {
    margin-left: -9vw;
}
.content-shop.clickn .section-benefits .texts {
    width: 100%;
    flex: 1 1 auto;
    padding: 6rem 0;
}
.content-shop.clickn .section-benefits .texts p {
    margin-bottom: 0.75rem;
}
.content-shop.clickn .section-benefits .swiper {
    margin-top: 1.25rem;
}
.content-shop.clickn .section-benefits .wrapper {
    flex-direction: row;
    align-items: flex-end;
}
.content-shop.cloud .section-intro {
    flex-direction: column;
}
.content-shop.cloud .section-intro * {
    opacity: 1 !important;
    animation: none !important;
}
.content-shop.cloud .section-intro li {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content-shop.cloud .section-intro ul {
    margin-top: 3rem;
    gap: 5vw;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-left: 20vw;
}
.content-shop.cloud .section-intro .swiper-wrapper {
    transition-timing-function: linear !important;
}
.content-shop.cloud .section-intro .image {
    order: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 2px 8px 16px 6px rgba(150, 150, 160, 0.1);
    margin-bottom: 1rem;
}
.content-shop.cloud .section-only i {
    right: auto;
    transform: translateX(-50%);
    left: 50%;
    bottom: 2.5rem;
}
.content-shop.cloud .section-only li {
    flex-direction: column;
    justify-content: center;
}
.content-shop.cloud .section-only .image {
    order: 0;
}
.content-shop.cloud .section-only .texts {
    align-items: center;
    padding-bottom: 3rem;
}
.content-shop.cloud .section-only .texts * {
    text-align: center;
    align-items: center;
}
.content-shop.cloud .section-only .texts + .texts {
    padding-bottom: 0;
}
.content-shop.cloud .section-app p {
    color: #777;
}
.content-shop.cloud .section-app p span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.content-shop.cloud .section-app p span::before {
    content: "·";
}
.content-shop.cloud .section-app h3 {
    font-size: clamp(26px, 3.5vw, 34px);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}
.content-shop.cloud .section-app h3 :first-of-type {
    color: #969696;
}
.content-shop.cloud .section-app h3 :last-of-type {
    font-weight: 800;
}
.content-shop.cloud .section-app ul {
    box-shadow: 0px 5px 20px 20px rgba(150, 150, 160, 0.1);
    gap: 3rem;
    padding: 3rem;
}
.content-shop.cloud .section-app li {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.content-shop.cloud .section-app li:not(:last-of-type) {
    border-right: 1px solid #f4f4f4;
}
.content-shop.cloud .section-app .texts {
    justify-content: space-between;
    gap: 3rem;
    height: 100%;
}
.content-shop.cloud .section-payments {
    background-color: #39f;
}
.content-shop.cloud .section-payments header {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}
.content-shop.cloud .section-payments p {
    font-size: clamp(16px, 2vw, 18px);
    margin-top: 1rem;
}
.content-shop.cloud .section-payments p span {
    color: #777;
}
.content-shop.cloud .section-payments h2 {
    align-items: flex-start;
}
.content-shop.cloud .section-payments h3 {
    margin-top: 0.5rem;
}
.content-shop.cloud .section-payments h3 :first-of-type {
    color: #000;
    font-size: clamp(20px, 2vw, 24px);
}
.content-shop.cloud .section-payments h3 :last-of-type {
    color: #0042cf;
    font-size: clamp(24px, 2.5vw, 34px);
}
.content-shop.cloud .section-payments li {
    padding: 3rem 1rem;
    background-color: #fff;
    color: #000;
}
.content-shop.cloud .section-sticky-button button {
    background-image: linear-gradient(90deg, #0042cf, #3399ff);
}
.content-shop.independent .section-intro .wrapper {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6rem;
}
.content-shop.independent .section-business {
    background-color: #ebf1ff;
}
.content-shop.independent .section-business h3 {
    font-size: clamp(17px, 2vw, 24px);
}
.content-shop.independent .section-business img {
    filter: drop-shadow(20px 20px 20px rgba(120, 140, 160, 0.1));
}
.content-shop.independent .section-business strong {
    color: #0042cf;
    display: contents;
}
.content-shop.independent .section-business i {
    position: relative;
}
.content-shop.independent .section-business i::before {
    content: "";
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: block;
    background-color: #0042cf;
}
.content-shop.independent .section-business i::after {
    content: "";
    width: 14px;
    height: 8px;
    position: absolute;
    top: calc(50% - 7px);
    left: 50%;
    border: 2px solid #e3e6e9;
    border-top: none;
    border-right: none;
    background: rgba(0, 0, 0, 0);
    opacity: 1;
    transform: rotate(-45deg) translate(-50%, -50%);
}
.content-shop.independent .section-business li {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: auto;
    position: relative;
}
.content-shop.independent .section-business li:not(:last-of-type)::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 4rem;
    bottom: 0;
    right: 0;
    display: block;
    background-color: #e3e3e3;
}
.content-shop.independent .section-business ul {
    max-width: 800px;
    gap: 0;
}
.content-shop.independent .section-business .images {
    padding-bottom: 15vh;
    width: 100%;
    justify-content: center;
}
.content-shop.independent .section-business .images img:not(:first-of-type) {
    position: absolute;
}
.content-shop.independent .section-business .images img:nth-of-type(2) {
    top: 10%;
    left: 5%;
    z-index: 1;
}
.content-shop.independent .section-business .images img:nth-of-type(3) {
    bottom: 0;
    left: 20%;
}
.content-shop.independent .section-business .images img:nth-of-type(4) {
    top: 20%;
    right: 6%;
    z-index: 1;
}
.content-shop.independent .section-business .images img:nth-of-type(5) {
    bottom: 10%;
    right: 20%;
}
.content-shop.independent .section-business .image {
    order: 0;
}
.content-shop.independent .section-who h3 {
    padding: 1.5rem 0;
    margin-bottom: 0;
}
.content-shop.independent .section-who li {
    flex: 0 0 auto;
    width: -moz-fit-content !important;
    width: fit-content !important;
    box-shadow: 0px 5px 20px 20px rgba(150, 150, 160, 0.1);
}
.content-shop.independent .section-who .swiper {
    overflow: unset;
}
.content-shop.independent .section-partners {
    background-color: #f4f4f4;
}
.content-shop.independent .section-partners li {
    flex: 0 0 auto;
    width: auto;
}
.content-shop.transfer header .first {
    background: url("/images/subs/shop/transfer_header_1.jpg") center no-repeat;
}
.content-shop.transfer .section-intro p {
    font-size: clamp(16px, 2vw, 18px);
    color: #777;
}
.content-shop.transfer .section-intro ul {
    max-width: 900px;
}
.content-shop.transfer .section-intro li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.content-shop.transfer .section-intro .image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0px 1px 20px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.75rem;
}
.content-shop.transfer .section-benefits {
    background:
        url(/images/subs/shop/transfer_benefits_bg_2.png) left top no-repeat,
        url(/images/subs/shop/transfer_benefits_bg_1.png) left bottom no-repeat;
    background-color: #253340 !important;
    padding: 8rem 0;
}
.content-shop.transfer .section-benefits h2 {
    align-items: flex-start;
    text-align: left;
}
.content-shop.transfer .section-benefits strong {
    font-size: clamp(24px, 2vw, 34px);
    color: #ffa3d7;
}
.content-shop.transfer .section-benefits li {
    display: flex;
    gap: 1rem;
}
.content-shop.transfer .section-benefits .wrapper {
    align-items: flex-end;
}
.content-shop.transfer .section-benefits .wrapper > .texts {
    width: min(100%, 600px);
    gap: 2rem;
}
.content-shop.transfer .section-process {
    background-color: #ebf1ff;
}
.content-shop.transfer .section-process i {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0042cf;
    color: #fff;
    font-style: normal;
}
.content-shop.transfer .section-process a {
    width: 100%;
    justify-content: center;
}
.content-shop.transfer .section-process li {
    height: auto;
    background-color: #fff;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0px 1px 20px 5px rgba(0, 0, 0, 0.1);
}
.content-shop.transfer .section-process li h3 {
    color: #0042cf;
    font-size: clamp(22px, 4vw, 24px);
    margin-bottom: 0;
}
.content-shop.transfer .section-process li a {
    color: #0042cf;
}
.content-shop.transfer .section-process li p {
    font-size: clamp(16px, 2vw, 18px);
    color: #777;
}
.content-shop.transfer .section-process .swiper {
    overflow: unset;
}
.content-shop.editor h1 {
    position: relative;
}
.content-shop.editor h1 .tag {
    position: absolute;
    left: 110%;
    top: 1rem;
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 400;
    border: 1px solid #fff;
    padding: 0 5px;
}
.content-shop.editor h2 strong {
    color: #0042cf;
}
.content-shop.editor h3 {
    font-size: clamp(20px, 2vw, 24px);
}
.content-shop.editor .section-intro {
    background-color: #f5f5f5;
    padding-bottom: 0;
}
.content-shop.editor .section-intro span:last-of-type {
    font-size: 80%;
    font-weight: 400;
}
.content-shop.editor .section-intro .image {
    margin: 3rem 0 -6rem;
}
.content-shop.editor .section-intro .bg {
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.content-shop.editor .section-intro .bg i {
    display: block;
    position: absolute;
    z-index: 10;
    animation: fade-in-out 3s cubic-bezier(0.39, 0.575, 0.565, 1) both alternate infinite;
    pointer-events: none;
}
.content-shop.editor .section-intro .bg i.c1 {
    right: -22vw;
    bottom: -34vw;
    width: 57vw;
    height: 47vw;
    background: radial-gradient(
        ellipse at center,
        rgb(161, 183, 255) 0%,
        rgb(161, 183, 255) 40%,
        rgba(255, 255, 255, 0) 71%,
        rgba(255, 255, 255, 0) 100%
    );
    animation-delay: -1s;
}
.content-shop.editor .section-intro .bg i.c2 {
    right: -31vw;
    top: -24vw;
    width: 45vw;
    height: 47vw;
    background: radial-gradient(
        ellipse at center,
        rgb(161, 206, 221) 0%,
        rgb(161, 206, 221) 20%,
        rgba(255, 255, 255, 0) 71%,
        rgba(255, 255, 255, 0) 100%
    );
    animation-duration: 4s;
    animation-delay: 1.5s;
}
.content-shop.editor .section-intro .bg i.c3 {
    left: -10vw;
    top: calc(50% - 10vw);
    width: 20vw;
    height: 22vw;
    background: radial-gradient(
        ellipse at center,
        rgb(216, 168, 230) 0%,
        rgba(216, 168, 230, 0.8) 20%,
        rgba(255, 255, 255, 0) 61%,
        rgba(255, 255, 255, 0) 100%
    );
}
.content-shop.editor .section-intro .bg i.c4 {
    left: -8vw;
    top: calc(50% - 12vw);
    width: 15vw;
    height: 15vw;
    background: radial-gradient(
        ellipse at center,
        rgb(252, 215, 227) 0%,
        rgba(252, 215, 227, 0.8) 20%,
        rgba(255, 255, 255, 0) 61%,
        rgba(255, 255, 255, 0) 100%
    );
}
.content-shop.editor .section-intro .wrapper {
    gap: 0;
}
.content-shop.editor .section-features article {
    min-width: 85%;
    gap: 6rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.content-shop.editor .section-features article:nth-of-type(odd) {
    flex-direction: row-reverse;
}
.content-shop.editor .section-features li {
    flex: 0 0 auto;
    background-color: rgba(0, 66, 207, 0.1);
    color: #0042cf;
    width: 100px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(17px, 2.5vw, 18px);
    text-align: center;
    border-radius: 50%;
    line-height: 1.25;
}
.content-shop.editor .section-features ul {
    justify-content: flex-start;
}
.content-shop.editor .section-works {
    background: #253340 url("/images/subs/custom/agency_works_bg.jpg") no-repeat;
    background-size: cover;
}
.content-shop.editor .section-works h3 {
    font-size: clamp(24px, 2vw, 32px);
}
.content-shop.editor .section-works p {
    font-size: clamp(16px, 2vw, 18px);
    color: #969696;
}
.content-shop.editor .section-works strong {
    color: #0042cf;
}
.content-shop.editor .section-works .texts {
    color: #fff;
    width: min(450px, 100%);
    gap: 1rem;
    overflow: hidden;
    position: relative;
}
.content-shop.editor .section-works .image {
    order: 0;
    max-width: 100%;
}
.content-shop.editor .section-works .swiper * {
    animation: none;
    opacity: 1;
}
.content-shop.editor .section-works .swiper-wrapper {
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: unset;
    gap: 0;
    padding: 0 !important;
}
.content-shop.editor .section-works .swiper-slide {
    flex: none;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.content-shop.editor .section-works .swiper-button-prev,
.content-shop.editor .section-works .swiper-button-next {
    opacity: 0.5;
    border: 2px solid #fff;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transition: opacity 0.25s;
}
.content-shop.editor .section-works .swiper-button-prev::after,
.content-shop.editor .section-works .swiper-button-next::after {
    color: #fff;
    font-size: 1rem;
}
.content-shop.editor .section-works .swiper-button-prev:hover,
.content-shop.editor .section-works .swiper-button-next:hover {
    opacity: 1;
}
.content-shop.editor .section-pricing h3 {
    font-size: clamp(20px, 2vw, 26px);
    align-items: flex-start;
}
.content-shop.editor .section-pricing h3 small {
    justify-content: flex-start;
    margin-top: 5px;
    color: #969696;
}
.content-shop.editor .section-pricing li {
    width: min(470px, 75vw);
    padding: 2rem 1rem;
}
.content-shop.editor .section-pricing ul header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.content-shop.editor .section-pricing ul header p {
    font-size: clamp(14px, 2vw, 20px);
    color: #39f;
    text-align: right;
    font-weight: 400;
    align-items: flex-end;
}
.content-shop.editor .section-pricing ul header p span {
    position: relative;
}
.content-shop.editor .section-pricing ul header p span::before {
    content: "";
    bottom: 4px;
    width: 100%;
    height: 1px;
    background-color: #39f;
    display: block;
    position: absolute;
}
.content-shop.editor .section-pricing ul header .price {
    margin-top: 5px;
}
.content-shop.editor .section-pricing .arrow {
    color: #0042cf;
}
.content-shop.editor .section-pricing .advantages {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.content-shop.editor .section-pricing .advantages span {
    color: #777;
}
.content-shop.editor .section-pricing .advantages strong {
    color: #39f;
    font-weight: 600;
}
.content-shop.editor .section-pricing .advantages div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    position: relative;
    padding-left: 0.75rem;
}
.content-shop.editor .section-pricing .advantages div::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 4px;
    height: 4px;
    display: block;
    background-color: #777;
    border-radius: 50%;
}
.content-shop.editor .section-extensions {
    border-bottom: 1px solid #e3e3e3;
}
.content-shop.pricing h1 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    color: #000;
}
.content-shop.pricing .content-header {
    background-color: #f4f4f4;
    min-height: 200px;
    justify-content: center;
}
.content-shop.pricing .content-header * {
    align-items: center;
}
.content-shop.pricing .content-header + .wrapper {
    background-color: #fff;
}
.content-shop.pricing .list {
    width: 100%;
    border-bottom: 1px solid #eee;
}
.content-shop.pricing .list li {
    padding: 1rem;
    font-size: clamp(14px, 2.5vw, 18px);
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    text-align: center;
}
.content-shop.pricing .list li:first-of-type {
    justify-content: flex-start;
}
.content-shop.pricing .list li small {
    display: contents;
}
.content-shop.pricing .list ul {
    gap: 0;
}
.content-shop.pricing .list ul:nth-of-type(odd) li {
    background-color: #f4f4f4;
}
.content-shop.pricing .list ul:nth-of-type(1) li {
    background-color: #39f;
    color: #fff;
}
.content-shop.pricing .list ul:nth-of-type(2) li {
    font-weight: 700;
    color: #000;
}
.content-shop.pricing .list ul:nth-of-type(3) {
    font-weight: 700;
}
.content-shop.pricing .list ul:nth-of-type(3) li {
    background-color: #ebf1ff;
    color: #0042cf;
}
.content-shop.pricing .list ul:nth-of-type(3) li:first-of-type {
    color: #000;
}
.content-shop.pricing .track {
    width: 100%;
}
.content-shop.pricing .track table {
    width: 100%;
}
.content-shop.pricing .track table thead th {
    padding-top: min(30px, 3vw);
    padding-bottom: min(30px, 3vw);
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background: #39f;
    letter-spacing: 0;
}
.content-shop.pricing .track table thead th:not(:first-child) {
    border-left: 1px solid #e3e3e3;
}
.content-shop.pricing .track table thead th.title {
    font-size: clamp(16px, 1.8vw, 18px);
}
.content-shop.pricing .track table thead th strong {
    display: inline-block;
    margin-bottom: 0.5em;
    font-size: clamp(18px, 2.6vw, 26px);
}
.content-shop.pricing .track table thead th .price {
    flex-direction: row;
    justify-content: center;
}
.content-shop.pricing .track table thead th b {
    display: flex;
    font-size: clamp(15px, 1.8vw, 18px);
}
.content-shop.pricing .track table thead th .desc {
    display: flex;
    flex-direction: column;
    gap: 0.2em;
    margin-top: 1em;
    min-height: 3lh;
    font-size: inherit;
    font-weight: 400;
}
.content-shop.pricing .track table tbody td {
    height: 3em;
    padding: min(5px, 0.5vw) 0.5em;
    font-size: clamp(14px, 1.8vw, 18px);
    color: #777;
    font-weight: 600;
    vertical-align: middle;
    text-align: center;
    line-height: 1.2;
    border-bottom: 1px solid #e3e3e3;
    border-left: 1px solid #e3e3e3;
}
.content-shop.pricing .track table tbody td.noline {
    border-left: 0;
}
.content-shop.pricing .features {
    flex-wrap: wrap;
    padding: min(30px, 3vw) 0;
}
.content-shop.pricing .features p {
    align-items: flex-start;
}
.content-shop.pricing .features img {
    max-width: 4rem;
}
.content-shop.pricing .features small {
    color: #708090;
}
.content-shop.pricing .features small:first-of-type {
    margin-top: 0.5rem;
}
.content-shop.pricing .features li {
    flex: 1 1 auto;
    width: calc(50% - 1rem);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.content-openmarket .section-library {
    background-color: rgba(119, 116, 255, 0.1);
}
.content-openmarket .section-details ul {
    flex-wrap: wrap;
}
.content-openmarket.hiselling .section-intro h3 {
    font-size: clamp(20px, 2vw, 26px);
}
.content-openmarket.hiselling .section-intro li {
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    justify-content: flex-end;
    aspect-ratio: 1/1.37;
    background-size: cover;
}
.content-openmarket.hiselling .section-intro li.first {
    background-image: url("/images/subs/openmarket/hiselling_intro_1.jpg");
    background-color: #ebf1ff;
}
.content-openmarket.hiselling .section-intro li.first p {
    color: #777;
}
.content-openmarket.hiselling .section-intro li.second {
    background-image: url("/images/subs/openmarket/hiselling_intro_2.jpg");
    background-color: #7774ff;
}
.content-openmarket.hiselling .section-intro li.second p span {
    color: #c9c8ff;
}
.content-openmarket.hiselling .section-intro li.third {
    background-image: url("/images/subs/openmarket/hiselling_intro_3.jpg");
    background-color: #010066;
}
.content-openmarket.hiselling .section-intro li.third p span {
    color: #8686c5;
}
.content-openmarket.hiselling .section-intro .image {
    order: 0;
}
.content-openmarket.hiselling .section-recommend {
    background-color: #ebf1ff;
    padding: 0;
}
.content-openmarket.hiselling .section-recommend .wrapper {
    flex-direction: row;
}
.content-openmarket.hiselling .section-recommend .images {
    flex: 1 1 auto;
    height: 480px;
}
.content-openmarket.hiselling .section-recommend .images img {
    position: absolute;
    max-width: none;
}
.content-openmarket.hiselling .section-recommend .images img:nth-of-type(1) {
    top: 0;
    left: 25%;
    z-index: 1;
}
.content-openmarket.hiselling .section-recommend .images img:nth-of-type(2) {
    top: 10%;
    left: 0;
}
.content-openmarket.hiselling .section-recommend .images img:nth-of-type(3) {
    bottom: 0;
    right: 0;
}
.content-openmarket.hiselling .section-knowhow {
    padding-bottom: 0 !important;
    background-color: #253340;
    overflow: hidden;
}
.content-openmarket.hiselling .section-knowhow header {
    position: relative;
}
.content-openmarket.hiselling .section-knowhow .image:first-of-type {
    position: absolute;
    left: -1.25rem;
    top: 2.75rem;
}
.content-openmarket.hiselling .section-knowhow .image:last-of-type {
    margin-top: 1rem;
}
.content-openmarket.hiselling .section-knowhow .images :nth-of-type(1) {
    border: 2px solid #fff;
    border-radius: 1rem;
    margin-bottom: -1rem;
}
.content-openmarket.hiselling .section-knowhow .images :nth-of-type(2) {
    top: 15%;
    left: -10%;
}
.content-openmarket.hiselling .section-knowhow .images :nth-of-type(3) {
    top: 40%;
    left: -10%;
}
.content-openmarket.hiselling .section-knowhow .images :nth-of-type(4) {
    top: 15%;
    right: -10%;
}
.content-openmarket.hiselling .section-knowhow .images :nth-of-type(5) {
    top: -5%;
    right: 10%;
}
.content-openmarket.hiselling .section-knowhow .images :not(:first-of-type) {
    position: absolute;
}
.content-openmarket.hiselling .section-easy p {
    color: #777;
    align-items: flex-start;
}
.content-openmarket.hiselling .section-easy p span {
    display: flex;
    gap: 0.5rem;
}
.content-openmarket.hiselling .section-easy h3 {
    font-weight: 800;
    font-size: clamp(24px, 2vw, 34px);
}
.content-openmarket.hiselling .section-easy ul {
    box-shadow: 0px 5px 20px 20px rgba(150, 150, 160, 0.1);
    gap: 3rem;
    padding: 3rem;
}
.content-openmarket.hiselling .section-easy li {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: auto;
}
.content-openmarket.hiselling .section-easy li:not(:last-of-type) {
    border-right: 1px solid #f4f4f4;
}
.content-openmarket.hiselling .section-easy .texts {
    justify-content: space-between;
    gap: 3rem;
    height: 100%;
}
.content-openmarket.hiselling .section-easy .swiper {
    overflow: unset;
}
.content-openmarket.hiselling .section-sellers {
    background-color: #253340;
}
.content-openmarket.hiselling .section-sellers p {
    align-items: flex-start;
}
.content-openmarket.hiselling .section-sellers p span {
    color: #969696;
}
.content-openmarket.hiselling .section-sellers h3 {
    font-size: clamp(22px, 2.5vw, 34px);
}
.content-openmarket.hiselling .section-sellers h2 {
    font-size: clamp(26px, 3vw, 48px);
}
.content-openmarket.hiselling .section-sellers ul {
    flex-wrap: wrap;
    gap: 0;
}
.content-openmarket.hiselling .section-sellers li {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content-openmarket.hiselling .section-sellers li:nth-of-type(1),
.content-openmarket.hiselling .section-sellers li:nth-of-type(2) {
    margin-bottom: 5rem;
}
.content-openmarket.hiselling .section-sellers li:nth-of-type(even) {
    margin-top: 10vh;
}
.content-openmarket.hiselling .section-sellers .image {
    order: 0;
}
.content-openmarket.hiselling .section-details p {
    font-size: 16px;
    align-items: flex-start;
    color: #777;
    font-family: "Pretendard";
}
.content-openmarket.hiselling .section-details h2 {
    align-items: flex-start;
}
.content-openmarket.hiselling .section-details h2 strong {
    color: #0063fd;
}
.content-openmarket.hiselling .section-details h3 {
    margin-top: 0.75rem;
}
.content-openmarket.hiselling .section-details li {
    flex: 0 0 auto;
    width: min(220px, 50% - 1rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.content-openmarket.hiselling .section-details ul {
    max-width: 730px;
    gap: 2rem;
}
.content-openmarket.hiselling .section-details .image {
    order: 0;
}
.content-openmarket.hiselling .section-details .wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.content-openmarket.hiselling .section-partners {
    background-color: #f4f4f4;
}
.content-openmarket.hiselling .section-partners p :last-of-type {
    color: #969696;
}
.content-openmarket.hiselling .section-partners li {
    flex: 0 0 auto;
    width: min(280px, 45%);
}
.content-openmarket.hiselling .section-pricing {
    padding-top: 100px;
}
.content-openmarket.hiselling .section-pricing h2 {
    font-weight: 800;
}
.content-openmarket.hiselling .section-pricing article {
    flex: 1 1 auto;
    border: 1px solid #d3d3d3;
    border-radius: 1rem;
    padding: 2rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}
.content-openmarket.hiselling .section-pricing article.best {
    border: 2px solid #39f;
}
.content-openmarket.hiselling .section-pricing article.best i {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -1rem;
}
.content-openmarket.hiselling .section-pricing h3 {
    font-size: clamp(18px, 2vw, 22px);
    justify-content: center;
    margin-bottom: 0;
}
.content-openmarket.hiselling .section-pricing li {
    display: flex;
    padding: 0 1rem;
    justify-content: space-between;
    line-height: 1.5;
}
.content-openmarket.hiselling .section-pricing li div:last-of-type {
    color: #0042cf;
}
.content-openmarket.hiselling .section-pricing ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.content-openmarket.hiselling .section-pricing ul:first-of-type {
    padding: 0.5rem 0;
}
.content-openmarket.hiselling .section-pricing ul:nth-of-type(2) {
    color: #969696;
    font-size: clamp(13px, 2vw, 14px);
}
.content-openmarket.hiselling .section-pricing ul:nth-of-type(2)::before {
    content: "";
    width: 86%;
    height: 1px;
    margin: 0 auto;
    background-color: #e3e3e3;
    display: block;
    margin-bottom: 0.5rem;
}
.content-openmarket.hiselling .section-pricing .pricing {
    display: flex;
    gap: 1rem;
    width: 100%;
}
.content-openmarket.hiselling .section-pricing .price {
    text-align: center;
}
.content-openmarket.hiselling .section-pricing .price strong {
    font-size: clamp(24px, 2.5vw, 32px);
}
.content-openmarket.hiselling .section-pricing .fee {
    background-color: #f4f4f4;
    text-align: center;
    padding: 0.75rem 0;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.content-openmarket.hiselling .section-pricing .fee s {
    font-size: clamp(14px, 2vw, 16px);
    color: #969696;
}
.content-openmarket.hiselling .section-pricing .fee strong {
    font-size: clamp(16px, 2vw, 18px);
}
.content-openmarket.hiselling .section-pricing .fee strong.event {
    color: #0042cf;
    display: flex;
    gap: 5px;
    align-items: center;
}
.content-openmarket.hiselling .section-pricing .fee strong.event::after {
    content: "EVENT";
    background: linear-gradient(180deg, #3399ff, #0042cf);
    color: #fff;
    border-radius: 50px;
    padding: 3px 0.5rem;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 500;
}
.content-openmarket.hiselling .section-pricing .caution {
    width: 100%;
    margin-top: -1rem;
}
.content-openmarket.hiselling .section-pricing .caution p {
    line-height: 2;
    align-items: flex-start;
    text-align: left;
    color: #969696;
    font-size: clamp(13px, 2vw, 14px);
}
.content-openmarket.hiselling .section-pricing .swiper {
    overflow: unset;
}
.content-openmarket.hiselling .section-sticky-button button {
    background-image: linear-gradient(90deg, #2420dc, #7774ff);
}
.content-openmarket.hiselling .section-free {
    padding: 0;
    background: linear-gradient(90deg, #2420dc, #7774ff);
    cursor: pointer;
}
.content-openmarket.hiselling .section-free p {
    font-size: clamp(14px, 2vw, 17px);
}
.content-openmarket.hiselling .section-free h2 {
    font-size: clamp(17px, 2vw, 30px);
}
.content-openmarket.hiselling .section-free .texts {
    align-items: center;
    gap: 0.5rem;
}
.content-openmarket.hiselling .section-free .wrapper {
    flex-direction: row;
    justify-content: center;
}
.content-openmarket.esellers .section-intro h3 {
    font-size: clamp(20px, 2vw, 26px);
}
.content-openmarket.esellers .section-intro li {
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    justify-content: flex-end;
    aspect-ratio: 1/1.37;
    background-size: cover;
}
.content-openmarket.esellers .section-intro li.first {
    background-image: url("/images/subs/openmarket/esellers_intro_1.png");
    background-color: #ebf1ff;
}
.content-openmarket.esellers .section-intro li.first p {
    color: #777;
}
.content-openmarket.esellers .section-intro li.second {
    background-image: url("/images/subs/openmarket/esellers_intro_2.png");
    background-color: #7774ff;
}
.content-openmarket.esellers .section-intro li.second p span {
    color: #c9c8ff;
}
.content-openmarket.esellers .section-intro li.third {
    background-image: url("/images/subs/openmarket/esellers_intro_3.png");
    background-color: #010066;
}
.content-openmarket.esellers .section-intro li.third p span {
    color: #8686c5;
}
.content-openmarket.esellers .section-intro .image {
    order: 0;
}
.content-openmarket.esellers .section-recommend {
    background-color: #f4f4f4;
    padding: 0;
}
.content-openmarket.esellers .section-recommend .wrapper {
    flex-direction: row;
}
.content-openmarket.esellers .section-recommend .images {
    flex: 1 1 auto;
    height: 480px;
}
.content-openmarket.esellers .section-recommend .images img {
    position: absolute;
    max-width: none;
}
.content-openmarket.esellers .section-recommend .images img:nth-of-type(1) {
    top: 0;
    left: 25%;
    z-index: 1;
}
.content-openmarket.esellers .section-recommend .images img:nth-of-type(2) {
    top: 10%;
    left: 0;
}
.content-openmarket.esellers .section-recommend .images img:nth-of-type(3) {
    bottom: 0;
    right: 0;
}
.content-openmarket.esellers .section-easy p {
    color: #777;
    align-items: flex-start;
}
.content-openmarket.esellers .section-easy p span {
    display: flex;
    gap: 0.5rem;
}
.content-openmarket.esellers .section-easy h3 {
    font-weight: 800;
    font-size: clamp(24px, 2vw, 34px);
}
.content-openmarket.esellers .section-easy ul {
    box-shadow: 0px 5px 20px 20px rgba(150, 150, 160, 0.1);
    gap: 3rem;
    padding: 3rem;
}
.content-openmarket.esellers .section-easy li {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: auto;
}
.content-openmarket.esellers .section-easy li:not(:last-of-type) {
    border-right: 1px solid #f4f4f4;
}
.content-openmarket.esellers .section-easy .texts {
    justify-content: space-between;
    gap: 3rem;
    height: 100%;
}
.content-openmarket.esellers .section-easy .swiper {
    overflow: unset;
}
.content-openmarket.esellers .section-center {
    background: url("/images/subs/openmarket/esellers_center_bg.png") no-repeat center;
}
.content-openmarket.esellers .section-center img {
    max-width: 30vw;
}
.content-openmarket.esellers .section-sellers {
    background-color: #253340;
}
.content-openmarket.esellers .section-sellers p {
    align-items: flex-start;
}
.content-openmarket.esellers .section-sellers p span {
    color: #969696;
}
.content-openmarket.esellers .section-sellers h3 {
    font-size: clamp(22px, 2.5vw, 34px);
}
.content-openmarket.esellers .section-sellers h2 {
    font-size: clamp(26px, 3vw, 48px);
}
.content-openmarket.esellers .section-sellers ul {
    flex-wrap: wrap;
    gap: 0;
}
.content-openmarket.esellers .section-sellers li {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content-openmarket.esellers .section-sellers li:nth-of-type(1),
.content-openmarket.esellers .section-sellers li:nth-of-type(2) {
    margin-bottom: 5rem;
}
.content-openmarket.esellers .section-sellers li:nth-of-type(even) {
    margin-top: 15vh;
}
.content-openmarket.esellers .section-sellers .image {
    order: 0;
}
.content-openmarket.esellers .section-details p {
    font-size: 16px;
    align-items: flex-start;
    color: #777;
    font-family: "Pretendard";
}
.content-openmarket.esellers .section-details h2 {
    align-items: flex-start;
}
.content-openmarket.esellers .section-details h2 strong {
    color: #0063fd;
}
.content-openmarket.esellers .section-details h3 {
    margin-top: 0.75rem;
}
.content-openmarket.esellers .section-details li {
    flex: 0 0 auto;
    width: min(250px, 50% - 1rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.content-openmarket.esellers .section-details ul {
    gap: 2rem;
}
.content-openmarket.esellers .section-details .image {
    order: 0;
}
.content-openmarket.esellers .section-details .wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 7rem;
}
.content-openmarket.esellers .section-partners {
    background-color: #f4f4f4;
}
.content-openmarket.esellers .section-partners p :last-of-type {
    color: #969696;
}
.content-openmarket.esellers .section-partners li {
    flex: 0 0 auto;
    width: min(280px, 45%);
}
.content-openmarket.esellers .section-partners ul {
    gap: 1rem;
}
.content-openmarket.esellers .section-pricing {
    padding-top: 100px;
}
.content-openmarket.esellers .section-pricing h2 {
    font-weight: 800;
}
.content-openmarket.esellers .section-pricing h3 {
    font-size: clamp(22px, 2vw, 26px);
    justify-content: center;
    margin-bottom: 0;
}
.content-openmarket.esellers .section-pricing article {
    flex: 1 1 auto;
    border: 1px solid;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.content-openmarket.esellers .section-pricing article header {
    color: #fff;
    padding: 1rem;
    height: 110px;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
}
.content-openmarket.esellers .section-pricing li {
    display: flex;
    justify-content: space-between;
    line-height: 1.5;
    min-height: 24px;
}
.content-openmarket.esellers .section-pricing li div:last-of-type {
    color: #0042cf;
}
.content-openmarket.esellers .section-pricing ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.content-openmarket.esellers .section-pricing ul:first-of-type {
    padding: 0.5rem 0;
}
.content-openmarket.esellers .section-pricing .information {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}
.content-openmarket.esellers .section-pricing .products {
    border-color: #70ce8e;
}
.content-openmarket.esellers .section-pricing .products header {
    background-color: #70ce8e;
}
.content-openmarket.esellers .section-pricing .products .price {
    background-color: #f0fcf4;
}
.content-openmarket.esellers .section-pricing .products .price p,
.content-openmarket.esellers .section-pricing .products li div:last-of-type {
    color: #1dab4a;
}
.content-openmarket.esellers .section-pricing .shipping {
    border-color: #4f9ce5;
}
.content-openmarket.esellers .section-pricing .shipping header {
    background-color: #4f9ce5;
}
.content-openmarket.esellers .section-pricing .shipping .price {
    background-color: #f3f7ff;
}
.content-openmarket.esellers .section-pricing .shipping .price p,
.content-openmarket.esellers .section-pricing .shipping li div:last-of-type {
    color: #0042cf;
}
.content-openmarket.esellers .section-pricing .full-package {
    border-color: #7667e7;
}
.content-openmarket.esellers .section-pricing .full-package header {
    background-color: #7667e7;
}
.content-openmarket.esellers .section-pricing .full-package .price {
    background-color: #f7f4ff;
}
.content-openmarket.esellers .section-pricing .full-package .price p,
.content-openmarket.esellers .section-pricing .full-package li div:last-of-type,
.content-openmarket.esellers .section-pricing .full-package .both strong {
    color: #6656de;
}
.content-openmarket.esellers .section-pricing .full-package .both {
    padding-top: 1.5rem;
}
.content-openmarket.esellers .section-pricing .full-package .both strong span {
    font-size: clamp(24px, 2.5vw, 34px);
}
.content-openmarket.esellers .section-pricing .full-package .both img {
    margin-top: 0.5rem;
}
.content-openmarket.esellers .section-pricing .full-package .information {
    gap: 2rem;
}
.content-openmarket.esellers .section-pricing .full-package .price del {
    font-size: clamp(17px, 2vw, 18px);
    color: #969696;
    margin-top: 0.5rem;
}
.content-openmarket.esellers .section-pricing .full-package .price div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.content-openmarket.esellers .section-pricing .full-package .price div:first-of-type {
    border-bottom: 1px solid #e1e0ec;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
}
.content-openmarket.esellers .section-pricing .pricing {
    display: flex;
    gap: 1rem;
}
.content-openmarket.esellers .section-pricing .price {
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.content-openmarket.esellers .section-pricing .price span:last-of-type {
    font-size: clamp(15px, 2.5vw, 22px);
}
.content-openmarket.esellers .section-pricing .price strong {
    font-size: clamp(24px, 2.5vw, 34px);
}
.content-openmarket.esellers .section-pricing .price p {
    font-size: clamp(17px, 2.25vw, 18px);
}
.content-openmarket.esellers .section-pricing .caution {
    width: 100%;
    margin-top: -1rem;
}
.content-openmarket.esellers .section-pricing .caution p {
    line-height: 2;
    align-items: flex-start;
    text-align: left;
    color: #969696;
    font-size: clamp(13px, 2vw, 14px);
}
.content-openmarket.esellers .section-pricing .swiper {
    overflow: unset;
}
.content-openmarket.esellers .section-contacts {
    border-top: 1px solid #e3e3e3;
    padding: 100px 0 8rem;
}
.content-openmarket.esellers .section-contacts h2 {
    font-weight: 800;
}
.content-openmarket.esellers .section-sticky-button button {
    background-image: linear-gradient(90deg, #2420dc, #7774ff);
}
.content-openmarket.esellers .section-free {
    padding: 0;
    background: linear-gradient(90deg, #2420dc, #7774ff);
    cursor: pointer;
}
.content-openmarket.esellers .section-free p {
    font-size: clamp(14px, 2vw, 17px);
}
.content-openmarket.esellers .section-free h2 {
    font-size: clamp(17px, 2vw, 30px);
}
.content-openmarket.esellers .section-free .texts {
    align-items: center;
    gap: 0.5rem;
}
.content-openmarket.esellers .section-free .wrapper {
    flex-direction: row;
    justify-content: center;
}
.content-ads section:last-of-type {
    border-bottom: 1px solid #e3e3e3;
}
.content-ads .section-library {
    background-color: #f8fff9;
}
.content-ads .section-diad {
    padding: 5vh 0;
}
.content-ads .section-diad p {
    color: #777;
    font-size: clamp(16px, 2vw, 18px);
}
.content-ads .section-diad strong {
    color: #000;
    font-size: clamp(16px, 2vw, 18px);
}
.content-ads .section-diad h2 {
    align-items: flex-start;
}
.content-ads .section-diad h3 {
    font-size: clamp(28px, 2.5vw, 34px);
    color: #0042cf;
}
.content-ads .section-diad header {
    position: absolute;
    top: 5vh;
    left: 0;
    align-items: flex-start;
}
.content-ads .section-diad .background {
    top: 50%;
    right: 5vw;
    transform: translateY(-50%);
    position: absolute;
    display: block;
    border-radius: 50%;
    width: min(100%, 560px);
    aspect-ratio: 1;
    transition: 0.25s;
}
.content-ads .section-diad .background::before {
    content: "";
    top: 13rem;
    left: -2.5rem;
    position: absolute;
    display: block;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    background-color: rgba(100, 100, 100, 0.1);
    transition: 0.5s;
    z-index: -1;
}
.content-ads .section-diad .background::after {
    content: "";
    top: 0;
    left: 16rem;
    position: absolute;
    display: block;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.1);
    transition: 1s;
    z-index: -1;
}
.content-ads .section-diad .background .donut {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: linear-gradient(#46aef7, #1dd5e6);
    transition: 0.25s;
}
.content-ads .section-diad .background .donut::after {
    content: "";
    width: 30%;
    height: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #fff;
}
.content-ads .section-diad .background.pro::before {
    top: 13rem;
    left: -2.5rem;
}
.content-ads .section-diad .background.pro::after {
    top: 0;
    left: 16rem;
}
.content-ads .section-diad .background.pro .donut {
    background-image: linear-gradient(#46aef7, #1dd5e6);
}
.content-ads .section-diad .background.wave::before {
    top: 14rem;
    left: 14rem;
}
.content-ads .section-diad .background.wave::after {
    top: 3rem;
    left: -0.5rem;
}
.content-ads .section-diad .background.wave .donut {
    background-image: linear-gradient(#85f4bb, #8cd9e8);
}
.content-ads .section-diad .background.trend::before {
    top: 10rem;
    left: -2.5rem;
}
.content-ads .section-diad .background.trend::after {
    top: 6rem;
    left: 20.5rem;
}
.content-ads .section-diad .background.trend .donut {
    background-image: linear-gradient(#3fbbfe, #a541ff);
}
.content-ads .section-diad .swiper-slide {
    opacity: 0 !important;
    display: flex;
    width: 100%;
}
.content-ads .section-diad .swiper-slide-active {
    opacity: 1 !important;
}
.content-ads .section-diad .swiper .texts {
    flex: 1 1 auto;
    padding-top: 18rem;
}
.content-ads .section-diad .swiper .texts a {
    color: #0042cf;
}
.content-ads .section-diad .swiper .texts + .image {
    flex: 0 0 55%;
    right: 2.25vw;
}
.content-ads .section-diad .swiper-pagination-bullet {
    font-weight: 500;
    font-size: clamp(14px, 2vw, 18px);
    background-color: #e3e3e3;
    color: #969696;
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
    white-space: nowrap;
    border-radius: 50px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
}
.content-ads .section-diad .swiper-pagination-bullet-active {
    background-color: #0042cf;
    color: #fff;
}
.content-ads .section-contacts {
    padding-top: 100px;
}
.content-ads .section-contacts a {
    padding: 2rem 0 1rem;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #0bbe74;
}
.content-ads .section-contacts h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
}
.content-ads .section-contacts p {
    font-size: clamp(20px, 3vw, 24px);
}
.content-ads .section-contacts .wrapper {
    gap: 0;
}
.content-ads .section-sticky-button button {
    background-image: linear-gradient(90deg, #09b460, #29ce8a);
}
.content-ads.main .section-intro {
    padding-bottom: 0;
}
.content-ads.main .section-intro a {
    font-size: clamp(15px, 2vw, 16px);
    color: #0042cf;
}
.content-ads.main .section-intro .arrow {
    margin-left: 0.5rem;
}
.content-ads.main .section-intro header {
    z-index: 1;
}
.content-ads.main .section-intro .images {
    margin-top: 1rem;
}
.content-ads.main .section-intro .images img:not(:first-of-type) {
    position: absolute;
}
.content-ads.main .section-intro .images :nth-of-type(2) {
    top: 20%;
    left: 0;
}
.content-ads.main .section-intro .images :nth-of-type(3) {
    top: 3%;
    left: 12%;
}
.content-ads.main .section-intro .images :nth-of-type(4) {
    top: 13%;
    left: 23%;
}
.content-ads.main .section-intro .images :nth-of-type(5) {
    top: -10%;
    left: 30%;
}
.content-ads.main .section-intro .images :nth-of-type(6) {
    top: -3%;
    left: 42%;
}
.content-ads.main .section-intro .images :nth-of-type(7) {
    top: 17%;
    left: 42%;
}
.content-ads.main .section-intro .images :nth-of-type(8) {
    top: -10%;
    right: 30%;
}
.content-ads.main .section-intro .images :nth-of-type(9) {
    top: 13%;
    right: 23%;
}
.content-ads.main .section-intro .images :nth-of-type(10) {
    top: 3%;
    right: 12%;
}
.content-ads.main .section-intro .images :nth-of-type(11) {
    top: 20%;
    right: 0;
}
.content-ads.main .section-intro .images :nth-of-type(12) {
    bottom: 0;
    left: -5vw;
}
.content-ads.main .section-intro .images :nth-of-type(13) {
    bottom: 10%;
    left: 28%;
    z-index: 3;
}
.content-ads.main .section-intro .images :nth-of-type(14) {
    bottom: 0;
    right: -5vw;
}
.content-ads.main .section-sns {
    background-color: #253340;
}
.content-ads.main .section-sns a {
    color: #39f;
    font-size: clamp(15px, 2vw, 16px);
    margin-left: 0.5rem;
}
.content-ads.main .section-sns ul {
    width: min(100%, 800px);
}
.content-ads.main .section-sns li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.content-ads.main .section-sns .image {
    width: 120px;
    border-radius: 50%;
    aspect-ratio: 1;
    background-color: #fff;
}
.content-ads.main .section-help {
    background-color: #253340;
    padding-bottom: 0;
    z-index: 100 !important;
}
.content-ads.main .section-help p {
    font-size: clamp(16px, 2vw, 18px);
}
.content-ads.main .section-help h3 {
    font-size: clamp(26px, 3vw, 34px);
}
.content-ads.main .section-help li {
    padding: 2rem 1rem;
}
.content-ads.main .section-help li:nth-of-type(1) {
    background-color: #7059f4;
}
.content-ads.main .section-help li:nth-of-type(1) p span {
    color: #cdc5ff;
}
.content-ads.main .section-help li:nth-of-type(2) {
    background-color: #39f;
}
.content-ads.main .section-help li:nth-of-type(2) p span {
    color: #c1ddf9;
}
.content-ads.main .section-help li:nth-of-type(3) {
    background-color: #1ad079;
}
.content-ads.main .section-help li:nth-of-type(3) p span {
    color: #c7ffe4;
}
.content-ads.main .section-help ul {
    margin-bottom: -8rem;
}
.content-ads.main .section-partners {
    background-color: #f4f4f4;
    margin-top: -5rem;
    padding-top: 15rem;
}
.content-ads.main .section-partners h3 {
    background-color: #e3e3e3;
    padding: 1rem;
}
.content-ads.main .section-partners li {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.content-ads.main .section-partners li:last-of-type {
    flex: 1 1 auto;
    height: 100%;
}
.content-ads.main .section-partners ul {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}
.content-ads.main .section-partners ul li:nth-of-type(2) {
    grid-row-start: 2;
}
.content-ads.main .section-partners ul li:nth-of-type(3) {
    grid-row: 1/3;
    grid-column: 2/4;
}
.content-ads.main .section-partners .image {
    padding: 1rem;
}
.content-ads.main .section-partners .images {
    flex: 1 1 auto;
    padding: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: none;
    width: min(560px, 100%);
    margin: 0 auto;
}
.content-ads.main .section-blog {
    border-top: 1px solid #e3e3e3;
}
.content-ads.main .section-blog small {
    font-size: clamp(15px, 2vw, 16px);
    color: #777;
}
.content-ads.main .section-blog h3 {
    align-items: flex-start;
    text-align: left;
    margin-top: 1rem;
    font-size: clamp(16px, 2vw, 18px);
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.content-ads.main .section-blog header {
    position: relative;
    width: 100%;
}
.content-ads.main .section-blog header a {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #969696;
    font-size: clamp(15px, 2vw, 16px);
}
.content-ads.main .section-blog .image {
    order: 0;
}
.content-ads.main .section-blog li a {
    border-top: 2px solid #000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}
.content-ads.main .section-solutions {
    padding: 10vh 0;
    background-color: #f4f4f4;
}
.content-ads.main .section-solutions a {
    color: #0042cf;
    font-size: 16px;
}
.content-ads.main .section-solutions p {
    font-size: clamp(15px, 2vw, 18px);
}
.content-ads.main .section-solutions p span {
    color: #969696;
}
.content-ads.main .section-solutions h2 {
    font-size: clamp(26px, 3vw, 34px);
}
.content-ads.main .section-solutions h3 {
    font-size: clamp(20px, 2vw, 24px);
}
.content-ads.main .section-solutions header {
    flex-direction: row;
}
.content-ads.main .section-solutions li {
    background-color: #fff;
    padding: 2.35rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.content-ads.main .section-solutions .image {
    position: absolute;
    bottom: 0;
    right: 8vw;
    max-width: 15vw;
    z-index: 10;
}
.content-ads.agency .section-intro {
    padding-bottom: 0;
}
.content-ads.agency .section-intro a {
    font-size: clamp(15px, 2vw, 16px);
    color: #0042cf;
}
.content-ads.agency .section-intro header {
    z-index: 1;
}
.content-ads.agency .section-intro .images {
    margin-top: 1rem;
}
.content-ads.agency .section-intro .images img:not(:first-of-type) {
    position: absolute;
}
.content-ads.agency .section-intro .images :nth-of-type(2) {
    top: 20%;
    left: 0;
}
.content-ads.agency .section-intro .images :nth-of-type(3) {
    top: 3%;
    left: 12%;
}
.content-ads.agency .section-intro .images :nth-of-type(4) {
    top: 13%;
    left: 23%;
}
.content-ads.agency .section-intro .images :nth-of-type(5) {
    top: -10%;
    left: 30%;
}
.content-ads.agency .section-intro .images :nth-of-type(6) {
    top: -3%;
    left: 42%;
}
.content-ads.agency .section-intro .images :nth-of-type(7) {
    top: 17%;
    left: 42%;
}
.content-ads.agency .section-intro .images :nth-of-type(8) {
    top: -10%;
    right: 30%;
}
.content-ads.agency .section-intro .images :nth-of-type(9) {
    top: 13%;
    right: 23%;
}
.content-ads.agency .section-intro .images :nth-of-type(10) {
    top: 3%;
    right: 12%;
}
.content-ads.agency .section-intro .images :nth-of-type(11) {
    top: 20%;
    right: 0;
}
.content-ads.agency .section-intro .images :nth-of-type(12) {
    bottom: 0;
    left: -5vw;
}
.content-ads.agency .section-intro .images :nth-of-type(13) {
    bottom: 10%;
    left: 28%;
    z-index: 3;
}
.content-ads.agency .section-intro .images :nth-of-type(14) {
    bottom: 0;
    right: -5vw;
}
.content-ads.agency .section-prefer {
    background-color: #253340;
}
.content-ads.agency .section-prefer p span {
    font-size: clamp(16px, 2vw, 18px);
    color: #969696;
}
.content-ads.agency .section-prefer h3 {
    font-size: clamp(24px, 3vw, 34px);
}
.content-ads.agency .section-prefer li {
    width: min(980px, 100%);
    background-color: #3c4a57;
    display: flex;
}
.content-ads.agency .section-prefer ul {
    flex-direction: column;
    align-items: center;
}
.content-ads.agency .section-prefer .texts {
    gap: 0;
}
.content-ads.agency .section-prefer .various {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 0;
}
.content-ads.agency .section-prefer .image {
    order: 0;
}
.content-ads.agency .section-prefer .images {
    order: 0;
    gap: 0;
}
.content-ads.agency .section-prefer .images img {
    opacity: 1;
    animation: none;
    transition: 0.75s cubic-bezier(0.47, 1.64, 0.41, 0.8) 0.75s;
}
.content-ads.agency .section-prefer .images img:nth-of-type(1) {
    transform: translateX(0);
}
.content-ads.agency .section-prefer .images img:nth-of-type(2) {
    transform: translateX(-3rem);
}
.content-ads.agency .section-prefer .images img:nth-of-type(3) {
    transform: translateX(-6rem);
}
.content-ads.agency .section-prefer .images img:nth-of-type(4) {
    transform: translateX(-9rem);
}
.content-ads.agency .section-prefer .images img:nth-of-type(5) {
    transform: translateX(-12rem);
}
.content-ads.agency .section-prefer .images img:nth-of-type(6) {
    transform: translateX(-15rem);
}
.content-ads.agency .section-prefer .images img:nth-of-type(9) {
    transform: translateX(-18rem);
}
.content-ads.agency .section-prefer.is-active .images {
    gap: 0.5rem;
}
.content-ads.agency .section-prefer.is-active .images img {
    transform: translateX(0) !important;
}
.content-ads.agency .section-contacts {
    border-top: 1px solid #e3e3e3;
}
.content-ads.sns .section-intro li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.content-ads.sns .section-intro ul {
    width: min(580px, 100%);
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
.content-ads.sns .section-intro .image {
    flex: 0 0 auto;
    order: 0;
    width: 120px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0px 1px 20px 5px rgba(0, 0, 0, 0.1);
}
.content-ads.sns .section-methods {
    background-color: #253340;
}
.content-ads.sns .section-methods p span {
    font-size: clamp(16px, 2vw, 18px);
    color: #969696;
}
.content-ads.sns .section-methods h3 {
    font-size: clamp(22px, 2vw, 34px);
}
.content-ads.sns .section-methods h2 {
    font-size: clamp(26px, 3vw, 48px);
}
.content-ads.sns .section-methods ul {
    width: min(980px, 100%);
    height: auto;
    justify-content: space-between;
}
.content-ads.sns .section-methods li {
    flex: 0 0 auto;
    width: 380px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.content-ads.sns .section-methods li:nth-of-type(2) {
    margin: 20vh 0 12vh;
}
.content-ads.sns .section-methods li:nth-of-type(3) {
    margin-top: -12vh;
}
.content-ads.sns .section-methods .texts {
    gap: 0;
}
.content-ads.sns .section-methods .wrapper {
    gap: 6rem;
}
.content-ads.sns .section-advantage {
    background-color: #ebf1ff;
}
.content-ads.sns .section-advantage p {
    font-size: clamp(17px, 2vw, 24px);
}
.content-ads.sns .section-advantage h3 {
    font-size: clamp(26px, 3vw, 34px);
}
.content-ads.sns .section-advantage li {
    flex: 0 0 calc(50% - 0.75rem);
    background-color: #8896b6;
    display: flex;
    flex-wrap: wrap;
    padding: 6vh 2.5vw;
    gap: 2rem;
}
.content-ads.sns .section-advantage ul {
    height: auto;
}
.content-ads.sns .section-advantage .texts {
    justify-content: center;
}
.content-ads.sns .section-advantage .texts p {
    font-size: clamp(16px, 2vw, 18px);
}
.content-ads.sns .section-advantage .image {
    order: 0;
}
.content-custom .section-library {
    background-color: rgba(0, 99, 254, 0.1);
}
.content-custom .section-contacts {
    padding-top: 100px;
}
.content-custom .section-contacts a {
    padding: 1rem 0;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #0042cf;
}
.content-custom .section-contacts h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
}
.content-custom .section-contacts p {
    font-size: clamp(20px, 3vw, 24px);
}
.content-custom .section-contacts .wrapper {
    gap: 0;
}
.content-custom .section-sticky-button button {
    background-image: linear-gradient(90deg, #0036a9, #0042cf);
}
.content-custom.shoppingmall .section-intro p {
    color: #777;
    font-size: clamp(16px, 2vw, 18px);
}
.content-custom.shoppingmall .section-intro li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.content-custom.shoppingmall .section-intro .image {
    order: 0;
    width: 120px;
    border-radius: 50%;
    aspect-ratio: 1;
    background-color: #fff;
    box-shadow: 0px 1px 20px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}
.content-custom.shoppingmall .section-intro .swiper {
    width: min(100%, 800px);
    overflow: unset;
}
.content-custom.shoppingmall .section-knowhow {
    background-color: #39f;
}
.content-custom.shoppingmall .section-knowhow header {
    color: #fff;
}
.content-custom.shoppingmall .section-knowhow li {
    background-color: #fff;
    transition: box-shadow 0.25s;
}
.content-custom.shoppingmall .section-knowhow .texts {
    align-items: center;
    padding: 40px 1rem;
    gap: 0;
}
.content-custom.shoppingmall .section-knowhow .texts p {
    align-items: center;
    color: #777;
    font-size: clamp(15px, 2vw, 18px);
}
.content-custom.shoppingmall .section-knowhow .texts h3 {
    font-size: clamp(22px, 2vw, 26px);
}
.content-custom.shoppingmall .section-process {
    background-color: #ebf1ff;
}
.content-custom.shoppingmall .section-process i {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0042cf;
    color: #fff;
    font-style: normal;
}
.content-custom.shoppingmall .section-process a {
    width: 100%;
    justify-content: center;
}
.content-custom.shoppingmall .section-process li {
    flex: 1 1 280px;
    height: auto;
    background-color: #fff;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0px 1px 20px 5px rgba(0, 0, 0, 0.1);
}
.content-custom.shoppingmall .section-process li h3 {
    color: #0042cf;
    font-size: clamp(22px, 4vw, 24px);
    margin-bottom: 0;
}
.content-custom.shoppingmall .section-process li a {
    color: #0042cf;
}
.content-custom.shoppingmall .section-process li p {
    font-size: clamp(16px, 2vw, 18px);
    color: #777;
}
.content-custom.shoppingmall .section-process .swiper {
    overflow: unset;
}
.content-custom.shoppingmall .section-partners {
    flex-direction: column;
    background-color: #253340;
    overflow-x: hidden;
}
.content-custom.shoppingmall .section-partners a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.content-custom.shoppingmall .section-partners h2 {
    align-items: flex-start;
}
.content-custom.shoppingmall .section-partners h3 {
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.content-custom.shoppingmall .section-partners h3::after {
    content: "";
    background: url(/images/subs/custom/arrow.png) no-repeat center;
    width: 20px;
    height: 20px;
    display: inline-flex;
}
.content-custom.shoppingmall .section-partners header {
    align-items: flex-start;
    width: 100%;
}
.content-custom.shoppingmall .section-partners li {
    flex: 0 0 380px;
    animation: none !important;
    opacity: 1 !important;
}
.content-custom.shoppingmall .section-partners ul {
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-left: 370px;
    gap: 2rem;
}
.content-custom.shoppingmall .section-partners .image {
    transition: box-shadow 0.25s;
}
.content-custom.shoppingmall .section-partners .image:hover {
    box-shadow: 0px 5px 20px 20px rgba(0, 0, 0, 0.15);
}
.content-custom.shoppingmall .section-partners .works {
    padding-top: 48px;
}
.content-custom.agency .section-intro h3 {
    font-size: clamp(20px, 2vw, 26px);
    color: #000;
}
.content-custom.agency .section-intro .texts {
    padding: 2rem;
    align-items: center;
    gap: 0.5rem;
}
.content-custom.agency .section-intro .texts p {
    align-items: center;
}
.content-custom.agency .section-intro .first {
    background-color: #edeeff;
    color: #7d729b;
}
.content-custom.agency .section-intro .first strong {
    color: #6738ec;
}
.content-custom.agency .section-intro .second {
    background-color: #edf6ff;
    color: #628bb1;
}
.content-custom.agency .section-intro .second strong {
    color: #0063fd;
}
.content-custom.agency .section-rules {
    background-color: #f4f4f4;
}
.content-custom.agency .section-rules li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.content-custom.agency .section-rules .image {
    order: 0;
    background-color: #fff;
    width: 120px;
    aspect-ratio: 1;
    border-radius: 50%;
}
.content-custom.agency .section-works {
    background: #253340 url("/images/subs/custom/agency_works_bg.jpg") no-repeat;
    background-size: cover;
}
.content-custom.agency .section-works h3 {
    font-size: 20px;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    margin-bottom: 2rem;
}
.content-custom.agency .section-works h3:after {
    content: "";
    width: calc(100% - 2.5rem);
    height: 3px;
    background-color: #000;
    display: block;
    position: absolute;
    right: 0;
    top: 4.5rem;
}
.content-custom.agency .section-works small,
.content-custom.agency .section-works h4 {
    font-size: 18px;
    color: #969696;
}
.content-custom.agency .section-works h4:not(:first-of-type) {
    margin-top: 1rem;
}
.content-custom.agency .section-works p {
    font-size: clamp(16px, 2vw, 18px);
    flex-direction: row;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}
.content-custom.agency .section-works strong {
    color: #0042cf;
}
.content-custom.agency .section-works .texts {
    background-color: #fff;
    padding: 2.5rem;
    width: min(490px, 100%);
    aspect-ratio: 1.065/1;
    gap: 5px;
    overflow: hidden;
    position: relative;
}
.content-custom.agency .section-works .image {
    order: 0;
}
.content-custom.agency .section-works .swiper * {
    animation: none;
    opacity: 1;
}
.content-custom.agency .section-works .swiper-wrapper {
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: unset;
    gap: 0;
}
.content-custom.agency .section-works .swiper-slide {
    flex: none;
    display: flex;
    height: auto;
    align-items: center;
    justify-content: center;
}
.content-custom.agency .section-works .swiper-button-prev,
.content-custom.agency .section-works .swiper-button-next {
    opacity: 0.5;
    border: 2px solid #fff;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transition: opacity 0.25s;
}
.content-custom.agency .section-works .swiper-button-prev::after,
.content-custom.agency .section-works .swiper-button-next::after {
    color: #fff;
    font-size: 1rem;
}
.content-custom.agency .section-works .swiper-button-prev:hover,
.content-custom.agency .section-works .swiper-button-next:hover {
    opacity: 1;
}
.content-custom.agency .section-extensions {
    border-bottom: 1px solid #e3e3e3;
}
.content-global section:last-of-type {
    border-bottom: 1px solid #e3e3e3;
}
.content-global .section-library {
    background-color: #fffaf5;
}
.content-global .section-process {
    background-color: #ebf1ff;
}
.content-global .section-process i {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0042cf;
    color: #fff;
    font-style: normal;
}
.content-global .section-process a {
    width: 100%;
    justify-content: center;
}
.content-global .section-process li {
    height: auto;
    background-color: #fff;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0px 1px 20px 5px rgba(0, 0, 0, 0.1);
}
.content-global .section-process li h3 {
    color: #0042cf;
    font-size: clamp(22px, 4vw, 24px);
    margin-bottom: 0;
}
.content-global .section-process li a {
    color: #0042cf;
}
.content-global .section-process li p {
    font-size: clamp(16px, 2vw, 18px);
    color: #777;
}
.content-global .section-process .swiper {
    overflow: unset;
}
.content-global .section-contacts {
    padding-top: 8vh;
}
.content-global .section-contacts a {
    padding: 2rem 0 1rem;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #ff881a;
}
.content-global .section-contacts h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
}
.content-global .section-contacts p {
    font-size: clamp(20px, 3vw, 24px);
}
.content-global .section-contacts .wrapper {
    gap: 0;
}
.content-global .section-sticky-button button {
    background-image: linear-gradient(90deg, #e16c00, #fe9d43);
}
.content-global.alibaba .section-intro {
    background: url("/images/subs/global/alibaba_intro_bg.png") center bottom -8rem no-repeat;
}
.content-global.alibaba .section-intro p {
    font-size: clamp(15px, 2vw, 22px);
}
.content-global.alibaba .section-intro li {
    flex: 0 0 auto;
    width: 140px;
    aspect-ratio: 1;
    background-color: #f60;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}
.content-global.alibaba .section-membership {
    background-color: #f4f4f4;
}
.content-global.alibaba .section-membership header p {
    background: url(/images/subs/global/alibaba_membership_gold.png) no-repeat left center;
    padding-left: 3rem;
}
.content-global.alibaba .section-membership header strong {
    color: #f60;
}
.content-global.alibaba .section-membership li {
    flex: 0 0 calc(33.3333333333% - 1.75rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.content-global.alibaba .section-membership li * {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}
.content-global.alibaba .section-membership li p {
    font-size: 16px;
    color: #777;
}
.content-global.alibaba .section-membership ul {
    gap: 2.5rem;
}
.content-global.alibaba .section-membership .image {
    order: 0;
}
.content-global.alibaba .section-membership .wrapper {
    gap: 8vw;
    flex-direction: row;
    align-items: flex-start;
}
.content-global.alibaba .section-pricing [title] {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.35rem 0;
}
.content-global.alibaba .section-pricing [title]::before {
    content: attr(title);
    color: #969696;
}
.content-global.alibaba .section-pricing h4 {
    font-size: 20px;
    color: #0063fd;
    margin-bottom: 0.5rem;
}
.content-global.alibaba .section-pricing h3 {
    background-color: #253340;
    color: #fff;
    min-height: 40px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 500;
    line-height: 40px;
}
.content-global.alibaba .section-pricing strong {
    color: #000;
}
.content-global.alibaba .section-pricing article {
    width: min(980px, 100%);
}
.content-global.alibaba .section-pricing article li {
    padding: 1rem;
    min-height: 56px;
    font-size: clamp(16px, 2vw, 18px);
    color: #777;
    line-height: 1.25;
}
.content-global.alibaba .section-pricing article li:not(:last-of-type) {
    border-right: 1px solid #e3e3e3;
}
.content-global.alibaba .section-pricing article li:not(:first-of-type) {
    text-align: center;
}
.content-global.alibaba .section-pricing article ul:first-of-type {
    background-color: #39f;
    color: #fff;
    text-align: center;
    font-weight: 500;
}
.content-global.alibaba .section-pricing article ul:first-of-type li {
    color: #fff;
    word-break: keep-all;
}
.content-global.alibaba .section-pricing article ul:first-of-type li:not(:last-of-type) {
    border-right: 1px solid #57abff;
}
.content-global.alibaba .section-pricing article ul:nth-of-type(even) {
    background-color: #f4f4f4;
}
.content-global.alibaba .section-pricing .swiper {
    display: none;
}
.content-global.alibaba .section-pricing .swiper h3 {
    padding: 0 2rem;
    margin: 0 auto 2rem;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 50px;
}
.content-global.alibaba .section-pricing .swiper strong {
    color: #0042cf;
    font-size: clamp(26px, 3vw, 40px);
}
.content-global.alibaba .section-pricing .swiper li {
    flex: 0 0 auto;
    border: 1px solid #d3d3d3;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(380px, 100%);
}
.content-global.alibaba .section-pricing .swiper .price {
    margin-top: 1rem;
    font-size: 17px;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    line-height: normal;
}
.content-global.alibaba .section-pricing .caution {
    margin-top: 1.5rem;
}
.content-global.alibaba .section-pricing .caution p {
    flex-direction: row;
    color: #969696;
    font-size: 16px;
    gap: 5px;
}
.content-global.alibaba .section-special {
    background-color: #253340;
}
.content-global.alibaba .section-special p {
    font-size: clamp(16px, 2vw, 18px);
}
.content-global.alibaba .section-special p span {
    color: #969696;
}
.content-global.alibaba .section-special li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.content-global.alibaba .section-special ul {
    width: 80%;
}
.content-global.alibaba .section-special .image {
    order: 0;
    background-color: #fff;
    width: 120px;
    aspect-ratio: 1;
    border-radius: 50%;
}
.content-global.alibaba .section-special .swiper {
    display: flex;
    justify-content: center;
}
.content-global.alibaba .section-certification {
    background: url(/images/subs/global/alibaba_certification_bg.jpg) no-repeat center;
    background-attachment: fixed;
    background-size: cover;
}
.content-global.alibaba .section-certification img {
    width: 266px;
}
.content-global.alibaba .section-certification li {
    flex: 0 0 auto;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0.75rem 0.75rem 1.5rem;
    position: relative;
    background-color: rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.content-articles {
    padding-bottom: 15vh;
}
.content-articles small {
    font-size: clamp(15px, 2vw, 16px);
    color: #777;
}
.content-articles h1 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
}
.content-articles section {
    background-color: #fff;
    padding: 2rem 0;
}
.content-articles .tabs {
    margin: 0 auto 2rem;
    gap: 5px;
    position: relative;
}
.content-articles .tabs::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    background-color: #d3d3d3;
}
.content-articles .tabs li {
    height: 64px;
    font-size: clamp(17px, 2vw, 20px);
    padding: 0 0.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}
.content-articles .tabs li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #0042cf;
    margin-top: -1px;
    transform: translateX(-50%);
    transition: 0.25s;
}
.content-articles .tabs li:hover,
.content-articles .tabs li.is-active {
    color: #0042cf;
}
.content-articles .tabs li:hover::before,
.content-articles .tabs li.is-active::before {
    width: 100%;
}
.content-articles .content-header {
    background-color: #f4f4f4;
    min-height: 200px;
    justify-content: center;
}
.content-articles .content-header * {
    align-items: center;
}
.content-articles .content-header + .wrapper {
    background-color: #fff;
}
.content-articles .search {
    justify-content: flex-end;
    width: 100%;
    color: #969696;
}
.content-articles .search input {
    border: 0;
    width: min(360px, 100%);
    border-radius: 0;
    font-size: clamp(16px, 2vw, 16px);
    padding: 0.75rem 3rem 0.75rem 0.75rem;
    background-color: #f4f4f4;
}
.content-articles .search input::-moz-placeholder {
    color: #959595;
}
.content-articles .search input::placeholder {
    color: #959595;
}
.content-articles .search:is(.library div) {
    justify-content: center;
    padding: 2rem 0;
    width: 90%;
}
.content-articles .search:is(.library div) input {
    width: min(680px, 100%);
    background-color: rgba(0, 0, 0, 0);
    border-bottom: 3px solid #000;
    font-size: clamp(16px, 2vw, 22px);
    padding: 0 0 0.5rem;
}
.content-articles .search:is(.library div) button {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Crect x='2' y='2' width='16' height='16' rx='8' stroke='%23969696' stroke-width='3'/%3E%3Cpath d='M16 16L21.5 21.5' stroke='%23969696' stroke-width='3'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center bottom 12px;
    margin-left: -3.5rem;
}
.content-articles .articles {
    flex-wrap: wrap;
    justify-content: flex-start;
}
.content-articles .articles p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    font-size: clamp(14px, 2vw, 16px);
    color: #838689;
    font-weight: 500;
}
.content-articles .articles h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
}
.content-articles .articles a {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}
.content-articles .articles img {
    min-width: 100%;
}
.content-articles .articles li {
    flex: 0 0 calc(25% - 1rem);
    padding-bottom: 2rem;
}
.content-articles .articles li[data-empty] {
    flex: 1 1 auto;
    min-height: 18rem;
    padding-bottom: 0;
    background-color: #f7f8f9;
    color: #434649;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-articles .articles li[data-empty]::before {
    content: attr(data-empty);
}
.content-articles .articles .texts {
    gap: 0.5rem;
}
.content-articles .articles .image {
    overflow: hidden;
    aspect-ratio: 1.86/1;
    display: flex;
    width: 100%;
    background-color: #f3f6f9;
}
.content-articles .articles .image.no-image {
    border: 1px solid #e3e6e9;
}
.content-articles .section-related {
    margin-top: 3rem;
    padding: 4rem 0;
    border-top: 1px solid #f4f4f4;
}
.content-articles .section-related a {
    flex-direction: row;
}
.content-articles .section-related h3 {
    color: #777;
    font-weight: 600;
    -webkit-line-clamp: 4;
    line-height: 25px;
    transition: color 0.25s;
}
.content-articles .section-related h3:hover {
    color: #555;
}
.content-articles .section-related li {
    flex-basis: calc(33% - 1.76rem);
    padding-bottom: 0;
    position: relative;
}
.content-articles .section-related ul {
    gap: 3rem;
}
.content-articles .section-related .head_fix {
    position: absolute;
    top: 0;
    left: 0;
}
.content-articles .section-related .image {
    width: 50%;
}
.content-contacts .content-header {
    background-color: #f4f4f4;
    min-height: 200px;
    justify-content: center;
}
.content-contacts .content-header * {
    align-items: center;
}
.content-contacts .wrapper {
    width: min(100% - 2rem, 860px);
    padding: 3rem 0;
}
.content-contacts p {
    color: #555;
    font-size: clamp(16px, 2vw, 18px);
}
.content-contacts h1 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
}
.content-contacts h3 {
    font-size: clamp(18px, 3vw, 22px);
}
.content-contacts section {
    margin: 0 auto;
    padding: 2rem 0;
}
.content-contacts section header {
    border-bottom: 1px solid #eee;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
}
.content-contacts .captcha {
    display: flex;
    gap: 0.5rem;
}
.content-contacts .captcha .LBD_CaptchaDiv {
    flex: 0 0 50%;
    width: 100% !important;
    height: auto;
}
.content-contacts .captcha .LBD_CaptchaImageDiv {
    width: 100% !important;
}
.content-contacts .captcha .LBD_CaptchaIconsDiv {
    max-width: 180px;
    display: flex;
}
.content-contacts .captcha #gcaptcha_value {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
}
.content-contacts .inputs li {
    min-height: 60px;
    border-bottom: 1px solid #eee;
}
.content-contacts .selects {
    flex-wrap: wrap;
}
.content-contacts .attach-files button {
    padding: 0.75rem 1rem;
    background-color: #434649;
    color: #fff;
    font-size: 14px;
}
.content-contacts .attach-files .files {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.content-contacts .attach-files .files:empty {
    display: none;
}
.content-contacts .attach-files .files #dropzone-template {
    order: 1;
}
.content-contacts .attach-files .files .dropzone-info {
    border: 1px solid #ddd;
    padding: 5px 0.5rem;
    border-radius: 3px;
    color: #434649;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}
.content-contacts .attach-files .files .ico-remove {
    width: 12px;
    height: 12px;
    display: flex;
    background-image: linear-gradient(lightslategray 0 0), linear-gradient(lightslategray 0 0);
    background-position: center;
    background-size:
        100% 2px,
        2px 100%;
    background-repeat: no-repeat;
    transform: rotate(45deg);
}
.content-contacts .attach-files .files [data-dz-size] {
    font-size: 13px;
    margin-left: 5px;
    vertical-align: bottom;
    color: #939699;
}
.content-contacts .attach-files .files .actions {
    display: flex;
}
.content-contacts .section-agreement dl {
    background-color: #f3f6f9;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
    line-height: 1.5;
    max-height: 200px;
    overflow-y: auto;
}
.content-contacts .section-agreement dl dt {
    font-weight: bold;
}
.content-contacts .section-agreement dl dt:not(:first-of-type) {
    margin-top: 1rem;
}
.content-contacts .section-agreement dl dd {
    font-size: 14px;
    font-weight: 500;
}
.content-error {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 0;
}
.content-error p {
    color: #969696;
}
.content-error a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
    position: relative;
}
.content-error a::before {
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg clip-path='url(%23clip0_1883_5350)'%3E%3Cpath d='M11.318 2.63611C11.7021 2.27785 12.2979 2.27785 12.682 2.63611L21.402 10.7687C22.0659 11.3879 21.6277 12.5 20.7199 12.5H3.28006C2.37226 12.5 1.93413 11.3879 2.59802 10.7687L11.318 2.63611Z' fill='%23555555'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 12H4V20C4 21.1046 4.89543 22 6 22H10V16H14V22H18C19.1046 22 20 21.1046 20 20V12Z' fill='%23555555'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1883_5350'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    width: 24px;
    height: 24px;
    display: inline;
}
.content-error a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 1px;
    background-color: #555;
}
.content-error button {
    color: #000;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #000;
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center !important;
    justify-content: space-between;
    gap: 0.75rem;
    min-width: 176px;
    border-radius: 0;
    transition: background-color 0.25s;
}
.content-error button::before {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='7' viewBox='0 0 23 7' fill='none'%3E%3Cpath d='M6 1L1 6H23' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E")
        no-repeat center;
}
.content-error section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.content-error .image {
    order: 0;
}

/* 메인 하단 띠배너 */
.section-banner {
    padding: 0 !important;
}
.section-banner a {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1680px) {
    .section-banner img {
        max-width: 150%;
        margin-left: -25%;
        margin-right: -25%;
    }
    .section-banner .image img {
        max-width: 100%;
    }
}
@media screen and (max-width: 1024px) {
    .section-banner img {
        max-width: 200%;
        margin-left: -50%;
        margin-right: -50%;
    }
}
@media screen and (max-width: 960px) {
    .content-main .section-digital h3 {
        font-size: clamp(24px, 3.15vw, 30px);
    }
}
@media screen and (max-width: 640px) {
    .section-banner img {
        max-width: 300%;
        margin-left: -100%;
        margin-right: -100%;
    }
    .section-banner .image img {
        max-width: 100%;
    }
    footer .section-links .links nav {
        margin-bottom: 0;
    }
    .content-main .section-digital h3 {
        font-size: 13px;
    }
}
