@charset "UTF-8";
@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
    /* color */
    --color-main: #0078A5;
    --color-red: #DC0132;

    --color-light-blue: #BBE2F1;

    --color-white: #fff;
    --color-black: #000;
    --color-border: #B5B5B5;

    --color-text: #4B4B4B;

    --color-bg-gray: #F5F5F5;
    --color-bg-merit: #BBE2F1;
    --color-bg-demerit: #4B4B4B;
    --color-bg-material: #F0F3FF;
    /* font */
    --font-family: denso-jp, denso-en, sans-serif;

    /* size */
    --size-base: 16px;

    /* radius */
    --radius-base: 4px;
}


/* 日本語 DENSOTP2017-xxx.woff */
@font-face {
    font-family: 'denso-jp';
    src: url("../fonts/DENSOTP2017-Black.woff") format("woff");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'denso-jp';
    src: url("../fonts/DENSOTP2017-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'denso-jp';
    src: url("../fonts/DENSOTP2017-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'denso-jp';
    src: url("../fonts/DENSOTP2017-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

/* 英字 ORIG_DENSO_xxx.woff */
@font-face {
    font-family: 'denso-en';
    src: url("../fonts/ORIG_DENSO_BLACK.woff") format("woff");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'denso-en';
    src: url("../fonts/ORIG_DENSO_BLACK_BOLD.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'denso-en';
    src: url("../fonts/ORIG_DENSO_REGULAR.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'denso-en';
    src: url("../fonts/ORIG_DENSO_LIGHT.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-family: var(--font-family);
    color: var(--color-text);
    line-height: 1.75;
    font-weight: 300;

    /* font-feature-settings: "palt"; */
}

/* common */
.container {
    max-width: 1198px;
    padding: 0 28px;
    margin: 0 auto;
}

section {
    margin-bottom: 150px;
    @media (max-width: 767.98px) {
        margin-bottom: 80px;
    }
}

section.section-mv,
section.section-about,
section.section-comparison {
    margin-bottom: 100px;
    @media (max-width: 767.98px) {
        margin-bottom: 50px;
    }
}

img {
    width: 100%;
}

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

.br-xs{
    display: none;
    @media (max-width: 384.98px) {
        display: block;
    }
}

.br-sp{
    display: none;
    @media (max-width: 767.98px) {
        display: block;
    }
}
.br-pc{
    display: block;
    @media (max-width: 767.98px) {
        display: none;
    }
}

.d-md-none {
    @media(min-width: 768px) {
        display: none !important;
    }
}

.d-sm-none{
    @media (max-width: 767.98px) {
        display: none !important;
    }
}

.d-flex {
    display: flex;
}

.d-box {
    flex-shrink: 0;
    flex-grow: 0;
    width: 50%;

    @media (max-width: 767.98px) {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .order-sm-1{
        order: 1;
    }
    .order-sm-2{
        order: 2;
    }
    .order-sm-3{
        order: 3;
    }
    .order-sm-4{
        order: 4;
    }
}

h2 {
    font-size: 2rem;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 112px;
    position: relative;
    font-weight: normal;

    @media (max-width: 767.98px) {
        font-size: max(1.5rem, 6.153846153846154vw);
        margin-bottom: 82px;
    }

    &.section-title-underline {
        &::after {
            position: absolute;
            bottom: -32px;
            left: 50%;
            transform: translateX(-50%);
            content: '';
            display: block;
            width: 80px;
            height: 4px;
        }
    }

    &.header-color-blue .header-color {
        color: var(--color-main);
    }

    &.header-color-red .header-color {
        color: var(--color-red);
    }

    &.header-color-blue {
        &::after {
            background-color: var(--color-main);
        }
    }

    &.header-color-red {
        &::after {
            background-color: var(--color-red);
        }
    }
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    line-height: 1.3;
    text-align: left;
    padding-left: 1.5rem;
    position: relative;
    font-weight: normal;
    @media (max-width: 767.98px) {
        font-size: clamp(1rem, 5.1282051vw, 1.5rem);
    }


    &::before {
        content: '';
        display: block;
        width: 4px;
        height: 1.5rem;
        background-color: var(--color-main);
        position: absolute;
        left: 0;
        top: 4px;
        @media (max-width: 767.98px) {
            height: clamp(1rem, 5.1282051vw, 1.5rem);;
        }
    }

    &.no-line {
        &::before {
            display: none;
        }
    }

}

.column-outside-right {
    flex: 1;
    margin-right: calc(50% - 50vw);
}

.column-outside-left {
    flex: 1;
    margin-left: calc(50% - 50vw);
}


/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--color-white);
}
.header-inner {
    max-width: 1418px;
    height: 100px;
    padding: 0 28px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    padding: 8px 32px 8px 36px;
    background-color: var(--color-main);
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid var(--color-main);
    border-radius: var(--radius-base);
    letter-spacing: 0.5cap;
    transition: all 0.2s ease;

    &:hover {
        background-color: var(--color-white);
        color: var(--color-main);
        border: 2px solid var(--color-main);
    }
}


/* main */
main {
    padding-top: 100px;
}

/* MV */

.section-mv {
    width: 100vw;
    height: calc(100vw * 0.4);
    background-image: url("../images/mv-image.png");
    background-size: 100vw auto;
    background-position: center top;
    background-repeat: no-repeat;
    line-height: 1.5;

    @media (max-width: 767.98px) {
        background-image: url("../images/mv-image-sp.png");
        height: 120vw;
        /* aspect-ratio: 65/89; */
        background-size: 100vw auto;
        /* background-position: top right; */
        background-repeat: no-repeat;
    }



    & .section-mv-inner {
        height: 100%;
        display: flex;
        align-items: center;

        @media (max-width: 767.98px) {
            align-items: end;
        }
    }

    & .section-mv-text {
        letter-spacing: 1px;

        font-size: min(2.34260615vw, 2rem);
        font-weight: normal;
        color: var(--color-white);
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        /* white-space: nowrap; */


        @media (max-width: 767.98px) {
            font-size: clamp(1rem, 4.1025641vw, 1.75rem);
            font-feature-settings: "palt";
            /* margin-top: calc(100vw * 0.65); */
        }

        & .fs-lg {
            font-size: min(3.51390922vw, 3rem);

            @media (max-width: 767.98px) {
                font-size: clamp(1.25rem, 6.15384615vw, 2.5rem);
            }
        }

        & .fs-xl {
            font-size: min(4.685212307692308vw, 4rem);
            display: inline-block;
            line-height: 1.4;
            margin-bottom: 16px;

            @media (max-width: 767.98px) {
                font-size: clamp(1.5rem, 8.20512821vw, 3rem);
                white-space: normal;
            }
        }

        & .bg-white {
            letter-spacing: 0;
            text-shadow: none;
            background-color: var(--color-white);
            color: var(--color-main);
            font-size: min(3.27964861vw, 2.8rem);
            line-height: 1.5;
            padding: 0 8px;
            display: inline-block;
            margin-right: 8px;
            margin-bottom: 24px;

            @media (max-width: 767.98px) {
                font-size: clamp(1.2rem, 6.15384615vw, 2.5rem);
                margin-bottom: 16px;
                white-space: normal;
                font-feature-settings: "palt";
            }

            &:last-child {
                margin-right: 0;

                @media (max-width: 767.98px) {
                    margin-bottom: 24px;
                }
            }

        }
    }
}

/* about */
.section-about {
    & .d-flex {
        gap: 72px;
        align-items: center;

        @media (max-width: 767.98px) {
            display: block;
        }
    }

    & h2 {
        font-size: clamp(1.5rem, 6.153846153846154vw, 2rem);
        margin-bottom: 48px;
        text-align: left;

        @media (max-width: 767.98px) {  
            text-align: center;
        }

        .header-color {
            color: var(--color-main);
        }
    }

    & .section-about-text {
        font-size: 1.125rem;
        line-height: 2;
    }

    @media (max-width: 767.98px) {
        & .d-box{
            &:first-child {
                margin-bottom: 36px;
            }

            &.column-outside-right {

                margin-left: calc(50% - 50vw);
                & img {
                    width: 100vw;
                }
            }
        }
    }
}

/* cta */
.section-cta {

    .section-cta-inner {
        padding: 52px;
        background-color: var(--color-bg-gray);
        border: 4px solid var(--color-red);
        border-radius: var(--radius-base);

        @media (max-width: 767.98px) {
            padding: 32px;
        }

        &.d-flex {
            align-items: center;
            gap: 54px;
            @media (max-width: 767.98px) {
                flex-direction: column;
                gap: 32px;
            }

            & .d-box {
                &:first-child {
                    flex: 1;
                }
            }
        }

        & h2 {
            font-size: 1.5rem;
            line-height: 1.5;
            margin-bottom: 24px;
            text-align: left;

            .header-color {
                color: var(--color-red);
            }
        }

        & .section-cta-text {
            margin-bottom: 24px;
        }

        & .btn-download {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.125rem;
            font-weight: bold;
            gap: 16px;
            padding-block: 16px;
            padding-inline: 8px;
            background-color: var(--color-red);
            color: var(--color-white);
            text-decoration: none;
            border: 2px solid var(--color-red);
            border-radius: var(--radius-base);
            transition: all 0.2s ease;

            @media (max-width: 767.98px) {
                width: 100%;
                padding:16px;
                font-size: 1rem;
                line-height: 1.5;
                gap: 8px;
            }

            &::after {
                content: '';
                display: block;
                width: 20px;
                height: 20px;
                background-image: url("../images/icon-download.svg");
                background-size: contain;
                background-repeat: no-repeat;
            }

            &:hover {
                background-color: var(--color-white);
                color: var(--color-red);
                border: 2px solid var(--color-red);
                &::after {
                    background-image: url("../images/icon-download-red.svg");
                }
            }
        }

        @media (max-width: 767.98px) {
            & .d-box {
                display: contents;
            }

            & .cta-img {
                order: 2;
            }

            & .cta-title {
                order:1;
                margin-bottom: 0;
                text-align: center;
                white-space: nowrap;
            }

            & .section-cta-text {
                order:3;
                margin-bottom: 0;
            }

            & .cta-btn {
                order:4;
            }
        }
    }
}

/* features */
.section-features {

    & .d-flex {
        align-items: end;
        margin-bottom: 120px;

        @media (max-width: 767.98px) {
            flex-direction: column;
            align-items: center;
            margin-bottom: 80px;
        }
    }

    & .d-box {
        position: relative;
    }

    & .column-text {
        z-index: 1;
        background-color: var(--color-white);
        padding: 48px;
        padding-bottom: 24px;
        border-radius: var(--radius-base) var(--radius-base) 0 0;

        @media (max-width: 767.98px) {
            padding: 24px;
            padding-top: 48px;
            margin-top: -24px;
        }
    }

    /*右側へ要素を広げる（2カラム）*/
    .column-outside-right {
        margin-left: -10%;
        @media (max-width: 767.98px) {
            margin-left: 0;
        }
    }

    /*左側へ要素を広げる（2カラム）*/
    .column-outside-left {
        margin-right: -10%;
        @media (max-width: 767.98px) {
            margin-right: 0;
        }
    }

    .profile-box {
        position: absolute;
        width: max(250px, 20%);
        top: 32px;
        right: 0;

        @media (max-width: 767.98px) {
            top: -24px;
            width: max(160px, 12.244897959183673vw);
        }

        & .profile-text {
            font-size: 0.75rem;
            line-height: 1.5;
            border-bottom: 1px solid var(--color-text);
            padding-bottom: 8px;
            margin-bottom: 8px;
        }
    }

    @media (max-width: 767.98px) {
        & .column-image {
            margin:0;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            width: 100vw;
        }
    }
}

.features-table-wrapper {

    & .d-grid {
        display: grid;
        grid-template-columns: 1fr 2fr 2fr;
        justify-items: center;
        align-items: center;
        @media (max-width: 767.98px) {
            grid-template-columns: 1fr;
        }

        & .d-item {
            height: 100%;
        }

        & .d-item:nth-child(4),
        & .d-item:nth-child(5),
        & .d-item:nth-child(6),
        & .d-item:nth-child(7),
        & .d-item:nth-child(8),
        & .d-item:nth-child(9),
        & .d-item:nth-child(10),
        & .d-item:nth-child(11),
        & .d-item:nth-child(12),
        & .d-item:nth-child(13),
        & .d-item:nth-child(14),
        & .d-item:nth-child(15) {
            border-top: 2px solid var(--color-border);
            @media (max-width: 767.98px) {
                border-top: none;
            }
        }

        & .d-item:nth-child(13),
        & .d-item:nth-child(14),
        & .d-item:nth-child(15) {
            border-bottom: 2px solid var(--color-border);
            @media (max-width: 767.98px) {
                border-bottom: none;
            }
        }

        @media (max-width: 767.98px) {
            & .d-item:nth-child(15) {
                border-bottom: 2px solid var(--color-border);
            }
        }

        & .d-item:nth-child(5),
        & .d-item:nth-child(8),
        & .d-item:nth-child(11),
        & .d-item:nth-child(14) {
            position: relative;
            margin-left: -1%;
            @media (max-width: 767.98px) {
                margin-left: 0;
            }

            &::after {
                content: '';
                display: block;
                width: 1px;
                height: 80%;
                background-color: var(--color-border);
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                right: -1%;

                @media (max-width: 767.98px) {
                    display: none;
                }
            }
        }

        & .d-item.d-header {
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            font-size: 1.25rem;
            font-weight: normal;
        }

        & .d-item.d-header-merit {
            background-color: var(--color-bg-merit);
            color: var(--color-main);
            border-radius: var(--radius-base) var(--radius-base) 0 0;
            width: 98%;
            margin-left: 1.5%;
            @media (max-width: 767.98px) {
                margin-left: 0;
                width: 100%;
            }
        }

        & .d-item.d-header-demerit {
            background-color: var(--color-bg-demerit);
            color: var(--color-white);
            border-radius: var(--radius-base) var(--radius-base) 0 0;
            margin-left: 2%;
            width: 98%;
            @media (max-width: 767.98px) {
                margin-left: 0;
                width: 100%;
            }
        }

        & .d-item.d-header-gray {
            background-color: var(--color-bg-gray);
            margin-left: -2%;
            @media (max-width: 767.98px) {
                margin-left: 0;
                border-bottom: 2px solid var(--color-border);
                border-radius: var(--radius-base) var(--radius-base) 0 0;
            }
        }

        & .d-item:nth-child(1) {
            font-size: 1rem;
        }


        & ul {
            padding: 28px 42px;
            @media (max-width: 767.98px) {
                padding: 16px 12px 28px 12px;
            }
        }

        .merit-list {

            & li {
                text-indent: -1em;
                padding-left: 1em;
                padding-bottom: 16px;
                margin-bottom: 16px;
                border-bottom: 1px dashed var(--color-border);

                &:last-child {
                    border-bottom: none;
                    margin-bottom: 0;
                    padding-bottom: 0;
                }

                &::before {
                    content: '●';
                    display: inline-block;
                    width: 1em;
                    height: 1em;
                    text-align: center;
                    line-height: 1;
                    color: var(--color-main);
                }

                & .color-text {
                    color: var(--color-main);
                    font-weight: bold;
                }
            }
        }

        .demerit-list {

            & li {
                text-indent: -1em;
                padding-left: 1em;
                padding-bottom: 16px;
                margin-bottom: 16px;
                border-bottom: 1px dashed var(--color-border);

                &:last-child {
                    border-bottom: none;
                    margin-bottom: 0;
                    padding-bottom: 0;
                }

                &::before {
                    content: '●';
                    display: inline-block;
                    width: 1em;
                    height: 1em;
                    text-align: center;
                    line-height: 1;
                    color: var(--color-bg-demerit);
                }

                & .color-text {
                    font-weight: bold;
                }
            }
        }

        .merit-title,
        .demerit-title {
            font-size: 1.25rem;
            font-weight: normal;
            padding: 4px 12px;
        }

        .merit-title {
            background-color: var(--color-bg-merit);
            color: var(--color-main);
        }

        .demerit-title {
            background-color: var(--color-bg-demerit);
            color: var(--color-white);
        }

    }
}

/* comparison */
.section-comparison,
.section-dacs {

    & .d-flex {
        gap: 72px;
        margin-bottom: 150px;

        @media (max-width: 767.98px) {
            display: block;
            margin-bottom: 80px;
        }

        & .section-content {
            line-height: 1.75;
            margin-bottom: 16px;
        }
    }

    & .d-box {
        &:first-child {
            flex: 1;
            @media (max-width: 767.98px) {
                margin-bottom: 36px;
            }
        }

        &:last-child {
            flex: 1;
            @media (max-width: 767.98px) {
                margin-left: calc(50% - 50vw);
                margin-right: calc(50% - 50vw);
                width: 100vw;
            }
        }
    }

    & h3 {
        @media (max-width: 767.98px) {
            text-align: center;
            &::before {
                display: none;
            }
        }
    }

    & .d-grid {
        margin-top: 56px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        @media (max-width: 767.98px) {
            grid-template-columns: 1fr;
            margin-top: 32px;
        }

        & .d-item {
            border: 1px solid var(--color-main);
            border-radius: var(--radius-base);
            overflow: hidden;

            & .card-title {
                font-size: 1.125rem;
                font-weight: normal;
                height: 80px;
                line-height: 1.25;
                text-align: center;
                background-color: var(--color-main);
                color: var(--color-white);
                display: flex;
                align-items: center;
                justify-content: center;
            }

            & .card-image {
                height: 240px;
                overflow: hidden;

                & img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            & .card-text {
                font-size: 0.875rem;
                line-height: 2;
                padding: 28px;
            }
        }
    }
}

.section-form {
    margin-bottom: 0;
    background-color: var(--color-bg-gray);
    padding-block: 100px;
    border-top: 4px solid var(--color-red);
    position: relative;

    &:before {
        content: '';
        display: block;
        width: 40px;
        height: 40px;
        background-color: var(--color-white);
        border-radius: var(--radius-base);
        border-bottom: 4px solid var(--color-red);
        border-right: 4px solid var(--color-red);
        position: absolute;
        top: -21px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }

    & h3 {
        font-size: 1.125rem;
    }

    & .d-flex {
        gap: 56px;

        @media (max-width: 767.98px) {
            flex-direction: column;
            gap: 48px;
        }

        & .d-box {
            &:first-child {
                flex: 1;
            }

            &:last-child {
                flex: 1;
            }

            & .form-image {
                margin-bottom: 48px;

                & img {
                    width: 110%;
                    height: auto;
                    margin-left: -10%;

                    @media (max-width: 767.98px) {
                        width: 100%;
                        margin-left: 0;
                    }
                }
            }

            & .form-text {
                margin-bottom: 48px;
                line-height: 2;
            }

            & .material-list {
                padding: 40px;
                background-color: var(--color-white);
                border-radius: var(--radius-base);
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);


                & .material-list-inner {
                    display: flex;
                    flex-direction: column;
                    
                    @media (max-width: 767.98px) {
                        display: block;
                    }
                }

                & h3 {
                    margin-bottom: 16px;
                    &::before {
                        background-color: var(--color-red);
                        height: 1.125rem;
                    }

                }

                & .material-list-title {
                    font-weight: normal;
                    color: var(--color-white);
                    background-color: var(--color-main);
                    padding: 8px 12px;
                    text-align: center;
                }


                & .material-list-ul {
                    padding:30px 20px;
                    background-color: var(--color-bg-material);
                    font-feature-settings: 'palt';
                    margin-bottom: 24px;

                    & li {
                        padding-left: 2em;
                        text-indent: -1.5em;
                        line-height: 1.5;
                        margin-bottom: 16px;
                        &:last-child {
                            margin-bottom: 0;
                        }
                        &::before {
                            content: '';
                            display: inline-block;
                            background-image: url('../images/list-icon.png');
                            background-size: contain;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 16px;
                            height: 16px;
                            margin-right: 8px;
                        }

                        &>span {
                            font-weight: normal;
                            background-color: #FFFF00;
                            padding: 2px 4px;
                        }
                    }
                }

                & .material-list-text {
                    margin-bottom: 24px;

                    &:last-child {
                        margin-bottom: 0;
                    }

                    &>span {
                        color: var(--color-main);
                        font-weight: bold;
                        &.text-no {
                            font-size: 130%;
                        }    
                    }
                }

            }
        }

        & .form-box {
            & h3 {
                text-align: center;
                padding-left: 0;

                &::before {
                    display: none;
                }

                &+p {
                    margin-bottom:48px;
                }
            }
        }
    }
}

/* footer */
footer {
    background-color: var(--color-main);
    color: var(--color-white);
    padding-block: 48px;

    & .footer-link {
        display: flex;
        gap: 48px;

        @media (max-width: 767.98px) {
            flex-direction: column;
            gap: 24px;
            margin-bottom: 24px;
        }

        & ul {
            & li {
                margin-bottom: 12px;
            }

            & .footer-link-title {
                font-weight: normal;
            }

            & li:not(.footer-link-title) {
                text-indent: calc(-1em - 8px);
                padding-left: calc(1em + 8px);
            }

            & a {
                &::before {
                    content: '';
                    display: inline-block;
                    position: relative;
                    top: 2px;
                    margin-right: 8px;
                    width: 16px;
                    height: 16px;
                    background-image: url('../images/chevron-right.svg');
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                }
            }
        }

        & .gotop-wrapper {
            margin-left: auto;
            @media (max-width: 767.98px) {
                margin-right: auto;
            }

            & .gotop-btn {
                transition: all 0.2s ease;
                position: relative;
                display: block;
                width: 60px;
                height: 60px;
                border: 2px solid var(--color-white);

                &::before {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    content: '';
                    display: block;
                    width: 24px;
                    height: 24px;
                    background-image: url('../images/chevron-top.svg');
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                }

                &:hover {
                    opacity: 0.8;
                }
            }
        }
    }


    & .footer-copyright {
        font-size: 0.75rem;
        line-height: 1;
        letter-spacing: 0.5px;
        text-align: right;
        padding-block: 16px;
        @media (max-width: 767.98px) {
            text-align: center;
        }
    }
}

.docs-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    background-color: var(--color-bg-gray);
    width: 100%;

    & .docs-inner {
        padding: 24px;
        text-align: center;
    }

    & .header-contact {
        font-size: 1.125rem;
    }
}

