
@charset "UTF-8";

#main:after {
    position: absolute;
    display: block;
    content: "";
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
    top: 10%;
    left: -5%;
    width: 800px;
    height: 800px;
    border: 200px solid #f9f9f9;
    border-radius: 54% 46% 46% 54% / 43% 44% 56% 57%;
    animation: move12 5s linear infinite;
}

@keyframes move12 {
    50% {
        border-radius: 54% 46% 54% 46% / 38% 55% 45% 62%;
    }

    75% {
        border-radius: 54% 46% 46% 54% / 43% 44% 56% 57%;
    }
}

@media screen and (max-width: 1400px) {
    #main:after {
        width: 500px;
        height: 500px;
        border: 150px solid #f9f9f9;
    }
}

@media screen and (max-width: 650px) {
    #main:after {
        width: 300px;
        height: 300px;
        border: 100px solid #f9f9f9;
    }
}

/* 下記追記 */

.widget_form form dl {
    font-family: "Kiwi Maru", serif !important;
    font-weight: 500;
}

.widget_form form dl,
.widget_form form dt,
.widget_form form dd {
    display: block;
}

.widget_form form dt {
    width: 100%;
    padding-bottom: 10px;
}

.widget_form form dt span {
    font-weight: 500;
}