.design {
    .layout {
        .lead {
            @media (width<=768px) {
                width: 100%;
            }
        }

        .wrapper {
            width: 80%;
            margin: 0 auto;
            display: flex;
            gap: 16px;
            justify-content: space-around;
            padding: 16px 0 48px;

            @media (width<=768px) {
                width: 100%;
            }

            .outer {
                display: grid;

                a {
                    padding: 16px 0;
                    text-align: center;
                    text-decoration: underline;
                    text-underline-offset: 4px;
                    /* 文字と下線の距離 */
                }
            }
        }

        .pc-wrapper {
            width: 80%;
            margin: 0 auto;
            display: grid;
            gap: 48px;
            justify-content: space-around;
            padding: 16px 0 48px;

            @media (width<=768px) {
                width: 100%;
            }

            .outer {
                display: grid;

                a {
                    padding: 16px 0;
                    text-align: center;
                    text-decoration: underline;
                    text-underline-offset: 4px;
                    /* 文字と下線の距離 */
                }
            }
        }

        .under-wrapper {
            width: 80%;
            margin: 0 auto;

            @media (width<=768px) {
                width: 100%;
            }

            .design-lead {
                font-weight: bold;
                font-size: 20px;
                position: relative;
                padding-left: 16px;

                &::before {
                    content: "";
                    width: 8px;
                    height: 100%;
                    background-color: rgb(255, 128, 0);
                    position: absolute;
                    left: 0;
                    border-radius: 1px;
                }

                @media (width<=768px) {
                    font-size: 18px;
                }
            }
        }
    }
}