@charset "utf-8";
/*----------------------------
  共通
-----------------------------*/
body {
    color: #353535;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
/*----------------------------
  ローディング
-----------------------------*/
#loading-wrapper {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 99999;
    background: #00a9ee;
    background: #248bff;
    transition: all 1s;
}
.loader, .loader:before, .loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}
.loader {
    color: #ffffff;
    font-size: 10px;
    margin: 0 auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
    top: 45vh;
}
.loader:before, .loader:after {
    content: '';
    position: absolute;
    top: 0;
}
.loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.loader:after {
    left: 3.5em;
}
@-webkit-keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}
@keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}
.loaded {
    opacity: 0;
    visibility: hidden;
}
/*----------------------------
  fix-menu
-----------------------------*/
#fix-menu {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
}
#fix-menu .telfo {
    display: none;
}
#fix-menu #pageTop {
    position: fixed;
    right: 50px;
    bottom: 50px;
    background: none;
    width: auto;
    height: auto;
}
#fix-menu #pageTop img {
    width: 78px;
    height: auto;
}
@media screen and (max-width: 820px) {
    .loader {
        top: 45vh;
    }
    #fix-menu {
        display: block;
    }
    #fix-menu .telfo {
        position: fixed;
        display: flex;
        bottom: 0;
        width: 100%;
        height: auto;
        background-color: transparent;
    }
    #fix-menu .telfo .free {
        display: flex;
        width: 47%;
        background-color: #f92e8d;
        border-radius: 10px 10px 0 0;
    }
    #fix-menu .telfo .form {
        display: flex;
        width: 53%;
        background-color: #44b23c;
        border-radius: 10px 10px 0 0;
    }
    #fix-menu .telfo .free a {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        color: #fff;
        text-decoration: none !important;
        line-height: 1.2;
        padding: 10px 0 17px 5.2vw;
        position: relative;
    }
    #fix-menu .telfo .free a span:first-child {
        font-size: 5vw;
        font-weight: 900;
    }
    #fix-menu .telfo .free a span:last-child {
        font-size: 2.3vw;
        font-weight: 400;
    }
    #fix-menu .telfo .free a span:first-child::before {
        display: inline-block;
        content: "";
        width: 5.2vw;
        height: 5.2vw;
        background-image: url(../images/icon-phone.png);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        left: 2.5vw;
        top: 18px;
    }
    #fix-menu .telfo .form a {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        color: #fff;
        text-decoration: none;
        line-height: 1.2;
        padding: 10px 0 12px 6.5vw;
        position: relative;
    }
    #fix-menu .telfo .form a span {
        display: inline-block;
        font-size: 3.5vw;
        font-weight: 600;
    }
    #fix-menu .telfo .form a span:first-child::before {
        display: inline-block;
        content: "";
        width: 5.2vw;
        height: 5.2vw;
        background-image: url(../images/icon-mail.png);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        left: 2.3vw;
        top: 28px;
    }
    #fix-menu .telfo .form a span span {
        margin: 0 -3px;
    }
    #fix-menu .telfo .form a span span::before {
        display: none !important;
    }
    #fix-menu #pageTop {
        position: fixed;
        right: 20px;
        bottom: 120px;
    }
    #fix-menu #pageTop img {
        width: 92px;
    }
}
@media screen and (max-width: 768px) {
    #fix-menu .telfo .form a span:first-child::before {
        top: 26px;
    }
    #fix-menu #pageTop {
        bottom: 110px;
    }
}
@media screen and (max-width: 668px) {
    #fix-menu .telfo .form a span:first-child::before {
        left: 2.5vw;
        top: 25px;
    }
}
@media screen and (max-width: 640px) {
    #fix-menu #pageTop {
        bottom: 100px;
    }
    #fix-menu #pageTop img {
        width: 82px;
    }
}
@media screen and (max-width: 568px) {
    #fix-menu .telfo .free {
        width: 60%;
    }
    #fix-menu .telfo .form {
        width: 40%;
    }
    #fix-menu .telfo .free a {
        padding: 10px 0 17px 6vw;
    }
    #fix-menu .telfo .free a span:first-child {
        font-size: 6.8vw;
    }
    #fix-menu .telfo .free a span:first-child::before {
        width: 6.2vw;
        height: 6.2vw;
        left: 2.5vw;
        top: 16px;
    }
    #fix-menu .telfo .free a span:last-child {
        font-size: 3.1vw;
    }
    #fix-menu .telfo .form a {
        line-height: 1;
        padding: 13px 0 15px 7vw;
    }
    #fix-menu .telfo .form a span {
        font-size: 4.2vw;
    }
    #fix-menu .telfo .form a span:first-child {
        padding-left: 5px;
    }
    #fix-menu .telfo .form a span:first-child::before {
        width: 6vw;
        height: 6vw;
        left: 3vw;
        top: 15px;
    }
    #fix-menu .telfo .form a span span {
        margin: 0;
        display: inline;
        padding-left: 0 !important;
    }
    #fix-menu #pageTop img {
        width: 72px;
    }
    #fix-menu #pageTop {
        bottom: 110px;
    }
}
@media screen and (max-width: 430px) {
    .loader {
        top: 42vh;
    }
    #fix-menu .telfo .free a span:first-child::before {
        top: 15px;
    }
    #fix-menu .telfo .form a span:first-child::before {
        top: 13px;
    }
    #fix-menu #pageTop {
        right: 15px;
        bottom: 92px;
    }
    #fix-menu #pageTop img {
        width: 52px;
    }
}
@media screen and (max-width: 393px) {
    #fix-menu #pageTop {
        right: 12px;
        bottom: 85px;
    }
}
@media screen and (max-width: 360px) {
    #fix-menu .telfo .free a span:first-child::before {
        top: 14px;
    }
    #fix-menu .telfo .form a {
        padding: 11px 0 14px 7vw;
    }
    #fix-menu #pageTop {
        bottom: 82px;
    }
}
@media screen and (max-width: 320px) {
    #fix-menu .telfo .form a {
        padding: 11px 0 13px 7vw;
    }
    #fix-menu #pageTop {
        bottom: 75px;
    }
}
@media screen and (max-width: 280px) {
    #fix-menu .telfo .free a span:first-child::before {
        top: 13px;
    }
}