@charset "UTF-8";
/* HEADER */
.l-rn-header:has(.l-rn-header__hamburger[aria-expanded="true"]) {
    .l-rn-header__menu {
        opacity: 1;
        pointer-events: auto;
    }

    .l-rn-header__hamburger {
        > span:nth-child(1) {
            position: absolute;
            inset: 0;
            margin: auto;
            rotate: -45deg;
        }

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

        > span:nth-child(3) {
            position: absolute;
            inset: 0;
            margin: auto;
            rotate: 45deg;
        }
    }
}
.l-rn-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px 10px 20px;
    background-color: #fff;
    box-shadow: 0 4px 16px 0 rgba(47, 49, 52, 0.08);
    width: 100%;
    height: 64px;

    box-sizing: border-box;

    * {
        box-sizing: border-box;
    }

    *::before,
    *::after {
        min-width: 0;
    }

  ol,
  ul,
  li {
    list-style-type: "";
  }

  a {
    text-decoration: none;
  }
}

.l-rn-header__logo {
    display: block;
    width: 74px;
    height: 32px;

    img {
        width: 100%;
        height: auto;
    }
}

.l-rn-header__menu {
    opacity: 0;
    position: fixed;
    top: 64px;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: calc(100% - 64px);
    background: rgba(48, 48, 48, 0.70);
    backdrop-filter: blur(5px);
    transition: opacity 0.2s ease;
    overflow-y: auto;
    overscroll-behavior: none;
    pointer-events: none;
    &::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100% + 1px);
        overscroll-behavior: none;
        pointer-events: none;
    }
}

.l-rn-header__list {
    margin: 0;
    padding: 56px 24px;
    background-color: #F7F7F7;
}

.l-rn-header__item {
    border-bottom: 1px solid #D9D8D8;
    a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
        position: relative;
        padding-block: 24px;
        padding-right: 16px;
        color: #303030;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
        font-feature-settings: "palt";
        letter-spacing: 0em;
        transition: opacity 0.2s ease;

        &:hover {
            opacity: 0.7;
            color: #303030;
        }

        svg {
            transform: translateZ(0px);
            position: relative;
        }
    }

    &:first-child a {
        border-top: 1px solid #D9D8D8;
    }
}

.l-rn-header__item.l-rn-header__item--contact {
    margin-top: 48px;
    a {
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
        border-radius: 4px;
        padding: 10px 24px 10px 10px;
        color: #fff;
        background-color: #008EB8;
        font-size: 15px;
        font-weight: 500;
        font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
        font-feature-settings: "palt";
        letter-spacing: 0.04em;
        transition: opacity 0.2s ease;

        &:hover {
            opacity: 0.7;
            color: #fff;
        }

        > span {
            padding-bottom: 0px;
        }

        > .box {
            display: grid;
            place-items: center;
            width: 40px;
            height: 40px;
            position: relative;
            background-color: #1A99BF;
        }

        > svg {
            margin-left: auto;
        }
    }
}

.l-rn-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background-color: #EEEFF0;
    border: none;

    > span {
        width: 16px;
        height: 1px;
        background-color: #2F3134;
        transition: rotate 0.2s ease, opacity 0.2s ease;
    }

        > span:nth-child(1) {
            transform-origin: 50% 50%;
        }

        > span:nth-child(3) {
            transform-origin: 50% 50%;
        }
}

/* FOOTER */
.l-rn-footer {
    width: 100%;
    overflow: visible;
    position: relative;
    padding-top: 25vw;
    background-color: transparent;
    display: flex;
    flex-direction: column-reverse;

    box-sizing: border-box;

    * {
        box-sizing: border-box;
    }

    *::before,
    *::after {
        min-width: 0;
    }

    ol,
    ul,
    li {
        list-style-type: "";
    }

    a {
        text-decoration: none;
    }
}

.l-rn-footer__bg {
    position: relative;
    top: 5.5vw;
    z-index: 2;
    width: 100%;
    background: linear-gradient(0deg,rgba(247, 247, 247, 1) 30%, rgba(255, 255, 255, 1) 50%);
    > div {
        background-image: url(../../images/user/common/footer_bg_sp.svg);
        background-position: bottom center;
        background-size: 100% auto;
        background-repeat: no-repeat;
        aspect-ratio: 400 / 125;
    }
}

.l-rn-footer__inner {
    position: relative;
    z-index: 3;
    padding: 0px;
    padding-bottom: 24px;
    background-color: #F7F7F7;
}

.l-rn-footer .l-rn-content {
    height: 100%;
    padding: 0 24px;
}

.l-rn-footer .l-rn-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 72px;
}

.l-rn-footer .l-rn-content .group-link {
    > a {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #303030;
        font-size: 14px;
        line-height: 1.4;
        font-weight: 600;
        transition: opacity .2s ease;

        &:hover {
            color: #303030;
            opacity: 0.7;
        }

        > svg {
            position: relative;
            top: 0;
        }
    }

    > ul {
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 16px;
        margin-top: 24px;
        margin-bottom: 0;
        padding: 0;
        li {
            a {
                display: flex;
                align-items: center;
                gap: 4px;
                color: #303030;
                font-size: 11px;
                line-height: 1.4;
                font-weight: 400;
                font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
                font-feature-settings: "palt";
                letter-spacing: 0em;
                transition: opacity .2s ease;
                &:hover {
                    opacity: 0.7;
                }

                svg {
                    position: relative;
                    top: 1px;
                }
            }
        }
    }
}

.l-rn-footer .site-logo {
    width: 112px;
    height: 48px;
}

.l-rn-footer .site-logo a {
    display: block;
}

.l-rn-footer .site-logo img {
    width: 100%;
    height: 100%;
}

.l-rn-footer .site-text {
    margin-top: 48px;
}

.l-rn-footer .site-text a {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    line-height: 1.4;
    letter-spacing: 0.04em;
    transition: opacity .2s ease;
}

.l-rn-footer .site-text a:hover {
    color: #303030;
    opacity: 0.7;
}

.l-rn-footer .copylight {
    color: #909496;
    font-size: 10px;
    font-family: "Wix Madefor Text", sans-serif;
    line-height: 1.6;
    letter-spacing: 0em;
    margin-top: 16px;
    margin-bottom: 0;
}

@media only screen and (min-width: 990px) {
    /* HEADER */
    .l-rn-header {
        justify-content: space-between;
        height: 96px;
        padding: 24px 72px;
    }

    .l-rn-header__logo {
        width: 108px;
        height: 47px;
    }

    .l-rn-header__menu {
        opacity: 1;
        pointer-events: auto;
        position: relative;
        top: auto;
        left: auto;
        z-index: 1;
        width: auto;
        height: auto;
        background-color: transparent;
        &::after {
            content: none;
        }
    }

    .l-rn-header__list {
        display: flex;
        align-items: center;
        padding: 0;
        background-color: #fff;
    }

    .l-rn-header__item {
        border: none;
        a {
            padding: 0;
            font-size: 13px;
            letter-spacing: 0.04em;
            line-height: 1.4;

            > span {
                border-bottom: 1px solid #303030;
                padding-bottom: 3px;
                font-weight: 600;
            }

            > svg {
                position: relative;
                bottom: 1px;
            }
        }

        &:first-child a {
            border-top: none;
        }
    }

    .l-rn-header__item + .l-rn-header__item {
        margin-left: 32px;
    }

    .l-rn-header__item + .l-rn-header__item--contact {
        margin-left: 44px;
    }

    .l-rn-header__item.l-rn-header__item--contact {
        margin-top: 0;
        a {
            gap: 10px;
            padding: 14px 21px 14px 14px;
            font-size: 13px;

            > span {
                border: none;
                font-weight: normal;
            }

            > .box {
                display: grid;
                place-items: center;
                width: 20px;
                height: 20px;
                background-color: transparent;
            }

            > svg {
                display: none;
            }
        }
    }

    .l-rn-header__hamburger {
        display: none;
    }

    /* FOOTER */
    .l-rn-footer {
        display: grid;
        padding-top: 0;
        background-color: #fff;

        &::before {
            content: none;
        }

        &::after {
            content: none;
        }

        > * {
            grid-area: 1 / 1;
        }
    }

    .l-rn-footer__bg {
        top: auto;
        width: 100%;
        > div {
            background-image: url(../../images/user/common/footer_bg.svg);
            background-position: bottom center;
            background-size: 100% auto;
            background-repeat: no-repeat;
            aspect-ratio: 1280 / 278;
        }
    }

    .l-rn-footer__inner {
        background-color: transparent;
        padding-top: 130px;
        padding-bottom: 32px;
    }

    .l-rn-footer .l-rn-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 20px;
        padding: 0 72px;
    }

    .l-rn-footer .l-rn-content .group-link {
        > ul {
            display: flex;
            flex-wrap: wrap;
            column-gap: 20px;
            row-gap: 12px;
            margin-top: 16px;
            li {
                display: block;
                a {
                    display: flex;
                    align-items: center;
                    gap: 4px;
                    color: #303030;
                    font-size: 11px;
                    line-height: 1.4;
                    font-weight: 400;
                    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
                    font-feature-settings: "palt";
                    letter-spacing: 0em;
                    transition: opacity .2s ease;
                    &:hover {
                        opacity: 0.7;
                    }

                    svg {
                        position: relative;
                        top: 1px;
                    }
                }
            }
        }
    }

    .l-rn-footer .site-logo {
        margin-left: auto;
        margin-bottom: 28px;
        width: 132px;
        height: 58px;
    }

    .l-rn-footer .site-text {
        margin-top: 0;
    }

    .l-rn-footer .site-text a {
        position: relative;
        right: auto;
        bottom: auto;
    }

    .l-rn-footer .copylight {
        margin-top: 0;
    }
}

@media only screen and (min-width: 1200px) {
    .l-rn-footer__inner {
        padding-top: 78px;
    }
}