@charset "UTF-8";

.title-en {

    &::first-letter {
        color: var(--theme-purple)
    }
}

.intro {
    margin-top: 3.4rem;

    @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-purple);

        @media screen and (max-width: 767px) {
            border: 1px solid var(--theme-purple);
        }

        &::before {
            background-color: var(--theme-purple);
        }

        &::after {
            background-color: var(--theme-purple);
        }

        .btn-txt {
            color: var(--theme-purple);
        }
    }
}

.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-purple);
        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 {
    padding-bottom: 20px;

    @media screen and (max-width: 767px) {
        padding-bottom: 10px;
    }

    .frame {
        position: relative;
        margin-top: 9rem;
        border: 2px solid var(--theme-purple);
        padding: 8rem 14.7rem 6rem;

        @media screen and (max-width: 767px) {
            margin-top: 50px;
            border: 1px solid var(--theme-purple);
            padding: 50px 15px 30px;

        }

        .title {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 27.5rem;
            height: 5.4rem;
            border-radius: 2.7rem;
            background-color: var(--theme-purple);
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            font-size: 2.2rem;
            color: #FFFFFF;

            @media screen and (max-width: 767px) {
                width: 200px;
                height: 40px;
                border-radius: 20px;
                font-size: 16px;
            }
        }

        .graph {}

        .remark {
            padding: 6rem 2.8rem 0;
            font-size: 1.6rem;
            line-height: 1.62;

            @media screen and (max-width: 767px) {
                padding: 30px 0 0;
                font-size: 14px;
            }
        }

        .google-partner {
            width: fit-content;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 4rem auto 2rem;
            gap: 2rem;

            @media screen and (max-width: 767px) {
                flex-direction: column;
                margin: 3rem auto 1rem;
                gap: 1rem;
            }

            .icon {
                width: 16rem;

                @media screen and (max-width: 767px) {
                    width: 12rem;
                }
            }

            .statement {
                font-size: 1.6rem;

                @media screen and (max-width: 767px) {
                    font-size: 1.4rem;
                    text-align: center;
                }
            }
        }

    }

}

.products {
    .type {
        margin-top: 7.5rem;
        border-bottom: 1px solid #000;
        font-weight: 700;
        font-size: 2.2rem;
        letter-spacing: 0.08em;
        width: 100%;
        padding-bottom: 2.6rem;
        position: relative;

        &::after {
            content: "";
            width: 13.8rem;
            height: 0.5rem;
            background-color: var(--theme-purple);
            position: absolute;
            bottom: -0.3rem;
            left: 0;
        }

        @media screen and (max-width: 767px) {
            margin-top: 40px;
            font-size: 18px;
            padding-bottom: 15px;

            &::after {
                width: 100px;
                height: 3px;
                bottom: -2px;
            }
        }
    }

    .items {
        margin: 4.2rem 0 8.4rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 5.3rem;
        row-gap: 5rem;

        @media screen and (max-width: 767px) {
            margin: 35px 0 40px;
            grid-template-columns: 1fr;
            row-gap: 35px;
        }

        .item {
            .image-box {
                width: 100%;
                aspect-ratio: 1.5;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 2rem;
                background-image: linear-gradient(to right, #f5f5f5, #e0e0e0);

                @media screen and (max-width: 767px) {
                    padding: 10px;
                }

                & img {
                    max-height: 100%;
                }
            }

            .title {
                margin-top: 2.5rem;
                font-weight: 700;
                font-size: 2rem;
                line-height: 1.3;
                letter-spacing: 0.08em;

                @media screen and (max-width: 767px) {
                    margin-top: 10px;
                    font-size: 16px;
                }
            }

            .desc {
                margin-top: 1.4rem;
                font-size: 1.6rem;
                line-height: 1.62;

                @media screen and (max-width: 767px) {
                    margin-top: 8px;
                    font-size: 14px;
                }

                .in-link {
                    text-decoration: underline;
                }
            }

            .add-link {
                margin: 1rem 0 0 auto;
                font-size: 1.6rem;
                font-weight: bold;
                width: fit-content;
                position: relative;
                display: block;
                text-decoration: underline;
                text-underline-offset: 0.2em;

                &::before {
                    content: "";
                    position: absolute;
                    left: -3rem;
                    top: 50%;
                    width: 2rem;
                    height: 0.2rem;
                    background: black;
                    transform: translate(0, -50%);
                }

                &::after {
                    content: "";
                    position: absolute;
                    left: -2rem;
                    top: 50%;
                    width: 1rem;
                    height: 1rem;
                    border-top: 0.2rem solid black;
                    border-right: 0.2rem solid black;
                    transform: translate(0, -50%) rotate(45deg);
                }

                @media screen and (max-width: 767px) {
                    margin-top: 5px 0 0 auto;
                    font-size: 14px;

                    &::before {
                        left: -27px;
                        top: 50%;
                        width: 18px;
                        height: 1px;
                    }

                    &::after {
                        left: -18px;
                        width: 8px;
                        height: 8px;
                        border-top: 1px solid black;
                        border-right: 1px solid black;
                    }
                }
            }
        }
    }
}

.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 {

        .genre:nth-child(1) {
            display: none;
        }
    }
}