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

        .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;
                
                width: calc(121 * 100cqi / 375);
                height: calc(30 * 100cqi / 375);
                max-height: 44px;
                padding: 0px calc(30 * 100cqi / 375);

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

                border-radius: 999px;
                background-color: #FCE300;
            }
                .mobile-section-menu-contact-cta-text {
                    color: #000;
                    font-size: calc(10 * 100cqi / 375);
                    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), 420px);
            margin: 76px 15px 0px auto;
            padding: 26px 28px;

            border-radius: 8px;
            background: #FCE300;
            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(579 * 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-wrapper {
            position: absolute;
            top: calc(425 * 100cqi / 375);
            left: calc(21 * 100cqi / 375);

            display: flex;
            flex-direction: column;

            color: #000;
            font-size: calc(15 * 100cqi / 375);
            font-weight: 500;
        }


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

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

            padding: 6px 9px;

            background: #0CBABB;
        }
            .mobile-section-contact-cta-border {
                flex: 1 0 auto;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                border-top: 3px solid #FFF;
                border-bottom: 3px solid #FFF;
            }
                .mobile-section-contact-cta-text {
                    color: #FFF;
                    font-size: calc(17 * 100cqi / 375);
                    font-weight: 700;
                }





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

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

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

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

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

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

        .mobile-section-influencer-text-2 {
            position: absolute;
            top: calc(84 * 100cqi / 375);
           

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(15 * 100cqi / 375);
            font-weight: 500;
        }



        .mobile-section-influencer-text-3 {
            position: absolute;
            top: calc(220 * 100cqi / 375);
           

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 500;
        }
        .mobile-section-influencer-text-4 {
            position: absolute;
            top: calc(292 * 100cqi / 375);
           

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 500;
        }
        .mobile-section-influencer-text-5 {
            position: absolute;
            top: calc(364 * 100cqi / 375);
           

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 500;
        }
        .mobile-section-influencer-text-6 {
            position: absolute;
            top: calc(437 * 100cqi / 375);
           

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 500;
        }




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

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

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

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

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

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

        .mobile-section-sns-text-2 {
            position: absolute;
            top: calc(112 * 100cqi / 375);
           

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: flex-start;

            padding-left: calc(25 * 100cqi / 375);

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 500;
        }

        .mobile-section-sns-text-3 {
            position: absolute;
            top: calc(187 * 100cqi / 375);
            left: calc(81 * 100cqi / 375);

            display: flex;
            width: 100%;
            padding: calc(8 * 100cqi / 375) 0px;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(18 * 100cqi / 375);
            font-weight: 500;
        }
        .mobile-section-sns-text-4 {
            position: absolute;
            top: calc(245 * 100cqi / 375);
            left: calc(81 * 100cqi / 375);

            display: flex;
            width: 100%;
            padding: calc(8 * 100cqi / 375) 0px;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(18 * 100cqi / 375);
            font-weight: 500;
        }
        .mobile-section-sns-text-5 {
            position: absolute;
            top: calc(303 * 100cqi / 375);
            left: calc(81 * 100cqi / 375);

            display: flex;
            width: 100%;
            padding: calc(8 * 100cqi / 375) 0px;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(18 * 100cqi / 375);
            font-weight: 500;
        }
        
        .mobile-section-sns-text-6 {
            position: absolute;
            top: calc(419 * 100cqi / 375);
            left: calc(25 * 100cqi / 375);

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(17 * 100cqi / 375);
            font-weight: 700;
        }
            .mobile-section-sns-text-6-white {
                position: relative;
                z-index: 0;
            }
                .mobile-section-sns-text-6-white::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    right: 0;
                    bottom: 0;

                    height: 60%;

                    background: #fff;
                    z-index: -1;
                }



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

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

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

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

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: flex-start;

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

        .mobile-section-sns2-text-2 {
            position: absolute;
            top: calc(300 * 100cqi / 375);

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 500;
        }
        .mobile-section-sns2-text-3 {
            position: absolute;
            top: calc(465 * 100cqi / 375);

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

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(18 * 100cqi / 375);
            font-weight: 500;
        }
        .mobile-section-sns2-text-4 {
            position: absolute;
            top: calc(532 * 100cqi / 375);

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

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(18 * 100cqi / 375);
            font-weight: 500;
        }
        .mobile-section-sns2-text-5 {
            position: absolute;
            top: calc(599 * 100cqi / 375);

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

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(18 * 100cqi / 375);
            font-weight: 500;
        }




        .mobile-section-sns2-text-6 {
            position: absolute;
            top: calc(677 * 100cqi / 375);

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 500;
        }
            .mobile-section-sns2-text-6-white {
                position: relative;
                z-index: 0;

                font-weight: 700;
            }
                .mobile-section-sns2-text-6-white::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    right: 0;
                    bottom: 0;

                    height: 60%;

                    background: #fce300;
                    z-index: -1;
                }





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

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

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

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

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(18 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-content-text-2 {
            position: absolute;
            top: calc(95 * 100cqi / 375);
            left: calc(30 * 100cqi / 375);
           

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 400;
        }
        .mobile-section-content-text-3 {
            position: absolute;
            top: calc(181 * 100cqi / 375);
            left: calc(188 * 100cqi / 375);
           

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-content-text-4 {
            position: absolute;
            top: calc(231 * 100cqi / 375);
            left: calc(205 * 100cqi / 375);
           

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-content-text-5 {
            position: absolute;
            top: calc(279 * 100cqi / 375);
            left: calc(168 * 100cqi / 375);
           

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-content-text-6 {
            position: absolute;
            top: calc(329 * 100cqi / 375);
            left: calc(195 * 100cqi / 375);
           

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: flex-start;

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





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

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

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

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

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(18 * 100cqi / 375);
            font-weight: 700;
        }
        
        .mobile-section-provide-text-2 {
            position: absolute;
            top: calc(306 * 100cqi / 375);

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(20 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-provide-text-3 {
            position: absolute;
            top: calc(394 * 100cqi / 375);
            left: calc(54 * 100cqi / 375);

            display: flex;
            width: fit-content;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 400;
        }

        .mobile-section-provide-text-4 {
            position: absolute;
            top: calc(680 * 100cqi / 375);

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(20 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-provide-text-5 {
            position: absolute;
            top: calc(744 * 100cqi / 375);
            left: calc(84 * 100cqi / 375);

            display: flex;
            width: fit-content;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 400;
        }

        .mobile-section-provide-text-6 {
            position: absolute;
            top: calc(1030 * 100cqi / 375);

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(20 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-provide-text-7 {
            position: absolute;
            top: calc(1094 * 100cqi / 375);
            left: calc(84 * 100cqi / 375);

            display: flex;
            width: fit-content;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 400;
        }




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

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

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

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

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: flex-start;

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


        .mobile-section-flow-text-2 {
            position: absolute;
            top: calc(127 * 100cqi / 375);
            left: calc(107 * 100cqi / 375);

            display: flex;
            width: fit-content;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(18 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-flow-text-3 {
            position: absolute;
            top: calc(196 * 100cqi / 375);
            left: calc(57 * 100cqi / 375);

            display: flex;
            width: fit-content;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 400;
        }

        .mobile-section-flow-text-4 {
            position: absolute;
            top: calc(369 * 100cqi / 375);
            left: calc(107 * 100cqi / 375);

            display: flex;
            width: fit-content;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(18 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-flow-text-5 {
            position: absolute;
            top: calc(438 * 100cqi / 375);
            left: calc(57 * 100cqi / 375);

            display: flex;
            width: fit-content;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 400;
        }
        

        .mobile-section-flow-text-6 {
            position: absolute;
            top: calc(604 * 100cqi / 375);
            left: calc(107 * 100cqi / 375);

            display: flex;
            width: fit-content;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(18 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-flow-text-7 {
            position: absolute;
            top: calc(673 * 100cqi / 375);
            left: calc(57 * 100cqi / 375);

            display: flex;
            width: fit-content;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 400;
        }
        

        .mobile-section-flow-text-8 {
            position: absolute;
            top: calc(834 * 100cqi / 375);
            left: calc(107 * 100cqi / 375);

            display: flex;
            width: fit-content;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(18 * 100cqi / 375);
            font-weight: 700;
        }
        .mobile-section-flow-text-9 {
            position: absolute;
            top: calc(903 * 100cqi / 375);
            left: calc(57 * 100cqi / 375);

            display: flex;
            width: fit-content;
            flex-direction: column;
            align-items: flex-start;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 400;
        }



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

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

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

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

            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;

            color: #000;
            font-size: calc(16 * 100cqi / 375);
            font-weight: 400;
        }
            .mobile-section-contact2-text-1 span {
                font-weight: 700;
            }
        


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

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

            padding: 6px 9px;

            background: #0CBABB;
        }
            .mobile-section-contact2-cta-border {
                flex: 1 0 auto;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                border-top: 3px solid #FFF;
                border-bottom: 3px solid #FFF;
            }
                .mobile-section-contact2-cta-text {
                    color: #FFF;
                    font-size: calc(17 * 100cqi / 375);
                    font-weight: 700;
                }



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

        width: 100%;
        height: 50px;

        background-color: #fce300;

    }



/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
    .mobile-section-bottom-border {
        display: flex;
        flex-direction: column;
        align-items: center;

        background-image: url('../img/m-bottom-border.png');
        padding: calc(8 * 100cqi / 375) 0px 0px;
    }


/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
    .mobile-section-foot {
        position: relative;
        background-color: #fce300;
        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: #000;
                    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: #000;
                    }
                    .mobile-section-foot-menu-row-item:hover {
                        color: #000;
                    }
                        .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: #000;
            text-align: center;
        }
