html {
    -webkit-text-size-adjust: 100%
}

html body {
    margin: 0px;
    padding: 0px;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-image: url(../../images/common/bg_dot.webp);
    background-repeat: repeat;
    background-position: left top
}

html body .wrapper {
    min-height: 100vh;
    margin: 0 auto 50px auto;
    padding: 0 20px;
    max-width: 1200px
}

html body a {
    cursor: pointer;
    text-decoration: none
}

html body label {
    cursor: pointer
}

html body .screen-reader-text {
    display: none
}

html body p {
    color: #555
}

header {
    z-index: 100;
    background-color: rgba(163, 61, 117, .9);
    min-height: 60px;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    font-size: 20px
}

header .headerframe {
    margin: 0 auto;
    max-width: 1500px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

@media screen and (min-width: 768px) {
    header .headerframe {
        padding: 0 30px
    }
}

header h1 {
    box-sizing: border-box;
    height: 80px;
    font-size: 34px;
    font-weight: 500;
    background-image: url("../../images/common/logo_1.webp");
    background-size: 80px 80px;
    background-position: left center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: .5em 0 0 90px
}

@media screen and (max-width: 767px) {
    header h1 {
        background-size: 45px 45px;
        font-size: 24px;
        height: 60px;
        margin: 0px 0 0 10px;
        padding: 20px 0 0 50px;
        line-height: 1
    }
}

header h1 a {
    color: #fff
}

header .hamburgermenu {
    position: relative;
    top: 0;
    right: 0;
    height: 60px;
    width: 50px
}

@media screen and (min-width: 1280px) {
    header .hamburgermenu {
        display: none
    }
}

header .hamburgermenu .hamicon {
    z-index: 500;
    position: absolute;
    top: 10px;
    height: 40px;
    width: 50px;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
    box-sizing: border-box;
    margin: 0px;
    padding: 8px;
    transition: all .5s
}

header .hamburgermenu .hamicon .trigger {
    width: 30px;
    height: 20px;
    cursor: pointer;
    box-sizing: border-box
}

header .hamburgermenu .hamicon .trigger span {
    position: relative;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 1
}

header .hamburgermenu .hamicon .trigger span::after {
    position: absolute;
    content: "MENU";
    left: -6px
}

header .hamburgermenu nav.hamnavi {
    z-index: 400;
    position: fixed;
    top: 0;
    right: -300px;
    bottom: 0;
    width: 300px;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all .5s;
    opacity: 0;
    background-color: #a33d75
}

header .hamburgermenu nav.hamnavi ul {
    margin: 60px 0 0 0;
    padding: 0
}

header .hamburgermenu nav.hamnavi ul li {
    margin: 0;
    padding: 20px;
    list-style: none;
    border-bottom: 1px dashed #fff
}

header .hamburgermenu nav.hamnavi ul li a {
    text-decoration: none;
    color: #fff
}

header .hamburgermenu.open nav.hamnavi {
    display: block;
    right: 0;
    opacity: 1
}

header .hamburgermenu.open .nav_mask {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .8;
    cursor: pointer
}

header .hamburgermenu.open .trigger span::after {
    position: absolute;
    content: "CLOSE";
    left: -8px
}

@media screen and (min-width: 768px) {
    header .globalnavi {
        display: none
    }
}

@media screen and (min-width: 1280px) {
    header .globalnavi {
        display: block
    }
}

@media screen and (max-width: 767px) {
    header .globalnavi ul.menu {
        display: none
    }
}

@media screen and (min-width: 1280px) {
    header .globalnavi ul.menu {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none
    }

    header .globalnavi ul.menu li {
        max-width: 9em;
        box-sizing: border-box;
        margin: 0 1rem
    }

    header .globalnavi ul.menu li a {
        color: #fff
    }

    header .globalnavi ul.menu li:hover {
        border-bottom: 1px solid #fff;
        opacity: .7
    }

    header .globalnavi ul.menu li.current-menu-item {
        border-bottom: 1px dashed #fff
    }
}

footer {
    position: relative;
    background-color: #a33d75;
    text-align: center;
    color: #fff;
    margin: 100px 0 0 0;
    padding: 20px;
    box-sizing: border-box
}

footer>div {
    max-width: 1500px;
    margin: 0 auto
}

footer>div a {
    color: #fff
}

footer>div address {
    width: 100%;
    font-size: 24px;
    padding-left: 45px;
    font-style: normal;
    box-sizing: border-box;
    font-weight: 500;
    max-width: 400px;
    background-image: url("../../images/common/logo_1.webp");
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 0 0 0 100px;
    margin: 20px auto;
    line-height: 1.5
}

@media screen and (min-width: 768px) {
    footer>div address {
        font-size: 32px
    }
}

footer>div address span {
    font-size: 16px;
    font-weight: 500;
    display: block
}

footer>div .footer_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 10px auto
}

footer>div .footer_flex .footer_phone {
    margin: 10px;
    width: 320px;
    padding: 0px 0px 0px 20px;
    box-sizing: border-box;
    background-image: url(../../images/common/phone_icon.webp);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 40px 55px;
    font-size: 18px;
    line-height: 1.2
}

footer>div .footer_flex .footer_phone a {
    font-size: 32px;
    font-weight: bold;
    display: block
}

footer>div small {
    padding: 10px
}

footer .footerformbutton {
    background-color: #3da37c;
    border-radius: 4px;
    padding: 10px 10px 10px 50px;
    height: 50px;
    max-width: 280px;
    box-sizing: border-box;
    background-image: url(../../images/common/mail_icon.webp);
    background-position: left 10px center;
    background-repeat: no-repeat;
    font-size: 20px
}

footer .footerformbutton a {
    color: #fff
}

footer .footerformbutton:hover {
    transform: translate(1px, 1px);
    transition: all .2s
}

.formbutton {
    display: none
}

@media screen and (min-width: 1280px) {
    .formbutton {
        display: block;
        background-color: #3da37c;
        border-radius: 4px;
        padding: 10px 10px 10px 50px;
        height: 50px;
        max-width: 280px;
        box-sizing: border-box;
        background-image: url(../../images/common/mail_icon.webp);
        background-position: left 10px center;
        background-repeat: no-repeat;
        font-size: 20px
    }
}

.formbutton a {
    color: #fff
}

.formbutton:hover {
    transform: translate(1px, 1px);
    transition: all .2s
}



.scrollbutton div {
    position: fixed;
    height: 40px;
    width: auto;
    right: 30px;
    bottom: 30px;
    z-index: 2000
}

.scrollbutton div .scrollup {
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 40px;
    height: 40px;
    text-indent: 200%;
    white-space: nowrap;
    overflow: hidden;
    background-color: rgba(61, 163, 124, .3);
    box-sizing: border-box;
    border-radius: 100%
}

.scrollbutton div .scrollup a {
    display: block;
    width: 100%;
    height: 100%
}

.scrollbutton div .scrollup a span {
    position: absolute;
    top: 40%;
    left: 25%;
    width: 15px;
    height: 15px;
    border: 3px solid;
    border-color: #3da37c #3da37c rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    transform: rotate(-45deg)
}


.content {
    padding-top: 150px;
}
.grecaptcha-badge {
    display: none !important;
}