header[data-astro-cid-3ef6ksr2] {
    font-weight: 700;
    line-height: 1.7;
    background-color: #fff;
    border-radius: 30px;
    filter: drop-shadow(4px 0px 15px #eeeeee);
    width: 230px;
    max-height: calc(100vh - 20px);
    position: sticky;
    top: 20px;
    left: 20px;
    z-index: 1000
}

@media screen and (max-width: 768px) {
    header[data-astro-cid-3ef6ksr2] {
        position: fixed;
        top: 0;
        left: 0;
        border-radius: 0;
        filter: none;
        width: 100%;
        max-height: none;
        height: 60px;
        display: flex;
        justify-content: space-between
    }
}

header[data-astro-cid-3ef6ksr2] a[data-astro-cid-3ef6ksr2] {
    color: inherit;
    text-decoration: none;
}

#hamburger[data-astro-cid-3ef6ksr2] {
    display: none;
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background-color: #eee;
    border: none;
    padding: 0
}

@media screen and (max-width: 768px) {
    #hamburger[data-astro-cid-3ef6ksr2] {
        display: flex;
        justify-content: center;
        align-items: center
    }
}

#hamburger[data-astro-cid-3ef6ksr2]:after {
    content: "";
    display: block;
    width: 24px;
    height: auto;
    aspect-ratio: 1/1;
    background: center/contain url(../img/icon_hamburger.svg) no-repeat;
    transition: .6s
}

#hamburger[data-astro-cid-3ef6ksr2].is-active:after {
    background: center/contain url(../img/icon_hamburger_close.svg) no-repeat;
    transform: rotate(180deg)
}

@media screen and (max-width: 768px) {
    #nav[data-astro-cid-3ef6ksr2] {
        visibility: hidden;
        background-color: #fff;
        position: absolute;
        top: 60px;
        right: -100vw;
        width: 70vw;
        max-width: 300px;
        height: calc(100vh - 60px);
        overflow-y: auto;
        overflow-x: hidden;
        transition: .6s;
        filter: drop-shadow(-10px 10px 20px #d6d6d6)
    }

    #nav[data-astro-cid-3ef6ksr2].is-active {
        visibility: visible;
        right: 0
    }
}

.header__logo__container[data-astro-cid-3ef6ksr2] {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 14px 20px 0
}

@media screen and (max-width: 768px) {
    .header__logo__container[data-astro-cid-3ef6ksr2] {
        padding: 0 10px;
        justify-content: flex-start;
        gap: 20px
    }
}

.header__logo[data-astro-cid-3ef6ksr2] {
    width: 50%;
    max-width: 60px;
    height: 140px;
    position: relative
}

@media screen and (max-width: 768px) {
    .header__logo[data-astro-cid-3ef6ksr2] {
        width: auto;
        height: 100%
    }
}

.header__logo[data-astro-cid-3ef6ksr2]:first-child:after {
    content: "";
    display: block;
    width: 1px;
    height: 76px;
    background-color: #4baadf;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%)
}

@media screen and (max-width: 768px) {
    .header__logo[data-astro-cid-3ef6ksr2]:first-child:after {
        height: 50%
    }
}

@media screen and (max-width: 768px) {
    .header__logo[data-astro-cid-3ef6ksr2]:last-child {
        padding: 6px 0
    }
}

.header__logo[data-astro-cid-3ef6ksr2] img[data-astro-cid-3ef6ksr2] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center
}

.header__nav[data-astro-cid-3ef6ksr2] {
    border-bottom: 1px solid #eeeeee
}

.header__nav[data-astro-cid-3ef6ksr2] li[data-astro-cid-3ef6ksr2] {
    padding: 1em 1.25em;
    position: relative;
    border-bottom: 1px solid #eeeeee;
    cursor: pointer
}

.header__nav[data-astro-cid-3ef6ksr2] li[data-astro-cid-3ef6ksr2]:hover {
    background-color: #eee
}

.header__nav[data-astro-cid-3ef6ksr2] li[data-astro-cid-3ef6ksr2]:after {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1px #808080;
    border-right: solid 1px #808080;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 1.25em
}

.header__nav[data-astro-cid-3ef6ksr2] li[data-astro-cid-3ef6ksr2]:last-child {
    border-bottom: none
}

.header__nav__sub[data-astro-cid-3ef6ksr2] {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    right: -100%;
    z-index: 100;
    width: 100%;
    border-radius: 30px;
    padding: .5em 0;
    background: linear-gradient(180deg, #fff 20%, #fffc)
}

.header__nav__sub[data-astro-cid-3ef6ksr2].is-open {
    visibility: visible;
    opacity: 1
}

@media screen and (max-width: 768px) {
    .header__nav__sub[data-astro-cid-3ef6ksr2] {
        position: relative;
        top: unset;
        right: unset;
        border-radius: 0;
        height: 0;
        padding: 0
    }

    .header__nav__sub[data-astro-cid-3ef6ksr2].is-open {
        height: fit-content;
        padding: .5em 0;
        background-color: #eee
    }
}

.header__sns__container[data-astro-cid-3ef6ksr2] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding-bottom:3px;
}

.header__lang[data-astro-cid-3ef6ksr2] {
    position: relative
}

.header__lang__current[data-astro-cid-3ef6ksr2] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5em;
    padding: 10px 1.25em;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    cursor: pointer
}

.header__lang__current[data-astro-cid-3ef6ksr2]:before {
    content: "";
    width: 1em;
    height: auto;
    aspect-ratio: 1/1;
    display: inline-block;
    background: center/contain url(../img/icon_lang.svg) no-repeat
}

.header__lang__current[data-astro-cid-3ef6ksr2]:after {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1px #808080;
    border-right: solid 1px #808080;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 1.25em
}

.header__lang[data-astro-cid-3ef6ksr2] .lang-list[data-astro-cid-3ef6ksr2] {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 0;
    right: -100%;
    z-index: 100;
    width: 100%;
    border-radius: 30px;
    padding: .5em 0;
    background: linear-gradient(180deg, #fff 20%, #fffc)
}

.header__lang[data-astro-cid-3ef6ksr2] .lang-list[data-astro-cid-3ef6ksr2].is-open {
    visibility: visible;
    opacity: 1
}

@media screen and (max-width: 768px) {
    .header__lang[data-astro-cid-3ef6ksr2] .lang-list[data-astro-cid-3ef6ksr2] {
        position: relative;
        top: unset;
        right: unset;
        border-radius: 0;
        height: 0;
        padding: 0
    }

    .header__lang[data-astro-cid-3ef6ksr2] .lang-list[data-astro-cid-3ef6ksr2].is-open {
        height: fit-content;
        padding: .5em 0;
        background-color: #eee
    }
}

.header__lang[data-astro-cid-3ef6ksr2] .lang-list[data-astro-cid-3ef6ksr2] li[data-astro-cid-3ef6ksr2] {
    position: relative;
    border-bottom: 1px solid #eeeeee
}

.header__lang[data-astro-cid-3ef6ksr2] .lang-list[data-astro-cid-3ef6ksr2] li[data-astro-cid-3ef6ksr2]:last-child {
    border-bottom: none
}

.header__lang[data-astro-cid-3ef6ksr2] .lang-list[data-astro-cid-3ef6ksr2] li[data-astro-cid-3ef6ksr2].msta_selected {
    background-color: #eee
}

.header__lang[data-astro-cid-3ef6ksr2] .lang-list[data-astro-cid-3ef6ksr2] li[data-astro-cid-3ef6ksr2] button[data-astro-cid-3ef6ksr2] {
    border: none;
    background: none;
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 1em 1.25em;
    cursor: pointer
}

.header__lang[data-astro-cid-3ef6ksr2] .lang-list[data-astro-cid-3ef6ksr2] li[data-astro-cid-3ef6ksr2] button[data-astro-cid-3ef6ksr2]:hover {
    background-color: #eee
}

.header__btn[data-astro-cid-3ef6ksr2] {
    display: block;
    text-align: center;
    padding: 2em 1em;
    color: #fff !important;
    font-weight: 700;
    line-height: 1.5
}

.header__btn__black[data-astro-cid-3ef6ksr2] {
    background-color: #222
}

.header__btn__red[data-astro-cid-3ef6ksr2] {
    background-color: #ed1c2a;
    font-family: Oswald;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2
}

.header__btn__red[data-astro-cid-3ef6ksr2] span[data-astro-cid-3ef6ksr2] {
    font-family: Noto Sans JP;
    font-size: .75rem
}

.header__btn[data-astro-cid-3ef6ksr2]:last-child {
    border-radius: 0 0 30px 30px
}

@media screen and (max-width: 768px) {
    .header__btn[data-astro-cid-3ef6ksr2]:last-child {
        border-radius: 0
    }
}

footer[data-astro-cid-sz7xmlte] {
    background-color: #222;
    color: #fff;
    padding: clamp(1rem, 5.5vw, 80px) clamp(40px, 2.75vw, 60px)
}

@media screen and (max-width: 480px) {
    footer[data-astro-cid-sz7xmlte] {
        padding: 1rem
    }
}

footer[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte] {
    color: #fff
}

.footer__nav[data-astro-cid-sz7xmlte] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem 2rem
}

@media screen and (max-width: 768px) {
    .footer__nav[data-astro-cid-sz7xmlte] {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }
}

@media screen and (max-width: 480px) {
    .footer__nav[data-astro-cid-sz7xmlte] {
        grid-template-columns: 1fr;
        gap: 10px
    }
}

.footer__nav__item__head[data-astro-cid-sz7xmlte] {
    font-size: 1.25rem;
    font-weight: 900;
    padding: .25em .5em;
    background-color: #ffffff0d;
    border-radius: 4px 30px 30px 4px;
    position: relative
}

@media screen and (max-width: 480px) {
    .footer__nav__item__head[data-astro-cid-sz7xmlte] {
        font-size: 1rem;
        padding: .25em 3em .25em 1.25em;
        border-radius: 10rem
    }

    .footer__nav__item__head[data-astro-cid-sz7xmlte]:after {
        content: "";
        display: block;
        width: 1.5rem;
        height: auto;
        aspect-ratio: 1/1;
        background: center/contain url(/assets/images/icon_plus-circle_white.svg) no-repeat;
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%)
    }
}

.footer__nav[data-astro-cid-sz7xmlte] ul[data-astro-cid-sz7xmlte] {
    margin-top: 1rem;
    margin-left: 1rem
}

.footer__nav[data-astro-cid-sz7xmlte] ul[data-astro-cid-sz7xmlte] li[data-astro-cid-sz7xmlte] {
    padding-left: 1.25em;
    text-decoration: underline;
    position: relative;
    margin-bottom: .5em
}

.footer__nav[data-astro-cid-sz7xmlte] ul[data-astro-cid-sz7xmlte] li[data-astro-cid-sz7xmlte]:before {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1px #ffffff;
    border-right: solid 1px #ffffff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0
}

.footer__nav[data-astro-cid-sz7xmlte] ul[data-astro-cid-sz7xmlte] li[data-astro-cid-sz7xmlte]:hover {
    text-decoration: none
}

.btn__footer[data-astro-cid-sz7xmlte] {
    font-size: 1rem;
    font-weight: 900;
    padding: 1.25em;
    color: #fff;
    background: #ffffff1a;
    border-radius: 100px;
    text-align: center;
    position: relative
}

.btn__footer[data-astro-cid-sz7xmlte]:after {
    content: "";
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 1px #ffffff;
    border-right: solid 1px #ffffff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 2rem
}

.btn__footer__container[data-astro-cid-sz7xmlte] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 80px
}

@media screen and (max-width: 480px) {
    .btn__footer__container[data-astro-cid-sz7xmlte] {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 2rem
    }
}

.links__container[data-astro-cid-sz7xmlte] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    margin-top: 4rem
}

@media screen and (max-width: 480px) {
    .links__container[data-astro-cid-sz7xmlte] {
        flex-direction: column;
        gap: .5em;
        margin-top: 2rem
    }
}

.links__container[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte] {
    text-decoration: underline;
    position: relative;
    padding-left: 1rem
}

.links__container[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte]:before {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1px #ffffff;
    border-right: solid 1px #ffffff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0
}

.links__container[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte]:hover {
    text-decoration: none
}

.footer__bottom[data-astro-cid-sz7xmlte] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .1019607843);
    margin-top: 4rem
}

@media screen and (max-width: 480px) {
    .footer__bottom[data-astro-cid-sz7xmlte] {
        flex-direction: column
    }
}

.footer__bottom[data-astro-cid-sz7xmlte] .footer__logo[data-astro-cid-sz7xmlte] {
    width: 100%;
    max-width: 530px
}

.footer__bottom[data-astro-cid-sz7xmlte] p[data-astro-cid-sz7xmlte] {
    color: #8f8f8f;
    font-size: 14px;
    text-align: right;
    line-height: 1.7
}

.footer__bottom[data-astro-cid-sz7xmlte] p[data-astro-cid-sz7xmlte] span[data-astro-cid-sz7xmlte] {
    font-size: 12px;
    padding-top: 1rem;
    display: inline-block
}

@media screen and (max-width: 480px) {
    .footer__bottom[data-astro-cid-sz7xmlte] p[data-astro-cid-sz7xmlte] {
        text-align: center
    }
}

@font-face {
    font-family: Noto Sans JP;
    src: url(/assets/fonts/NotoSansJP-Regular.woff) format("woff"), url(/assets/fonts/NotoSansJP-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Noto Sans JP;
    src: url(/assets/fonts/NotoSansJP-Medium.woff) format("woff"), url(/assets/fonts/NotoSansJP-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Noto Sans JP;
    src: url(/assets/fonts/NotoSansJP-Bold.woff) format("woff"), url(/assets/fonts/NotoSansJP-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Noto Sans JP;
    src: url(/assets/fonts/NotoSansJP-Black.woff) format("woff"), url(/assets/fonts/NotoSansJP-Black.ttf) format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Oswald;
    src: url(/assets/fonts/Oswald-Regular.woff) format("woff"), url(/assets/fonts/Oswald-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Oswald;
    src: url(/assets/fonts/Oswald-Bold.woff) format("woff"), url(/assets/fonts/Oswald-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #222;
    font-family: Noto Sans JP, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
    font-weight: 500;
    position: relative
}

p {
    line-height: 2
}

main {
    min-height: 100vh;
    margin-bottom: 140px;
    opacity: 0;
    transition: opacity .8s ease
}

@media screen and (max-width: 480px) {
    main {
        margin-bottom: 60px
    }
}

main.visible {
    opacity: 1
}

.nav-sticky-container {
    position: relative;
    width: 100%;
    height: fit-content
}

section {
    padding: 80px 0
}

@media screen and (max-width: 480px) {
    section {
        padding: 40px 0
    }
}

.wrapper {
    width: calc(100% - 250px);
    padding: 0 8.5%;
    margin: 0 0 0 auto
}

@media screen and (max-width: 768px) {
    .wrapper {
        width: 100%;
        padding: 0 1rem;
        margin: 0
    }
}

@media screen and (min-width: 1440px) {
    .wrapper {
        padding-right: calc((100% - 1250px)/2);
        padding-left: calc((100% - 1250px)/2)
    }
}

.page-title[data-astro-cid-guvttfii] {
    padding-top: clamp(40px, 10vw, 120px);
    padding-bottom: 2rem;
    background-color: #eee;
    margin-bottom: clamp(30px, 10vw, 100px);
    background-image: url(../img/bg_brush_white_01.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: center/cover url(../img/bg_brush_white_01.png) no-repeat #eee
}

.page-title[data-astro-cid-guvttfii] h1[data-astro-cid-guvttfii] {
    font-size: clamp(2rem, 3.6vw, 3.25rem);
    color: #222;
    font-weight: 900;
    position: relative
}

.page-title[data-astro-cid-guvttfii] h1[data-astro-cid-guvttfii]:after {
    content: attr(data-en);
    display: block;
    font-size: clamp(18px, .42em, 22px);
    font-weight: 400;
    font-family: Oswald;
    color: #4c4c4c;
    margin-top: 1rem
}

.page-title[data-astro-cid-guvttfii] .breadcrumb[data-astro-cid-guvttfii] {
    width: fit-content;
    padding: 10px 1rem;
    background-color: #fff;
    border-radius: 3em;
    font-size: .75rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1.5rem
}

.page-title[data-astro-cid-guvttfii] .breadcrumb[data-astro-cid-guvttfii] li[data-astro-cid-guvttfii]:not(:last-child) {
    padding-right: 1em;
    margin-right: 1em;
    position: relative
}

.page-title[data-astro-cid-guvttfii] .breadcrumb[data-astro-cid-guvttfii] li[data-astro-cid-guvttfii]:not(:last-child):after {
    content: "";
    display: block;
    width: .5em;
    height: .5em;
    border: 0;
    border-top: solid 1px #222222;
    border-right: solid 1px #222222;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 0
}

.page-title[data-astro-cid-guvttfii] .breadcrumb[data-astro-cid-guvttfii] li[data-astro-cid-guvttfii] a[data-astro-cid-guvttfii] {
    color: #222;
    text-decoration: underline
}

.page-title[data-astro-cid-guvttfii] .breadcrumb[data-astro-cid-guvttfii] li[data-astro-cid-guvttfii] a[data-astro-cid-guvttfii]:hover {
    text-decoration: none
}

.btn[data-astro-cid-5dcumwjq] {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    padding: 1.5em 2em;
    border-radius: 100px;
    width: 100%;
    max-width: 400px;
    position: relative
}

.btn[data-astro-cid-5dcumwjq]:hover {
    transform: translateY(-6px);
    filter: drop-shadow(0px 6px 10px rgba(0, 0, 0, .5019607843))
}

.btn[data-astro-cid-5dcumwjq].black {
    color: #fff;
    background-color: #222
}

.btn[data-astro-cid-5dcumwjq].black:hover {
    background-color: #ed1c2a
}

.btn[data-astro-cid-5dcumwjq].border-black {
    color: #222;
    background-color: #fff;
    border: 2px solid #222222
}

.btn[data-astro-cid-5dcumwjq].border-black:hover {
    color: #fff;
    background-color: #222
}

.btn[data-astro-cid-5dcumwjq][target=_blank] {
    position: relative
}

.btn[data-astro-cid-5dcumwjq][target=_blank]:after {
    content: "";
    display: block;
    width: .85em;
    height: auto;
    aspect-ratio: 1/1;
    background: center/contain url(/assets/images/icon_exlink.svg) no-repeat;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%)
}

.btn[data-astro-cid-5dcumwjq].small {
    width: fit-content;
    padding: .5em 2em
}

.btn[data-astro-cid-5dcumwjq].cat {
    width: fit-content;
    min-width: 9em;
    padding: .5em 2em
}

.btn[data-astro-cid-5dcumwjq].cat.all {
    background-color: #fff;
    color: #222;
    border: 2px solid #222222
}

.btn[data-astro-cid-5dcumwjq].cat.entry {
    background-color: #ca000e;
    color: #fff
}

.btn[data-astro-cid-5dcumwjq].cat.games,
.btn[data-astro-cid-5dcumwjq].cat.competition {
    background-color: #007433;
    color: #fff
}

.btn[data-astro-cid-5dcumwjq].cat.information {
    background-color: #00729d;
    color: #fff
}

.btn[data-astro-cid-5dcumwjq].pink {
    background-color: #f24448;
    color: #fff
}

.btn[data-astro-cid-5dcumwjq].pink:hover {
    background-color: #ed1c2a
}

.entry[data-astro-cid-rmj3s4ui] h2[data-astro-cid-rmj3s4ui] {
    border-top: 1px solid #d6d6d6;
    padding-top: 80px;
    margin-top: 80px
}

@media screen and (max-width: 480px) {
    .entry[data-astro-cid-rmj3s4ui] h2[data-astro-cid-rmj3s4ui] {
        padding-top: 60px;
        margin-top: 60px
    }
}

.entry__top[data-astro-cid-rmj3s4ui] {
    text-align: center
}

.entry__top[data-astro-cid-rmj3s4ui] .flag[data-astro-cid-rmj3s4ui] {
    color: #fff;
    font-size: clamp(1.92rem, 3.3vw, 3rem);
    font-weight: 700;
    line-height: 1;
    width: fit-content;
    margin: 30px auto 0
}

.entry__top[data-astro-cid-rmj3s4ui] .flag[data-astro-cid-rmj3s4ui] span[data-astro-cid-rmj3s4ui] {
    display: inline-block;
    padding: .25em;
    background: linear-gradient(#ca000e 0% 100%)
}

.entry__top[data-astro-cid-rmj3s4ui] .flag[data-astro-cid-rmj3s4ui] span[data-astro-cid-rmj3s4ui]:not(:first-child) {
    margin-top: 10px
}

.faq__item[data-astro-cid-rmj3s4ui] {
    border: 1px solid #d6d6d6;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1rem
}

@media screen and (max-width: 480px) {
    .faq__item[data-astro-cid-rmj3s4ui] {
        padding: 1.5rem 1rem
    }
}

.faq__item__q[data-astro-cid-rmj3s4ui] {
    font-weight: 700;
    position: relative;
    padding-left: 3rem;
    padding-right: 40px
}

@media screen and (max-width: 480px) {
    .faq__item__q[data-astro-cid-rmj3s4ui] {
        padding-left: 2rem;
        padding-right: 30px
    }
}

.faq__item__q[data-astro-cid-rmj3s4ui]:before {
    content: "Q";
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    color: #ca000e;
    position: absolute;
    top: -.25em;
    left: 0
}

@media screen and (max-width: 480px) {
    .faq__item__q[data-astro-cid-rmj3s4ui]:before {
        font-size: 1.75rem
    }
}

.faq__item__q[data-astro-cid-rmj3s4ui]:after {
    content: "";
    display: block;
    width: 40px;
    height: auto;
    aspect-ratio: 1/1;
    background: center/contain url(/assets/images/icon_plus-circle_black.svg) no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    transition: .6s
}

@media screen and (max-width: 480px) {
    .faq__item__q[data-astro-cid-rmj3s4ui]:after {
        width: 30px
    }
}

.faq__item__q[data-astro-cid-rmj3s4ui].is-active:after {
    background-image: url(/assets/images/icon_minus-circle_black.svg);
    transform: rotate(180deg)
}

.faq__item__a[data-astro-cid-rmj3s4ui] {
    margin-top: 1.5rem;
    border-top: 1px solid #d6d6d6;
    padding-top: 1.5rem;
    padding-left: 3rem;
    position: relative
}

.faq__item__a[data-astro-cid-rmj3s4ui]:before {
    content: "A";
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    color: gray;
    position: absolute;
    top: 1.5rem;
    left: 0
}

@media screen and (max-width: 480px) {
    .faq__item__a[data-astro-cid-rmj3s4ui]:before {
        font-size: 1.75rem
    }
}
.gdpr[data-astro-cid-txawmiir] {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #fffffff2;
    box-shadow: 0 -5px 5px #0003;
    -webkit-animation: up-css 1s 1 ease-out;
    animation: up-css 1s 1 ease-out
}

.gdpr__inner[data-astro-cid-txawmiir] {
    position: relative;
    padding: 32px 32px 16px
}

.gdpr[data-astro-cid-txawmiir] p[data-astro-cid-txawmiir] {
    font-size: .85rem
}

.gdpr-btn[data-astro-cid-txawmiir] {
    position: absolute;
    top: 8px;
    right: 8px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 25px;
    height: 25px;
    border: 2px solid #bdbdbd;
    border-radius: 50%;
    background-color: #bfbfbf;
    color: #fff;
    text-decoration: none;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media print,
screen and (min-width: 768px) {
    .gdpr__inner[data-astro-cid-txawmiir] {
        margin: 0 auto;
        padding: 32px 56px 16px;
        max-width: 1152px
    }

    .gdpr[data-astro-cid-txawmiir] p[data-astro-cid-txawmiir] {
        font-size: 1rem
    }

    .gdpr-btn[data-astro-cid-txawmiir] {
        top: 16px;
        right: 16px;
        width: 30px;
        height: 30px
    }
}

@media print,
screen and (min-width: 992px) {
    .gdpr[data-astro-cid-txawmiir] p[data-astro-cid-txawmiir]>a[data-astro-cid-txawmiir]:hover {
        text-decoration: none
    }
}

#btn__pagetop[data-astro-cid-xtwa2345] {
    display: block;
    width: 48px;
    height: auto;
    aspect-ratio: 1/1;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    position: fixed;
    right: 20px;
    bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

@media screen and (max-width: 480px) {
    #btn__pagetop[data-astro-cid-xtwa2345] {
        width: 40px;
        right: 10px;
        bottom: 10px
    }
}

#btn__pagetop[data-astro-cid-xtwa2345].is-active {
    opacity: 1;
    visibility: visible
}

#btn__pagetop[data-astro-cid-xtwa2345]:hover {
    transform: translateY(-10px)
}

.form-group.invalid .form-control {
    border: 2px solid #f24448 !important;
    background-color: #ffe1e1 !important;
}

.form-group.invalid .form-message {
    display: block;
    color: #f24448;
    font-weight: 700;
    font-size: 15px;
}

.contact-index .form-box .form-group {
    justify-content: center;
}

.error-txt {
    display: none;
}

#form .error-txt.invalid {
    display: block;
    border: 1px solid #f24448;
    color: #f24448;
    text-align: center;
    font-weight: 700;
    padding: 18px 20px;
    font-size: 15px;
}

.page table,
.page ul,
.page ol,
.page img {
    margin: 2rem 0
}