@charset "utf-8";

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
xmp {
    margin: 0;
    padding: 0
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

fieldset,
img {
    border: 0
}

ol,
ul {
    list-style: none
}

caption,
th {
    text-align: left
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal
}

figure {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}



body {
    min-height: 100dvh;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-size: 100%
}

a {
    color: inherit;
    text-decoration: none;
}

a,
button {
    cursor: pointer;
}

/* reset end */


:root {
    --body-text: rgb(219, 233, 255);
    --black: rgb(51, 51, 51);
    --very-black: rgb(24, 24, 24);
    --white: rgb(242, 244, 247);
    --header-footer: rgb(31, 45, 61);
    --main-bg: rgb(25, 48, 73);

    --accent: rgb(32, 201, 151);
    --btn: rgb(255, 128, 0);
    --color-subtle: rgb(245, 225, 187);
    --color-light-accent: rgb(178, 245, 221);
    --color-deep-accent: rgb(128, 0, 32);
    --color-gold: rgb(212, 175, 55);
    /*  background: linear-gradient(90deg, #FFD95E, #FF7E29);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                color: transparent;
                font-family: 'Shippori Mincho', serif;
                font-weight: bold;
                font-size: 24px;
                line-height: 1; */

    /*      background: linear-gradient(135deg, rgb(255, 140, 0), rgb(255, 100, 0)); */
}


body {
    font-family: 'Noto Sans JP', 'Yu Gothic UI', 'Hiragino Kaku Gothic ProN', sans-serif;
    background-color: rgb(219, 233, 255);
    color: rgb(219, 233, 255);
    max-width: 1250px;
    margin: 0 auto;
    line-height: 1.75;


    /* header start */
    header {
        z-index: 50;
        background-color: rgb(31, 45, 61);
        position: fixed;
        top: 0;
        height: 76px;
        width: 100%;
        max-width: 1250px;
        padding: 0 16px;
        display: flex;
        column-gap: 16px;
        justify-content: space-between;
        align-items: center;

        @media (width<=768px) {
            padding: 0 4px;
            height: 52px;
        }

        .logo {
            flex-shrink: 0;
            margin-top: -4px;

            a {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                background: linear-gradient(90deg, #FFD95E, #FF7E29);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                color: transparent;
                font-family: 'Shippori Mincho', serif;
                font-weight: bold;
                font-size: 24px;

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

                span {
                    font-size: 11px;

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

        .ham {
            display: none;
        }

        .bars {
            display: none;

            @media (width<=768px) {
                z-index: 300;
                display: flex;
                justify-content: center;
                width: 48px;
                height: 48px;
                background-color: transparent;
                position: absolute;
                right: 4px;

                span {
                    transition: .3s ease;
                    width: 32px;
                    height: 4px;
                    background-color: aliceblue;
                    border-radius: 4px;
                    position: absolute;

                    &:nth-child(1) {
                        top: 10px;
                    }

                    &:nth-child(2) {
                        top: 22px;
                    }

                    &:nth-child(3) {
                        bottom: 10px;
                    }
                }
            }
        }

        .light-dark {
            display: none;

            @media (width<=768px) {
                z-index: 100;
                display: block;
                position: absolute;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100dvh;
                background-color: black;
                opacity: .6;
            }
        }

        .layout {
            display: flex;
            height: 100%;
            column-gap: 24px;
            display: flex;
            justify-content: center;
            align-items: center;

            nav {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100%;

                @media (width<=768px) {
                    z-index: 200;
                    position: absolute;
                    top: 0;
                    right: -100%;
                    width: 50%;
                    height: 100dvh;
                    background-color: rgba(31, 45, 61, 0.7);
                    transition: .3s ease;
                }


                ul {
                    display: flex;
                    flex-direction: row;
                    column-gap: 24px;
                    row-gap: 8px;
                    flex-wrap: wrap;
                    align-items: center;

                    @media (width<=768px) {
                        flex-direction: column;
                        row-gap: 24px;
                        align-items: flex-start;
                    }
                }
            }

            .btn {
                z-index: 300;
                height: 100%;
                flex-shrink: 0;
                display: flex;
                justify-content: center;
                align-items: center;

                @media (width<=768px) {
                    position: absolute;
                    right: 64px;
                }

                a {
                    height: 48px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 0 16px;
                    border-radius: 4px;
                    font-weight: bold;
                    background: linear-gradient(135deg, rgb(255, 140, 0), rgb(255, 100, 0));

                    @media (width<=768px) {
                        height: 36px;
                        padding: 0 12px;

                    }
                }
            }
        }

        @media (width<=768px) {
            .ham:checked~.layout nav {
                right: 0;
            }

            .ham:checked+.bars span {
                &:nth-child(1) {
                    top: 22px;
                    transform: rotate(45deg);
                }

                &:nth-child(2) {
                    opacity: 0;
                }

                &:nth-child(3) {
                    bottom: 22px;
                    transform: rotate(-45deg);
                }
            }

            .ham:checked~.light-dark {
                right: 0;
            }
        }

    }

    /* header end */

    /* main start */

    main {
        padding: 76px 0 80px;
        background-color: rgb(25, 48, 73);

        @media (width<=768px) {
            padding-top: 52px;
        }

        .layout {
            padding: 24px;

            @media (width<=768px) {
                padding: 24px 16px;
            }
        }
    }

    .leader {
        background-image: linear-gradient(90deg, rgb(230, 210, 181), rgb(245, 235, 215));
        -webkit-text-stroke: 6px rgb(24, 24, 24);
        paint-order: stroke;
        text-align: center;
        font-weight: bold;
        font-size: 24px;
        padding: 24px;

        @media (width<=768px) {
            font-size: 20px;
            padding: 20px;
            -webkit-text-stroke: 4px rgb(24, 24, 24);
        }
    }

    .lead {
        border-top: solid 2px rgb(219, 233, 255);
        border-bottom: solid 2px rgb(219, 233, 255);
        -webkit-text-stroke: 6px rgb(24, 24, 24);
        paint-order: stroke;
        text-align: center;
        font-weight: bold;
        font-size: 24px;
        padding: 24px;
        width: 80%;
        margin: 0 auto;
        background-color: rgb(15, 30, 50);

        .first-span,
        .second-span {
            position: relative;

            &::before {
                content: "";
                background-image: url(/images/finger1.png);
                background-size: contain;
                background-repeat: no-repeat;
                width: 48px;
                height: 48px;
                position: absolute;

                @media (width<=768px) {
                    width: 32px;
                    height: 32px;
                }
            }
        }

        .first-span {
            &::before {
                left: -56px;

                @media (width<=768px) {
                    left: -40px;
                }
            }
        }

        .second-span {
            &::before {
                right: -56px;

                @media (width<=768px) {
                    right: -40px;
                }
            }
        }

        @media (width<=768px) {
            width: 96%;
            margin: 0 auto;
            font-size: 20px;
            padding: 20px;
            -webkit-text-stroke: 4px rgb(24, 24, 24);
        }
    }

    .breadcrumb {
        padding: 16px 12px;
        font-size: 14px;

        ol {
            display: flex;
            list-style: none;
            padding: 0;
            gap: 8px;

            li {
                display: flex;
                align-items: center;

                &:not(:last-child)::after {
                    content: '>';
                    margin: 0 8px;
                    color: rgb(219, 233, 255);
                }

                a {
                    display: flex;
                    align-items: center;
                    gap: 4px;
                    text-decoration: none;
                    color: rgb(255, 128, 0);
                    font-weight: 500;

                    svg {
                        width: 16px;
                        height: 16px;
                        fill: currentColor;
                    }

                    &:hover {
                        text-decoration: underline;
                    }
                }
            }

            li:last-child {
                color: rgb(219, 233, 255);
                font-weight: bold;
            }
        }
    }

    /* main end */

    /* footer start */
    footer {
        display: flex;
        row-gap: 32px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 32px;
        background-color: rgb(31, 45, 61);

        @media (width<=768px) {
            padding: 16px;
        }

        nav {
            width: 100%;

            ul {
                display: grid;
                grid-template-columns: 1fr 1fr 1fr 1fr;
                column-gap: 24px;
                row-gap: 16px;

                @media (width<=900px) {
                    grid-template-columns: 1fr 1fr 1fr;

                }

                @media (width<=768px) {
                    grid-template-columns: 1fr 1fr;

                }

                @media (width<=600px) {
                    grid-template-columns: 1fr;

                }

                li {
                    a {
                        padding: 16px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background-color: rgb(219, 233, 255);
                        color: rgb(51, 51, 51);
                        font-weight: bold;
                        position: relative;
                        border-radius: 4px;


                        &::before {
                            content: "";
                            position: absolute;
                            right: 10px;
                            width: 32px;
                            height: 32px;
                            background-color: rgb(51, 51, 51);
                            border-radius: 99px;
                        }

                        &::after {
                            content: "＞";
                            position: absolute;
                            right: 16px;
                            color: rgb(219, 233, 255);
                        }
                    }
                }
            }
        }

        .text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
    }

    /* footer end */

}