.inline-image {
    height: 0.79em;
    margin-top: -0.15em;
}
.floating-banner {
    box-shadow: 0 -7px 6px #00000020;
    position: fixed;
    bottom: 0;
    left: 50%;
  transform: translateX(-50%);
    width: 100%;
    background: #dff0e4;
    z-index: 5;
    font-size: 24px;
	max-width: 970px;

    @media (max-width: 768px) {
        font-size: 16px;
    }
    .content {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        gap: 20px;

        @media (max-width: 1000px) {
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
        }
        .p2g-content {
            font-size: 18px;
            padding-left: 30px;
            border-left: 1px solid #0d6c28;
            line-height: 1.8;
            width: 50%;

            @media (max-width: 1000px) {
                padding-left: 0px;
                border-left: unset;
                width: 100%;
                padding-top: 5px;
                border-top: 1px solid #0d6c28;
            }
            @media (max-width: 768px) {
                font-size: 14px;

                line-height: 1.2;
            }
            strong {
                font-size: 18px;
                @media (max-width: 768px) {
                    font-size: 16px;
                }
            }
        }
    }

    &.placeholder {
        position: unset;
        opacity: 0;
        margin-top: 40px;
        pointer-events: none;
    }

    .ctn {
        margin: auto;
        max-width: 1440px;
        padding: 20px 20px;
        @media (max-width: 768px) {
            padding: 5px 20px;
        }
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;

        strong {
            color: #0d6c28;

            &.yuu {
                color: #3b79d5;
            }
        }

        .text {
            margin-right: auto;
        }

        .icon {
            width: 73px;
            margin-top: -45px;
            @media (max-width: 1000px) {
                margin-top: 5px;
                width: 54px;
                margin-bottom: auto;
            }
        }

        a {
            overflow: hidden;
            position: relative;
            display: inline-block;
            background-color: #0d6c28;
            border-radius: 5px;
            font-weight: bold;

            color: #fff;
            padding: 10px 20px;
            min-width: max-content;

            min-width: 208px;
            margin: auto 0;

            @media screen and (max-width: 768px) {
                min-width: 130px;
                padding: 2px 20px;
            }

            text-align: center;

            &:after {
                content: "";
                position: absolute;
                background: linear-gradient(
                    45deg,
                    rgba(0, 0, 0, 0) 25%,
                    rgba(255, 255, 255, 0.8) 50%,
                    rgba(0, 0, 0, 0) 75%
                );
                width: 200%;
                height: 100%;
                top: 0;
                left: 0;
                transform: translate(50%, 0);
                background-size: 100%;
            }

            &:hover:after {
                transition: transform 1.2s;
                transform: translate(-100%, 0);
            }
        }
    }
}


