section {
    background: #fff;
}

#header {
    background: var(--clr-wht);
    transition: background 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    box-shadow: inset 0 -1px 0 rgb(65 65 65 /0.15);

    .scrolled {
        background: var(--clr-wht);
        box-shadow: inset 0 -1px 0 rgb(65 65 65 /0.15);

        .logo,
        .header-menu,
        .sp-menu-btn {
            filter: none;
        }
    }

    nav {
        ul {
            margin: auto 0;
        }

        li {
            color: #014b7a;
            padding: 0.2em 0;
            position: relative;

            &::before {
                background: var(--clr-primary);
                content: '';
                width: 100%;
                height: 2px;
                position: absolute;
                left: 0;
                bottom: 0;
                transform-origin: center top;
                transform: scale(0, 1);
                transition: transform .3s;
            }

            &:hover {
                color: var(--clr-primary);

                &::before {
                    transform-origin: center top;
                    transform: scale(1, 1);
                }
            }
        }
    }
}

#footer {
    .btn-contact p {
        font-size: 110%;
        font-weight: 500;
        width: 13.2em;
        padding: 0.6em 1em;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 0.4em;
        background: #014b7a;
        text-align: center;

        i {
            margin-right: 0.4em;
        }
    }

    .btn-contact p:hover {
        color: #014b7a;
        background: #fff;
        border: #014b7a 1px solid;
    }

    .right .flex {
        justify-content: space-between;
    }

    .footer-menu-main {
        a {
            margin-right: 0.7vw;
        }

        a:hover {
            color: #014b7a;
        }

        a:last-child {
            margin: 0;
        }

        a::after {
            content: '/';
            color: #014b7a;
            margin-left: 0.7vw;
        }

        a:last-child::after {
            content: '';
        }

    }

    .footer-menu-sub {
        font-size: 80%;
        margin-top: 0.6em;

        a {
            margin-right: 1em;
        }

        a:hover {
            color: #014b7a;
        }
    }

    .banner-lists {
        display: flex;
        justify-content: space-between;
        gap: 0.5em;

        img {
            object-fit: contain;
        }

        .size-adjust {
            height: 8em;
        }

        .column-block {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 0.5em;
        }
    }


}

.ttl-left-block {
    border-left: #fff solid 0.6em;
    padding-left: 0.3em;
    line-height: 1;
    color: #fff;

    h1,
    h2 {
        margin-bottom: 0;
        transform: translateY(-0.05em);
    }
}

#mainview {
    position: relative;
    overflow: hidden;

    .outer {
        width: 100%;
    }

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

#news {
    h2 {
        text-align: center;
        color: #248a66;
        position: relative;
        margin-bottom: 1.2em;

        i {
            margin-right: 0.3em;
        }
    }

    .left-menu {
        width: 20%;
        margin-right: 2em;
    }

    .news-list {
        width: 60%;
        min-width: 600px;

        .recruit .cat {
            border: 2px solid #f7931e;
            color: #f7931e;
        }

        .other .cat {
            border: 2px solid #248a66;
            color: #248a66;
        }

        a .news-cont {
            padding: 0.6em 1em;
            border-bottom: 1px solid #333;
        }

        a:first-child .news-cont {
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
        }

    }


    .post-date {
        color: #248a66;
        text-align: center;

        .date {
            font-size: 1.6em;
            margin-top: -0.4em;
        }
    }

    .cat {
        border: 2px solid #014b7a;
        font-weight: 600;
        color: #014b7a;
        text-align: center;
        padding: 0.2em 0;
        width: 6em;
        height: 2.2em;
        border-radius: 5px;
        margin: auto 1.6em;
    }

    .news-ttl {
        font-size: 1.2em;
        margin: auto 0;
        line-height: 1.4em;
        width: 70%;
    }

    .btn-news p {
        font-size: 110%;
        font-weight: 500;
        width: 10em;
        margin-top: 10em;
        padding: 0.4em 1em;
        color: #248a66;
        border: 1px solid #248a66;
        border-radius: 0.4em;
        background: rgba(255, 255, 255, 0.1);
    }

    .btn-news p:hover {
        color: #fff;
        background: #248a66;
    }

    .cat-list {
        width: 7em;

        button,
        a.filter-btn {
            text-align: center;
            margin-bottom: 0.4em;
            padding: 0.3em 0.4em;
            border-radius: 30px;
            background-color: #f1f1f1;
            width: 7em;
        }

        button.is-active,
        a.filter-btn.is-active {
            color: #fff;
            background-color: #248a66;
        }

        a.filter-btn {
            display: flex;
            justify-content: center;
        }
    }
}

#news.recruit {
    .cat-list .orange-bg {
        background-color: #f7931e !important;
    }

    .orange {
        color: #f7931e;
    }

    .post-date {
        color: #f7931e;
    }
}

#about {
    .left {
        width: 47.5%;
        margin-right: 5%;
    }
}

#bread {
    margin-top: 0;
}

.btn-details p {
    font-size: 110%;
    font-weight: 500;
    width: 15em;
    margin-top: 10em;
    padding: 0.6em 1em;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0.4em;
    background: rgba(255, 255, 255, 0.1);
}

.btn-details p:hover {
    background: rgba(255, 255, 255, 0.3);
}



#service {
    background: #014b7a;

    .outer {
        position: relative;
        z-index: 1;

        .inner {
            position: relative;
            z-index: 1;
        }

        .bg-top {
            position: absolute;
            top: 0;
            right: 0;
            height: 105%;
        }

        .name-point {
            position: absolute;
            top: -3.7em;
            right: 4em;
        }
    }

    .left {
        width: 55%;
        margin-right: 5%;
    }

    .right {
        color: #fff;
        width: 40%;
    }
}

#works {
    background-image: url('/wpsys2026/wp-content/themes/est/assets/images/top/works-bg.JPG');
    background-attachment: fixed;
    margin-top: -0.5em;
    background-size: cover;
    background-position: 0 -250px;

    .outer {
        position: relative;

        .bg-btm {
            position: absolute;
            right: 0;
            bottom: 0;
            z-index: 1;
        }
    }

    .inner {
        padding: 5% 0;

        .btn-details p {
            margin: 8em 0 5em;
        }

        .works-list {
            justify-content: space-between;
            gap: 1%;
        }

        .work-cont {
            transition: transform 0.3s;
            position: relative;
            z-index: 5;

            p {
                display: none;
                font-size: 1.1em;
                font-weight: 700;
                background: #fff;
                padding: 0.02em 1.6em 0.05em;
            }
        }

        .work-cont:hover {
            transform: scale(1.05);
            filter: brightness(1.1);

            p {
                display: block;
                position: absolute;
                left: -1em;
                bottom: 1em;
            }
        }
    }
}

#download {
    .outer {
        padding: 10em 0;
    }

    h2 {
        text-align: center;
        color: #014b7a;
        position: relative;

        i {
            margin-right: 0.3em;
        }
    }

    h2::before {
        content: '';
        position: absolute;
        top: -2em;
        left: 0;
        right: 0;
        width: 2px;
        height: 1.2em;
        margin: auto;
        background-color: #014b7a;
    }

    .btn-download p {
        font-size: 110%;
        font-weight: 500;
        min-width: 13em;
        margin: 5em auto 0;
        padding: 0.6em 1em;
        color: #333;
        border: 1px solid #333;
        border-radius: 0.4em;
        background: rgba(255, 255, 255, 0.1);

        i {
            margin-left: 1em;
        }
    }

    .pc-flex {
        justify-content: center;
        gap: 1em;
    }
}

.pagination {
    margin: 2em auto;
    display: flex;
    justify-content: center;

    .page-numbers {
        color: #248a66;
        font-size: 13px;
        line-height: 1.2rem;
        text-align: center;
        text-decoration: none;
        position: relative;
        padding: 7px 12px 6px;
        margin: 0 10px;
        border-radius: 30px;
    }

    .current {
        color: #fff;
        background-color: #248a66;
    }

    a {
        transition: .3s;
    }

    a:hover {
        color: #f7931e;
    }
}

#page-service {
    .lower-third {
        font-size: 80%;
        font-weight: 600;
        padding: 1.6em 1em;
    }

    #copy {
        height: auto !important;
    }


    .wht {
        color: #fff;
    }

    .blue {
        color: #014b7a;
    }

    .page-ttl {
        background: #fff url(/wpsys2026/wp-content/themes/est/assets/images/page/mv4.webp) no-repeat 0 -140px;
        height: 35vh;
        background-size: cover;

        .outer {
            padding: 10em 0;
        }

        .ttl-left-block {
            color: #014b7a;
            border-left: #014b7a solid 0.6em;
        }
    }


}

#copy {
    background-color: #014b7a;
    height: 50vh;

    h2 {
        text-align: center;
        position: relative;
        color: #fff;
    }

    h2::before {
        content: '';
        position: absolute;
        top: -2em;
        left: 0;
        right: 0;
        width: 2px;
        height: 1.2em;
        margin: auto;
        background-color: #fff;
    }

    .outer {
        padding: 12em 0;
    }
}

#eq1,
#eq2,
#eq3,
#eq4 {
    height: max(60vh, 700px);
    background-size: contain !important;
    position: relative;

    .service-txt {
        position: relative;
        z-index: 3;
    }

    .square {
        position: absolute;
        left: 1em;
        bottom: 1em;
        width: 3em;
    }

    .btm-design1 {
        position: absolute;
        left: 40%;
        bottom: -4em;
        z-index: -1;
    }


    .btm-design2 {
        position: absolute;
        left: 10%;
        bottom: 0;

    }

    .bg-right {
        position: absolute;
        right: 0;
        bottom: 0;
        height: max(60vh, 700px);
        z-index: -1;
    }

    .pc-flex {
        justify-content: space-between;
    }

    h2 {
        border-bottom: solid 3px #5472cd;
        position: relative;
    }

    h2:after {
        position: absolute;
        content: " ";
        display: block;
        border-bottom: solid 3px #014b7a;
        bottom: -3px;
        width: 20%;
    }

    .eq-img {
        width: 30em;
        z-index: 5;
        object-fit: cover;
        border-radius: 1em;
        position: relative;
    }
}

#eq1 {
    background: url('/wpsys2026/wp-content/themes/est/assets/images/common/left.webp') no-repeat left;
    background-position-x: -40px;
}

#eq2 {
    background: #f4f4f4;

    .line {
        position: absolute;
        right: -2em;
        bottom: 0;
    }
}

#eq3 {
    background: #fff url('/wpsys2026/wp-content/themes/est/assets/images/common/left2.webp') no-repeat left;

    .cur {
        position: absolute;
        right: 14vw;
        bottom: -1em;
        height: 30em;
    }
}

#eq4 {
    background: #f4f4f4 url('/wpsys2026/wp-content/themes/est/assets/images/common/right2.webp') no-repeat right;

    .block {
        position: absolute;
        right: 4em;
        bottom: 3em;
        width: 16em;
    }
}

#page-news {
    .page-ttl {
        background: #fff url(/wpsys2026/wp-content/themes/est/assets/images/page/news-mv.webp) no-repeat bottom;
        height: 35vh;
        background-size: cover;

        .outer {
            padding: 10em 0;
        }
    }


}

#page-contact {
    .page-ttl {
        background: #fff url(/wpsys2026/wp-content/themes/est/assets/images/page/mv2.webp) no-repeat 0 56%;
        height: 35vh;
        background-size: cover;

        .outer {
            padding: 10em 0;
        }

        .ttl-left-block {
            color: #014b7a;
            border-left: #014b7a solid 0.6em;
        }
    }



    #copy {
        position: relative;

        h2::after {
            content: '';
            position: absolute;
            bottom: -3em;
            left: 50%;
            transform: translateX(-50%);
            width: 1em;
            border-left: 1.4em solid transparent;
            border-right: 1.4em solid transparent;
            border-top: 1.4em solid #fff;
        }
    }

    .dd-utr {
        width: 100%;
        height: 40em;
        background: #014b7a;
        position: absolute;
        bottom: -30em;
        z-index: -1;
        clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 250px), 0 100%);
    }

    #form {
        background: none;

        .wpcf7 {
            background: #fff;
        }

        .outer {
            padding-top: 0;
        }

        h3 {
            color: #fff;
            font-weight: 600;
        }

        img {
            width: 1.6em;
            object-fit: contain;
            margin-right: 0.4em;
        }
    }
}

#page-works {
    .page-ttl {
        background: #fff url(/wpsys2026/wp-content/themes/est/assets/images/page/mv1.webp) no-repeat 0 83%;
        height: 35vh;
        background-size: cover;

        .outer {
            padding: 10em 0;
        }

        .ttl-left-block {
            color: #fff;
            border-left: #fff solid 0.6em;
        }
    }


}

#works-main {
    .outer {
        position: relative;
    }

    .line {
        position: absolute;
        right: -2em;
        bottom: 0;

    }

    .works-list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .works-cont {
        width: calc((100% - 40px) / 3);
        box-sizing: border-box;
        margin-bottom: 20px;
        z-index: 2;
    }

    .works-img {
        position: relative;
        border-radius: 15px;
        overflow: hidden;

        img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            height: 17em;
            transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
        }

        img:hover {
            scale: 1.1;
            filter: brightness(1.1);
        }
    }

    .works-label {
        position: absolute;
        left: 0;
        top: 0;
        width: 12em;
        background: #014b7a;
        text-align: center;
        padding: 0.2em 1em 0.3em;
        border-radius: 15px 0 0 0;
        z-index: 10;

        p {
            margin: 0;
            color: #fff;
        }
    }

    .works-ttl {
        font-weight: bold;
        margin-top: 10px;
    }

    .filter-area {
        margin-bottom: 30px;
    }

    .pagination {
        margin-top: 30px;
        text-align: center;
    }

    .pagination ul {
        display: inline-block;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .pagination li {
        display: inline-block;
        margin: 0 5px;
    }

    .pagination a,
    .pagination span {
        display: block;
        padding: 8px 12px;
        border: 1px solid #ccc;
        text-decoration: none;
        color: #333;
        border-radius: 5px;
    }

    .pagination .current {
        background-color: #014b7a;
        color: #fff;
        border-color: #014b7a;
    }

    .road-facilities {
        background: #f7931e;
    }

    .renewable-energy {
        background: #248a66;
    }

    .private-sector {
        background: #2886D0;
    }
}

#page-privacy,
#page-privacy-statement {
    .page-ttl {
        background: #fff url(/wpsys2026/wp-content/themes/est/assets/images/page/news-mv.webp) no-repeat bottom;
        height: 35vh;
        background-size: cover;

        .outer {
            padding: 10em 0;
        }
    }


}

#txt-content {
    h2 {
        border-bottom: solid 3px #5472cd;
        position: relative;
        width: fit-content;
        margin: 2em 0 0.6em 0;
    }

    h2:after {
        position: absolute;
        content: " ";
        display: block;
        border-bottom: solid 3px #014b7a;
        bottom: -3px;
        width: 20%;
    }

    p {
        margin-bottom: 0.6em;
    }
}

#category-filter-form {
    img {
        width: 2.2em;
        height: 2.2em;
        margin-right: 0.6em;
    }

    label {
        margin: auto 0.6em auto 0;
        padding-right: 0.6em;
        border-right: #014b7a 1px solid;
    }

    select {
        padding: 0.2em 0.4em;
        border: 1px solid #ccc;
    }
}


#single-news {
    h1 {
        font-size: 1.2em;
        font-weight: 400;
        margin: auto 0 auto 1em;
        padding: 0 0 0.2em 1em;
        border-left: #333 1px solid;
        height: 2em;
        display: flex;
        align-items: center;
    }

    .page-ttl {
        background: #fff url(/wpsys2026/wp-content/themes/est/assets/images/page/news-mv.webp) no-repeat bottom;
        height: 35vh;
        background-size: cover;

        .outer {
            padding: 10em 0;
        }
    }



    .news-list {
        width: 60%;
        min-width: 600px;

        .recruit .cat {
            border: 2px solid #f7931e;
            color: #f7931e;
        }

        .other .cat {
            border: 2px solid #248a66;
            color: #248a66;
        }

        a .news-cont {
            padding: 0.6em 1em;
            border-bottom: 1px solid #333;
        }

        a:first-child .news-cont {
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
        }
    }


    .post-date {
        color: #248a66;
        text-align: center;

        .date {
            font-size: 1.6em;
            margin-top: -0.4em;
        }
    }

    .cat {
        border: 2px solid #014b7a;
        font-weight: 600;
        color: #014b7a;
        text-align: center;
        padding: 0.2em 0;
        width: 6em;
        height: 2.2em;
        border-radius: 5px;
        margin: auto 0 auto auto;
    }

    .sec-recruit .cat {
        border: 2px solid #f7931e;
        color: #f7931e;
    }

    .sec-other .cat {
        border: 2px solid #248a66;
        color: #248a66;
    }

    .news-ttl {
        font-size: 1.2em;
        margin: auto 0;
        line-height: 1.4em;
        width: 70%;
    }

    .btn-news p {
        font-size: 110%;
        font-weight: 500;
        width: 10em;
        margin-top: 10em;
        padding: 0.4em 1em;
        color: #248a66;
        border: 1px solid #248a66;
        border-radius: 0.4em;
        background: rgba(255, 255, 255, 0.1);
    }

    .btn-news p:hover {
        color: #fff;
        background: #248a66;
    }

    .cat-list {
        width: 7em;

        button,
        a.filter-btn {
            text-align: center;
            margin-bottom: 0.4em;
            padding: 0.3em 0.4em;
            border-radius: 30px;
            background-color: #f1f1f1;
            width: 7em;
        }

        button.is-active,
        a.filter-btn.is-active {
            color: #fff;
            background-color: #248a66;
        }

        a.filter-btn {
            display: flex;
            justify-content: center;
        }
    }

    .article-header {
        margin-bottom: 2em;
    }

    .thumbnail {
        margin-bottom: 2em;
    }

    .btn-news {
        display: flex;
        justify-content: center;
    }
}

#page-company {
    .wht {
        color: #fff;
    }

    .blue {
        color: #014b7a;
    }

    .page-ttl {
        background: #014b7a url(/wpsys2026/wp-content/themes/est/assets/images/top/office.webp) no-repeat right;
        height: 35vh;
        background-size: contain;

        .outer {
            padding: 10em 0;
        }

        .ttl-left-block {
            color: #fff;
            border-left: #fff solid 0.6em;
        }
    }

    #bread {
        margin-top: 0;
    }


    h2 {
        border-bottom: solid 3px #5472cd;
        position: relative;
        width: 10em;
        height: 100%;
        padding-bottom: 0.3em;
        margin-bottom: 1em;
        color: #014b7a;
    }

    h2:after {
        position: absolute;
        content: " ";
        display: block;
        border-bottom: solid 3px #014b7a;
        bottom: -3px;
        width: 20%;
    }

    p {
        width: 50%;
    }

    .square {
        width: 3em;
        margin-top: 3em;
    }
}

#co1 {
    background: url('/wpsys2026/wp-content/themes/est/assets/images/common/left.webp') no-repeat left;
    background-size: contain;
    background-position-x: -80px;

    h2 {
        margin-right: 5em;
    }
}

#co2 {
    transform: skewY(5deg);
    border-top: 5px solid #014b7a;
    border-bottom: 5px solid #014b7a;
    border-image: linear-gradient(to right, #014b7a, #1e9cd7, #014b7a) 1;

    .outer {
        transform: skewY(-5deg);
        padding: 10em 0;
    }

    img {
        width: 40em;
    }

    p {
        margin-left: 35%;
    }
}


#co6 {
    img {
        width: 60%;
    }
}

#co7 {
    iframe {
        margin-bottom: 1em;
    }
}

#company-info {
    width: 100%;
    border-collapse: collapse;

    th,
    td {
        padding: 8px;
        border: 1px solid #ddd;
        text-align: left;
    }

    th {
        text-align: center;
    }
}

#company-info tr:nth-child(odd) {
    background-color: #fff;
}

#company-info tr:nth-child(even) {
    background-color: #f9f9f9;
}

#company-history {
    width: 100%;
    border-collapse: collapse;

    th,
    td {
        padding: 8px;
        border: none;
        text-align: left;
        background-color: transparent;
    }

    th {
        color: #014B7A;
        white-space: nowrap;
        padding-right: 20px;
    }
}

#content {
    .per .cat {
        border: 2px solid #014b7a;
        background-color: #014b7a;
        color: #fff;
        width: 10em;
        padding: 0.15em 0 0.2em;
    }

    &.sec-road-facilities .cat {
        border: 2px solid #f7931e;
        background-color: #f7931e;
    }

    &.sec-renewable-energy .cat {
        border: 2px solid #248a66;
        background-color: #248a66;
        width: 11em;
    }

    &.sec-private-sector .cat {
        border: 2px solid #2886D0;
        background-color: #2886D0;
    }

    .inner {
        width: 55%;
    }
}



@media (max-width: 1024px) {
    #works {
        .works-list {
            gap: 1%;
        }
    }

    #news {
        .news-list {
            width: 80%;
            min-width: 500px;
            margin-left: 1em;
        }
    }

    #page-company {
        #co1 {
            background: none;
        }
    }

    #page-service {
        .page-ttl {
            background: #fff url(/wpsys2026/wp-content/themes/est/assets/images/page/mv4.webp) no-repeat 0 bottom;
            background-size: cover;
        }
    }

    .tab-block {
        display: block;
    }

    #eq1 {
        background-size: 70%;
        background-position-x: -10px;

        .service-txt {
            color: #fff;
        }

        .bg-right {
            display: none;
        }
    }

    #eq2 {
        .line {
            bottom: 2em;
            width: 30em;
        }
    }

    .eq-img {
        width: 50%;
    }

    #copy {
        height: 40vh;
    }

    #footer {
        .footer-menu-main {
            margin-right: 0.4em;
        }

        .footer-menu-sub {
            margin-bottom: 0.4em;
        }
    }

    #content {
        .inner {
            width: 90%;
        }
    }
}

@media (max-width: 768px) {
    .btn-details p {
        margin: 2em 0 4em;
    }

    #header {
        .sp-menu-list {
            margin: 12em 0 auto;
        }
    }

    #mainview {
        .mv-slider {
            height: 50vh;
        }

        .catchcopy {
            position: absolute;
            width: 20em;
            height: auto;
            z-index: 100;
            left: 1em;
            bottom: 8em;
            object-fit: contain;
            filter: drop-shadow(2px 4px 6px #014b7a);
        }
    }

    #news {

        .left-menu,
        .news-list,
        .news-ttl {
            width: 100%;
        }

        .cat-list {
            justify-content: space-between;
            width: 100%;

            button,
            a.filter-btn {
                border-radius: 0;
                margin-bottom: 0;
                width: -webkit-fill-available;
            }
        }

        .news-cont {
            padding: 1em;
        }

        .news-ttl {
            margin-top: 0.2em;
        }

        .btn-news p {
            margin: 2em auto 4em;
            text-align: center;
        }

        .news-list {
            min-width: unset;
            margin: 0;
        }
    }

    #service {
        background-color: #014b7a;

        .outer {
            .name-point {
                top: -2em;
                right: 0;
                width: 18em;
                z-index: -1;
            }

            .bg-top {
                height: 50%;
            }
        }

        .left,
        .right {
            width: 100%;
            margin: 0;
        }

        .right {
            margin-top: 2em;
        }
    }

    #works {
        .ttl-left-block {
            margin-bottom: 2em;
        }

        .works-list {
            flex-wrap: wrap;

            a {
                width: calc(98% / 2);
                margin-bottom: 2%;
            }
        }

        .inner {
            .btn-details p {
                margin: 4em 0 6em;
            }
        }
    }

    #download {
        .btn-download p {
            width: 11em;
            margin-top: 2em;
        }
    }

    #copy {
        height: 30vh;

        .outer {
            padding: 6em 0;
        }

        h2 {
            font-size: 1.2em;
        }
    }

    #single-news {

        .left-menu,
        .news-list,
        .news-ttl {
            width: 100%;
        }

        .cat-list {
            justify-content: space-between;
            width: 100%;

            button,
            a.filter-btn {
                border-radius: 0;
                margin-bottom: 0;
                width: -webkit-fill-available;
            }
        }

        .news-cont {
            padding: 1em;
        }

        .news-ttl {
            margin-top: 0.2em;
        }

        .btn-news p {
            margin: 2em auto 4em;
            text-align: center;
        }

        .news-list {
            min-width: unset;
            margin: 0;
        }

        .cat {
            width: 8em;
        }

        .post-date {
            width: 100px;
        }

        h1 {
            margin-left: 0.5em;
            padding-left: 0.5em;
        }
    }

    #works-main {
        .works-cont {
            width: 100%;
        }
    }

    #footer {
        .footer-menu-main {
            a {
                display: block;
                font-size: 110%;
                padding: 0.6em 0;
                border-top: 1px solid #eaeaea;
            }

            a::after {
                content: '';
            }

            a:last-child {
                border-bottom: 1px solid #eaeaea;
            }
        }

        .footer-menu-sub {
            font-size: 110%;

            a {
                display: block;
                padding: 0.6em 0;
                border-bottom: 1px solid #eaeaea;
            }
        }

        .btn-contact p {
            margin: 2em auto 3em;
        }

        .banner-lists {
            flex-wrap: wrap;
            gap: 0.2em;

            img {
                width: 20%;
            }

            .column-block img {
                width: 6em;
            }
        }
    }

    #content {
        .inner {
            width: 95%;
        }
    }


    #page-contact {
        h2 {
            font-size: 1.4em;
        }

        #copy {
            h2 {
                font-size: 1em;
            }
        }
    }

    #txt-content {
        h2 {
            font-size: 1.4em;
        }
    }

    #page-company {
        p {
            width: 100%;
        }

        #co2 {
            p {
                margin: 2em 0;
            }
        }

        #co6 {
            img {
                width: 100%;
            }
        }

        #co7 {
            iframe {
                width: 100%;
            }
        }
    }

    #eq1,
    #eq2,
    #eq3,
    #eq4 {
        background-size: 100%;
        height: fit-content;

        h2 {
            width: 90%;
            margin-bottom: 1em;
        }

        .outer {
            padding: 0 0 5em 0;
        }

        .service-txt {
            margin-bottom: 3em;
        }
    }

    #eq1 {
        background-size: 100%;
        background-position-x: -10px;
    }

    #eq3 {
        .cur {
            right: 0;
            height: 30em;
        }
    }

    #eq4 {
        background: #f4f4f4;

        .block {
            width: 11em;
        }
    }

    .eq-img {
        width: 70%;
        position: relative;
        margin-top: 3em;
    }
}