@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 {
    --color-main: rgb(31, 45, 61);
    /* header ネイビーブルー */
    --color-accent: rgb(32, 201, 151);
    /* ターコイズ */
    --color-bg: rgb(242, 244, 247);
    /* body/main クールグレー */
    --color-text: rgb(51, 51, 51);
    /* 全体テキスト チャコールグレー */
    --color-btn: rgb(255, 128, 0);
    /* ctaボタン オレンジ */

    --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);
}


body {
    font-family: 'Noto Sans JP', 'Yu Gothic UI', 'Hiragino Kaku Gothic ProN', sans-serif;
    background-color: rgb(219, 233, 255);
    /* body/main クールグレー */
    color: rgb(51, 51, 51);
    max-width: 1050px;
    margin: 0 auto;

    /* header start */
    header {
        z-index: 1000;
        width: 100%;
        max-width: 1050px;
        height: 90px;
        padding: 0 16px;
        background-color: rgb(31, 45, 61);
        /* header ネイビーブルー */
        display: flex;
        gap: 32px;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        color: rgb(242, 244, 247);
        /* body/main クールグレー */

        @media (width <=767px) {
            justify-content: flex-start;
            padding: 5px;
            height: 51.6px;
        }


        .lead-design {
            display: flex;
            justify-content: center;
            align-items: center;
            column-gap: 32px;
            text-align: center;
            /* 折り返さないように */
            white-space: nowrap;

            @media (width <=767px) {
                font-size: 16px;
            }

            .lead-title {
                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;

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

                span {
                    font-size: 12px;
                }
            }

            .lead-btn {
                display: inline-block;
                background: linear-gradient(135deg, rgb(255, 140, 0), rgb(255, 100, 0));
                color: #fff;
                padding: 8px 16px;
                border-radius: 9999px;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
                font-weight: bold;
                white-space: nowrap;

                &:hover {
                    background: linear-gradient(135deg, rgb(32, 201, 151), rgb(25, 180, 135));
                    /* ターコイズグラデ */
                    color: #fff;
                    transform: translateY(-3px) scale(1.05);
                    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
                }
            }
        }

        nav {

            @media (width <=767px) {
                display: none;
            }


            ul {
                display: flex;
                flex-wrap: wrap;
                column-gap: 20px;
            }

        }

        .site-header__hamburger {
            display: none;

            @media (width <=767px) {
                display: inline-block;
            }

            #hamburger {
                opacity: 0;
            }

            .menu-btn {
                position: relative;
                top: 0;
                right: 0;
                cursor: pointer;

                .burger {
                    /* バーガーの位置や幅や高さ */
                    position: fixed;
                    top: 9.8px;
                    right: 14px;
                    z-index: 200;
                    width: 32px;
                    height: 2rem;

                    &::before,
                    &::after,
                    .bar {
                        /* バーガーの線（beforeが上、afterが下、barが真ん中の線） */
                        position: absolute;
                        left: 0;
                        width: 32px;
                        height: 4px;
                        border-radius: 6px;
                        background-color: rgb(242, 244, 247);
                        content: "";
                        transition: all 0.5s;
                    }

                    &::before {
                        top: 0;
                        transform-origin: top left;
                    }

                    &::after {
                        bottom: 0;
                        transform-origin: bottom left;
                    }

                    .bar {
                        top: 43%;
                    }

                }
            }

            .menu {
                pointer-events: none;
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                display: flex;
                flex-flow: column nowrap;
                justify-content: center;
                align-items: flex-start;

                &::before {
                    /* munu::beforeに出入りする背景を指定している */
                    position: absolute;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    z-index: 50;
                    width: 22rem;
                    background: #2e3248;
                    content: "";
                    transform: skewX(0deg) translateX(100%);
                    transform-origin: bottom right;
                    transition: .3s;
                }

                ul {
                    z-index: 100;
                    list-style: none;
                    transform: translateX(100%);
                    transition: all .5s, transform .5s;
                    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);

                    li {
                        a {
                            color: rgb(242, 244, 247);
                            display: block;
                            text-decoration: none;
                            margin: 2rem;
                        }
                    }
                }
            }

            #hamburger:checked~.menu {
                pointer-events: auto;
            }


            #hamburger:checked+label .burger::before,
            #hamburger:checked+label .burger::after {
                /* hamburgerをチェックしたら線が長くなる */
                width: 2.6rem;
            }

            #hamburger:checked+label .burger::before {
                transform: rotate(45deg);
            }

            #hamburger:checked+label .burger::after {
                transform: rotate(-45deg);
            }

            #hamburger:checked+label .burger .bar {
                /* barが消えるよう指定 */
                transform: scale(0);
            }

            #hamburger:checked~.menu::before {
                /* hamburgerがチェックされたら.menu::beforeがどう動くか */
                transform: skewX(0deg) translateX(30%);
            }

            @media screen and (min-width:400px) {
                #hamburger:checked~.menu::before {
                    /* 400px以上でhamburgerがチェックされたら.menu::beforeがどう動くか */
                    transform: skewX(0deg) translateX(30%);
                }
            }

            #hamburger:checked~.menu ul {
                /* hamburgerがチェックされたら.menu ulがどう動くか */
                transform: translateX(0%) translateY(0%);
            }

            @media screen and (min-height:1000px) {

                #hamburger:checked~.menu ul {
                    /* 縦1000px以上でhamburgerがチェックされたら.menu ulがどう動くか */
                    transform: translateX(0);
                }
            }

            #hamburger:checked~.light-dark {
                /* hamburgerがチェックされたらlight-darkがどう動くか */
                background-color: #000;
                opacity: .5;
                width: 100%;
                height: 100%;
                position: fixed;
                top: 0;
                right: 0;
                transition: .5s;
            }
        }
    }

    /* header end */

    main {
        background-color: rgb(242, 244, 247);

    }


    /* 共通 start */

    .service,
    .profile,
    .achievements,
    .price,
    .reason,
    .design,
    .flow,
    .cta,
    .faq,
    .review,
    .contact {
        margin: 16px auto 96px;
        padding: 0 18px;

        @media (width <=767px) {
            margin: 16px 0 64px;
            padding: 0 14px;

        }
    }

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

        @media (width <=767px) {
            margin: 51.6px 0 -16px;

        }

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

            li {
                display: flex;
                align-items: center;
                color: #ccc;

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

                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(51, 51, 51);
                font-weight: bold;
            }
        }
    }



    /* ボタン */
    .section-btn-wrap {
        text-align: center;
        margin-top: 32px;
        margin-bottom: 48px;

        .section-btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--color-btn);
            color: #fff;
            font-weight: bold;
            border-radius: 9999px;
            font-size: 16px;
            letter-spacing: 0.05em;
            transition: all 0.3s;
        }
    }



    .under-menu {
        color: rgb(51, 51, 51);
        font-size: 15px;
        font-weight: bold;
        text-align: center;

        @media (width <=767px) {
            text-align: left;
        }

        ul {



            li {
                position: relative;

                background-color: rgb(220, 220, 220);

                &:not(:first-child) {
                    border-top: solid 1px rgb(51, 51, 51);
                }

                &::before {
                    content: "＞";
                    position: absolute;
                    right: 16px;
                    top: 16px;
                }

                a {
                    padding: 16px;
                    display: block;
                    width: 100%;
                }
            }
        }
    }

    /* 共通 end */

    /* footer start */
    footer {
        font-size: 14px;
        text-align: center;
        padding: 4em 1em;
        color: rgb(242, 244, 247);
        background-color: rgb(31, 45, 61);
        /* header ネイビーブルー */
    }

    /* footer end */

}