dialog {
    width: 78rem;
}

#sub-visual .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
}
#sub-visual small {
    font-weight: 700;
    font-size: 1.6rem;
    color: #929baa;
}
#sub-visual h1 {
    margin-top: 0.7rem;
    font-weight: 700;
    font-size: 4.6rem;
    letter-spacing: -0.03em;
    color: #121212;
}
#sub-visual h1 + p {
    margin-top: 2.2rem;
    font-size: 1.8rem;
    letter-spacing: -0.03em;
    text-align: center;
    line-height: 1.4;
    color: #5a6e81;
}
#sub-visual dl {
    margin-top: 8rem;
    align-self: stretch;
    display: flex;
    gap: 2.4rem;
}
#sub-visual .price-wrapper {
    flex: 1 0 calc(50% - 1.2rem);
    border-radius: 10px;
    border: solid 1px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
}
#sub-visual .price-wrapper > dt {
    flex-basis: 13rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
#sub-visual .price-wrapper > dt span {
    font-weight: 500;
    font-size: 2.4rem;
    letter-spacing: -0.03em;
    color: #fff;
    position: relative;
}
#sub-visual .price-wrapper > dt span::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -12px;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
#sub-visual .price-wrapper > dd {
    display: grid;
    grid-template-areas: "desc desc" "list btn";
    grid-template-columns: 1fr min-content;
}
#sub-visual .price-wrapper > dd > p {
    grid-area: desc;
    height: 5rem;
    display: grid;
    place-items: center;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    color: #333;
}
#sub-visual .price-wrapper > dd > ul {
    align-self: center;
    grid-area: list;
    margin: 3rem 0 3rem 3rem;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#sub-visual .price-wrapper > dd > ul > li {
    padding: 0 0 0.1rem 2.8rem;
    background: left center no-repeat;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    color: #121212;
}
#sub-visual .price-wrapper > dd > .btn {
    grid-area: btn;
    margin: 3rem 3rem 3rem 0;
    width: 10rem;
    height: 10rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    display: block;
    text-align: center;
    padding: 6rem 0 2rem;
    background: center top 2rem no-repeat;
    transition: background-color 0.2s;
}
#sub-visual .price-wrapper:first-child {
    border-color: #a3b0c3;
}
#sub-visual .price-wrapper:first-child > dt {
    background-color: #283b5d;
}
#sub-visual .price-wrapper:first-child > dt span::after {
    background-color: #ff4800;
}
#sub-visual .price-wrapper:first-child > dd > p {
    background-color: #f2f4f8;
}
#sub-visual .price-wrapper:first-child > dd > ul > li {
    background-image: url("/images/pricing/ic_black-check.svg");
}
#sub-visual .price-wrapper:first-child > dd > .btn {
    background-image: url("/images/pricing/ic_money.svg");
    background-color: #f2f4f8;
    color: #25314e;
}
#sub-visual .price-wrapper:first-child > dd > .btn:hover {
    background-color: #eceff7;
}
#sub-visual .price-wrapper:first-child dialog .content {
    margin-top: 1rem;
    background: #f9fafc;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
#sub-visual .price-wrapper:first-child dialog .content > div {
    display: grid;
    grid-template-columns: 10.5rem repeat(3, 1fr);
    gap: 1.4rem;
}
#sub-visual .price-wrapper:first-child dialog .content > div > dt {
    padding-top: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: #283b5d;
    position: relative;
    background: left top 6rem no-repeat;
}
#sub-visual .price-wrapper:first-child dialog .content > div > dt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 1.6rem;
    height: 2px;
    background: #283b5d;
}
#sub-visual .price-wrapper:first-child dialog .content > div > dt::after {
    display: block;
    font-weight: 400;
    font-size: 1.3rem;
    color: #667090;
}
#sub-visual .price-wrapper:first-child dialog .content > div > dd {
    display: flex;
    flex-direction: column;
    height: 10rem;
    border-radius: 5px;
    background-color: #fff;
    border: solid 1px #d4ddeb;
    padding: 1rem;
    cursor: pointer;
    transition: border-color 0.2s;
}
#sub-visual .price-wrapper:first-child dialog .content > div > dd:hover {
    border-color: #00a7ff;
    background: #f4f9ff;
}
#sub-visual .price-wrapper:first-child dialog .content > div > dd .head {
    display: flex;
    margin-bottom: 0.2rem;
}
#sub-visual .price-wrapper:first-child dialog .content > div > dd .head em {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}
#sub-visual .price-wrapper:first-child dialog .content > div > dd .head span {
    height: 1.8rem;
    border-radius: 0.9rem;
    background-color: #ff4800;
    padding: 0.2rem 0.5rem 0.1rem;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 1.2rem;
    color: #fff;
}
#sub-visual .price-wrapper:first-child dialog .content > div > dd .body {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
#sub-visual .price-wrapper:first-child dialog .content > div > dd .body p {
    display: flex;
    font-weight: 500;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
    color: #121212;
    margin-top: 0;
}
#sub-visual .price-wrapper:first-child dialog .content > div > dd .body p:not(:has(b)) {
    margin-left: auto;
}
#sub-visual .price-wrapper:first-child dialog .content > div > dd .body b {
    font-weight: 500;
    color: #768090;
    margin-right: auto;
}
#sub-visual .price-wrapper:first-child dialog .content > div:first-child dt {
    grid-row: 1/4;
    background-image: url("/images/pricing/ic_usage.svg");
}
#sub-visual .price-wrapper:first-child dialog .content > div:first-child dt::after {
    content: "Pay Per Usage";
}
#sub-visual .price-wrapper:first-child dialog .content > div:first-child dd .head em {
    color: #283b5d;
}
#sub-visual .price-wrapper:first-child dialog .content > div:last-child dt {
    color: #1965bc;
    background-image: url("/images/pricing/ic_month.svg");
}
#sub-visual .price-wrapper:first-child dialog .content > div:last-child dt::before {
    background-color: #1965bc;
}
#sub-visual .price-wrapper:first-child dialog .content > div:last-child dt::after {
    content: "Pay Per Month";
}
#sub-visual .price-wrapper:first-child dialog .content > div:last-child dd .head em {
    color: #1965bc;
}
#sub-visual .price-wrapper:first-child dialog .content > div:last-child dd .body {
    margin-top: unset;
    flex-grow: 1;
}
#sub-visual .price-wrapper:first-child dialog .content > div:last-child dd .body p:last-child {
    margin-top: auto;
}
#sub-visual .price-wrapper:last-child {
    border-color: #ff4800;
}
#sub-visual .price-wrapper:last-child > dt {
    background-color: #ff4800;
}
#sub-visual .price-wrapper:last-child > dt span::after {
    background-color: #25314e;
}
#sub-visual .price-wrapper:last-child > dd > p {
    background-color: #fdf3ef;
}
#sub-visual .price-wrapper:last-child > dd > ul > li {
    background-image: url("/images/pricing/ic_orange-check.svg");
}
#sub-visual .price-wrapper:last-child > dd > .btn {
    background-image: url("/images/pricing/ic_tel.svg");
    background-color: #fff3ee;
    color: #ff4800;
}
#sub-visual .price-wrapper:last-child > dd > .btn:hover {
    background-color: #ffeae2;
}

#variable-service .inner {
    padding-top: 9rem;
    display: flex;
    flex-direction: column;
}
#variable-service h2 {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.03em;
    color: #283b5d;
}
#variable-service .swiper-box {
    margin-top: 4rem;
    position: relative;
}
#variable-service .swiper-box .service-swiper {
    overflow-x: hidden;
}
#variable-service .swiper-box .service-swiper .swiper-wrapper {
    transition-timing-function: linear;
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide {
    width: 13rem;
    height: 13rem;
    margin-bottom: 1rem;
    border-radius: 20px;
    border: solid 1px #e7edf7;
    text-align: center;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    color: #121212;
    padding-top: 9rem;
    background: center top 3.8rem/3rem 3rem no-repeat #fff;
    transition: box-shadow 0.2s, border-color 0.2s;
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide:hover {
    border-color: #c6e0ff;
    box-shadow: 0 6px 6px 0 rgba(189, 220, 234, 0.25);
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide.best {
    position: relative;
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide.best::after {
    content: "";
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: block;
    width: 40px;
    height: 20px;
    background: url("/images/pricing/ic_best.svg") no-repeat;
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide.taxinvoice {
    background-image: url("/images/_layouts/header/ic_taxinvoice.svg");
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide.cashreceipt {
    background-image: url("/images/_layouts/header/ic_cashreceipt.svg");
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide.ntscrawling {
    background-image: url("/images/_layouts/header/ic_ntscrawling.svg");
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide.companystatus {
    background-image: url("/images/_layouts/header/ic_companystatus.svg");
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide.accounttransaction {
    background-image: url("/images/_layouts/header/ic_accounttransaction.svg");
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide.accountholder {
    background-image: url("/images/_layouts/header/ic_accountholder.svg");
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide.companyinfo {
    background-image: url("/images/_layouts/header/ic_companyinfo.svg");
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide.invoice {
    background-image: url("/images/_layouts/header/ic_invoice.svg");
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide.kakaotalk {
    background-image: url("/images/_layouts/header/ic_kakaotalk.svg");
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide.textmessage {
    background-image: url("/images/_layouts/header/ic_textmessage.svg");
}
#variable-service .swiper-box .service-swiper .swiper-wrapper .swiper-slide.fax {
    background-image: url("/images/_layouts/header/ic_fax.svg");
}
#variable-service .swiper-box .navi-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% + 8rem);
    height: 2rem;
}
#variable-service .swiper-box .navi-wrapper .swiper-navi {
    position: static;
    margin-top: 0;
    display: block;
    flex: 0 1 1rem;
    width: 1rem;
    height: 2rem;
    font-size: 0;
    background: center no-repeat;
}
#variable-service .swiper-box .navi-wrapper .swiper-navi.btn-prev {
    background-image: url("/images/pricing/ic_arrow-left.svg");
}
#variable-service .swiper-box .navi-wrapper .swiper-navi.btn-next {
    background-image: url("/images/pricing/ic_arrow-right.svg");
}
#variable-service .banner {
    margin-top: 7rem;
    align-self: center;
    width: 83%;
    border-radius: 10px;
    padding: 3.5rem 20rem 3.5rem 4rem;
    background-image: linear-gradient(to right, #fff6f2 0%, #e2edff 100%);
    position: relative;
}
#variable-service .banner::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -2rem;
    right: 2rem;
    display: block;
    width: 14rem;
    height: 13rem;
    background: url("/images/pricing/airplane.webp") center/contain no-repeat;
}
#variable-service .banner small {
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    color: #283b5d;
}
#variable-service .banner p {
    margin-top: 0.2rem;
    display: flex;
    column-gap: 2rem;
    row-gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: -0.05em;
    color: #121212;
    position: relative;
    z-index: 2;
}
#variable-service .banner p a {
    padding: 0.5rem 1rem;
    border-radius: 3px;
    border: solid 1px #000;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: -0.06em;
    transform: translateY(0.1rem);
}

#points {
    background: linear-gradient(to top, rgba(241, 245, 251, 0.15), rgba(223, 237, 254, 0.76)) #f5f7fa;
}
#points .header {
    display: flex;
}
#points .header h2 {
    font-weight: 700;
    font-size: 3.6rem;
    letter-spacing: -0.03em;
    color: #121212;
}
#points .header a {
    margin-left: auto;
    display: grid;
    place-items: center;
    padding: 1.1rem 3.2rem;
    border-radius: 5px;
    background: #243853;
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: -0.03em;
    color: #fff;
    transition: background 0.2s;
}
#points .header a:hover {
    background: #021836;
}
#points p {
    margin-top: 1.5rem;
    font-size: 1.8rem;
    line-height: 1.67;
    letter-spacing: -0.03em;
    color: #121212;
}
#points ul {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
}
#points li {
    border-radius: 10px;
    box-shadow: 0 0 20px 0 #ecf2fa;
    padding: 4.4rem 2rem 3rem;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.38;
    letter-spacing: -0.02em;
    color: #333;
    text-align: center;
    background: #fff;
}
#points li .iconWrap {
    text-align: center;
    margin: 0 0 2rem 0;
}

#faq h2 {
    font-weight: 700;
    font-size: 3.6rem;
    letter-spacing: -0.03em;
    color: #283b5d;
    text-align: center;
    margin-bottom: 6rem;
}
#faq details {
    border-top: solid 1px #e4ecf4;
}
#faq details summary {
    height: 7.6rem;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.03em;
    line-height: 1.4;
    color: #121212;
    display: flex;
    align-items: center;
}
#faq details summary::before {
    content: "Q";
    font-family: "Poppins";
    font-weight: 700;
    font-size: 2rem;
    color: #ff4800;
    margin-right: 1.6rem;
}
#faq details summary::after {
    content: "";
    background: url("/images/pricing/ic_arrow-down.svg") no-repeat;
    display: block;
    flex-shrink: 0;
    width: 12px;
    height: 6px;
    margin-left: auto;
    margin-right: 3rem;
}
#faq details .answer {
    margin: -0.5rem calc(3rem + 12px) 2rem 3rem;
    border-radius: 10px;
    background-color: #f7f8fa;
    padding: 2rem 3rem 2rem 6rem;
    position: relative;
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: -0.05em;
    color: #333;
}
#faq details .answer::before {
    content: "A";
    position: absolute;
    top: 2rem;
    left: 3rem;
    font-family: "Poppins";
    font-weight: 700;
    font-size: 1.8rem;
    color: #25314e;
}
#faq details[open] summary::after {
    background-image: url("/images/pricing/ic_arrow-up.svg");
}
#faq details:last-child {
    border-bottom: solid 1px #e4ecf4;
}

#contactus {
    position: relative;
    background: #f4f6f8;
}
#contactus::before {
    content: "";
    background: url("/images/pricing/contactus-bg.webp") center/cover no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background-blend-mode: multiply;
    z-index: 1;
}
#contactus .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}
#contactus small {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.03em;
    color: #283b5d;
    opacity: 0.5;
}
#contactus h2 {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 2.6rem;
    letter-spacing: -0.03em;
    line-height: 1.5;
    text-align: center;
    color: #283b5d;
}
#contactus strong {
    margin-top: 4rem;
    font-weight: 700;
    font-size: 3.4rem;
    letter-spacing: -0.03em;
    color: #0076ff;
    padding-left: 3.6rem;
    background: url("/images/pricing/ic_tel-blue.svg") left center no-repeat;
}

@media (max-width: 1280px) {
    #variable-service .swiper-box {
        margin: 2rem 0 -2rem;
    }
    #variable-service .swiper-box .navi-wrapper {
        display: none;
    }
}
@media (max-width: 1200px) {
    #sub-visual .price-wrapper > dd {
        grid-template-columns: 1fr;
        grid-template-areas: "desc" "list" "btn";
    }
    #sub-visual .price-wrapper > dd > ul {
        margin: 0;
        padding: 2rem;
    }
    #sub-visual .price-wrapper > dd > .btn {
        margin: 0 2rem 2rem;
        width: auto;
        height: auto;
        padding: 1.3rem 0 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
    #sub-visual .price-wrapper > dd > .btn::before {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        background: center/cover no-repeat;
        transform: translateY(2px);
    }
    #sub-visual .price-wrapper:first-child > dd > .btn {
        background-image: unset;
    }
    #sub-visual .price-wrapper:first-child > dd > .btn::before {
        background-image: url("/images/pricing/ic_money.svg");
    }
    #sub-visual .price-wrapper:last-child > dd > .btn {
        background-image: unset;
    }
    #sub-visual .price-wrapper:last-child > dd > .btn::before {
        background-image: url("/images/pricing/ic_tel.svg");
    }
}
@media (max-width: 930px) {
    #sub-visual dl {
        flex-direction: column;
        gap: 2rem;
    }
    #sub-visual .price-wrapper > dt {
        flex-basis: 7.5rem;
    }
    #variable-service .inner {
        padding-bottom: 0;
    }
    #variable-service .banner {
        margin: 4rem -20px 0;
        width: 100dvw;
        border-radius: 0;
    }
    #points ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 750px) {
    #sub-visual .price-wrapper:first-child dialog {
        padding-bottom: 0;
    }
    #sub-visual .price-wrapper:first-child dialog .content {
        margin-top: 2rem;
        background: unset;
        padding: 0 0 3rem 0;
        gap: 2rem;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        background: #f5f7fa;
        border-radius: 10px;
        position: relative;
        padding: 2rem;
        margin-top: 4rem;
        /* 정액제 */
    }
    #sub-visual .price-wrapper:first-child dialog .content > div > dt {
        position: absolute;
        top: -1rem;
        left: 0;
        transform: translateY(-100%);
        background: unset;
        padding-top: 0;
        margin-bottom: 1rem;
        font-size: 1.8rem;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div > dt::before {
        content: none;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div > dt::after {
        display: inline-block;
        margin-left: 0.5rem;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div > dd {
        border: 0;
        background-color: unset;
        height: auto;
        padding: 0;
        flex-direction: row;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div > dd:hover {
        border-color: unset;
        background: unset;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div > dd .head {
        margin-bottom: 0;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div > dd .head span {
        margin-left: 0.5rem;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div > dd .body {
        margin-top: 0;
        margin-left: auto;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div > dd .body p {
        font-size: 1.5rem;
        color: #283b5d;
        align-items: center;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div:first-child {
        /* 카카오톡, 문자 */
    }
    #sub-visual .price-wrapper:first-child dialog .content > div:first-child dt {
        grid-row: 1/6;
        background-image: unset;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div:first-child dd.sub {
        flex-direction: column;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div:first-child dd.sub .head {
        justify-content: flex-start;
        margin-bottom: 0.4rem;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div:first-child dd.sub .body {
        margin-left: 0.2rem;
        gap: 0.1rem;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div:first-child dd.sub .body b {
        font-size: 1.3rem;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div:last-child {
        /* 홈택스 수집 */
    }
    #sub-visual .price-wrapper:first-child dialog .content > div:last-child dt {
        grid-row: 1/3;
        background-image: unset;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div:last-child dd:has(.body p:nth-child(2)) .head {
        align-items: center;
    }
    #sub-visual .price-wrapper:first-child dialog .content > div:last-child dd:has(.body p:nth-child(2)) .body {
        align-items: center;
        margin-left: 1rem;
        flex-direction: row;
    }
    #variable-service .banner p a {
        margin: 0;
    }
}
@media (max-width: 660px) {
    #sub-visual h1 {
        font-size: 2.7rem;
    }
    #sub-visual h1 + p {
        font-size: 1.6rem;
    }
    #sub-visual dl {
        margin-top: 6rem;
    }
    #sub-visual .price-wrapper > dt span {
        font-size: 1.8rem;
    }
    #sub-visual .price-wrapper > dd > p {
        height: 4rem;
    }
    #sub-visual .price-wrapper > dd > ul {
        padding: 2rem 1.6rem;
        gap: 1.6rem;
    }
    #sub-visual .price-wrapper > dd > ul > li {
        font-size: 1.5rem;
    }
    #sub-visual .price-wrapper > dd > .btn {
        margin: 1rem 1.6rem 1.6rem;
        font-size: 1.6rem;
    }
    #variable-service .inner {
        padding-top: 6rem;
    }
    #variable-service .swiper-box {
        margin-top: 2rem;
    }
    #variable-service .banner {
        padding: 3rem 10rem 3rem 2rem;
    }
    #variable-service .banner p {
        font-size: 1.5rem;
    }
    #variable-service .banner::after {
        top: 50%;
        right: 2rem;
        transform: translateY(-50%);
        width: auto;
        height: calc(100% - 4rem);
        aspect-ratio: 14/13;
    }
    #points .inner {
        padding: 5rem 0 14rem;
        position: relative;
    }
    #points .header h2 {
        font-size: 2.2rem;
    }
    #points .header a {
        position: absolute;
        left: 50%;
        bottom: 5rem;
        transform: translateX(-50%);
        font-size: 1.6rem;
    }
    #points p {
        margin-top: 2rem;
        font-size: 1.6rem;
        line-height: 1.5;
        letter-spacing: -0.06em;
    }
    #points ul {
        margin-top: 3rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    #points li {
        padding: 2rem;
        text-align: left;
        letter-spacing: -0.06em;
        display: flex;
        align-items: center;
    }
    #points li .iconWrap {
        margin: 0 2rem 0 0;
        transform: translateY(4px);
    }
    #points li .iconWrap svg {
        width: 4rem;
        height: 4rem;
    }
    #faq details summary {
        font-size: 1.6rem;
    }
    #faq details summary::after {
        margin-left: auto;
        margin-right: 1rem;
    }
    #faq details .answer {
        margin: 0 0 2rem 0;
        font-size: 1.4rem;
        padding: 2rem 2rem 2rem 3rem;
    }
    #faq details .answer::before {
        left: 1rem;
    }
    #contactus small {
        font-size: 1.6rem;
    }
    #contactus h2 {
        font-size: 2rem;
    }
    #contactus strong {
        margin-top: 2rem;
        font-size: 2.4rem;
        padding-left: 2.6rem;
        background-size: 20px 20px;
    }
    dialog {
        max-width: unset;
        width: 100%;
        top: auto;
        left: 0;
        bottom: 0;
        transform: unset;
        border-radius: 2rem 2rem 0 0;
    }
    dialog .content {
        max-height: 60vh;
        overflow-y: auto;
        overscroll-behavior: none;
    }
}
@media (max-width: 480px) {
    #variable-service .swiper-box {
        margin: 2rem -1.6rem 0;
    }
    #variable-service .banner {
        margin: 4rem -1.6rem 0;
        padding: 3rem 10rem 3rem 1.6rem;
    }
}
@media (max-width: 430px) {
    #sub-visual .price-wrapper > dd > p {
        font-size: 3.4vw;
    }
    #sub-visual .price-wrapper > dd > ul > li {
        background-size: contain;
        font-size: 3.2vw;
    }

    #points p {
        font-size: 1.4rem;
    }
}