@charset "UTF-8";

.title-en {

    &::first-letter {
        color: var(--theme-gray);
    }
}

.intro {
    margin-top: 1.8rem;

    @media screen and (max-width: 767px) {
        margin-top: 0;
    }

    .intro-title {
        font-weight: 700;
        font-size: 3.6rem;
        line-height: 1.5;
        letter-spacing: 0.08em;

        @media screen and (max-width: 767px) {
            font-size: 20px;
        }
    }

    .intro-text {
        margin-top: 3.2rem;
        font-size: 1.6rem;
        line-height: 1.88;

        @media screen and (max-width: 767px) {
            margin-top: 20px;
            font-size: 14px;
        }
    }
}

.two-btns {
    margin-top: 6.1rem;
    margin-bottom: 10.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;

    @media screen and (max-width: 767px) {
        margin-top: 30px;
        margin-bottom: 60px;
        flex-direction: column;
        gap: 20px;
    }

    .two-btn:last-child {
        border: 2px solid var(--theme-gray);

        @media screen and (max-width: 767px) {
            border: 1px solid var(--theme-gray);
        }

        &::before {
            background-color: var(--theme-gray);
        }

        &::after {
            background-color: var(--theme-gray);
        }

        .btn-txt {
            color: var(--theme-gray);
        }
    }
}

.section-title {
    margin: 10.2rem auto 6rem;
    width: fit-content;
    font-family: 'Urbanist';
    font-weight: 900;
    font-size: 4rem;
    letter-spacing: 0.1em;
    position: relative;
    text-transform: uppercase;

    &::after {
        content: "...";
        font-family: "Noto Sans JP";
        font-weight: 900;
        font-size: 3.7rem;
        letter-spacing: 0.2em;
        color: var(--theme-gray);
        position: absolute;
        bottom: -1.8rem;
        left: 50%;
        transform: translateX(-50%);
    }

    @media screen and (max-width: 767px) {
        margin: 50px auto 30px;
        font-size: 26px;

        &::after {
            font-size: 20px;
            bottom: -12px;
        }
    }
}

.strengths {

    .boxes {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5.3rem;
        padding-top: 0.6rem;

        @media screen and (max-width: 767px) {
            grid-template-columns: 1fr;
            gap: 40px;
            margin-top: 10px;
        }

        .box {
            & img {
                width: 26.6rem;
                display: block;
                margin: auto;

                @media screen and (max-width: 767px) {
                    width: 160px;
                }
            }

            .bold {
                margin-top: 3.4rem;
                font-family: 'Noto Sans JP';
                font-weight: 700;
                font-size: 1.8rem;
                text-align: center;
                letter-spacing: 0.08em;

                @media screen and (max-width: 767px) {
                    margin-top: 15px;
                    font-size: 16px;
                }
            }

            .normal {
                margin-top: 1.4rem;
                font-size: 1.4rem;
                line-height: 2.4rem;

                @media screen and (max-width: 767px) {
                    margin-top: 10px;
                    font-size: 14px;
                    line-height: 1.8;
                }
            }
        }
    }
}

.products {
    padding-top: 2.5rem;

    @media screen and (max-width: 767px) {
        padding-top: 10px;
    }

    .type {
        margin-top: 7rem;
        border-bottom: 1px solid #000;
        font-weight: 700;
        font-size: 2.2rem;
        line-height: 1.5;
        letter-spacing: 0.08em;
        width: 100%;
        padding-bottom: 2rem;
        position: relative;

        &::after {
            content: "";
            width: 13.8rem;
            height: 0.5rem;
            background-color: var(--theme-gray);
            position: absolute;
            bottom: -0.3rem;
            left: 0;
        }

        @media screen and (max-width: 767px) {
            margin-top: 40px;
            font-size: 18px;
            padding-bottom: 10px;

            &::after {
                width: 100px;
                height: 3px;
                bottom: -2px;
            }
        }
    }

    .items {
        .item {
            padding-top: 5rem;
            display: flex;
            justify-content: space-between;

            @media screen and (max-width: 767px) {
                padding-top: 35px;
                flex-direction: column-reverse;
            }

            .left-txt {
                width: 71.2rem;

                @media screen and (max-width: 767px) {
                    width: 100%;
                    margin-top: 20px;
                }

                .head {
                    font-weight: 700;
                    font-size: 3rem;
                    letter-spacing: 0.08em;

                    @media screen and (max-width: 767px) {
                        font-size: 18px;
                    }
                }

                .body {
                    margin-top: 1.4rem;
                    font-size: 1.6rem;
                    line-height: 1.88;

                    @media screen and (max-width: 767px) {
                        margin-top: 0;
                        font-size: 14px;
                    }

                    .pdf {
                        position: relative;
                        display: block;
                        margin-top: 2rem;
                        width: fit-content;
                        border: 1px solid #707070;
                        padding: 0.5em 2em;
                        border-radius: 1rem;

                        &::after {
                            content: "";
                            width: 1.3rem;
                            height: 1.3rem;
                            background: url(../../common/img/external_dark.svg);
                            background-size: contain;
                            background-repeat: no-repeat;
                            position: absolute;
                            right: 1rem;
                            top: 50%;
                            transform: translateY(-50%);
                        }

                        @media screen and (max-width: 767px) {
                            margin-top: 12px;
                            margin-top: 12px;
                            padding: 0.3em 1.3em 0.3em 0.5em;
                            border-radius: 7px;

                            &::after {
                                width: 10px;
                                height: 10px;
                                right: 5px;
                            }
                        }
                    }
                }

                .green-title {
                    margin-top: 3.7rem;
                    font-weight: 700;
                    font-size: 2rem;
                    letter-spacing: 0.08em;
                    color: var(--theme-gray);

                    @media screen and (max-width: 767px) {
                        margin-top: 20px;
                        font-size: 16px;
                    }
                }

                .list {
                    margin-top: 0.9rem;
                    font-weight: 500;
                    font-size: 1.4rem;
                    line-height: 1.86;

                    @media screen and (max-width: 767px) {
                        margin-top: 8px;
                        font-size: 14px;
                    }
                }

                .black-btn {
                    margin-top: 4.1rem;
                    width: 26.2rem;
                    height: 5rem;
                    border-radius: 2.5rem;
                    background-color: #000;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-weight: 900;
                    font-size: 1.4rem;
                    color: #FFFFFF;

                    @media screen and (max-width: 767px) {
                        margin-top: 20px;
                        width: 220px;
                        height: 40px;
                        border-radius: 20px;
                        font-size: 14px;
                    }
                }
            }

            .right-img {
                width: 53.2rem;
                margin-top: 1rem;

                @media screen and (max-width: 767px) {
                    width: 100%;
                    margin-top: 0;
                }

                .head {
                    font-weight: 700;
                    font-size: 3rem;
                    letter-spacing: 0.08em;

                    @media screen and (max-width: 767px) {
                        font-size: 18px;
                        margin-bottom: 15px;
                    }
                }

                & img {}
            }
        }
    }

    .extra-text {
        margin: 4rem auto 0;
        border: 2px solid #707070;
        border-radius: 2rem;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 1rem;
        width: fit-content;
        padding: 2rem 5rem;

        @media screen and (max-width: 767px) {
            margin: 20px auto 0;
            border: 1px solid #707070;
            border-radius: 10px;
            gap: 5px;
            padding: 15px;
        }

        .caution {
            width: 3.3rem;
            margin-top: 1rem;

            @media screen and (max-width: 767px) {
                width: 16px;
                margin-top: 4px;
            }
        }

        .txt {
            font-size: 2.5rem;

            @media screen and (max-width: 767px) {
                font-size: 13px;
            }
        }
    }

    .addition {
        display: flex;
        align-items: flex-start;
        gap: 1rem;

        @media screen and (max-width: 767px) {
            gap: 7px;
        }

        & img {
            width: 5rem;
            margin-left: 1rem;
            margin-top: 0.4rem;

            @media screen and (max-width: 767px) {
                width: 44px;
                margin-left: 7px;
                margin-top: 7px;
            }
        }

        & span {}
    }
}

.others {
    margin-top: 8rem;
    margin-bottom: 14rem;

    @media screen and (max-width: 767px) {
        margin-top: 60px;
        margin-bottom: 70px;
    }

    .button {
        display: block;
        margin: auto;
        width: 26.2rem;
        height: 5rem;
        border-radius: 2.5rem;
        background-color: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;

        &::after {
            content: "";
            width: 1.1rem;
            height: 1.1rem;
            background-image: url(../../img/page/creative/external.svg);
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            right: 1.4rem;
            top: 50%;
            transform: translateY(-59%);
        }

        @media screen and (max-width: 767px) {
            width: 200px;
            height: 40px;
            border-radius: 20px;

            &::after {
                width: 9px;
                height: 9px;
                right: 10px;
            }
        }

        .button-txt {
            font-weight: 900;
            font-size: 1.4rem;
            text-align: center;
            color: #FFFFFF;

            @media screen and (max-width: 767px) {
                font-size: 12px;
            }
        }
    }

    .genres {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.4rem;

        @media screen and (max-width: 767px) {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }
}