@font-face {
    font-family: "gabarito-reg";
    src: url("../assets/fonts/Gabarito-Regular.woff");
}

* {
    margin: 0;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-block-start: 0;
    padding-block-end: 0;
    padding-inline-start: 0;
    padding-inline-end: 0;
    box-sizing: border-box;
    text-decoration: none;
    transition-duration: 0.3s;

    &::before,
    &::after {
        transition-duration: 0.3s;
    }
}

html {
    font-weight: 700;
    color: #3f5471;
    scroll-padding-top: 90px;
    scroll-behavior: smooth;
}

figure {
    margin: 0;
}

video {
    filter: drop-shadow(0px 0px rgba(0,0,0,0));

    outline: none;
    border: none;
}

button {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

input[type="checkbox"], select, option {
    cursor: pointer;
}

.img-container {
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

.from-pc {
    display: none;
}

img {
    display: block;
    margin: 0;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

strong {
    font-weight: inherit;
    color: inherit;
}

ul {
    list-style-type: none;
}

p {
    
}

address {
    font-style: normal;
}

.clip-box {
    overflow: clip;
}

.nav-bar {
    display: none;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    font-family: "Yu Gothic";
    color: white;
    background-color: #eeeeee99;
    backdrop-filter: blur(4px);

    .logo {
        a {
            display: flex;

            img {
                height: 30px;
                filter: drop-shadow(1px 1px rgba(63, 84, 113, 0.8980392157));
            }

            span {
                font-weight: 900;
                text-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
            }
        }
    }

    ul {
        display: flex;

        li {
            a {
                color: white;
                text-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
                transition: all 0.4s;

                &.active {
                    color: #3f5471;
                }

                &:hover {
                    color: #3f5471;
                    transition: all 0.4s;
                }
            }
        }
    }
}

.view-more-ripple {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4f4f74;
    border: 1px solid #4f4f74;
    background-color: white;
    font-family: "Yu Gothic";
    letter-spacing: 0.1rem;

    &:hover {
        background-position: right center;
        background-size: 200% auto;
        -webkit-animation: pulse 2s infinite;
        animation: ripple 1.5s infinite;
    }

    .arrow {
        display: inline-block;
        clip-path: polygon(40% 10%, 50% 0, 100% 50%, 50% 100%, 40% 90%, 80% 50%);
        background-color: #4f4f74;
    }
}

.head-icon {
    width: 11px;
    height: 33px;
}

.view-more-ripple-pc {
    display: none;
}

.view-more-ripple-submit {
    position: relative;

    .arrow {
        position: absolute;
    }
}

.bg-dot {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.bg-dot-pc {
    display: none;
}

.anim-head {
    display: flex;
    flex-direction: column;
    align-items: center;

    .dot-box {
        position: relative;
        padding: 0 85px;

        .left-dot-1 {
            /* opacity: 0;*/
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 41px;
        }

        .left-dot-2 {
            /* opacity: 0;*/
            position: absolute;
            width: 21px;
            top: 0;
            left: 47px;
        }

        .top-text {
            display: inline-block;
            font-family: "gabarito-reg";
            font-size: 32px;
            letter-spacing: 0.1rem;
            color: #4f4f74;
            opacity: 0;
            transform: translateY(20px);
        }

        .right-dot-1 {
            position: absolute;
            top: 0;
            right: 30px;
            width: 41px;
            /* opacity: 0;*/
        }

        .right-dot-2 {
            position: absolute;
            right: 0;
            bottom: -7px;
            width: 18px;
            /* opacity: 0;*/
        }
    }

    .underbar {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 25px 0 10px 0;

        &.bar-staff {
            width: 224px;
        }

        &.bar-about {
            width: 156px;
        }

        .bar {
            width: 0%;
            height: 4px;
            background-color: #4f4f74;
        }

        &:before {
            content: "";
            position: absolute;
            left: 45%;
            display: block;
            background-color: #4f4f74;
            width: 20px;
            height: 20px;
            clip-path: polygon(100% 50%, 0 0, 0 100%);
            opacity: 0;
        }

        &:after {
            content: "";
            position: absolute;
            right: 45%;
            display: block;
            background-color: #4f4f74;
            width: 20px;
            height: 20px;
            clip-path: polygon(0 50%, 100% 0, 100% 100%);
            opacity: 0;
        }

        .maru {
            width: 20px;
            height: 20px;
            background-color: #4f4f74;
            border-radius: 50%;
            opacity: 0;
        }
    }

    .bottom-text {
        display: inline-block;
        font-family: "Yu Gothic";
        font-size: 24px;
        letter-spacing: 0.1rem;
        color: #4f4f74;
        opacity: 0;
        transform: translateY(-20px);
    }
}

.anim {
    &.active {
        li {
            a {
                transform: none !important;
            }
        }

        .dot-box {
            opacity: 1;
            transition: all 1s 0.8s;

            /* .left-dot-1 {
		opacity: 1;
		transition: all 1s 0.8s;
	}
	.left-dot-2 {
		opacity: 1;
		transition: all 1s 0.8s;
	}*/
            .top-text {
                opacity: 1;
                transform: translateY(0px);
                transition: all 0.4s 0.8s;
                display: flex;
                flex-direction: column;
                align-items: center;
                font-weight: 400;
            }

            /* .right-dot-1 {
		opacity: 1;
		transition: all 1s 0.8s;
	}
	.right-dot-2 {
		opacity: 1;
		transition: all 1s 0.8s;
	}*/
        }

        .underbar {
            .bar {
                width: 100% !important;
                transition: all 0.4s 0.4s !important;
            }

            &:before {
                left: 0 !important;
                transition: all 0.4s 0.4s !important;
                opacity: 1 !important;
            }

            &:after {
                right: 0 !important;
                transition: all 0.4s 0.4s !important;
                opacity: 1 !important;
            }

            .maru {
                opacity: 1;
                transition: all 0.4s;
            }
        }

        .bottom-text {
            opacity: 1;
            transform: translateY(0px);
            transition: all 0.4s 0.6s;
            font-weight: 400;
        }
    }
}

@media screen and (orientation: landscape) {}

body {
    &.active {
        overflow: hidden;
    }
}

header {
    overflow: clip;
    position: relative;

    &.other-header {
        .hero {
            position: relative;

            .hero-image {
                display: none;
            }

            img {
                object-fit: cover;
            }

            p {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                font-family: "Yu Gothic";
                letter-spacing: 0.1rem;
                color: white;
                font-size: 64px;
                white-space: nowrap;

                &.small-p {
                    font-size: 56px;
                    gap: 65px;
                }
            }
        }
    }

    .hero-image {
        display: none;
        width: 100%;
    }

    .hero-image-sp {
        display: block;
        width: 100%;
        height: 100svh;
        object-fit: cover;
    }

    p {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: "Yu Gothic";
        color: white;
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 100px;
        line-height: 120%;
        text-shadow: 0 0 8.5px #00000040;
    }

    .bg-dot-sp-1 {
        top: 30%;
        left: 20%;
        width: 56px;
    }

    .bg-dot-sp-2 {
        top: 15%;
        right: 20%;
        width: 128px;
    }

    .bg-dot-sp-3 {
        bottom: 13%;
        left: 20%;
        width: 128px;
    }

    .hmbg-nav {
        width: 100%;
        position: fixed;
        z-index: 5;
        top: 0;
        left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;

        &:has(.passive) {
            backdrop-filter: blur(4px);
        }

        .logo {
            margin-left: 20px;
            display: flex;
            align-items: flex-end;
            z-index: 5;

            img {
                height: 30px;
                filter: drop-shadow(1px 1px rgba(63, 84, 113, 0.8980392157));
            }

            span {
                font-family: "Yu Gothic";
                color: white;
                font-weight: 900;
                line-height: 100%;
                margin-left: 3px;
                text-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
            }
        }

        .hmbg-btn {
            position: relative;
            aspect-ratio: 1/1;
            z-index: 5;
            width: 70px;
            margin-right: 20px;

            span {
                position: absolute;
                background-color: white;
                transition-duration: 0s;
                box-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
                transform: scale(1);
                
                &:nth-of-type(1) {
                    top: 24px;
                    left: 24px;
                    width: 3px;
                    height: 3px;
                    border-radius: 1.5px;
                    animation: hmbgBtnAnim1And3Reverse 1s linear;
                }

                &:nth-of-type(2) {
                    top: 32px;
                    left: 24px;
                    width: 3px;
                    height: 3px;
                    border-radius: 1.5px;
                    animation: hmbgBtnAnim2Reverse 1s linear;
                }

                &:nth-of-type(3) {
                    top: 40px;
                    left: 24px;
                    width: 3px;
                    height: 3px;
                    border-radius: 1.5px;
                    animation: hmbgBtnAnim1And3Reverse 1s linear;
                }

                &:nth-of-type(4) {
                    top: 24.8px;
                    left: 32px;
                    height: 1.5px;
                    width: 12px;
                    border-radius: 1.5px;
                    animation: hmbgBtnAnim4Reverse 1s linear;
                }

                &:nth-of-type(5) {
                    top: 32.8px;
                    left: 32px;
                    height: 1.5px;
                    width: 12px;
                    border-radius: 1.5px;
                    animation: hmbgBtnAnim5Reverse 1s linear;
                }

                &:nth-of-type(6) {
                    top: 40.8px;
                    left: 32px;
                    height: 1.5px;
                    width: 12px;
                    border-radius: 1.5px;
                    animation: hmbgBtnAnim6Reverse 1s linear;
                }

                &:nth-of-type(7) {
                    top: 24.8px;
                    left: 40px;
                    height: 1.5px;
                    width: 12px;
                    border-radius: 1.5px;
                    animation: hmbgBtnAnim7Reverse 1s linear;
                }

                &:nth-of-type(8) {
                    top: 32.8px;
                    left: 40px;
                    height: 1.5px;
                    width: 12px;
                    border-radius: 1.5px;
                    animation: hmbgBtnAnim8Reverse 1s linear;
                }

                &:nth-of-type(9) {
                    top: 40.8px;
                    left: 40px;
                    height: 1.5px;
                    width: 12px;
                    border-radius: 1.5px;
                    animation: hmbgBtnAnim9Reverse 1s linear;
                }
            }

            &.active {
                span {
                    box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
                    
                    &:nth-of-type(1) {
                        animation: hmbgBtnAnim1And3 1s linear;
                    }

                    &:nth-of-type(2) {
                        animation: hmbgBtnAnim2 1s linear;
                        top: 32px;
                        left: 32px;
                        width: 3px;
                        height: 3px;
                        border-radius: 1.5px;
                    }

                    &:nth-of-type(3) {
                        animation: hmbgBtnAnim1And3 1s linear;
                    }

                    &:nth-of-type(4) {
                        animation: hmbgBtnAnim4 1s linear;
                        top: 32px;
                        left: 32px;
                        width: 3px;
                        height: 3px;
                        border-radius: 1.5px;
                    }

                    &:nth-of-type(5) {
                        animation: hmbgBtnAnim5 1s linear;
                        top: 32px;
                        left: 32px;
                        border-radius: 1.5px;
                        width: 3px;
                        height: 3px;
                    }

                    &:nth-of-type(6) {
                        animation: hmbgBtnAnim6 1s linear;
                        top: 32px;
                        left: 32px;
                        border-radius: 1.5px;
                        width: 3px;
                        height: 3px;
                    }

                    &:nth-of-type(7) {
                        animation: hmbgBtnAnim7 1s linear;
                        top: 24px;
                        left: 40px;
                        width: 3px;
                        height: 3px;
                        border-radius: 1.5px;
                    }

                    &:nth-of-type(8) {
                        animation: hmbgBtnAnim8 1s linear;
                        top: 32px;
                        left: 32px;
                        width: 3px;
                        height: 3px;
                        border-radius: 1.5px;
                    }

                    &:nth-of-type(9) {
                        animation: hmbgBtnAnim9 1s linear;
                        top: 40px;
                        left: 40px;
                        width: 3px;
                        height: 3px;
                        border-radius: 1.5px;
                    }
                }
            }
        }

        .hmbg-menu {
            top: 0;
            left: 0;
            position: fixed;
            background-color: #3f5471e5;
            backdrop-filter: blur(4px);
            overflow: hidden;
            z-index: 4;
            width: 100%;

            &.passive {
                height: 0;
                transition: all 0.25s;
            }

            &.active {
                height: 100svh;
                transition: all 0.25s;
            }

            ul {
                margin-top: 15svh;
                gap: 20px;
                padding: 8vh 0 12vh 0;
                display: flex;
                flex-direction: column;

                li {
                    display: flex;
                    justify-content: center;
                    flex-direction: column;
                    font-family: "Yu Gothic";
                    

                    a {
                        color: white;
                        display: flex;
                        justify-content: center;
                        letter-spacing: 0.1rem;
                        transform: translateY(20px);
                    }

                    .underbar {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 135px;
                        margin: 0 auto;
                        pointer-events: none;

                        .bar {
                            width: 0%;
                            height: 4px;
                            background-color: white;
                        }

                        &:before {
                            content: "";
                            display: block;
                            background-color: white;
                            width: 20px;
                            height: 20px;
                            clip-path: polygon(100% 50%, 0 0, 0 100%);
                            transform: translateX(7px);
                            opacity: 0;
                        }

                        &:after {
                            content: "";
                            display: block;
                            background-color: white;
                            width: 20px;
                            height: 20px;
                            transform: translateX(-7px);
                            clip-path: polygon(0 50%, 100% 0, 100% 100%);
                            opacity: 0;
                        }
                    }
                }
            }
        }
    }

    @media screen and (orientation: landscape) {
        .hero-image {
            display: block;
            height: calc(100vh);
            object-fit: cover;
        }

        .hero-image-sp {
            display: none;
        }

        p {
            top: 50%;
            font-size: 80px;
            gap: 60px;
        }

        .hmbg-nav {
            height: 70px;

            .logo {
                margin-left: 20px;
            }

            .hmbg-menu {
                top: 0;
                left: 0;

                ul {
                    margin-top: 0;
                    gap: 20px;
                    padding: 8vh 0 12vh 0;

                    li {
                        .underbar {
                            display: none;
                        }
                    }
                }
            }
        }
    }
}

footer {
    overflow: clip;
    position: relative;
    background-color: #3f5471b2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-family: "Yu Gothic";
    letter-spacing: 0.1rem;
    

    ul {
        width: 100%;
        margin-bottom: 80px;
        display: flex;
        flex-wrap: wrap;
        text-align: center;

        li {
            width: 50%;
            border-top: #203f5e66 1px solid;
            border-left: #203f5e66 1px solid;

            &:nth-child(even) {
                border-right: #203f5e66 1px solid;
            }

            &:last-of-type {
                border-bottom: #203f5e66 1px solid;
                width: 100%;
            }

            a {
                position: relative;
                z-index: 2;
                color: white;
                display: block;
                padding: 10px 0;

                &.active {
                    color: #3f5471;
                    background-color: #d5dae080;
                }

                &:hover {
                    color: #3f5471;
                    transition: all 0.4s;
                }
            }
        }
    }

    address {
        font-style: normal;
        margin-top: 25px;
        margin-bottom: 100px;

        span {
            display: block;
            text-align: center;
        }
    }

    .footer-logo {
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 0;
        width: 100%;
        max-height: 350px;
        aspect-ratio: 375/219;
        object-fit: contain;
        object-position: left;
    }

    .logo-sp {
        width: 252px;
    }

    .logo {
        display: none;
    }

    .site-map {
        width: 100%;
    }

    small {
        margin-bottom: 5px;
        font-size: 13px;
    }

    .bg-dot-sp-1 {
        position: absolute;
        width: 61px;
        left: 0;
        top: 15%;
    }

    .bg-dot-sp-2 {
        position: absolute;
        width: 96px;
        right: 0;
        top: 20%;
    }

    @media screen and (orientation: landscape) {
        & {
            padding-top: 80px;

            ul {
                gap: 20px;
                justify-content: center;

                li {
                    border: #203f5e66 solid 1px;

                    a {
                        font-size: 14px;
                    }
                }
            }

            address {
                margin-top: 20px;
            }

            .footer-logo {
                max-height: 312px;
            }

            .logo-sp {
                display: none;
            }

            .logo {
                width: 272px;
            }

            small {
                margin-bottom: 40px;
            }

            .bg-dot-pc {
                display: block;
                width: 96px;
                right: 0;
                top: 25%;
            }

            .bg-dot-sp {
                display: none;
            }
        }
    }
}

main {
    position: relative;

    /* モバイル縦 */
    font-family: "Yu Gothic";

    .bg-dot {
        z-index: -1;
    }

    .joto {
        position: relative;

        .bg-dot-sp-1 {
            width: 15px;
            top: 18%;
            right: 5%;
        }

        .bg-dot-sp-2 {
            width: 15px;
            top: 24%;
            left: 2%;
        }

        .bg-dot-sp-3 {
            width: 30px;
            bottom: 41%;
            left: 2%;
        }
    }

    .step {
        position: relative;

        .bg-dot-sp-1 {
            width: 30px;
            top: 34%;
            left: 11%;
        }

        .bg-dot-sp-2 {
            width: 15px;
            top: 49%;
            left: 24%;
        }

        .bg-dot-sp-3 {
            width: 40px;
            bottom: 43%;
            right: 15%;
        }

        .bg-dot-sp-4 {
            width: 15px;
            bottom: 39%;
            left: 2%;
        }
    }

    .joto2 {
        position: relative;

        .bg-dot-sp-1 {
            width: 15px;
            top: 13.5%;
            right: 2%;
        }

        .bg-dot-sp-2 {
            width: 15px;
            top: 19%;
            left: 6%;
        }

        .bg-dot-sp-3 {
            width: 30px;
            top: 24%;
            right: 20%;
        }
    }

    .head {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;

        .store-swiper1, .store-swiper2, .store-swiper3 {
            aspect-ratio: 375/125;

            video {
                object-fit: cover;
                width: 100%;
                height: 100%;
                aspect-ratio: 375/125;
            }
        }

        .bg {
            object-fit: cover;
            
            width: 100%;
            margin-bottom: 10px;
        }

        h3 {
            
            letter-spacing: 0.12rem;
            margin-top: 20px;
            margin-bottom: 40px;
            font-size: 20px;
            color: #3f5471;

            span {
                border-bottom: 3px solid #3f5471;
            }
        }

        p {
            width: 90%;
            line-height: 35px;
            letter-spacing: 0.1rem;
            margin-bottom: 40px;
        }

        .view-more-ripple {
            font-size: 16px;
            width: 180px;
            height: 40px;
        }
    }

    .greet {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        gap: 10%;
        margin: 0 10% 50px;

        .text {
            h3 {
                font-size: 24px;
                margin-bottom: 20px;
                font-weight: 500;
                color: #3f5471;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .bg-sp {
                width: 95%;
                margin: 0 auto;
            }

            p {
                line-height: 40px;
                margin-top: 40px;
                font-size: 18px;
                letter-spacing: 0.1rem;

                span {
                    display: block;

                    &:last-child {
                        margin-top: 20px;
                        margin-left: 40px;
                    }
                }
            }
        }

        .bg {
            display: none;
            object-fit: cover;
        }
    }

    .policy {
        margin: 0 10% 50px;

        h3 {
            font-size: 24px;
            font-weight: 500;
            color: #3f5471;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        p {
            margin-top: 40px;
            line-height: 35px;
            letter-spacing: 0.1rem;
        }
    }

    .access {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5%;
        margin-bottom: 100px;

        .map {
            position: relative;
            order: 2;
            width: calc(100% - 60px);
            aspect-ratio: 318/276;
            margin: 30px auto 0;

            iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }
        }

        .text {
            order: 1;

            address {
                display: flex;
                flex-direction: column;
                margin-left: 30px;
                margin-bottom: 30px;

                > span {
                    &:nth-child(2) {
                        
                    }
                }

                p {
                    display: flex;
                    gap: 10px;
                    font-weight: initial;

                    a {
                        color: #898989;
                        text-decoration: underline 1px black;
                        text-underline-offset: 5px;
                    }
                }
            }

            .calendar {
                p {
                    margin-left: 30px;

                    span {
                        display: block;
                    }
                }

                table {
                    margin: 0 auto;
                    font-size: 12px;
                    border-collapse: collapse;

                    tr {
                        &:first-child {
                            color: #3f5471;

                            th {
                                background-color: #cccccc;

                                &:last-child {
                                    padding: 3px;
                                }
                            }
                        }

                        th {
                            border: 2px solid black;

                            &:first-child {
                                color: #3f5471;
                                padding: 3px 12px;
                            }

                            &:not(&:first-child, &:last-child) {
                                padding: 3px 12px;
                            }
                        }
                    }
                }
            }
        }
    }

    &.osirase {
        .bg-dot {
            z-index: -1;
        }

        .bg-dot-sp-1 {
            width: 80px;
            top: 18%;
            right: 5%;
        }

        .bg-dot-sp-2 {
            width: 50px;
            top: 40%;
            left: 0%;
        }

        .bg-dot-sp-3 {
            width: 80px;
            bottom: 25%;
            right: -10px;
        }

        .bg-dot-sp-4 {
            width: 50px;
            bottom: 0%;
            left: 3%;
        }

        .navigation-container {
            display: flex;
            flex-direction: column;
            margin: 0 20px;
            justify-content: center;
            font-family: "Yu Gothic";

            .category-navigation {
                display: flex;
                width: 100%;
                align-self: center;
                justify-content: space-between;

                .active {
                    background-color: #3f5471;
                    color: white;
                }

                a {
                    background-color: white;
                    border-radius: 25px;
                    padding: 5px 20px;
                    border: 1px solid #3f5471;

                    &:hover {
                        background-color: #f3f3f3;
                    }
                }
            }

            form {
                margin-top: 20px;
                margin-bottom: 40px;
                align-self: flex-end;

                select {
                    border: 1px solid #3f5471;
                    border-radius: 3px;
                    font-family: "Yu Gothic";
                    width: 150px;
                    padding: 5px;
                }
            }
        }

        .archive-container {
            font-family: "Yu Gothic";
            
            margin-bottom: 150px;

            .news-list {
                width: 90%;
                margin: 0 auto;

                article {
                    position: relative;
                    border-top: 1px solid black;
                    padding: 30px 20px;

                    &:last-child {
                        border-bottom: 1px solid black;
                    }

                    &.active {
                        p {
                            height: auto;
                        }
                    }

                    h3 {
                        margin: 10px 0 20px;
                    }

                    p {
                        height: 0;
                        overflow: hidden;
                        word-break: break-all;
                        padding-right: 3%;
                    }

                    .category {
                        border: 1px solid #3f5471;
                        border-radius: 10px;
                        padding: 0 20px;
                        font-size: 15px;
                    }

                    .news-arrow {
                        position: absolute;
                        display: block;
                        height: 15px;
                        width: 13px;
                        top: 25%;
                        right: 0;

                        &::after {
                            content: "";
                            position: absolute;
                            top: 0;
                            left: 0;
                            display: block;
                            width: 100%;
                            height: 100%;
                            padding: 50%;
                            background-color: #3f5471;
                            clip-path: polygon(5% 0, 40% 25%, 5% 50%, 0 45%, 30% 25%, 0 5%);
                        }

                        &.active {
                            width: 15px;
                            height: 13px;
                            &::after {
                                clip-path: polygon(50% 5%, 25% 40%, 0 5%, 5% 0, 25% 30%, 45% 0);
                            }
                        }
                    }

                    .row {
                        align-items: center;
                        gap: 10px;
                    }
                }
            }

            .pagination {
                display: flex;
                justify-content: center;
                margin-top: 40px;
                color: #3f5471;
                font-size: 18px;
                gap: 20px;

                .current {
                    border-bottom: 1px solid black;
                    padding: 0 5px;
                }

                a {
                    color: #3f5471;
                    padding: 0 5px;
                    border-radius: 5px;

                    &:hover {
                        color: #fff;
                        background-color: #3F5471;
                    }
                }
            }
        }
    }

    &#privacy-policy {
        h2 {
            font-family: "Yu Gothic";
            
            color: #3f5471;
            font-size: 32px;
            margin-top: 100px;
            margin-bottom: 40px;
            text-align: center;
        }

        .text-container {
            background-color: #e9ecef;
            width: 90%;
            margin: 0 auto;
            padding: 10px 20px;
            margin-bottom: 50px;

            .head-icon-text {
                font-family: "Yu Gothic";
                
                color: #3f5471;
                display: flex;
                gap: 10px;
                font-size: 24px;
                margin-bottom: 20px;
            }

            .head-icon-text-2 {
                .head-icon {
                    display: none;
                }
            }

            h3 {
                font-size: 20px;
                font-family: "Yu Gothic";
                
                color: #3f5471;
            }

            ul {
                font-weight: 500;

                li {
                    font-family: "Yu Gothic";
                    color: #3f5471;

                    &.first-li {
                        margin-bottom: 40px;
                    }

                    .sanjo-p {
                        margin-bottom: 20px;
                    }

                    .gooubo {
                        margin-bottom: 20px;
                    }

                    ol {
                        margin-left: 20px;

                        li {
                            list-style-type: decimal;

                            ol {
                                margin-left: 20px;

                                li {
                                    list-style-type: lower-latin;

                                    ol {
                                        margin-left: 20px;

                                        li {
                                            list-style-type: lower-roman;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        .view-more-ripple {
            width: 288px;
            margin: 40px auto 80px;
        }
    }

    section {
        &.about-container {
            position: relative;

            .information {
                display: flex;
                flex-direction: column;
                margin-bottom: 50px;

                h2 {
                    color: white;
                    background-color: #3f5471;
                    border: 1px solid #15bde8;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-family: "gabarito-reg";
                    letter-spacing: 0.12rem;
                    padding: 15px 0;
                }

                ul {
                    padding: 25px 10px;

                    li {
                        flex-direction: column;
                        align-items: flex-start;
                        border-bottom: 1px solid #00000033;
                        padding-bottom: 20px;

                        &:not(:last-of-type) {
                            margin-bottom: 20px;
                        }

                        span {
                            margin-left: 5px;
                        }
                    }
                }

                a {
                    display: block;
                    width: 223px;
                    padding: 5px 0;
                    font-size: 14px;
                    margin: 0 auto 25px;
                }

                .info-container {
                    border: 1px solid #4f4f74;

                    ul {
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        font-family: "Yu Gothic";

                        li {
                            width: 100%;
                            display: flex;
                            justify-content: center;

                            time {
                                font-family: "gabarito-reg";
                            }

                            span {
                                word-break: break-all;
                            }
                        }
                    }

                    a {
                        background-color: #3f5471;
                        text-align: center;
                        color: white;
                        font-family: "Yu Gothic";
                        letter-spacing: 0.12rem;
                    }
                }
            }

            .system-container-pc {
                display: none;
                position: relative;
                height: 860px;
                transition: all 0.5s;

                .revolver {
                    position: absolute;

                    .bullet-1 {
                        animation: ripple 1.5s infinite;
                    }

                    .bullet {
                        position: absolute;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        aspect-ratio: 1/1;
                        border-radius: 50%;
                        background-color: #3f5471;
                        color: white;
                        font-family: "Yu Gothic";
                        letter-spacing: 0.12rem;
                        filter: drop-shadow(0 0 34.5px #3f547180);
                        cursor: pointer;
                        transition-timing-function: linear;
                        white-space: nowrap;

                        span {
                            transition-duration: 10ms;
                            transition-timing-function: linear;
                        }

                        &.bullet-1 {
                            background-color: white;
                            color: #3f5471;
                        }
                    }
                }

                .systems {
                    .system-text {
                        display: none;
                        flex-direction: column;
                        align-items: flex-end;
                        font-family: "gabarito-reg";
                        color: #3f5471;

                        &.active {
                            display: flex;
                        }

                        h2 {
                            letter-spacing: 12px;
                            display: flex;
                            flex-direction: column;
                            align-items: flex-end;
                            transition-duration: 0.4s;

                            &.anim-head {
                                &:not(.active) {
                                    opacity: 0;
                                    transform: translateX(-50%);
                                }
                            }

                            .underbar {
                                position: relative;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                width: 550px;
                                padding: 25px 0 10px 0;

                                .bar {
                                    width: 100%;
                                    height: 4px;
                                    background-color: #4f4f74;
                                }

                                &:before {
                                    content: "";
                                    position: absolute;
                                    left: 0%;
                                    display: block;
                                    background-color: #4f4f74;
                                    width: 20px;
                                    height: 20px;
                                    clip-path: polygon(100% 50%, 0 0, 0 100%);
                                }

                                &:after {
                                    content: "";
                                    position: absolute;
                                    right: 0%;
                                    display: block;
                                    background-color: #4f4f74;
                                    width: 20px;
                                    height: 20px;
                                    clip-path: polygon(0 50%, 100% 0, 100% 100%);
                                }
                            }
                        }

                        p {
                            font-family: "Yu Gothic";

                            a {
                                
                                color: #3f5471;
                            }
                        }
                    }
                }
            }

            .system-container-sp {
                position: relative;
                padding-top: 50px;
                margin-bottom: 100px;

                .bg-dot-sp {
                    bottom: -5%;
                    right: -40px;
                    width: 117px;
                }

                .swiper-pagination {
                    top: 0;
                    z-index: 1;

                    .swiper-pagination-bullet {
                        background-color: #3f5471;
                        opacity: 1;
                        width: 10px;
                        height: 10px;
                        margin-top: 0;
                        margin-right: 40px !important;
                        margin-left: 40px !important;
                        margin-bottom: 2.5px;
                    }

                    .swiper-pagination-bullet-active {
                        animation: bullet-beat 1.5s infinite forwards, ripple 1.5s infinite 0.725s;
                    }
                }

                .pagination-bar {
                    position: absolute;
                    top: 10px;
                    left: 50%;
                    transform: translateX(-50%);
                    background-color: #3f5471;
                    height: 3px;
                    width: 260px;
                }

                .pagination-text {
                    display: flex;
                    gap: 50px;
                    font-size: 11px;
                    position: absolute;
                    top: 30px;
                    left: 50%;
                    transform: translateX(-50%);
                    font-family: "Yu Gothic";
                    letter-spacing: 0.1rem;
                    color: #3f5471;

                    p {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        white-space: nowrap;
                    }
                }

                .swiper {
                    z-index: 2;
                    margin-top: 30px;

                    .swiper-background {
                        position: absolute;
                        left: 0;
                        bottom: 0;
                        width: 200vw;
                        height: 58%;
                        background: linear-gradient(90deg, #ffffff00 0%, #ffffff00 10%, #b0b0c017 30%, #4f4f7429 75%);
                    }

                    ul {
                        display: flex;

                        li {
                            h3 {
                                height: 140px;
                                font-size: 40px;
                                padding-right: 10px;
                                display: flex;
                                flex-direction: column;
                                align-items: flex-end;
                                justify-content: flex-end;
                                font-family: "gabarito-reg";
                                letter-spacing: 0.12rem;
                                color: #3f5471;
                                transition-duration: 0.4s;

                                &:not(.active) {
                                    opacity: 0;
                                    transform: translateX(-50%);
                                }
                            }

                            .underbar {
                                width: 95vw;
                                position: relative;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                padding: 25px 0 10px 0;
                                margin: 0 auto;

                                .bar {
                                    width: 100%;
                                    height: 4px;
                                    background-color: #4f4f74;
                                }

                                &:before {
                                    content: "";
                                    position: absolute;
                                    left: 0%;
                                    display: block;
                                    background-color: #4f4f74;
                                    width: 20px;
                                    height: 20px;
                                    clip-path: polygon(100% 50%, 0 0, 0 100%);
                                }

                                &:after {
                                    content: "";
                                    position: absolute;
                                    right: 0%;
                                    display: block;
                                    background-color: #4f4f74;
                                    width: 20px;
                                    height: 20px;
                                    clip-path: polygon(0 50%, 100% 0, 100% 100%);
                                }
                            }

                            p {
                                font-family: "Yu Gothic";
                                font-size: 18px;
                                padding: 0 12.5%;
                                line-height: 30px;

                                &:nth-of-type(1) {
                                    margin-top: 80px;
                                }

                                &:last-of-type {
                                    padding-bottom: 1em;
                                }

                                span {
                                    
                                }

                                a {
                                    color: #3f5471;
                                    text-decoration: underline 1px;
                                    display: inline-block;

                                    &::first-letter {
                                        padding-left: 1em;
                                    }
                                    
                                    &:first-of-type {
                                        margin-top: 1.5em;
                                    }

                                    &:last-of-type {
                                        margin-bottom: 1.5em;
                                    }
                                }
                            }

                            .view-more-ripple {
                                margin: 20px auto 20px;
                            }
                        }
                    }
                }
            }
        }

        &.staff-intro {
            .staff-intro-pc {
                display: none;
                position: relative;
                justify-content: right;
                align-items: center;

                .bg-dot-pc {
                    z-index: 3;
                }

                .bg-box {
                    position: relative;
                    z-index: 2;
                    display: flex;
                    flex-direction: column;
                }

                .content {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    z-index: 1;
                    background: linear-gradient(-90deg, #4f4f7433 20%, #e5d9f933 95%, rgba(255, 255, 255, 1));
                }
            }

            .staff-intro-sp {
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;

                a {
                    width: 220px;
                    padding: 5px 15px;
                    margin-top: 50px;
                    margin-bottom: 100px;
                    font-size: 24px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: #4f4f74;
                    border: 1px solid #4f4f74;
                    background-color: white;
                    font-family: "Yu Gothic";
                    letter-spacing: 0.1rem;

                    .arrow {
                        width: 20px;
                        height: 20px;
                        clip-path: polygon(40% 10%, 50% 0, 100% 50%, 50% 100%, 40% 90%, 80% 50%);
                        background-color: #4f4f74;
                    }
                }

                .bg-dot-sp {
                    width: 117px;
                    top: 50px;
                    left: 0;
                }

                .bg-box {
                    margin-top: 40px;
                    padding: 0 10px;
                    display: flex;
                    flex-direction: column;
                    gap: 40px;

                    .bg-img {
                        width: 100%;
                        aspect-ratio: 355/300;
                        object-fit: cover;
                    }

                    div.bg-img {
                        background-color: #404040;
                    }
                }
            }
        }

        &.our-stores {
            overflow: clip;
            position: relative;
            padding-bottom: 150px;

            .bg-dot-pc {
                z-index: -1;
            }

            .bg-dot-sp {
                width: 117px;
                z-index: 3;

                &.bg-dot-sp-1 {
                    top: 5%;
                    right: -20px;
                }

                &.bg-dot-sp-2 {
                    top: 52%;
                    left: -5px;
                }

                &.bg-dot-sp-3 {
                    bottom: 0;
                    right: -5px;
                }
            }

            .view-more-sp {
                display: flex;
                align-items: center;
                justify-content: center;
                color: #4f4f74;
                border: 1px solid #4f4f74;
                background-color: white;
                font-family: "Yu Gothic";
                letter-spacing: 0.1rem;
                margin: 0 auto;
                width: 220px;
                padding: 5px 15px;
                margin-top: 40px;
                margin-bottom: 100px;
                font-size: 24px;

                .arrow {
                    width: 20px;
                    height: 20px;
                    clip-path: polygon(40% 10%, 50% 0, 100% 50%, 50% 100%, 40% 90%, 80% 50%);
                    background-color: #4f4f74;
                }
            }

            ul {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                margin-top: 40px;
                gap: 40px;
                padding: 0 10px;

                li {
                    position: relative;

                    img {
                        width: 100%;
                        aspect-ratio: 410/382;
                    }

                    a {
                        width: 90%;
                        position: absolute;
                        left: 50%;
                        bottom: 0;
                        transform: translate(-50%, -30px);

                        &:before {
                            content: "";
                            display: block;
                            position: absolute;
                            bottom: -8px;
                            right: -8px;
                            z-index: -1;
                            width: 100%;
                            height: 100%;
                            background-color: #4f4f744d;
                        }

                        &:hover {
                            .view-more {
                                transform: translate(8px, 9px);
                                transition: transform 0.3s;
                                display: flex;
                                justify-content: right;
                                align-items: center;
                                color: white;
                                border: 1px solid #4f4f74;
                                background-color: #3f5471;
                                font-family: "Yu Gothic";
                                letter-spacing: 0.1rem;

                                .arrow {
                                    clip-path: polygon(40% 10%, 50% 0, 100% 50%, 50% 100%, 40% 90%, 80% 50%);
                                    background-color: white;
                                }
                            }

                            .store-name {
                                opacity: 0;
                                transform: translate(8px, 9px);
                            }
                        }

                        .view-more {
                            position: absolute;
                            top: 0;
                            z-index: -1;
                            width: 100%;
                            transform: translate(0, 0);
                            gap: 30%;
                            padding: 5px 15px;
                            font-size: 24px;

                            .arrow {
                                width: 20px;
                                height: 20px;
                            }
                        }

                        .store-name {
                            position: relative;
                            border: 1px solid black;
                            color: #4f4f74;
                            background-color: white;
                            font-family: "Yu Gothic";
                            letter-spacing: 0.1rem;
                            text-align: center;
                            transform: translate(0, 0);
                            transition: transform 0.3s;
                            padding: 5px 15px;
                            font-size: 24px;

                            span {
                                display: block;
                            }
                        }
                    }
                }
            }
        }

        &.benefit {
            position: relative;
            overflow: clip;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-bottom: 80px;

            .bg-dot-1 {
                position: absolute;
                top: 15%;
                left: -5%;
                width: 198px;
            }

            .right {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                line-height: 29px;
                font-size: 18px;

                p {
                    font-family: "Yu Gothic";
                    letter-spacing: 0.1rem;
                    color: #3f5471;
                    width: 75%;
                    margin-top: 30px;
                    margin-bottom: 80px;
                }

                .view-more-ripple {
                    display: none;
                }
            }

            ul {
                display: flex;
                flex-direction: column;
                gap: 40px;
                margin: 0 10px;

                li {
                    position: relative;

                    a {
                        display: flex;
                        height: 160px;

                        .benefit-pc {
                            display: none;
                        }

                        .benefit-sp {
                            width: 232px;
                        }

                        span {
                            background: linear-gradient(-90deg, #4f4f7433 60%, #7b7bb413 100%, #9494da00 0%);
                            color: #3f5471;
                            width: 100%;
                            height: 100%;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                        }
                    }

                    img {
                        width: 100%;
                    }

                    span {
                        font-family: "Yu Gothic";
                        
                        letter-spacing: 0.1rem;
                    }
                }
            }
        }

        &.recruit {
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: clip;

            .bg-dot-1 {
                position: absolute;
                top: 10%;
                left: -5px;
                width: 117px;
            }

            .right {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                margin: 0 50px;

                p {
                    font-family: "Yu Gothic";
                    letter-spacing: 0.1rem;
                    color: #3f5471;
                    font-size: 18px;
                    line-height: 29px;
                    margin-top: 50px;
                    margin-bottom: 50px;
                }
            }

            .bg-recruit {
                display: none;
            }

            .bg-recruit-sp {
                margin-top: 50px;
            }
        }
    }

    .entry-flow {
        position: relative;
        display: flex;
        align-items: center;
        background-color: #79889c;
        font-family: "Yu Gothic";
        
        margin: 100px 0;
        height: 80px;

        .current {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 1px solid black;
            border-radius: 50%;
            color: #c1c1c1;
            display: flex;
            width: 150px;
            height: 150px;
            font-size: 36px;
            justify-content: center;
            align-items: center;
        }

        .arrows {
            display: flex;

            span {
                background-color: #d9d9d9;
                clip-path: polygon(100% 50%, 0 0, 0 100%);
            }
        }

        .prev-arrows,
        .next-arrows {
            gap: 3px;

            span {
                width: 13px;
                height: 13px;
            }
        }

        .prev-arrows {
            margin-right: auto;
        }

        .next-arrows {
            margin-left: auto;
        }

        .prev,
        .next {
            color: #333333;
            margin: 0 5px;
            font-size: 20px;
        }
    }

    .entry-container {
        position: relative;

        .bg-dot {
            z-index: -1;
            width: 252px;
            bottom: 3%;
            right: -5%;
        }

        .fields {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            border-radius: 12px;
            font-family: "Yu Gothic";
            letter-spacing: 0.1rem;
            background-color: #79889c;
            position: relative;
            width: 90%;
            margin: 0 auto;
            padding-top: 50px;
            gap: 10px;

            .star {
                color: red;
            }

            .note {
                color: white;
                align-self: center;
                position: absolute;
                top: 4%;
                right: 10%;
                font-size: 14px;
            }

            label {
                color: white;
            }

            .name-age {
                display: flex;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;

                .name {
                    font-size: 20px;
                    margin-bottom: 10px;
                    margin-left: 20px;
                }

                p {
                    display: inline-block;

                    span {
                        &:nth-of-type(1) {
                            input {
                                width: 145px;
                            }
                        }

                        &:nth-of-type(2) {
                            input {
                                width: 85px;
                            }
                        }
                    }
                }

                .name-age-body {
                    display: flex;
                    width: 90%;
                    justify-content: space-between;
                }

                .wpcf7-not-valid-tip {
                    position: absolute;
                }
            }

            input {
                &:not(.checkbox) {
                    box-shadow: inset 0 4px 4px 0 #00000040;
                    border: none;
                }
            }

            .select-parent {
                position: relative;

                &:after {
                    content: "";
                    display: block;
                    position: absolute;
                    clip-path: polygon(50% 100%, 0 0, 100% 0);
                    background-color: black;
                    bottom: 8px;
                    right: 20px;
                    width: 20px;
                    height: 17px;
                }

                select {
                    -webkit-appearance: none;
                    appearance: none;
                    width: 100%;
                    padding: 10px 20px;
                    font-size: 14px;
                    box-shadow: inset 0 4px 4px 0 #00000040;

                    &.wpcf7-not-valid, option:first-of-type {
                        color: #636c72;
                    }
                }
            }

            .self-pr {
                display: flex;
                flex-direction: column;

                textarea {
                    box-shadow: inset 0 4px 4px 0 #00000040;
                    width: 100%;
                    padding: 10px 20px;
                    font-size: 20px;
                }
            }

            .cf7-privacy {
                align-self: center;
                margin: 80px 0;
                font-size: 14px;

                input {
                    width: 30px;
                    height: 30px;
                    margin-right: 10px;
                }

                
                label {
                    display: flex;

                    a {
                        color: white;
                        text-decoration: underline 1px black;
                        text-underline-offset: 5px;
                    }
                }

                input {
                    box-shadow: inset 0 4px 4px 0 #00000040;
                    background-color: white;
                    accent-color: white;
                }
            }

            p {
                &:not(.cf7-privacy) {
                    width: 90%;
                    margin: 0 auto;

                    label {
                        display: inline-block;
                        font-size: 20px;
                        margin-bottom: 10px;
                    }

                    input {
                        width: 100%;
                        font-size: 14px;
                        padding: 10px 20px;
                    }
                }
            }
        }

        .view-more-ripple-submit {
            width: 288px;
            margin: 80px auto 200px;

            input {
                font-size: 24px;
                background-color: #fff;
                width: 100%;
                border: none;
            }

            .wpcf7-spinner {
                display: none;
            }
        }
    }

    .entry-confirm-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 100px;

        .bg-dot {
            z-index: -1;
            width: 252px;
            bottom: 5%;
            right: 2%;
        }

        form {
            display: flex;
            flex-direction: column;
            align-items: center;

            .fields {
                border-radius: 12px;
                background-color: #79889c;
                font-family: "Yu Gothic";
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding: 100px 0 80px 0;
                margin-bottom: 100px;
                align-items: flex-end;
                width: 90vw;

                .name-age {
                    font-size: 20px;
                    color: #fff;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    flex-wrap: wrap;
                    width: 90%;
                    margin: 0 auto;

                    .name-age-body {
                        display: flex;
                        width: 100%;
                        justify-content: space-between;

                        span {
                            &:first-of-type, &:last-of-type {
                                font-size: 14px;
                                color: #333;
                                padding: 10px 20px;
                                background-color: #d5dae0;
                            }

                            &:first-of-type {
                                width: 145px;
                            }

                            &:last-of-type {
                                width: 85px;
                            }
                        }
                    }
                }

                p:not(.name-age-body, .cf7-privacy) {
                    margin-right: auto;
                    margin-left: auto;
                    width: 90%;

                    span {
                        &:nth-of-type(1) {
                            color: white;
                            font-size: 20px;
                        }

                        &:nth-of-type(2) {
                            display: block;
                            background-color: #d5dae0;
                            color: #333333;
                            font-size: 14px;
                            min-height: 42.4px;
                            padding: 10px 20px;
                        }
                    }

                    &:nth-of-type(2) {
                        label {
                            display: flex;

                            span {
                                &:nth-of-type(2) {
                                    width: 75px;
                                    padding: 5px 20px;
                                }
                            }
                        }
                    }

                    label {
                        display: inline-block;
                        margin-bottom: 10px;
                    }

                    input {
                        width: 100%;
                        font-size: 14px;
                        padding: 10px 20px;
                    }
                }

                .label-p {
                    margin-bottom: 20px;
                    margin-left: 5vw;

                    &.self-pr {
                        margin-right: 5vw;

                        label {
                            span {
                                &:nth-of-type(2) {
                                    height: 255px;
                                }
                            }
                        }
                    }

                    span {
                        &:nth-of-type(1) {
                            font-size: 20px;
                            margin-right: 30px;
                        }

                        &:nth-of-type(2) {
                            width: 300px;
                            font-size: 14px;
                            padding: 5px 20px;
                        }
                    }

                    label {
                        display: flex;
                        flex-direction: column;
                    }
                }

                .select-parent {
                    width: 90%;
                }

                .self-pr {
                    flex-direction: column;
                    width: 90%;

                    span {
                        &:nth-of-type(2) {
                            min-height: 254px !important;
                            overflow: scroll;
                            /*スクロールバー非表示（IE・Edge）*/
                            -ms-overflow-style: none;
                            /*スクロールバー非表示（Firefox）*/
                            scrollbar-width: none;
                        }
                    }

                    label {
                        margin-top: 10px;
                        display: flex;
                        flex-direction: column;
                    }
                }

                .cf7-privacy {
                    align-self: center;
                    margin: 80px 0;

                    label {
                        display: flex;

                        a {
                            color: white;
                            text-decoration: underline 1px black;
                            text-underline-offset: 5px;
                        }
                    }

                    input {
                        width: 30px;
                        height: 30px;
                        margin-left: 5px;
                        margin-right: 10px;
                        box-shadow: inset 0 4px 4px 0 #00000040;
                        background-color: white;
                        accent-color: white;
                    }
                }
            }

            .view-more-ripple-submit {
                align-self: center;
                box-shadow: 0 4px 4px 0 #00000040;
                width: 222px;

                input {
                    font-family: "Yu Gothic";
                    font-size: 24px;
                    background-color: transparent;
                    border: none;
                    cursor: pointer;
                    width: 100%;
                }

                .wpcf7-spinner {
                    display: none;
                }
            }
        }
    }

    .about {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 150px 0;

        .vector {
            position: absolute;

            &.vector-1 {
                top: 10%;
                left: 0;
                width: 21px;
            }

            &.vector-2 {
                top: 28%;
                right: 0;
                width: 20px;
            }
        }

        .bg-dot {
            &.bg-dot-1 {
                top: 5%;
                left: 12%;
                width: 43px;
            }

            &.bg-dot-2 {
                top: 20%;
                right: 5%;
                width: 48px;
            }

            &.bg-dot-3 {
                top: 38%;
                right: 7%;
                width: 33px;
            }

            &.bg-dot-4 {
                bottom: 22%;
                left: -10px;
                width: 48px;
            }

            &.bg-dot-5 {
                bottom: 8%;
                left: -20px;
                width: 33px;
            }
        }

        ul {
            flex-direction: column;
            margin-top: 50px;
            width: 100%;
            padding: 0 40px;

            li {
                display: flex;
                color: #3f5471;
                font-family: "Yu Gothic";
                
                letter-spacing: 0.1rem;
                flex-direction: column;
                font-size: 18px;

                .left {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: #dddddd80;
                    border-top: 1px solid #000000;
                    border-left: 1px solid #000000;
                    border-right: 1px solid #000000;
                    padding: 10px 0;
                }

                .right {
                    border-top: 1px solid #000000;
                    border-left: 1px solid #000000;
                    border-right: 1px solid #000000;
                    padding: 10px 0 10px 10px;
                }

                &:last-of-type {
                    .left {
                        border-bottom: 1px solid #000000;
                    }

                    .right {
                        border-bottom: 1px solid #000000;
                    }
                }

                address {
                    span {
                        display: block;
                    }
                }
            }
        }
    }

    .history {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 150px;

        .history-container {
            position: relative;

            .dots {
                position: absolute;
                top: 20px;
                left: 40px;
                display: flex;
                flex-direction: column;

                .dot {
                    display: block;
                    background-color: #3f5471;
                    border-radius: 50%;
                    width: 16px;
                    height: 16px;

                    &.dot-2 {
                        margin-top: 150px;
                    }

                    &.dot-3 {
                        margin-top: 120px;
                    }

                    &.dot-4 {
                        margin-top: 115px;
                    }

                    &.dot-5 {
                        margin-top: 120px;
                    }
                }

                .bar {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    display: block;
                    width: 3px;
                    height: 100%;
                    transform: translate(-50%, -50%);
                    background-color: #3f5471;
                }
            }

            ul {
                display: flex;
                flex-direction: column;
                gap: 20px;
                padding: 0 10px 0 80px;

                li {
                    color: #3f5471;
                    font-family: "Yu Gothic";
                    
                    letter-spacing: 0.1rem;

                    &:last-child {
                        p {
                            width: 220px;
                        }
                    }

                    span {
                        font-size: 32px;
                        line-height: 70px;
                    }

                    p {
                        line-height: 39px;
                    }
                }
            }
        }
    }

    .message {
        .content-pc {
            position: relative;
            display: none;

            .item {
                position: relative;

                .text {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    font-family: "Yu Gothic";
                    
                    letter-spacing: 0.12rem;
                    color: white;
                    background-color: #3f5471;

                    p {
                        span {
                            display: block;
                        }
                    }
                }
            }
        }

        .content-sp {
            margin-top: 80px;

            .item {
                position: relative;
                background-color: #3f5471;

                &.item-1 {
                    padding-bottom: 280px;

                    .text {
                        bottom: 40px;

                        p {
                            &:first-child {
                                margin-bottom: 20px;
                            }
                        }
                    }
                }

                &.item-2 {
                    padding-bottom: 450px;

                    .text {
                        bottom: 40px;

                        p {
                            &:first-child {
                                span {
                                    &:first-child {
                                        margin-bottom: 20px;
                                    }

                                    &:last-child {
                                        margin-bottom: 40px;
                                    }
                                }
                            }

                            &:nth-of-type(2) {
                                font-family: "Yu Gothic";
                                
                                font-size: 18px;
                            }

                            span {
                                display: block;
                            }
                        }
                    }
                }

                .bg {
                    width: 100%;
                }

                .text {
                    width: 100%;
                    padding: 0 5%;
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    color: white;
                    font-family: "Yu Gothic";
                    line-height: 32px;
                    letter-spacing: 0.12rem;
                    backdrop-filter: blur(4px);
                }
            }
        }
    }

    .message-wrapper {
        position: relative;
        background-image: url("../assets/imgs/bg-entry-ty-sp.webp");
        background-size: cover;
        aspect-ratio: 380/893;
        width: 100%;

        .bg-dot {
            z-index: -1;
        }

        .message-box {
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 12px;
            background-color: #eeeeee80;
            font-family: "Yu Gothic";
            letter-spacing: 0.1rem;
            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;
            aspect-ratio: 380/533;

            b {
                font-size: 20px;
                
                margin-top: 80px;
                margin-bottom: 100px;
            }

            p {
                width: 80%;
                text-align: center;

                &:nth-of-type(1) {
                    margin-bottom: 20px;
                }
            }
        }

        .view-more-ripple {
            position: absolute;
            left: 50%;
            bottom: 20%;
            transform: translateX(-50%);
        }
    }

    .entry-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-image: url("../assets/imgs/bg-entry-sp.webp");
        background-size: cover;
        background-repeat: no-repeat;
        aspect-ratio: 378/521;

        .anim-head1 {
            margin-bottom: 0;

            .dot-box {
                .top-text {
                    color: white;
                }
            }

            .underbar {
                padding: 40px 0 30px;

                &:before {
                    background-color: white;
                }

                .bar {
                    background-color: white;
                }

                &:after {
                    background-color: white;
                }
            }

            .bottom-text {
                color: white;
                text-align: center;
                font-size: 32px;
                line-height: 55px;
                margin-bottom: 20px;

                span {
                    display: block;
                }
            }
        }

        .view-more-ripple {
            border: 1px solid white;
            color: white;
            background-color: transparent;
            margin: 10px auto 0;

            .arrow {
                background-color: white;
            }
        }
    }

    .anim-head1 {
        margin-bottom: 40px;
    }

    .anim-head2 {
        margin: 80px 0 40px;
    }

    .anim-head3 {
        margin: 80px 0 50px;
    }

    .goto-pc {
        display: none;
        font-family: "Yu Gothic";
        letter-spacing: 0.5rem;
        height: 587px;
        justify-content: space-between;
        align-items: flex-end;
        position: relative;
        padding-left: 0;
        color: #fff;
        overflow: clip;

        img {
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            width: 100%;
            height: 175%;
            object-fit: cover;
        }

        .left, .right {
            display: flex;
            flex-direction: column;
            text-shadow: 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333;
        }

        .left {
            text-align: center;
        }
    }

    .goto-sp {
        font-family: "Yu Gothic";
        margin: 40px 0;
        position: relative;
        color: #3f5471;


        .top {
            position: relative;
            aspect-ratio: 376/167;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-end;
            padding-right: 10px;
            padding-top: 50px;
            color: white;
            overflow: clip;

            &:nth-of-type(2) {
                font-size: 20px;
                letter-spacing: 0.12rem;
            }

            span {
                text-shadow: 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333, 0 0 1px #333;
            }

            img {
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
                width: 100%;
                height: 150%;
                object-fit: cover;
            }
        }

        .bottom {
            color: #767676;
            display: flex;
            flex-direction: column;
            letter-spacing: 0.1rem;
            margin-top: 10px;
            margin-left: 20px;
        }
    }

    .section-container {
        position: relative;

        .bg-dot-pc-1 {
            width: 13px;
            top: -2%;
            right: 15px;
        }

        .bg-dot-pc-2 {
            width: 13px;
            top: 22%;
            left: 15px;
        }

        .bg-dot-pc-3 {
            width: 45px;
            top: 29%;
            right: 15%;
        }

        .bg-dot-pc-4 {
            width: 35px;
            top: 44%;
            left: 25%;
        }

        .bg-dot-pc-5 {
            width: 13px;
            bottom: 48%;
            right: 20px;
        }

        .bg-dot-pc-6 {
            width: 13px;
            bottom: 45%;
            left: 3px;
        }

        section {
            display: flex;
            flex-direction: column;
            align-items: center;

            &:nth-of-type(3) {
                .text {
                    p {
                        &:nth-of-type(1) {
                            margin-bottom: 20px;
                        }

                        span {
                            &:first-child {
                                display: block;
                                margin-left: 10px;
                                margin-bottom: 10px;
                            }
                        }
                    }
                }
            }

            .text {
                letter-spacing: 0.1rem;
                font-family: "Yu Gothic";
                order: 2;
                width: 100%;
                margin: 40px 0 50px;

                h3 {
                    color: #3f5471;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    margin-left: 8%;
                    margin-bottom: 30px;
                    font-size: 24px;
                }

                p {
                    width: 80%;
                    margin: 0 10%;
                    line-height: 35px;
                    word-break: break-all;
                }
            }

            .bg {
                order: 1;
                width: 100%;
                aspect-ratio: 375 / 250;
            }
        }
    }

    .story {
        background-color: #79889c;
        color: white;
        font-family: "Yu Gothic";
        letter-spacing: 0.1rem;
        display: flex;
        justify-content: center;
        flex-direction: column;

        .h4-sp {
            font-size: 24px;
            padding: 20px 0 20px 30px;
        }

        .text {
            order: 2;
            padding: 100px 50px 50px;

            h4 {
                display: none;
            }

            p {
                line-height: 40px;
                word-break: break-all;
            }
        }

        .bg {
            order: 1;
            width: 100%;
            aspect-ratio: 375 / 210;
        }
    }

    .hobby {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: "Yu Gothic";
        letter-spacing: 0.1rem;
        margin-bottom: 80px;

        h3 {
            color: #3f5471;
            display: flex;
            align-items: center;
            gap: 10px;
            align-self: flex-start;
            margin: 50px 0 40px 40px;
            font-size: 24px;
        }

        p {
            text-align: center;
            width: 234px;
            margin: 40px auto 50px;
            word-break: break-all;
        }

        .bg {
            width: 135px;
            height: 135px;
            border-radius: 50%;
            object-fit: cover;
        }

        a {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #3f5471;
            border: 1px solid #000001;
            font-size: 18px;
            width: 234px;
            height: 40px;
        }
    }

    .other-staff {
        background-color: #3f5471;
        padding-bottom: 40px;

        h3 {
            font-family: "Yu Gothic";
            padding: 30px 0 30px 10%;
            font-size: 14px;
            color: white;

            span {
                border-bottom: 2px solid white;
            }
        }

        ul {
            display: flex;
            justify-content: center;
            gap: 10%;

            li {
                font-family: "Yu Gothic";
                display: flex;
                flex-direction: column;
                width: 215px;
                color: white;

                &:not(:first-child) {
                    display: none;
                }

                img {
                    width: 100%;
                    height: 143px;
                    object-fit: cover;
                }

                .few-word {
                    font-size: 18px;
                    
                    margin-top: 30px;
                    margin-bottom: 20px;
                }

                .staff-name {
                    display: block;
                }
            }
        }

        p {
            color: #fff;
        }
    }

    .view-more-ripple {
        width: 220px;
        padding: 5px 15px;
        font-size: 24px;

        .arrow {
            width: 20px;
            height: 20px;
        }
    }

    .view-more-ripple-submit {
        display: block;
        padding: 0;

        input {
            padding: 5px 15px;
        }

        .arrow {
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
        }
    }

    .content {
        display: flex;
        overflow: hidden;
        position: relative;

        .category {
            display: none;

            h3 {
                font-family: "Yu Gothic";
                color: #3f5471;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            nav {
                display: flex;
                flex-direction: column;
                font-family: "Yu Gothic";
                left: 0.1rem;

                a, button, .kakuin {
                    &:hover {
                        opacity: 0.3;
                    }
                }

                .stores {
                    display: flex;
                    flex-direction: column;
                    padding-bottom: 20px;

                    &.passive {
                        height: 0;
                        padding: 0;
                        overflow: hidden;
                    }
                }

                .kakuin {
                    display: flex;
                    justify-content: space-between;
                    border-top: 1px solid black;
                    cursor: pointer;

                    .arrow {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background-color: #3f5471;
                        border-radius: 50%;
                        color: white;

                        &:before {
                            content: "";
                            background-color: white;
                            clip-path: polygon(0 20%, 50% 100%, 100% 20%, 85% 0, 50% 65%, 15% 0);
                        }
                    }

                    &.active {
                        .arrow {
                            &:before {
                                clip-path: polygon(0 80%, 50% 0, 100% 80%, 85% 90%, 50% 35%, 15% 90%);
                            }
                        }
                    }

                    &:not(.active) {
                        padding-bottom: 20px;
                    }
                }
            }
        }

        .staff-container {
            
            width: 100%;

            h3 {
                display: none;
                font-family: "Yu Gothic";
                color: #3f5471;
                align-items: center;
                gap: 10px;
            }

            h4 {
                font-family: "Yu Gothic";
                letter-spacing: 0.1rem;
                color: #3f5471;
                background: linear-gradient(90deg, transparent 5%, #b5b5c4cc 80%);
                height: 158px;
                padding: 20px 0 0 20px;
            }

            .store-container {
                position: relative;

                .staff-name {
                    font-weight: 600;
                }

                .staff-label {
                    font-weight: 500;
                }

                .ul-pc {
                    display: none;
                }

                ul {
                    display: flex;

                    li {
                        font-family: "Yu Gothic";
                        display: flex;
                        flex-direction: column;

                        .staff-name {
                            display: block;
                        }
                    }
                }

                .swiper {
                    transform: translateY(-25%);

                    ul {
                        width: 100%;

                        li {
                            position: relative;
                            width: 215px;
                            height: 310px;
                            color: #3f5471;

                            &.swiper-slide-active {
                                img {
                                    height: 143px;
                                }

                                .few-word {
                                    display: block;
                                }

                                .staff-name {
                                    display: block;
                                }

                                .staff-label {
                                    display: block;
                                }

                                a {
                                    &::after {
                                        opacity: 0;
                                        height: 143px;
                                    }
                                }
                            }

                            
                            a {
                                font-size: 20px;
                                position: relative;
                                width: 100%;
                                height: 100%;

                                &::after {
                                    content: "";
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    display: block;
                                    width: 100%;
                                    height: 100%;
                                    background-color: rgba(0, 0, 0, 0.3);
                                }
                            }

                            img {
                                position: relative;
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                            }

                            .few-word {
                                display: none;
                                font-size: 18px;
                                margin-top: 30px;
                                margin-bottom: 20px;
                            }

                            .staff-name {
                                display: none;
                            }

                            .staff-label {
                                display: none;
                            }
                        }
                    }
                }

                .swiper-button-prev {
                    z-index: 5;
                    top: 50%;
                    left: 0;
                    color: white;

                    &::after {
                        font-size: 20px;
                        font-weight: bolder;
                    }
                }

                .swiper-button-next {
                    z-index: 5;
                    top: 50%;
                    right: 0;
                    color: white;

                    &::after {
                        font-size: 20px;
                        font-weight: bolder;
                    }
                }
            }
        }
    }

    .recruit-info {
        .anim-head1 {
            margin-top: 50px;
        }

        .content-jinzai {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-top: 40px;

            .bg-dot {
                z-index: -1;
                right: -20%;
                top: 15%;
                width: 337px;
            }

            .right {
                order: 1;

                h3 {
                    font-family: "Yu Gothic";
                    font-weight: 400;
                    align-items: center;
                    display: flex;
                    font-size: 28px;
                    margin-bottom: 40px;
                    margin-left: 20px;
                    gap: 10px;

                    img {
                        width: 11px;
                        height: 33px;
                    }
                }

                .bg-jinzai {
                    display: none;
                }

                .bg-jinzai-sp {
                    width: 100%;
                }
            }

            .left {
                font-family: "Yu Gothic";
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 100px 0;
                order: 2;

                h3 {
                    display: none;
                    font-weight: 400;
                    align-items: center;
                    gap: 10px;

                    img {
                        width: 11px;
                        height: 33px;
                    }
                }

                .text {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    margin: 0 20px;

                    strong {
                        
                        letter-spacing: 0.1rem;
                        margin-bottom: 40px;
                    }

                    p {
                        letter-spacing: 0.1rem;
                        line-height: 30px;

                        &:nth-of-type(2) {
                            margin-bottom: 40px;
                        }
                    }
                }
            }
        }

        .content-koyou {
            margin-bottom: 100px;

            h3 {
                font-family: "Yu Gothic";
                font-weight: 400;
                display: flex;
                align-items: center;
                gap: 10px;
                margin-left: 10%;
                margin-bottom: 50px;
                font-size: 28px;

                img {
                    width: 11px;
                    height: 33px;
                }
            }

            .switch {
                font-size: 16px;
                display: flex;
                align-items: center;
                font-family: "Yu Gothic";
                letter-spacing: 0.12rem;
                justify-content: space-around;
                margin-bottom: 40px;

                span {
                    color: #3f5471;
                    cursor: pointer;
                }

                .active {
                    color: white;
                    background-color: #3f5471;
                    padding: 10px 20px 10px 15px;
                }

                :not(.active) {
                    font-weight: initial;
                }
            }

            .sejutsu {
                display: none;
                flex-direction: column;
                gap: 100px;

                &.active {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                .text {
                    font-family: "Yu Gothic";
                    letter-spacing: 0.12rem;
                    width: 90%;

                    div {
                        display: flex;
                        flex-direction: column;
                        border-bottom: 1px solid black;
                        padding: 10px 0;

                        h4 {
                            font-size: 20px;
                            margin-bottom: 10px;
                            
                            color: #3f5471;
                        }

                        p {
                            color: #3f5471;
                            margin-top: 10px;
                        }
                    }
                }

                .bg {
                    width: 90%;
                }
            }

            .uketsuke {
                display: none;
                flex-direction: column;
                gap: 100px;

                &.active {
                    display: flex;
                    align-items: center;
                }

                .text {
                    font-family: "Yu Gothic";
                    letter-spacing: 0.12rem;
                    width: 90%;

                    div {
                        display: flex;
                        flex-direction: column;
                        border-bottom: 1px solid black;
                        padding: 10px 0;

                        h4 {
                            font-size: 20px;
                            margin-bottom: 10px;
                            
                            color: #3f5471;
                        }

                        p {
                            color: #3f5471;
                            margin-top: 10px;
                        }
                    }
                }

                .bg {
                    width: 90%;
                }
            }
        }

        .training {
            .anim-head {
                white-space: nowrap;
            }

            .training-para {
                text-align: center;
                font-family: "Yu Gothic";
                letter-spacing: 0.1rem;
                margin-top: 20px;
                margin-bottom: 30px;
                font-size: 20px;

                span {
                    display: block;
                    line-height: 44px;
                }
            }

            .container {

                h3 {
                    position: relative;
                    font-family: "Yu Gothic";
                    font-weight: 500;
                    letter-spacing: 0.1rem;
                    color: #3f5471;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    background: linear-gradient(-90deg, #ffffffcc 5%, #b5b5c4cc 80%);
                    height: 150px;
                    font-size: 24px;
                    padding-left: 5%;
                }

                .box {
                    display: flex;
                    flex-direction: column;

                    p {
                        font-family: "Yu Gothic";
                        letter-spacing: 0.1rem;
                        order: 2;
                        width: 90%;
                        font-size: 18px;
                        line-height: 39px;
                        margin: 20px auto 50px;
                    }

                    .bg {
                        object-fit: cover;
                        order: 1;
                        width: 345px;
                        height: 400px;
                        transform: translateY(-10%);
                        margin-left: auto;
                    }
                }
            }
        }

        .qanda {
            position: relative;
            margin-bottom: 200px;

            h3 {
                font-family: "Yu Gothic";
                color: #3f5471;
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 28px;
                margin-top: 30px;
                margin-left: 15%;
                margin-bottom: 20px;
            }

            .bg-dot {
                z-index: -1;
            }

            .bg-dot-pc-1,
            .bg-dot-pc-2 {
                display: none;
            }

            ul {
                display: flex;
                flex-direction: column;
                margin: 0 5%;
                gap: 10px;

                li {
                    text-align: center;

                    &.passive {
                        display: none;
                    }

                    .q-box {
                        display: flex;
                        width: 100%;
                        align-items: center;
                        justify-content: space-between;
                        font-family: "Yu Gothic";
                        
                        letter-spacing: 0.12rem;
                        color: #3f5471;
                        border: 1px solid black;
                        border-radius: 4px;
                        cursor: pointer;
                        padding: 5px 10px;
                        background-color: #fff;

                        &.active {
                            .arrow {
                                background-color: #93b2f0;
                                clip-path: polygon(50% 0, 0 100%, 100% 100%);
                            }
                        }

                        span {
                            &:not(.arrow) {
                                align-self: flex-start;
                            }
                        }

                        .arrow {
                            background-color: black;
                            clip-path: polygon(50% 100%, 0 0, 100% 0);
                            flex-shrink: 0;
                            width: 20px;
                            height: 20px;
                        }
                    }

                    .a-box {
                        position: relative;
                        display: none;
                        align-items: flex-start;
                        font-family: "Yu Gothic";
                        
                        letter-spacing: 0.12rem;
                        background-color: #edf0ff;
                        box-shadow: 0 4px 4px #00000040;
                        padding: 10px 40px 10px 20px;
                        margin: 10px auto;

                        &.active {
                            display: flex;
                        }

                        &:after {
                            content: "";
                            display: block;
                            position: absolute;
                            right: 15px;
                            bottom: 100%;
                            background-color: #edf0ff;
                            clip-path: polygon(50% 0, 0 100%, 100% 100%);
                            width: 20px;
                            height: 20px;
                        }

                        span {
                            margin-right: 40px;
                        }
                    }
                }
            }

            .more-btn {
                display: block;
                cursor: pointer;
                color: #83a8ee;
                font-family: "Yu Gothic";
                margin: 20px 5% 0 auto;
                text-align: right;

                &.passive {
                    .active-body {
                        display: none;
                    }

                    .passive-body {
                        display: flex;
                    }
                }

                .passive-body {
                    display: none;
                    margin: 0 auto;

                    .mark {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 30px;
                        height: 30px;
                        border: 1px solid #83a8ee;
                        border-radius: 4px;
                    }
                }

                .active-body {
                    display: flex;
                    margin: 0 auto;

                    .mark {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 30px;
                        height: 30px;
                        border: 1px solid #83a8ee;
                        border-radius: 4px;
                    }
                }

                .mark {
                    margin-right: 10px;
                }
            }
        }

        .line-qa {
            margin-bottom: 150px;

            h3 {
                font-family: "Yu Gothic";
                color: #3f5471;
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 28px;
                margin-top: 40px;
                margin-left: 15%;
                margin-bottom: 50px;
            }

            .container {
                display: flex;
                justify-content: center;
                flex-direction: column;
                align-items: center;
                gap: 40px;

                .left {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    font-family: "Yu Gothic";
                    letter-spacing: 0.12rem;
                }

                .bg {
                    width: 90%;
                }
            }
        }

        .recruit-flow {
            position: relative;

            .bg-dot {
                z-index: -1;
            }

            ul {
                margin-top: 40px;

                li {
                    &:last-child {
                        margin-bottom: 100px;
                    }

                    &:nth-of-type(1) {
                        h3 {
                            background-image: url("../assets/imgs/flow-1.webp");
                        }
                    }

                    &:nth-of-type(2) {
                        h3 {
                            background-image: url("../assets/imgs/flow-2.webp");
                        }
                    }

                    &:nth-of-type(3) {
                        h3 {
                            background-image: url("../assets/imgs/flow-3.webp");
                        }
                    }

                    &:nth-of-type(4) {
                        h3 {
                            background-image: url("../assets/imgs/flow-4.webp");
                        }
                    }

                    .box {
                        display: flex;

                        .left {
                            display: flex;
                            flex-direction: column;
                            justify-content: center;

                            h3 {
                                display: flex;
                                flex-direction: column;
                                
                                letter-spacing: 0.12rem;
                                height: 110px;
                                background-size: cover;

                                .num {
                                    font-family: "gabarito-reg";
                                    font-size: 32px;
                                    padding-left: 10%;

                                    span {
                                        &:nth-of-type(1) {
                                            color: gray;
                                        }

                                        &:nth-of-type(2) {
                                            color: #3f5471;
                                        }
                                    }
                                }

                                .title {
                                    font-family: "Yu Gothic";
                                    font-size: 28px;
                                    padding-top: 25px;
                                    padding-left: 10%;
                                    color: white;
                                }
                            }

                            p {
                                font-family: "Yu Gothic";
                                width: 90%;
                                margin: 50px auto;
                            }
                        }

                        .bg {
                            display: none;
                        }
                    }

                    .arrow {
                        clip-path: polygon(50% 100%, 0 0, 100% 0);
                        background-color: #3f5471;
                        width: 80px;
                        height: 45px;
                        margin: 20px auto;
                    }
                }
            }
        }
    }

    #about {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 150px;

        .bg-dot {
            &.bg-dot-1 {
                top: 19%;
                left: 10%;
                width: 27px;
            }

            &.bg-dot-2 {
                top: 21%;
                left: 5%;
                width: 15px;
            }
        }

        .anim-head {
            margin: 50px 0;
        }

        article {
            align-items: center;
        }

        h3 {
            font-family: "Yu Gothic";
            font-size: 24px;
            margin-bottom: 40px;
            
            color: #3f5471;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        p {
            font-family: "Yu Gothic";
            width: 88%;
            margin: 0 auto 48px;
            letter-spacing: 0.08em;
            line-height: 1.9em;
        }

        .img-container {
            width: 94%;
            height: 455px;
            margin: 0 auto;

            img {
                width: 100%;
                height: 100%;
            }
        }

    }

    #feature {
        font-family: "Yu Gothic";
        color: white;
        background-color: #3F5471;

        h3 {
            font-size: 32px;
            padding: 52px 20px 0;

            span {
                display: inline-block;
            }
        }

        ol {
            list-style-position: inside;

            li {
                counter-increment: count;

                &::marker {
                    content: "0" counter(count)".";
                    font-size: 48px;
                    
                }

                &:first-of-type {
                    position: relative;
                    background-image: linear-gradient(to bottom, #3F5471, #596B84);
                    padding: 40px 20px 52px;

                    .bg-dot {
                        &.bg-dot-1 {
                            top: -3%;
                            right: 5%;
                            width: 44px;
                        }

                        &.bg-dot-2 {
                            top: -1%;
                            right: 20%;
                            width: 23px;
                        }

                        &.bg-dot-3 {
                            bottom: 15%;
                            left: 0;
                            width: 44px;
                        }

                        &.bg-dot-4 {
                            bottom: 18%;
                            left: 12%;
                            width: 23px;
                        }
                    }
                }

                &:nth-of-type(2) {
                    position: relative;
                    background-image: linear-gradient(71.58deg, #8E9CAE 2.75%, #79889C 97.25%);
                    padding: 110px 20px 0;

                    .bg-dot {
                        &.bg-dot-1 {
                            top: 18%;
                            right: 5%;
                            width: 44px;
                        }

                        &.bg-dot-2 {
                            top: 20%;
                            right: 20%;
                            width: 23px;
                        }

                        &.bg-dot-3 {
                            bottom: 50%;
                            right: 5%;
                            width: 44px;
                        }

                        &.bg-dot-4 {
                            top: 48%;
                            right: 20%;
                            width: 23px;
                        }
                    }

                    p {
                        margin-bottom: 148px;
                    }

                    .img-container {
                        margin: 0 calc(50% - 50vw);
                        height: 495px;
                    }
                }

                &:last-of-type {
                    color: #3F5471;
                    background: linear-gradient(180deg, #D9D9D9 0%, #F0F0F0 100%);
                    padding: 72px 20px 37px;
                }

                h4 {
                    font-size: 32px;
                    
                    margin-bottom: 40px;

                    span {
                        display: inline-block;
                    }
                }

                p {
                    letter-spacing: 0.08em;
                    line-height: 1.9em;
                    margin-bottom: 40px;
                }

                .img-container {
                    height: 343px;
                }
            }
        }

        dl {
            background-color: #fff;
            width: 335px;
            height: 216px;
            padding: 40px 24px;
            border: 1px solid #3F5471;
            margin-bottom: 35px;

            dt {
                font-size: 24px;
                
                text-align: center;
                margin-bottom: 25px;
            }
        }
    }

    #merit {
        font-family: "Yu Gothic";
        padding: 64px 20px;

        h3 {
            color: #4F4F74;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            font-size: 24px;
            
            margin-bottom: 40px;
        }

        p {
            color: #4F4F74;
            font-size: 24px;
            
            line-height: 41px;
            margin-bottom: 40px;
        }

        dl {
            font-size: 18px;
            line-height: 41px;

            dt,
            dd {
                display: inline;
            }

            dt {
                

                &::after {
                    content: "：";
                }
            }
        }

        .img-container {
            opacity: 70%;
            height: 445px;
            margin-top: 80px;
        }
    }

    #recommend {
        font-family: "Yu Gothic";
        
        color: #4F4F74;
        background-color: #D9D9D9;
        padding: 83px 20px;

        h3 {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            font-size: 24px;
            margin-bottom: 40px;
        }

        ul {
            font-size: 20px;
            line-height: 41px;

            li {
                text-align: center;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 330px;
                height: 169px;
                margin: 0 auto 28px;
                background-color: #F8F8F8;
                position: relative;

                .img-container {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 112px;
                    height: 83px;

                    &.small-img {
                        width: 94px;
                        height: 70px;
                    }

                    img {
                        object-fit: contain;
                    }
                }
            }
        }

        p {
            font-size: 20px;
            line-height: 41px;
            text-align: center;
        }
    }

    #visitflow {
        font-family: "Yu Gothic";
        padding: 87px 20px 0;

        h3 {
            color: #4F4F74;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            font-size: 24px;
            margin-bottom: 40px;
        }

        .column {
            gap: 65px;
            align-items: center;

            dl {
                color: #fff;
                text-align: center;
                background-color: #4F4F74;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: center;
                width: 330px;
                height: 537px;
                padding: 86px 18px 48px;

                dt {
                    font-size: 32px;
                    
                    line-height: 41px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 255px;
                    height: 255px;
                    margin: 0 auto;
                    border: 5px solid #FFFFFF;
                    border-radius: 50%;
                }

                dd {
                    line-height: 41px;
                }
            }
        }
    }

    #voice {
        font-family: "Yu Gothic";
        text-align: center;
        padding-top: 62px;

        h3 {
            color: #4F4F74;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            font-size: 24px;
            margin-bottom: 40px;
        }

        ul {
            line-height: 20px;

            li {
                position: relative;
                width: 312px;
                height: 156px;

                margin: 0 auto 49px;

                &::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    z-index: -1;
                    display: block;
                    width: 100%;
                    height: 100%;
                    background-color: #83A8EE;
                    transform-origin: left 30%;
                    transform: translate(-1.6%, 6.4%) rotate(-5deg);
                }

                .bg-white {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    height: 100%;
                    background-color: #F8F8F8;
                    border: 1px solid #D9D9D9;
                }

                .img-container {
                    position: absolute;
                    bottom: -20px;
                    left: 5%;
                    width: 112px;
                    height: 83px;
                    transform: translate(-50%, 0);

                    img {
                        object-fit: contain;
                    }
                }
            }
        }

        >p {
            font-size: 24px;
            line-height: 41px;
            margin: 40px 15px 64px;
        }
    }

    #please-contact {
        font-family: "Yu Gothic";
        text-align: center;

        strong {
            font-size: 20px;
            color: #3F5471;
        }

        >p {
            letter-spacing: 0.08em;
            line-height: 30px;
            max-width: 700px;
            margin: 40px max((100% - 700px)/2, 20px);
        }
    }

    #contact-here {
        font-family: "Yu Gothic";
        color: #fff;
        font-size: 18px;
        
        text-align: center;
        max-width: 955px;
        height: 173px;
        margin: 0 auto;
        padding: 11px 0;
        background-color: #83A8EE;

        .dot-container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            margin: 0 11px 6px;
            background-image: linear-gradient(to right, #fff 3px, transparent 3px), linear-gradient(to bottom, #fff 3px, transparent 3px), linear-gradient(to left, transparent 3px, #fff 3px), linear-gradient(to top, #fff 3px, transparent 3px);
            background-size: 6px 3px, 3px 6px;
            background-position: top left, top right, bottom right, bottom left;
            background-repeat: repeat-x, repeat-y;
            position: relative;

            .dot {
                position: absolute;
                width: 10px;
                height: 10px;
                background-color: #fff;
                border-radius: 50%;

                &:first-child {
                    top: 0;
                    left: 0;
                    transform: translate(-50%, -50%);
                }

                &:nth-child(2) {
                    top: 0;
                    right: 0;
                    transform: translate(50%, -50%);
                }

                &:nth-child(3) {
                    bottom: 0;
                    right: 0;
                    transform: translate(50%, 50%);
                }

                &:nth-child(4) {
                    bottom: 0;
                    left: 0;
                    transform: translate(-50%, 50%);
                }
            }
        }

        span {
            &:not(:has(time)) {
                letter-spacing: 0.1em;
            }
        }
    }

    #swear {
        font-family: "Yu Gothic";
        color: #3F5471;
        text-align: center;
        position: relative;
        padding: 23px 14px 20px;

        .bg-img {
            position: absolute;
            top: 0;
            left: 0;
            display: block;
            width: 100%;
            height: 100%;
            background-image: url(../assets/imgs/女性のカウンセラーとカウンセリングを受ける女性.jpg);
            background-size: 300%;
            background-position: left 35% bottom 25%;
            background-repeat: no-repeat;
            transform: scaleX(-1);

            .bg-white {
                width: calc(100% - 28px);
                height: calc(100% - 43px);
                margin: 23px 14px 20px;
                background-image: url(../assets/imgs/女性のカウンセラーとカウンセリングを受ける女性.jpg);
                background-size: 300%;
                background-position: left 35% bottom 25%;
                background-repeat: no-repeat;
                overflow: clip;

                &::after {
                    content: "";
                    display: block;
                    width: 100%;
                    height: 100%;
                    background-color: #fff;
                    opacity: 0.8;
                    overflow: clip;
                    filter: blur(38px);
                }
            }
        }

        .text-box {
            position: relative;
            padding: 68px 6px 71px;

            strong {
                font-size: 24px;
                line-height: 41px;

                span {
                    position: relative;
                    display: inline-block;

                    &::before {
                        content: "";
                        position: absolute;
                        bottom: 0;
                        left: 50%;
                        display: block;
                        width: 100%;
                        height: 26px;
                        background-color: #33669933;
                        transform: translateX(-50%);
                    }

                    &:first-of-type {
                        &::before {
                            padding: 0 11px;
                        }
                    }

                    &:last-of-type {
                        &::before {
                            bottom: 5px;
                            height: 38px;
                            padding: 0 4px;
                        }
                    }
                }
            }

            p {
                line-height: 30px;
                letter-spacing: 0.08em;
                padding-top: 68px;
            }
        }
    }

    #local {
        font-family: "Yu Gothic";
        
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100svh;
        padding: 112px 30px 117px;

        .text-box {
            position: relative;
            z-index: 1;
            color: #fff;
            text-shadow: 0 0 10px #000000;
            padding: 51px 0;
            box-shadow: 0 4px 4px 0 #00000040;


            &::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
                display: block;
                width: 100%;
                height: 100%;
                background-color: #ffffff40;
            }

            .bg-dot {
                filter: invert(0.4);
                z-index: -1;
            }

            .bg-dot-1 {
                top: -1%;
                left: -15%;
                width: 70px;
            }

            .bg-dot-2 {
                top: -3%;
                left: 10%;
                width: 47px;
            }

            .bg-dot-3 {
                bottom: 2%;
                right: -7%;
                width: 70px;
            }

            .bg-dot-4 {
                bottom: 0%;
                right: 25%;
                width: 47px;
            }

            h3 {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 18px;
                font-size: 32px;
                margin-bottom: 52px;

                .head-icon {
                    filter: brightness(0) invert(1);
                }
            }

            p {
                font-size: 18px;
                line-height: 41px;
            }
        }

        .row-from-pc {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            .bg-img {
                position: relative;
                height: 50%;
                width: 100%;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;

                &::before {
                    content: "";
                    position: absolute;
                    display: block;
                    width: 100%;
                    height: 100%;
                    background-color: #000;
                }

                &:first-child {
                    background-image: url(../assets/imgs/iiTe_地域密着サービス_左側.jpg);

                    &::before {
                        opacity: 20%;
                    }
                }

                &:nth-child(2) {
                    background-image: url(../assets/imgs/iiTe_地域密着サービス_右側.jpg);

                    &::before {
                        opacity: 25%;
                    }
                }
            }
        }
    }

    /* モバイル横 */
    @media screen and (orientation: landscape) {
        &.kakuin {
            .access {
                .map {
                    width: 50%;
                    aspect-ratio: 100/60;
                }
            }
        }

        section {
            &.about-container {
                .system-container-sp {
                    .swiper-pagination {
                        .swiper-pagination-bullet {
                            margin-bottom: 1.5px;
                        }
                    }

                    .pagination-text {
                        font-size: 10px;
                        gap: 40px;
                    }

                    .swiper {
                        width: 70vw;

                        ul {
                            li {
                                .underbar {
                                    width: 95%;
                                }
                            }
                        }
                    }
                }
            }

            &.staff-intro {
                .staff-intro-pc {
                    display: flex;
                }

                .staff-intro-sp {
                    .bg-box {
                        padding: 0;
                    }
                }
            }

            &.our-stores {
                ul {
                    li {
                        width: 50vw;
                    }
                }
            }

            &.benefit {
                ul {
                    align-items: center;

                    li {
                        width: 355px;
                    }
                }
            }

            &.recruit {
                .view-more-ripple {
                    margin-bottom: 100px;
                }

                .bg-recruit-sp {
                    display: none;
                }
            }
        }

        .about {
            width: 50vw;
            margin: 0 auto;

            .vector {
                display: none;
            }
        }

        .history {
            width: 50vw;
            margin: 0 auto 150px;

            .history-container {
                .dots {
                    .dot {
                        &.dot-2 {
                            margin-top: 200px;
                        }

                        &.dot-3 {
                            margin-top: 110px;
                        }

                        &.dot-4 {
                            margin-top: 150px;
                        }

                        &.dot-5 {
                            margin-top: 150px;
                        }
                    }
                }
            }
        }

        .message {
            margin: 0 auto;
            width: 50vw;

            .content-sp {
                margin-bottom: 80px;
            }
        }

        .entry-section {
            display: block;
            width: initial;
            padding: 50px 0;
            background-image: url("../assets/imgs/bg-entry.webp");
            aspect-ratio: initial;

            .anim-head1 {
                .dot-box {
                    padding: 0 150px;
                }

                .underbar {
                    padding: 10px 0;
                }

                .bottom-text {
                    text-align: left;
                    font-size: initial;
                    line-height: initial;
                    margin-bottom: 0;

                    span {
                        display: inline;
                    }
                }
            }
        }

        .entry-container {
            .fields {
                .cf7-privacy {
                    align-self: center;
                }
            }
        }

        .entry-confirm-container {
            form {
                .fields {
                    align-items: center;
                    width: 70vw;

                    .name-age {
                        p {
                            margin-right: initial;
                        }
                    }

                    .label-p {
                        margin-left: initial;

                        label {
                            span {
                                &:nth-of-type(1) {
                                    font-size: 20px;
                                    margin-right: 30px;
                                }

                                &:nth-of-type(2) {
                                    width: 300px;
                                    font-size: 14px;
                                    padding: 5px 20px;
                                }
                            }
                        }

                        &.self-pr {
                            label {
                                flex-direction: column;
                            }
                        }
                    }

                    .cf7-privacy {
                        align-self: initial;
                    }

                    .view-more-ripple-submit {
                        margin-right: initial;
                    }
                }
            }
        }

        .message-wrapper {
            background-image: url("../assets/imgs/bg-entry-ty.webp");
            aspect-ratio: 1440/893;

            .message-box {
                width: 90%;
                aspect-ratio: 1051/489;
                justify-content: center;

                b {
                    margin-bottom: 0;
                }

                p {
                    width: initial;
                    text-align: left;
                }
            }

            .view-more-ripple {
                bottom: 10%;
            }
        }

        .hobby {
            margin-bottom: 100px;

            h3 {
                margin: 80px 0 50px;
            }

            p {
                width: 403px;
                font-size: 18px;
            }

            .bg {
                width: 196px;
                width: 196px;
                object-fit: cover;
            }

            a {
                font-size: 20px;
                width: 403px;
                height: 68px;
            }
        }

        .story {
            .bg {
                order: 1;
                width: 70%;
                margin: 0 auto;
            }
        }

        .content {
            .staff-container {
                .store-container {
                    .swiper-button-prev {
                        left: 25%;
                    }

                    .swiper-button-next {
                        right: 25%;
                    }
                }
            }
        }

        .recruit-info {
            .content-jinzai {
                margin: 40px 25% 0;

                .bg-dot {
                    top: 25%;
                    width: 200px;
                }
            }

            .content-koyou {
                margin: 0 25% 100px;
            }

            .sejutsu {
                display: flex;
            }

            .qanda {
                ul {
                    margin: 0 20%;

                    li {
                        .q-box {
                            p {
                                margin: 0 10px;
                            }
                        }
                    }
                }
            }

            .line-qa {
                .container {
                    .left {
                        p {
                            font-size: 20px;
                        }
                    }

                    .bg {
                        width: 50%;
                    }
                }
            }
        }
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 #1b85fb;
    }

    70% {
        box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);
    }

    100% {
        box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);
    }
}

@keyframes bullet-beat {
    0% {
        transform: scale(1.5);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.5);
    }
}

@keyframes hmbgBtnAnim1And3 {
    0% {
        transform: scale(1);
    }

    1% {
        transform: scale(2);
    }

    9% {
        transform: scale(2);
    }

    10% {
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }
}

@keyframes hmbgBtnAnim2 {
    0% {
        transform: scale(1);
    }

    1% {
        transform: scale(2);
    }

    9% {
        transform: scale(2);
    }

    10% {
        top: 32px;
        left: 24px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        transform: scale(1);
    }

    100% {
        top: 32px;
        left: 32px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }
}

@keyframes hmbgBtnAnim4 {
    0% {
        top: 24px;
        left: 32px;
        height: 1.5px;
        width: 12px;
        border-radius: 1.5px;
        transform: scale(1);
        box-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
    }

    10% {
        top: 24px;
        left: 32px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        transform: scale(2);
    }

    20% {
        transform: scale(1);
    }

    100% {
        top: 32.8px;
        left: 32px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }
}

@keyframes hmbgBtnAnim5 {
    0% {
        top: 32px;
        left: 32px;
        height: 1.5px;
        width: 12px;
        border-radius: 1.5px;
        transform: scale(1);
        box-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
    }

    10% {
        top: 32px;
        left: 32px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        transform: scale(2);
    }

    20% {
        transform: scale(1);
    }

    100% {
        top: 32.8px;
        left: 32px;
        border-radius: 1.5px;
        width: 3px;
        height: 3px;
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }
}

@keyframes hmbgBtnAnim6 {
    0% {
        top: 40px;
        left: 32px;
        height: 1.5px;
        width: 12px;
        border-radius: 1.5px;
        transform: scale(1);
        box-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
    }

    10% {
        top: 40px;
        left: 32px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        transform: scale(2);
    }

    20% {
        transform: scale(1);
    }

    100% {
        top: 32.8px;
        left: 32px;
        border-radius: 1.5px;
        width: 3px;
        height: 3px;
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }
}

@keyframes hmbgBtnAnim7 {
    0% {
        top: 24px;
        left: 40px;
        height: 1.5px;
        width: 12px;
        border-radius: 1.5px;
        transform: scale(1);
        box-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
    }

    20% {
        top: 24px;
        left: 40px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        transform: scale(2);
    }

    30% {
        transform: scale(1);
    }

    100% {
        top: 24.8px;
        left: 40px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }
}

@keyframes hmbgBtnAnim8 {
    0% {
        top: 32px;
        left: 44px;
        height: 1.5px;
        width: 12px;
        border-radius: 1.5px;
        transform: scale(1);
        box-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
    }

    20% {
        top: 32px;
        left: 40px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        transform: scale(2);
    }

    30% {
        transform: scale(1);
    }

    100% {
        top: 32.8px;
        left: 32px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }
}

@keyframes hmbgBtnAnim9 {
    0% {
        top: 40px;
        left: 44px;
        height: 1.5px;
        width: 12px;
        border-radius: 1.5px;
        transform: scale(1);
        box-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
    }

    20% {
        top: 40px;
        left: 40px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        transform: scale(2);
    }

    30% {
        transform: scale(1);
    }

    100% {
        top: 40.8px;
        left: 40px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }
}

@keyframes hmbgBtnAnim1And3Reverse {
    0% {
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }

    90% {
        transform: scale(1);
    }

    91% {
        transform: scale(2);
    }

    99% {
        transform: scale(2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes hmbgBtnAnim2Reverse {
    0% {
        top: 32px;
        left: 32px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }

    90% {
        top: 32px;
        left: 24px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        transform: scale(1);
    }

    91% {
        transform: scale(2);
    }

    99% {
        transform: scale(2);
    }
    
    100% {
        transform: scale(1);
    }
}

@keyframes hmbgBtnAnim4Reverse {
    0% {
        top: 32.8px;
        left: 32px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }

    80% {
        transform: scale(1);
    }

    90% {
        top: 24px;
        left: 32px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        transform: scale(2);
    }

    100% {
        top: 24px;
        left: 32px;
        height: 1.5px;
        width: 12px;
        border-radius: 1.5px;
        transform: scale(1);
        box-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
    }
}

@keyframes hmbgBtnAnim5Reverse {
    0% {
        top: 32.8px;
        left: 32px;
        border-radius: 1.5px;
        width: 3px;
        height: 3px;
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }

    80% {
        transform: scale(1);
    }

    90% {
        top: 32px;
        left: 32px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        transform: scale(2);
    }

    100% {
        top: 32px;
        left: 32px;
        height: 1.5px;
        width: 12px;
        border-radius: 1.5px;
        transform: scale(1);
        box-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
    }
}

@keyframes hmbgBtnAnim6Reverse {
    0% {
        top: 32.8px;
        left: 32px;
        border-radius: 1.5px;
        width: 3px;
        height: 3px;
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }

    80% {
        transform: scale(1);
    }

    90% {
        top: 40px;
        left: 32px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        transform: scale(2);
    }

    100% {
        top: 40px;
        left: 32px;
        height: 1.5px;
        width: 12px;
        border-radius: 1.5px;
        transform: scale(1);
        box-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
    }
}

@keyframes hmbgBtnAnim7Reverse {
    0% {
        top: 24.8px;
        left: 40px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }

    70% {
        transform: scale(1);
    }

    80% {
        top: 24px;
        left: 40px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        transform: scale(2);
    }

    100% {
        top: 24px;
        left: 44px;
        height: 1.5px;
        width: 12px;
        border-radius: 1.5px;
        transform: scale(1);
        box-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
    }
}

@keyframes hmbgBtnAnim8Reverse {
    0% {
        top: 32.8px;
        left: 32px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }

    70% {
        transform: scale(1);
    }

    80% {
        top: 32px;
        left: 40px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        transform: scale(2);
    }

    100% {
        top: 32px;
        left: 44px;
        height: 1.5px;
        width: 12px;
        border-radius: 1.5px;
        transform: scale(1);
        box-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
    }
}

@keyframes hmbgBtnAnim9Reverse {
    0% {
        top: 40.8px;
        left: 40px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        box-shadow: 0 0 rgba(63, 84, 113, 0.8980392157);
        transform: scale(1);
    }

    70% {
        transform: scale(1);
    }

    80% {
        top: 40px;
        left: 40px;
        width: 3px;
        height: 3px;
        border-radius: 1.5px;
        transform: scale(2);
    }

    100% {
        top: 40px;
        left: 44px;
        height: 1.5px;
        width: 12px;
        border-radius: 1.5px;
        transform: scale(1);
        box-shadow: 1px 1px rgba(63, 84, 113, 0.8980392157);
    }
}

@keyframes gainOpacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}