/*ヘッダーナビ*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
    height: 84px;

    .navi {
        height: 100%;
        display: flex;
        font-size: 15px;

        ul.navi-menu {
            height: 100%;
            display: flex;
            gap: 23px;
            list-style: none;

            li {
                display: flex;
                height: 100%;
                align-items: center;

                a {
                    color: #222;
                    text-decoration: none;
                }

                a:hover {
                    opacity: .6;
                }
            }

            li.navi-menu-contact {
                background: linear-gradient(180deg, #1686BA 0%, #0068B7 100%);
                padding: 20px;

                a {
                    color: #fff;
                }

                svg {
                    top: 2px;
                    margin-right: 8px;
                    position: relative;
                }
            }
        }
    }

    .hamburger {
        position: relative;
        display: none;
        width: 32px;
        height: 24px;
        border: none;
        background: none;
        cursor: pointer;
        flex-direction: column;
        justify-content: space-between;
        padding: 0;
        z-index: 10;

        span {
            display: block;
            width: 100%;
            height: 3px;
            background: linear-gradient(180deg, #1686BA 0%, #0068B7 100%);
            transition: .3s;
        }
    }
}


/*body 共通CSS*/
* {
    font-family:
        "Noto Sans JP",
        -apple-system,
        BlinkMacSystemFont,
        "Helvetica Neue",
        "Hiragino Sans",
        "Hiragino Kaku Gothic ProN",
        "Yu Gothic",
        Meiryo,
        sans-serif;
    box-sizing: border-box;

    a {
        text-decoration: none;
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(140px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    width: 100%;
    max-width: 280px;
    height: auto;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 5px;
    text-align: center;
    box-shadow: 3px 3px #ccccccc2;
    padding: 10px 20px 10px 10px;
    transition: .3s;

    &:hover {
        opacity: 0.8;
        border-radius: 30px;
    }

    a {
        display: inline-block;
    }
}

.btn.btn-white {
    position: relative;
    background: #FFF;
    border: 1px solid #036AB8;
    margin-top: 60px;

    a {
        position: relative;
        color: #036AB8;

        i.fa-solid.fa-angle-right {
            position: absolute;
            right: -20px;
            top: 52%;
            transform: translateY(-50%);
        }
    }
}

.btn.btn-blue {
    position: relative;
    background: #036AB8;
    border: 1px solid #036AB8;
    margin-top: 60px;

    a {
        position: relative;
        color: #FFF;

        i.fa-solid.fa-angle-right {
            position: absolute;
            right: -20px;
            top: 52%;
            transform: translateY(-50%);
        }
    }
}



/*見出し*/
.heading {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2em;
    font-weight: bold;
    padding: 0.5em 0;
    word-break: auto-phrase;
    overflow: hidden;


    .jp {
        position: relative;
        left: 22px;
        color: #0068B7;
        font-size: 2rem;
        letter-spacing: 6.4px;
        z-index: 2;
    }

    .sub-en {
        svg {
            position: relative;
            top: 3px;
            margin-right: 5px;
        }

        position: relative;
        color: #0068B7;
        font-size: 1rem;
        font-weight: 500;
        opacity: 0.7;
        z-index: 2;
    }

    .bg-en {
        position: absolute;
        top: 27%;
        left: 0;
        transform: translateY(-50%);
        color: rgba(77, 139, 255, 0.20);
        font-family: "Noto Sans JP";
        font-size: 4rem;
        font-style: normal;
        font-weight: 100;
        line-height: normal;
        white-space: nowrap;
        pointer-events: none;
        z-index: 1;
    }
}

/*下層ページ メインビジュアル*/
.lower-img {
    position: relative;

    img {
        width: 100%;
    }

    .lower-img-txt {
        width: 90%;
        color: #fff;
        position: absolute;
        left: 3%;
        top: 62%;
        transform: translateY(-50%);

        .heading {
            padding: 1.5em 0;

            .bg-en {
                color: #0F598F;
                font-size: 6rem;
                font-weight: 900;
            }

            .jp {
                color: #fff;
            }
        }

        p {
            padding-left: 22px;
            line-height: 1.8rem;
        }
    }
}



.top-img {
    position: relative;
    object-fit: cover;

    img {
        width: 100%;
        height: 100%;
    }

    .top-img-txt {
        position: absolute;
        left: 85px;
        bottom: 55px;
    }

    .top-img-txt::before {
        content: "";
        position: absolute;
        left: -30px;
        top: 10px;
        width: 1px;
        height: 165px;
        background-color: #1EFFD7;
    }

    h1 {
        color: #fff;
        font-size: 50px;
        letter-spacing: 0.25em;

        span {
            color: #1EFFD7;
        }
    }

    p {
        color: #fff;
        font-size: 27px;
        font-weight: 500;
        margin-top: 13px;
        letter-spacing: 0.55rem;
    }

}

/*【HOME】転写マークについて*/
.top-wrapper-01 {
    background-image: url(../images/background01.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    margin-top: -5px;
    padding: 20px 0 30px 20px;
}

.top-wrapper-about {
    position: relative;
    width: 100%;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 30px 0 50px;
    overflow: hidden;

    .top-wrapper-about-inner {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        z-index: 2;
        position: relative;


        .top-wrapper-about-txt {
            width: 50%;

            h3 {
                color: #323B4D;
                font-family: "Noto Sans JP";
                font-size: 29px;
                font-style: normal;
                font-weight: 700;
                line-height: 65px;
                letter-spacing: 2px;
                margin-bottom: 45px;
            }

            span {
                color: #036AB8;

                .bg-white {
                    background: #fff;
                    padding: 0 10px;
                    margin: 0 6px;
                }
            }

            p {
                width: 78%;
                font-size: 15px;
                letter-spacing: 2px;
                line-height: 29px;
                text-align: left;
                margin: 30px 0;
            }
        }
    }
}

.top-wrapper-about-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45vw;
    max-width: 900px;
    min-width: 500px;
    z-index: 1;
}

.top-wrapper-about-img img {
    width: 100%;
    object-fit: cover;
}


/*製品情報*/

.top-wrapper-product {
    width: 97%;
    margin: 30px 0;
    margin-left: auto;
    padding: 80px 40px;
    background: #4dddff2e;
    border-radius: 20px 0 0 18px;

    .product-cards {
        position: relative;
        display: flex;
        gap: 40px;
        justify-content: space-around;
        margin-top: 50px;
    }

    .product-card-wrap {
        position: relative;
        width: 100%;
        max-width: 320px;
        z-index: 0;

        &::before {
            content: "";
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 8px;
            border: 1px solid #4D8BFF;
            z-index: -1;
        }

        &::after {
            content: "";
            position: absolute;
            top: -10px;
            right: -35px;
            width: 80px;
            height: 100px;
            background-image: url(../images/bg-img.png);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            z-index: -1;
        }

        .product-card {
            position: relative;
            background: #fff;
            padding: 0 24px 24px;
            z-index: 1;

            .card-label {
                position: absolute;
                top: -10px;
                font-size: 14px;
                color: #357CE3;
            }

            .card-num {
                font-size: 56px;
                font-weight: normal;
                color: #357CE3;
                margin-bottom: 12px;
                line-height: 1;
            }

            .card-title {
                font-size: 22px;
                font-weight: 700;
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 14px;

                svg {
                    position: relative;
                    top: 2px;
                }

                .en {
                    font-size: 18px;
                    font-weight: 400;
                }
            }

            .card-text {
                margin-bottom: 20px;
                font-size: 15px;
                line-height: 1.6;
            }

            .card-img img {
                width: 100%;
                border-radius: 12px;
            }
        }
    }

    .product-card-wrap:nth-child(2) {
        top: 40px;
    }

    .product-card-wrap:nth-child(3) {
        top: 80px;
    }

    .btn.btn-white {
        margin: 120px auto 0 40px;
    }
}

/*世界初の技術から、半世紀の歩みへ*/
.top-wrapper-02 {
    width: 100%;
    max-width: 1200px;
    color: #092D74;
    margin: auto;
    padding: 70px 20px;

    h2 {
        position: relative;
        color: #092D74;
        text-align: center;
        font-size: 35px;
        letter-spacing: 0.1rem;
        word-break: auto-phrase;



        span {
            font-size: 26px;
        }

        &::before {
            content: "From the world's first technology to a half-century journey";
            width: 100%;
            font-size: 3vw;
            position: absolute;
            bottom: -24px;
            left: 0;
            color: #cccccc33;
            text-wrap: nowrap;
            overflow: hidden;
            word-break: auto-phrase;
        }
    }

    .top-wrapper-02-flex {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
        margin-top: 50px;

        .top-wrapper-02-txt {
            width: 60%;
            font-size: 15px;
            background-image: url(../images/top-wrapper-02-txt-bg.png);
            background-repeat: no-repeat;
            background-size: cover;

            p {
                line-height: 1.8rem;
                letter-spacing: 0.2rem;
                margin-bottom: 30px;
            }

            span.border {
                border: 1px solid #092D74;
                padding: 0 5px;
            }
        }

        img {
            display: block;
            width: 38%;
        }
    }
}

/*品質管理*/
.top-wrapper-03 {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 90px 30px;
    margin: auto;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 100%;
        background-color: #f1f1f1;
        z-index: -1;
    }

    h2.heading {
        .jp {
            color: #0068B7;
        }

        .bg-en {
            color: #0068b724;
        }

        .sub-en {
            color: #0068B7;
        }
    }

    p.small {
        color: #0068B7;
        font-size: 14px;
        margin: 15px 0 0 20px;
        letter-spacing: 0.1rem;
    }

    /*NIKE認定証明*/
    .quality-control-contents {
        position: relative;
        width: calc(100% - 50px);
        max-width: 1150px;
        height: 425px;
        margin: 100px 60px 0 0;
        padding: 30px 20px;
        background: linear-gradient(270deg, #27C2EE 0%, #22A5FB 100%);

        .heading {
            margin: 50px 0 60px;

            .jp {
                color: #fff;
            }

            .sub-en {
                color: #fff;
                opacity: 1;

                svg {
                    top: 0;
                }
            }
        }
    }

    .quality-control-contents-txt {
        color: #fff;

        p {
            max-width: 500px;
            line-height: 1.8rem;
            margin: 0 0 30px 22px;
        }

    }

    .quality-control-contents-img {
        max-width: 430px;
        object-fit: contain;
        position: absolute;
        top: -12%;
        right: 0;
        transform: translateX(40px);

        img {
            width: 100%;
            height: 100%;
        }
    }

    .quality-control-contents.oeko-tex {
        position: relative;
        background: none;
        border: 4px solid #27b2f6;
        margin: 100px 0 0 60px;

        &::before {
            content: "";
            position: absolute;
            top: -160px;
            right: -10px;
            width: 100px;
            height: 160px;
            background-image: url(../images/top-wrapper-03-bg.png);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .quality-control-contents-txt {
            color: #22A5FB;
            padding-right: 40px;

            p {
                max-width: 550px;
                margin-left: auto;
            }
        }

        .heading {
            justify-content: right;

            .jp {
                color: #22A5FB;
            }

            .sub-en {
                color: #22A5FB;
            }
        }

        .quality-control-contents-img {
            max-width: 290px;
            top: -15%;
            left: 0;
            transform: translateX(25px);
        }
    }
}

/*環境に配慮した転写マーク*/
.top-wrapper-04 {
    background-image: url(../images/top-wrapper-04-bg.png);
    background-repeat: no-repeat;
    background-size: cover;

    .top-wrapper-04-contents {
        display: flex;
        gap: 50px;
        justify-content: center;
        align-items: center;
        padding: 50px 30px;

        .top-wrapper-04-contents-img {
            position: relative;
            width: 45%;
            max-width: 425px;


            img {
                width: 100%;
            }

            .top-wrapper-04-contents-img-txt {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 90%;
                text-align: center;
                color: #fff;

                h4 {
                    font-size: 25px;
                }

                span {
                    font-size: 14px;
                }

                p {
                    width: 85%;
                    font-size: 15px;
                    line-height: 1.6rem;
                    margin: 40px auto 0;
                }
            }
        }

        .top-wrapper-04-contents-txt {
            width: 55%;

            .top-wrapper-04-contents-txt-card {
                position: relative;
                display: flex;
                gap: 40px;
                align-items: center;
                color: #fff;
                margin-bottom: 15px;

                &::before {
                    content: "";
                    position: absolute;
                    top: 50%;
                    left: -17%;
                    transform: translateY(-50%);
                    width: 100px;
                    height: 10px;
                    background-image: url(../images/line-w.png);
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                }

                &:nth-child(1)::before {
                    transform: rotate(-28deg);
                    top: 63%;
                }

                &:nth-child(2)::before {
                    background-image: url(../images/line-w-short.png);
                    width: 39px;
                    left: -45px;
                }

                &:nth-child(3)::before {
                    transform: rotate(28deg);
                    top: 37%;
                }

                .top-wrapper-04-contents-txt-card-left {
                    width: 35%;

                    h5 {
                        position: relative;
                        font-size: 15px;
                        font-weight: normal;
                        text-align: center;
                        line-height: 1.8rem;
                        display: inline-flex;
                        justify-content: center;
                        align-items: center;
                        width: 225px;
                        height: 225px;
                        border-radius: 50%;
                        border: 1px solid #ffffff;
                        padding: 5px;

                        &::after {
                            content: "...";
                            position: absolute;
                            top: 50%;
                            transform: translateY(-50%);
                            right: -45px;
                            width: 40px;
                            display: block;
                            letter-spacing: 0.3rem;
                        }

                    }
                }

                .top-wrapper-04-contents-txt-card-right {
                    font-size: 14px;
                    padding-left: 7px;

                }
            }
        }
    }
}

/*お知らせ*/
.news-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 15px;

    .news {
        margin: 50px auto;

        .news-contents {
            display: flex;
            gap: 30px;
            width: 95%;
            max-width: 700px;
            font-size: 15px;
            margin: 20px auto;
            padding: 20px 15px;
            border-bottom: 1px solid #000000;
            cursor: pointer;

            &:hover {
                opacity: 0.4;
            }

            .news-title {
                width: 100%;
                text-align: left;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;

                a {
                    color: #222;
                    font-weight: 500;
                }
            }
        }
    }

    .btn.btn-blue {
        margin-top: 80px;
        margin-inline: auto;
    }
}

/*お問い合わせ*/
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
    background: linear-gradient(270deg, #27C2EE 0%, #22A5FB 100%);
    color: #fff;


    .heading {

        .bg-en {
            color: #ffffff3b;
        }

        .jp,
        .sub-en {
            color: #fff;
        }
    }

    .contact-wrapper-left {
        max-width: 430px;

        p {
            font-size: 14px;
            margin: 30px 0 20px 22px;
        }

        p.message {
            font-weight: 600;
            font-size: 20px;
            line-height: 2rem;

            span {
                font-size: 15px;
                margin-left: 3px;
            }
        }
    }

    .contact-wrapper-right {
        color: #fff;

        .contact-number {
            margin: 25px 0;

            .number-flex {
                position: relative;

                &::before {
                    content: '';
                    background-image: url(../images/phone.png);
                    background-size: contain;
                    position: absolute;
                    top: 55%;
                    left: -31px;
                    transform: translateY(-50%);
                    width: 22px;
                    height: 22px;
                }

                a {
                    color: #fff;
                    font-size: 27px;

                    &:hover {
                        opacity: 0.8;
                    }
                }

                span {
                    margin-left: 5px;
                    font-size: 15px;
                    font-weight: normal;
                }
            }

            p {
                font-size: 14px;
                font-weight: normal;
                margin-top: 5px;
            }

        }

        .btn {
            max-width: 350px;
            min-width: 300px;
            height: auto;
            font-size: 15px;
            letter-spacing: 2px;
            border: 1px solid #22A5FB;
            padding: 10px 10px 10px 40px;

            a {
                color: #22A5FB;
                font-size: 15px;
                font-weight: normal;

                img {
                    position: absolute;
                    top: 50%;
                    left: -25px;
                    transform: translateY(-50%);
                    width: 19px;
                    height: auto;
                }
            }
        }
    }
}

footer {
    padding: 50px 60px 15px;
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;

    .footer-flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 50px 0;

        .footer-left {
            .footer-menu {
                background: #ffffff8a;
                border: 1px solid #5551FE;
                padding: 15px 23px;

                ul {
                    list-style: none;

                    li {
                        margin: 9px 0;

                        a {
                            color: #092d74;
                            letter-spacing: 0.2rem;

                            .fa-diamond {
                                margin-right: 5px;
                            }

                            &:hover {
                                opacity: 0.6;
                            }
                        }
                    }
                }
            }
        }
    }

    .footer-right {
        color: #092d74;
        background: #ffffff8a;
        padding: 50px 0;
        border: 1px solid #5551FE;



        .offices {
            display: flex;
            flex-wrap: wrap;

            .offices-contents {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                border-right: 1px solid #5551FE;
                padding: 5px 20px;

                &:nth-child(3) {
                    border-right: none;
                }
            }

            .offices-name {
                font-size: 16px;
                letter-spacing: 0.2rem;

                .fa-circle {
                    margin-right: 5px;
                }

                p {
                    font-size: 14px;
                    letter-spacing: 0;
                    margin: 5px 0 0 25px;
                }
            }

            .btn {
                max-width: 180px;
                margin-top: 20px;
                margin-left: auto;
                padding: 5px 10px 5px 5px;
            }

            a {
                font-size: 14px;
            }

        }

    }

    small {
        display: block;
        text-align: center;
    }
}

/*下層ページ 共通*/

/*製品情報*/
.product-wrapper-01 {
    background-color: #F7F7F7;
    background-image: url(../images/product-wrapper-01-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: -5px;
    padding: 40px 50px 80px;

    .heading {
        margin: 40px 0;
    }

    .product-wrapper-01-contents {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 15px;
        justify-content: center;
        text-align: center;

        .product-wrapper-01-contents-cards {
            background: #EDF2FA;
            padding: 15px;
            border-radius: 10px;

            h5 {
                text-align: left;
                font-size: 17px;
            }

            p {
                font-size: 15px;
                margin-top: 15px;
            }
        }
    }
}

.product-wrapper-02 {
    background-image: url(../images/product-wrapper-02-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 30px;


    .heading {
        .bg-en {
            color: #ffffff42;
        }

        .jp {
            color: #fff;
        }

        .sub-en {
            color: #fff;
        }
    }

    p {
        color: #fff;
        font-size: 15px;
    }

    .product-wrapper-02-contents {
        margin: 80px 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        counter-reset: step;

        .product-wrapper-02-contents-cards {
            display: flex;
            gap: 10px;
            background: #fff;
            padding: 20px 30px;
            border-radius: 35px;

            .left {
                width: 90%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;

                .left-title {

                    h6 {
                        position: relative;
                        color: #1F82BE;
                        font-size: 25px;

                        &::before {
                            counter-increment: step;
                            content: counter(step, decimal-leading-zero);
                            position: absolute;
                            color: #0068b721;
                            font-size: 3rem;
                            bottom: -9px;
                        }

                        span {
                            color: #525655;
                            font-size: 16px;
                            margin-left: 5px;
                        }
                    }

                    p {
                        color: #1F82BE;
                        margin: 0;

                        span {
                            color: #525655;
                            font-size: 13px;
                            margin-left: 5px;
                        }
                    }

                }

                p {
                    margin: 10px 0;
                    color: #222222;
                }


                p.small {
                    margin: 0;
                    font-size: 12px;
                }


            }

            .right {
                max-width: 300px;

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

.product-wrapper-02.raster {
    background: #F1F1F1;

    .heading {
        .bg-en {
            color: rgba(77, 139, 255, 0.20);
        }

        .jp {
            color: #0068B7;
        }

        .sub-en {
            color: #0068B7;
        }
    }

    .product-wrapper-02-contents {
        .product-wrapper-02-contents-cards {
            border-radius: 5px;
            box-shadow: 3px 3px #ccc;
        }
    }
}

.product-wrapper-02.reflection {
    background: #3BC0DE;

    .product-wrapper-02-contents {
        .product-wrapper-02-contents-cards {
            border-radius: 5px;
            box-shadow: 3px 3px #ccc;
        }

    }
}

.product-wrapper-03 {
    background-image: url(../images/product-wrapper-03-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #F7F7F7;
    padding: 40px 30px 80px;

    .product-wrapper-03-img {
        width: 90%;
        margin: 50px auto;

        img {
            width: 100%;
        }
    }

    .product-wrapper-03-img-flex {
        width: 90%;
        margin: 50px auto;
        display: flex;
        gap: 20px;
        justify-content: center;

        img {
            width: 50%;
        }
    }
}

/*指導方法*/
.achievements-wrapper-01 {
    background-color: #F7F7F7;
    background-image: url(../images/product-wrapper-01-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -5px;
    padding: 80px 50px 80px;

    .achievements-wrapper-01-flex {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: center;

        .left {
            width: 23%;

            p.process {
                color: #0199E2;
                font-size: 22px;
                font-weight: bold;
                letter-spacing: 0.1em;
                margin: 0 0 20px 0;
            }

            p.process-txt {
                font-size: 15px;
                line-height: 1.8rem;
            }
        }

        .center {
            width: 20%;
            max-width: 360px;
            min-width: 350px;

            h4 {
                position: relative;
                z-index: 1;
                text-align: center;
                font-size: 20px;
                color: #72777D;

                &::before {
                    content: '';
                    position: absolute;
                    background-image: url(../images/flow-center-bg.png);
                    background-repeat: no-repeat;
                    background-size: contain;
                    width: 330px;
                    height: 330px;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    z-index: -1;
                }
            }
        }

        .right {

            .flow {
                position: relative;
                padding-left: 80px;

                &::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 45px;
                    width: 2px;
                    height: 100%;
                    background: #5fa8dc;
                }

                .flow-item {
                    display: flex;
                    align-items: center;
                    margin-bottom: 40px;
                    position: relative;

                    .icon {
                        width: 90px;
                        min-width: 90px;
                        aspect-ratio: 1 / 1;
                        border: 2px solid #5fa8dc;
                        border-radius: 50%;
                        background: #fff;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin-left: -80px;
                        z-index: 2;

                        img {
                            width: 50px;
                            height: auto;
                        }
                    }

                    .card {
                        border: 2px solid #5fa8dc;
                        border-radius: 0 999px 999px 0;
                        margin-left: -60px;
                        padding: 7px 20px 7px 65px;
                        background: #fff;

                        h5 {
                            color: #1f82be;
                            font-size: 18px;
                            margin: 0 0 2px;
                        }

                        p {
                            margin: 0;
                            font-size: 13px;
                            color: #333;
                        }
                    }
                }
            }
        }
    }


}

.achievements-wrapper-02 {
    background-image: url(../images/product-wrapper-02-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 30px;

    .heading {
        .bg-en {
            color: #ffffff42;
        }

        .jp {
            color: #fff;
        }

        .sub-en {
            color: #fff;
        }
    }

    p {
        color: #fff;
        padding-left: 22px;
    }

    .achievements-wrapper-02-contents {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin: 80px 0;

        .achievements-wrapper-02-cards {
            width: 48%;
            background: #fff;
            border-radius: 5px;
            padding: 30px 15px;

            .achievements-wrapper-02-cards-flex {
                display: flex;

                .left {
                    width: 85%;

                    p.achievements {
                        width: fit-content;
                        color: #fff;
                        background: #1686BA;
                        font-size: 14px;
                        font-weight: bold;
                        letter-spacing: 0.1rem;
                        margin: 15px 0 5px;
                        padding: 5px 15px;
                        border-radius: 5px;
                    }

                    p.achievements-txt {
                        color: #222;
                        font-size: 14px;
                    }
                }

                .right {
                    max-width: 180px;

                    img {
                        width: 100%;
                    }
                }
            }

        }

        .left-title {

            h6 {
                position: relative;
                color: #1F82BE;
                font-size: 25px;
                word-break: auto-phrase;

                &::before {
                    counter-increment: step;
                    content: counter(step, decimal-leading-zero);
                    position: absolute;
                    color: #0068b721;
                    font-size: 3rem;
                    bottom: -9px;
                }

                span {
                    color: #525655;
                    font-size: 16px;
                    margin-left: 5px;
                }
            }

            p {
                color: #1F82BE;
                margin: 0;

                span {
                    color: #525655;
                    font-size: 13px;
                    margin-left: 5px;
                }
            }
        }
    }
}

/*三英ケミカルについて*/

.company-wrapper-01 {
    background-image: url(../images/company-bg.png);
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 90px 30px;

    .massage-txt {
        color: #fff;
        background: linear-gradient(270deg, rgba(39, 194, 238, 0.80) 0%, rgba(34, 165, 251, 0.80) 100%);
        padding: 30px;
        width: 85%;
        margin: 50px auto;

        p {
            margin: 15px auto;
            line-height: 1.8rem;
        }

        p.massage-name {
            text-align: right;
            font-size: 20px;
            font-weight: bold;
            letter-spacing: 0.1rem;
            margin: 50px 0 0;
        }
    }

    .philosophy {
        p {
            padding: 30px;
            width: 85%;
            margin: auto;
            line-height: 2rem;
        }
    }
}

.company-wrapper-02 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 30px 90px;

    .heading {
        margin: 50px 0 25px;

        .bg-en {
            color: #ffffff38;
        }

        .jp {
            color: #fff;
        }

        .sub-en {
            color: #fff;
            opacity: 1;

            svg {
                top: 0;
            }
        }
    }


    .timeline {
        background-image: url(../images/product-wrapper-02-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 85%;
        color: #fff;
        margin: auto;
        padding: 30px 10px 0;
        border-radius: 60px;


        .timeline-list {
            width: fit-content;
            margin: auto;
            padding: 40px 0 0;

            .timeline-list-item {
                display: flex;
                line-height: 1.5;
                font-size: 16px;

                .date {
                    width: 21%;
                    padding: 0 23px 0 0;
                    text-align: right;
                }

                .content {
                    width: 79%;
                    position: relative;
                    padding: 0 20px 60px 30px;
                    border-left: 2px solid #fff;

                    &::before {
                        content: "";
                        position: absolute;
                        top: 2px;
                        left: -9px;
                        width: 16px;
                        height: 16px;
                        background-color: #fff;
                        transform: rotate(45deg);
                    }
                }
            }
        }
    }
}

.company-wrapper-03 {
    width: 100%;
    margin: auto;
    padding: 80px 30px 90px;
    background-image: url(../images/product-wrapper-01-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #F7F7F7;

    .company-profile {
        border-collapse: collapse;
        width: 100%;
        max-width: 700px;
        margin: 40px auto;

        th {
            color: #004e8a;
            padding: 1em;
        }

        td {
            background: #f7f7f7;
            padding: 1em 1em 1em 3em;
        }

        th {
            font-weight: bold;
            text-align: justify;
            text-align-last: justify;
            width: 25%;
        }
    }

}

.company-wrapper-04 {
    background-image: url(../images/company-bg02.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 90px 30px;

    .locations-list {
        padding: 30px;
        width: 85%;
        margin: 50px auto;

        .list {
            margin-bottom: 60px;
            padding: 0 0 20px 0;
            border-bottom: 4px solid #0068B7;

            table {
                width: 100%;
                margin-bottom: 20px;
                padding: 0 10px;

                th {
                    width: 30%;
                    vertical-align: top;
                    text-align: left;
                }

                td {
                    vertical-align: top;
                    font-size: 15px;
                    letter-spacing: 0.2rem;
                }
            }
        }
    }
}

.contact {
    background-image: url(../images/company-bg02.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 90px 30px;
}

.privacy-policy {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 20px;
    font-size: 15px;
    line-height: 1.9;
    color: #222;
    background: #fff;

    p {
        margin-bottom: 18px;
    }

    h2 {
        margin: 40px 0 16px;
        font-size: 16px;
        font-weight: bold;
    }

    ul {
        margin-left: 1.5em;
        padding-left: 0;
        list-style: none;
        counter-reset: level1;

        >li {
            counter-increment: level1;
            position: relative;
            padding-left: 2em;
            margin-bottom: 0.5em;

            &::before {
                content: counter(level1) ".";
                position: absolute;
                left: 0;
                top: 0;
            }

            /* 2階層目 */
            >ul {
                margin-top: 0.5em;
                margin-left: 1.5em;
                counter-reset: level2;

                >li {
                    counter-increment: level2;
                    position: relative;
                    padding-left: 2.5em;
                    margin-bottom: 0.4em;

                    &::before {
                        content: "(" counter(level2, lower-roman) ")";
                        position: absolute;
                        left: 0;
                        top: 0;
                    }

                    /* 3階層目 */
                    >ul {
                        margin-top: 0.4em;
                        margin-left: 1.5em;
                        counter-reset: level3;

                        >li {
                            counter-increment: level3;
                            position: relative;
                            padding-left: 2.5em;
                            margin-bottom: 0.3em;

                            &::before {
                                content: "(" counter(level3, lower-alpha) ")";
                                position: absolute;
                                left: 0;
                                top: 0;
                            }
                        }
                    }
                }
            }
        }
    }

    .contact-box {
        margin-top: 16px;
        padding-left: 10px;

        p {
            margin-bottom: 6px;
        }
    }

    .end {
        margin-top: 40px;
        text-align: right;
        font-weight: bold;
    }
}

/*転写マークについて*/
.whatis-wrapper-01 {
    background-image: url(../images/company-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 90px 30px;

    .whatis-wrapper-01-flex {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
        margin: 50px 0;

        .left {
            width: 60%;

            p {
                line-height: 1.8rem;
            }

        }

        .right {
            width: 33%;

            img {
                width: 100%;
            }
        }

    }

}

.whatis-wrapper-02 {
    background-image: url(../images/product-wrapper-02-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 30px;
    color: #fff;

    .heading {
        width: 85%;
        margin: auto;
        margin-bottom: 30px;

        .bg-en {
            color: #ffffff42;
        }

        .jp {
            color: #fff;
        }

        .sub-en {
            color: #fff;
        }
    }

    p {
        width: 85%;
        margin: auto;
        padding-left: 22px;
    }

    .whatis-wrapper-02-grid {
        width: 85%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 15px;
        font-weight: bold;
        margin: 50px auto;
        padding: 30px 10px 0;
        counter-reset: step;

        p {
            width: calc(100% - 35px);
            position: relative;
            left: 35px;
            margin: 0;
            padding-left: 0;

            &::before {
                counter-increment: step;
                content: counter(step, decimal-leading-zero);
                position: absolute;
                color: #0068b721;
                font-size: 3rem;
                top: 50%;
                transform: translateY(-50%);
                left: -35px;
            }
        }
    }

    .grid1 {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid2 {
        grid-area: 1 / 2 / 2 / 3;
    }

    .grid3 {
        grid-area: 2 / 1 / 3 / 2;
    }

    .grid4 {
        grid-area: 2 / 2 / 3 / 3;
    }

    .grid1,
    .grid2,
    .grid3,
    .grid4,
    .grid5 {
        display: flex;
        align-items: center;
        border-radius: 9px;
        background: #FFF;
        color: #004e8a;
        padding: 30px 15px;
        box-shadow:
            -2px -2px rgba(120, 190, 255, 0.4),
            2px -2px rgba(120, 190, 255, 0.4),
            2px 2px rgba(120, 190, 255, 0.4),
            -2px 2px rgba(120, 190, 255, 0.4),
            0 0 5px rgba(120, 190, 255, 0.35),
            0 0 5px rgba(120, 190, 255, 0.25) inset,
            0 0 9px rgba(120, 190, 255, 0.2);

    }

    .grid5 {
        grid-column: 1 / -1;
        flex-direction: column;

        p {
            left: 20px;
        }


        h6.big {
            font-size: 22px;
            color: #222;
            margin: 40px auto;
        }

        img {
            width: 100%;
            max-width: 1000px;
        }

    }
}

.product-wrapper-02.example {
    background-image: url(../images/company-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    margin: auto;
    padding: 90px 30px;

    .heading {
        width: 85%;
        margin: 0 auto;
    }

    .product-wrapper-02-contents {
        width: 85%;
        margin: 40px auto;

        .product-wrapper-02-contents-cards {
            .left {
                justify-content: flex-start;

                h6 {
                    word-break: auto-phrase;
                }

            }

            .right {
                max-width: none;
                max-height: 150px;

                img {
                    height: 100%;
                    object-fit: contain;
                }
            }
        }
    }
}

.whatis-wrapper-03 {
    width: 100%;
    background-color: #3BC0DE;
    color: #fff;
    margin: auto;
    padding: 90px 30px;

    .heading {
        .bg-en {
            color: #ffffff45;
        }

        .jp {
            color: #fff;
        }

        .sub-en {
            color: #fff;
        }
    }

    .whatis-wrapper-03-flex {
        width: 100%;
        max-width: 1000px;
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
        margin: 40px auto;

        .left {
            width: 30%;
            max-width: 300px;

            img {
                width: 100%;
            }
        }

        .right {
            width: 70%;

            p {
                font-size: 15px;
                line-height: 2rem;
            }
        }
    }

}

.top-wrapper-03.quality-policy {
    max-width: none;
    background-image: url(../images/company-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
	max-width: 1200px;
    margin: auto;
    padding: 90px 30px;

    &::before {
        display: none;
    }


    .quality-control-contents.oeko-tex {
        &::before {
            display: none;
        }
    }

    h3 {
        font-size: 22px;
        color: #434141;
        text-align: center;
        margin: 120px auto 0;
        letter-spacing: 0.2rem;

        span {
            color: #0068B7;
        }
    }

    .quality-policy-flex {
        display: flex;
        gap: 15px;
        justify-content: center;
        align-items: center;
        margin: 15px auto;

        img {
            width: 53%;
            max-width: 500px;
        }

        .right {
            width: 45%;

            p {
                font-size: 15px;
                line-height: 2rem;
            }
        }

    }
}

.quality-wrapper-01 {
    background-image: url(../images/product-wrapper-02-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 30px;
    color: #fff;

    p {
        font-size: 15px;
        line-height: 1.8rem;
        padding-left: 22px;
    }

    .heading {
        margin: 0 0 40px;

        .bg-en {
            color: #ffffff42;
        }

        .jp {
            color: #fff;
        }

        .sub-en {
            color: #fff;
        }
    }

    .quality-wrapper-01-flex {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin: 40px auto;

        .left {
            width: 60%;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 5px;

            .left-contents {
                display: grid;
                align-items: center;
                background: #fff;
                color: #0169b8;
                text-align: center;
                padding: 10px 20px;
                border-radius: 5px;
                box-shadow: 2px 2px #6c6464;

                p {
                    font-weight: bold;
                    padding-left: 0;
                }

                span {
                    color: #222;
                }

            }
        }

        .right {
            width: 35%;

            img {
                width: 100%;
            }
        }
    }

}

.quality-wrapper-02 {
    background-image: url(../images/equipment-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 30px;
    background-color: #F7F7F7;

    .quality-wrapper-02-flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        max-width: 1000px;
        margin: 40px auto;
        counter-reset: circle-num;
    }

    .circle {
        width: calc(25% - 15px);
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #fff;
        box-shadow: 2px 2px 2px 2px #ccc;
        padding: 10px;
        text-align: center;

        p {
            position: relative;
            width: 100%;
            color: #222;
            margin: 0;
            z-index: 1;

            &::before {
                counter-increment: circle-num;
                content: counter(circle-num, decimal-leading-zero);
                position: absolute;
                top: -55px;
                left: 5%;
                font-size: 3rem;
                font-weight: bold;
                color: #E5F0F7;
                z-index: -1;
            }
        }
    }
}

.quality-wrapper-03 {
    width: 100%;
    background-color: #3BC0DE;
    color: #fff;
    margin: auto;
    padding: 70px 30px;

    .heading {
        .bg-en {
            color: #ffffff45;
        }

        .jp {
            color: #fff;
        }

        .sub-en {
            color: #fff;
        }
    }

    .quality-wrapper-03-flex {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
        max-width: 1000px;
        margin: 40px auto;

        .left {
            width: 45%;

            p {
                line-height: 2rem;
                padding: 20px;
            }
        }

        .right {
            width: 55%;

            img {
                width: 100%;
            }
        }
    }
}

/*お知らせ一覧*/
.news-archive-wrapper {
    display: flex;
    width: calc(100% - 20px);
    max-width: 1200px;
    margin: 80px auto;
    gap: 40px;

    .heading {
        margin-bottom: 50px;
    }

    .news-main {
        flex: 1;
    }

    .news-item {
        display: flex;
        gap: 20px;
        padding: 25px 0;
        border-bottom: 1px solid #e5e5e5;

        .news-thumb {
            width: 220px;
            aspect-ratio: 4 / 3;

            img {
                width: 100%;
                height: 100%;
                border-radius: 6px;
                object-fit: cover;
            }
        }

        .news-body {
            flex: 1;

            .news-category {
                display: inline-block;
                font-size: 12px;
                padding: 4px 8px;
                border: 1px solid #006ab8;
                border-radius: 3px;
                margin-bottom: 8px;

                a {
                    color: #222;
                }
            }

            .news-title {
                font-size: 18px;
                margin: 5px 0;

                a {
                    color: #222;

                    &:hover {
                        opacity: 0.6;
                    }
                }
            }

            .news-date {
                font-size: 13px;
                color: #0068b7;
                display: block;
                margin-bottom: 10px;
            }

            .news-excerpt {
                font-size: 14px;
                line-height: 1.7;
            }
        }
    }

    .nav-links {
        text-align: center;
        margin: 50px auto;

        span.page-numbers.current {
            color: #fff;
            padding: 3px 10px;
            background: #016fb9;
            border-radius: 3px;
        }

        a.page-numbers {
            color: #016fba;
            padding: 3px 10px;
            transition: .2s;

            &:hover {
                background: #eaeaea;
                border-radius: 3px;

            }
        }
    }

    .news-pagination {
        text-align: center;
        margin-top: 80px;

        a.prev-post,
        a.next-post {
            width: 40%;

            display: inline-block;
            font-size: 14px;
            color: #fff;
            background: #016fb9;
            margin: 0 10px;
            padding: 10px 15px;
            border-radius: 5px;
        }
    }
}

/*お知らせ詳細*/
main.single-news {
    width: calc(100% - 20px);
    max-width: 800px;
    margin: 50px auto 80px;

    h1 {
        font-size: 23px;
        color: #222;
        margin-bottom: 10px;
    }

    time {
        color: #919191;
    }

    .single-thumb {
        margin: 40px auto 60px;

        img {
            width: 100%;
            height: 100%;
        }
    }

    .single-content {
        font-size: 15px;
        line-height: 1.8rem;
    }
}

/*お知らせ一覧サイドバー*/
/* お知らせ一覧サイドバー */
.sidebar {
    width: 280px;

    .sidebar-box {
        padding: 20px;
        border: 1px solid #046eb84a;
        border-radius: 6px;
        margin-bottom: 15px;
    }

    .sidebar-box.search {
        form {
            display: flex;
            gap: 7px;
            width: 100%;
        }

        .sidebar-search-input {
            width: 100%;
            border: 1px solid #ccc;
            font-size: 13px;
            line-height: 2.4rem;
            padding: 0 10px;
            box-sizing: border-box;
        }

        .sidebar-search-btn {
            width: 65px;
            border: none;
            background: #046eb8;
            color: #fff;
            font-size: 14px;
            padding: 8px 0;
            border-radius: 4px;
            cursor: pointer;

            &:hover {
                opacity: 0.85;
            }
        }
    }


    .sidebar-title {
        font-size: 16px;
        margin-bottom: 15px;
        border-bottom: 2px solid #046eb8;
        padding-bottom: 10px;
    }

    .news-category-list {

        li {
            margin-bottom: 10px;
            list-style: none;
            width: fit-content;
            padding: 3px 15px;
            border: 1px solid #0169b8;
            border-radius: 5px;
        }

        a {
            font-size: 14px;
            color: #333;
            text-decoration: none;

            &:hover {
                color: #0068b7;
            }
        }
    }

    .news-category-list.monthly {
        li {
            border: none;
            border-radius: 0;
        }
    }

    .news-category-list.new {
        li {
            border: none;
            border-radius: 0;
            border-bottom: 1px solid #046eb8;
            padding: 3px 10px 10px;

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