        .topTxt {
            background-color: rgba(255, 255, 255, 0.8);
            padding: 18px 0;
            text-align: center;
        }

        .messageArea {
            width: 100%;
            margin: 0 auto;
            text-align: left;
            padding: 5%;
            background: #fff;
        }

        .messageArea .Photo01 {
            width: 30%;
            float: right;
            /*font-size: 1rem;*/
            text-align: center;
            padding: 0 20px 20px;
            ;
        }

        .main-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 550px;
            padding-top: 80px 0 50px;
            text-align: center;
        }

        .main-visual h1 {
            width: 460px;
            height: 440px;
            flex-shrink: 0;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 110px 60px;
            border-radius: 400px;
            margin: 60px auto;
        }

        .shadow {
            padding: 3vw;
            background-color Sets the background color of an element. Widely available across major browsers (Baseline since January 2018) Learn more Don't show
: rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 10px 0 rgba(21, 65, 106, 0.2);
        }

        h1 {
            display: block;
            width: 100px;
        }

        .contents {
            position: relative;
            max-width: 980px;
            margin: 0 auto;
            padding: 20px 0 150px 0;
        }

        /* 動く文字 */
        .contents .txt {
            display: flex;
            overflow: hidden;
            position: absolute;
            top: 45%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .txt p {
            color: #009944;
            font-size: 42px;
            font-weight: bold;
            letter-spacing: .06em;
            margin: 0;

            /* アニメーション */
            transform: translateY(2em);
            animation: textanimation 1s forwards;
        }

        /* 1文字目 */
        .txt p:nth-child(1) {
            animation-delay: 0.2s
        }

        /* 2文字目 */
        .txt p:nth-child(2) {
            animation-delay: 0.4s
        }

        /* 3文字目 */
        .txt p:nth-child(3) {
            animation-delay: 0.6s
        }

        /* 4文字目 */
        .txt p:nth-child(4) {
            animation-delay: 0.8s
        }

        /* 5文字目 */
        .txt p:nth-child(5) {
            animation-delay: 1s
        }

        /* 6文字目 */
        .txt p:nth-child(6) {
            animation-delay: 1.2s
        }

        /* 7文字目 */
        .txt p:nth-child(7) {
            animation-delay: 1.4s
        }

        /* 8文字目 */
        .txt p:nth-child(8) {
            animation-delay: 1.6s
        }

        /* 9文字目 */
        .txt p:nth-child(9) {
            animation-delay: 1.8s
        }

        /* 10文字目 */
        .txt p:nth-child(10) {
            animation-delay: 2s
        }

        /* 11文字目 */
        .txt p:nth-child(11) {
            animation-delay: 2.2s
        }

        /* 12文字目 */
        .txt p:nth-child(12) {
            animation-delay: 2.4s
        }


        @keyframes textanimation {
            0% {
                transform: translateY(2em);
            }

            100% {
                transform: translateY(0);
            }
        }

        @media screen and (max-width:768px) {

            .messageArea .Photo01 {
                width: 80%;
                float: none;
                margin: 0 auto;
            }

            .messageArea .Photo01 img {
                margin: 0 auto;
            }

            .main-visual {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100%;
                height: 100vh;
                padding-top: 60px 0;
                text-align: center;
            }
        }


        @media screen and (min-width:425px) {
            .main-visual h1 {
                width: 360px;
                height: 325px;
                padding: 80px 60px;
                border-radius: 400px;
            }
        }




        .bgW {
            background: #fff;
        }

        body {
            background: url(../images/bg02.png) repeat;
            background-size: cover;
            /* 背景画像のURL */
            background-position: center;
            width: 100vw;
            height: 100vh;
            opacity: 0;
            animation: fadeIn 2s forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 2;
            }
        }