.mobile-container {
    margin: 0 auto;

    max-width: 900px;
    min-width: 375px;

    position: relative;

    background-color: #fff;

    container-type: inline-size;
}




/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
    .mobile-section-menu {
        overflow: hidden;
        position: relative;
        z-index: 20;
        display: flex;
        flex-direction: row;
        gap: 10px;

        padding: 10px 5px;

        background-color: #62cbff;
    }

        .mobile-section-menu-logo {
            flex: 0 0 45px;
        }
            .mobile-section-menu-logo img {
                display: block;
                width: 100%;
            }
        .mobile-section-menu-content {
            flex: 1 1 auto;
        }
        .mobile-section-menu-wrapper {
            flex: 0 0 auto;
            margin: 5px 10px;

            display: flex;
            flex-direction: row;
            gap: 10px;
        }
            .mobile-section-menu-contact-cta {
                display: flex;
                
                height: calc(44 * 100cqi / 375);
                max-height: 44px;

                padding: 0px calc(18 * 100cqi / 375);

                justify-content: center;
                align-items: center;
                gap: 9.22px;

                border-radius: 10px;
                background: linear-gradient(270deg, #FF4D6D 1.09%, #FF7070 98.58%);;
                box-shadow: -2.641px 3.961px 13.336px rgba(0, 0, 0, 0.15);
            }
                .mobile-section-menu-contact-cta-text {
                    color: #fff;
                    font-size: min(calc(18 * 100cqi / 375), 25px);
                    font-weight: 500;
                }
            .mobile-section-menu-cta {
                display: flex;
                align-items: center;
                justify-content: center;
                flex: 0 0 47px;
                width: 47px;
                height: 44px;
                padding: 0px;
                border: 0px;
                background: transparent;
                cursor: pointer;
            }
                .mobile-section-menu-cta img {
                    display: block;
                    width: 100%;
            }

    .mobile-section-menu-popup {
        position: fixed;
        inset: 0px;
        z-index: 15;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        background: rgba(26, 26, 26, 0);
        transition: opacity 0.2s ease, visibility 0.2s ease, background-color 0.2s ease;
    }
    .mobile-section-menu-popup.is-active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        background: rgba(26, 26, 26, 0.18);
    }
        .mobile-section-menu-popup-panel {
            width: min(calc(100% - 30px), 450px);
            margin: 76px 15px 0px auto;
            padding: 26px 28px;

            border-radius: 8px;
            background: #62cbff;
            box-shadow: 0px 12px 28px rgba(26, 26, 26, 0.18);

            transform: translateY(-8px);
            transition: transform 0.2s ease;
        }
        .mobile-section-menu-popup.is-active .mobile-section-menu-popup-panel {
            transform: translateY(0px);
        }
            .mobile-section-menu-popup-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                column-gap: 18px;
                row-gap: 24px;
            }
                .mobile-section-menu-popup-item {
                    display: block;
                    color: #000;
                }
                .mobile-section-menu-popup-item:hover {
                    color: #000;
                }
                    .mobile-section-menu-popup-item-ja {
                        font-size: calc(20 * 100cqi / 375);
                        font-weight: 700;
                    }
                    .mobile-section-menu-popup-item-en {
                        font-size: calc(12 * 100cqi / 375);
                        font-weight: 400;
                    }

    body.mobile-menu-popup-open {
        overflow: hidden;
    }




/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
    .mobile-section-top {
        position: relative;
        display: flex;
        flex-direction: column;

        width: 100%;
        height: calc(494 * 100cqi / 375);

        background-color: #fbf1e8;
        
        background-image: url('../img/m-top-background.png');
        background-position: left top;
        background-size: 100%;
        background-repeat: no-repeat;
    }

        .mobile-section-top-text-1 {
            position: absolute;
            top: calc(29 * 100cqi / 375);
            left: calc(13 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(18 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-top-text-2 {
            position: absolute;
            top: calc(111 * 100cqi / 375);
            left: calc(15 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(40 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-top-text-3 {
            position: absolute;
            top: calc(330 * 100cqi / 375);
            left: calc(14 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(14 * 100cqi / 375);
            font-weight: 400;
        }


        .mobile-section-top-cta-wrapper {
                position: absolute;
                top: calc(424 * 100cqi / 375);
                left: 50%;
                transform: translateX(-50%);

                display: flex;
                
                width: calc(296 * 100cqi / 375);
                height: calc(49 * 100cqi / 375);

                padding: calc(5 * 100cqi / 375);

                border-radius: 13px;
                background: linear-gradient(0deg, #DB0A0D 0%, #FF7070 100%);
                box-shadow: -2.641px 3.961px 13.336px 0 rgba(0, 0, 0, 0.15);
            }
                .mobile-section-top-cta-border {
                    flex: 1 0 auto;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;

                    border-radius: 13px;
                    border: 2.595px solid rgba(255, 255, 255, 0.30);
                }
                    .mobile-section-top-cta-text {
                        color: #FFF;
                        font-size: calc(17 * 100cqi / 375);
                        font-weight: 700;
                    }




/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
    .mobile-section-about {
        position: relative;
        display: flex;
        flex-direction: column;

        width: 100%;
        height: calc(606 * 100cqi / 375);

        background-color: #62cbff;
        
        background-image: url('../img/m-about-background.png');
        background-position: left top;
        background-size: 100%;
        background-repeat: no-repeat;
    }

        .mobile-section-about-title {
            position: absolute;
            top: calc(31 * 100cqi / 375);
            left: calc(16 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #FFF;
            font-size: calc(17 * 100cqi / 375);
            font-weight: 700;
        }

        .mobile-section-about-text-1 {
            position: absolute;
            top: calc(93 * 100cqi / 375);
            left: calc(20 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 700;
        }
            .mobile-section-about-text-1 span {
                color: #FF4D6D;
            }

        .mobile-section-about-text-2 {
            position: absolute;
            top: calc(205 * 100cqi / 375);
            left: calc(31 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(17 * 100cqi / 375);
            font-weight: 700;
        }

        .mobile-section-about-text-3 {
            position: absolute;
            top: calc(451 * 100cqi / 375);
            left: calc(23 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 700;
        }
            .mobile-section-about-text-3 span {
                color: #FF4D6D;
            }




/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
    .mobile-section-problem {
        position: relative;
        display: flex;
        flex-direction: column;

        width: 100%;
        height: calc(898 * 100cqi / 375);

        background-color: #62cbff;
        
        background-image: url('../img/m-problem-background.png');
        background-position: left top;
        background-size: 100%;
        background-repeat: no-repeat;
    }

        .mobile-section-problem-title {
            position: absolute;
            top: calc(28 * 100cqi / 375);
            right: calc(9 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #FFF;
            font-size: calc(17 * 100cqi / 375);
            font-weight: 700;
        }

        .mobile-section-problem-text-1 {
            position: absolute;
            top: calc(77 * 100cqi / 375);
            left: calc(16 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 700;
        }

        .mobile-section-problem-text-2 {
            position: absolute;
            top: calc(141 * 100cqi / 375);
            left: calc(31 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 700;
            line-height: calc(28 * 100cqi / 375);
        }
            .mobile-section-problem-text-2 .lite {
                font-size: calc(14 * 100cqi / 375);
                font-weight: 400;
            }
            .mobile-section-problem-text-2 span {
                color: #FF4D6D;
                font-weight: 700;
            }

        .mobile-section-problem-text-3 {
            position: absolute;
            top: calc(555 * 100cqi / 375);
            left: calc(72 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 700;
        }
        
        .mobile-section-problem-text-4 {
            position: absolute;
            top: calc(596 * 100cqi / 375);
            left: calc(46 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 700;
            line-height: calc(23 * 100cqi / 375);
        }
            .mobile-section-problem-text-4 .lite {
                font-size: calc(14 * 100cqi / 375);
                font-weight: 400;
            }



/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
    .mobile-section-flow {
        position: relative;
        display: flex;
        flex-direction: column;

        width: 100%;
        height: calc(818 * 100cqi / 375);

        background-color: #62cbff;
        
        background-image: url('../img/m-flow-background.png');
        background-position: left top;
        background-size: 100%;
        background-repeat: no-repeat;
    }

        .mobile-section-flow-title {
            position: absolute;
            top: calc(18 * 100cqi / 375);
            left: calc(16 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #FFF;
            font-size: calc(17 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-flow-subtitle {
            position: absolute;
            top: calc(67 * 100cqi / 375);
            left: calc(16 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 700;
        }

        .mobile-section-flow-red-text-1 {
            position: absolute;
            top: calc(162 * 100cqi / 375);
            left: calc(58 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #FF4D6D;
            font-size: calc(17 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-flow-red-text-2 {
            position: absolute;
            top: calc(325 * 100cqi / 375);
            left: calc(58 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #FF4D6D;
            font-size: calc(17 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-flow-red-text-3 {
            position: absolute;
            top: calc(489 * 100cqi / 375);
            left: calc(58 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #FF4D6D;
            font-size: calc(17 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-flow-red-text-4 {
            position: absolute;
            top: calc(656 * 100cqi / 375);
            left: calc(58 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #FF4D6D;
            font-size: calc(17 * 100cqi / 375);
            font-weight: 700;
        }

        .mobile-section-flow-desc-text-1 {
            position: absolute;
            top: calc(213 * 100cqi / 375);
            left: calc(58 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(14 * 100cqi / 375);
            font-weight: 400;
        }
        .mobile-section-flow-desc-text-2 {
            position: absolute;
            top: calc(376 * 100cqi / 375);
            left: calc(58 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(14 * 100cqi / 375);
            font-weight: 400;
        }
        .mobile-section-flow-desc-text-3 {
            position: absolute;
            top: calc(535 * 100cqi / 375);
            left: calc(58 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(14 * 100cqi / 375);
            font-weight: 400;
        }
        .mobile-section-flow-desc-text-4 {
            position: absolute;
            top: calc(689 * 100cqi / 375);
            left: calc(58 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(14 * 100cqi / 375);
            font-weight: 400;
        }




/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
    .mobile-section-faq {
        position: relative;
        display: flex;
        flex-direction: column;

        width: 100%;
        height: calc(829 * 100cqi / 375);

        background-color: #62cbff;
        
        background-image: url('../img/m-faq-background.png');
        background-position: left top;
        background-size: 100%;
        background-repeat: no-repeat;
    }

        .mobile-section-faq-title {
            position: absolute;
            top: calc(17 * 100cqi / 375);
            right: calc(10 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #FFF;
            font-size: calc(17 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-faq-subtitle {
            position: absolute;
            top: calc(69 * 100cqi / 375);
            left: calc(16 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 700;
        }
        
        
        .mobile-section-faq-question-1 {
            position: absolute;
            top: calc(133 * 100cqi / 375);
            left: calc(56 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(14 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-faq-question-2 {
            position: absolute;
            top: calc(353 * 100cqi / 375);
            left: calc(56 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(14 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-faq-question-3 {
            position: absolute;
            top: calc(573 * 100cqi / 375);
            left: calc(56 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(14 * 100cqi / 375);
            font-weight: 700;
        }


        .mobile-section-faq-answer-1 {
            position: absolute;
            top: calc(177 * 100cqi / 375);
            left: calc(56 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(14 * 100cqi / 375);
            font-weight: 400;
        }
        .mobile-section-faq-answer-2 {
            position: absolute;
            top: calc(388 * 100cqi / 375);
            left: calc(56 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(14 * 100cqi / 375);
            font-weight: 400;
        }
        .mobile-section-faq-answer-3 {
            position: absolute;
            top: calc(608 * 100cqi / 375);
            left: calc(56 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(14 * 100cqi / 375);
            font-weight: 400;
        }



/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
    .mobile-section-contact {
        position: relative;
        display: flex;
        flex-direction: column;

        width: 100%;
        height: calc(231 * 100cqi / 375);

        background-color: #62cbff;
        
        background-image: url('../img/m-contact-background.png');
        background-position: left top;
        background-size: 100%;
        background-repeat: no-repeat;
    }

        .mobile-section-contact-title {
            position: absolute;
            top: calc(29 * 100cqi / 375);
            right: calc(41 * 100cqi / 375);

            display: flex;
            flex-direction: column;
            align-items: center;

            color: #FF4D6D;
            font-size: calc(17 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-contact-subtitle {
            position: absolute;
            top: calc(94 * 100cqi / 375);
            left: calc(34 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #00446C;
            font-size: calc(11 * 100cqi / 375);
            font-weight: 400;
        }

        .mobile-section-contact-cta-wrapper {
                position: absolute;
                top: calc(143 * 100cqi / 375);
                left: 50%;
                transform: translateX(-50%);

                display: flex;
                
                width: calc(296 * 100cqi / 375);
                height: calc(49 * 100cqi / 375);

                padding: calc(5 * 100cqi / 375);

                border-radius: 13px;
                background: linear-gradient(0deg, #DB0A0D 0%, #FF7070 100%);
                box-shadow: -2.641px 3.961px 13.336px 0 rgba(0, 0, 0, 0.15);
            }
                .mobile-section-contact-cta-border {
                    flex: 1 0 auto;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;

                    border-radius: 13px;
                    border: 2.595px solid rgba(255, 255, 255, 0.30);
                }
                    .mobile-section-contact-cta-text {
                        color: #FFF;
                        font-size: calc(17 * 100cqi / 375);
                        font-weight: 700;
                    }



/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
    .mobile-section-post {
        position: relative;

        width: 100%;
        height: 50px;

        background-color: #99ddff;

    }




/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
    .mobile-section-foot {
        position: relative;
        background-color: #62cbff;
        width: 100%;

        display: flex;
        flex-direction: column;

        padding: 0px 0px 20px 0px;        
    }

        .mobile-section-foot-grid {
            position: relative;
            width: 100%;

            display: flex;
            flex-direction: column;

            padding: 50px 50px;

            gap: 30px;
        }
            .mobile-section-foot-company {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
                .mobile-section-foot-company-logo {
                    margin-bottom: 7px;
                }
                    .mobile-section-foot-company-logo-image {
                        display: block;
                    }

                .mobile-section-foot-company-address {
                    color: #00446C;
                    font-size: 15px;
                    font-weight: 500;
                    line-height: 140%; /* 21px */

                    margin-left: 22px;
                }
                    .mobile-section-foot-company-address-text {

                    }

            .mobile-section-foot-menu {
                display: flex;
                flex-direction: column;
                gap: 30px;

                width: 100%;
                align-items: center;
            }
                .mobile-section-foot-menu-row {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    width: 80%;
                }
                    .mobile-section-foot-menu-row-item {
                        color: #00446C;
                    }
                    .mobile-section-foot-menu-row-item:hover {
                        color: #00446C;
                    }
                        .mobile-section-foot-menu-row-item-ja {
                            font-size: calc(20 * 100cqi / 375);
                            font-weight: 700;
                        }
                        .mobile-section-foot-menu-row-item-en {
                            font-size: calc(12 * 100cqi / 375);
                            font-weight: 400;
                        }

        .mobile-section-foot-copyright {
            display: block;
            color: #00446C;
            text-align: center;
        }
