/********************　共通　********************/
.pc {
    display: block !important;
}
.sp {
    display: none !important;
}
@media screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
}
a img:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -webkit-transition: 0.6s;
    transition: 0.6s;
}
.clearfix:after {
    background: #ffffff;
    content: " ";
    display: block;
    clear: both;
}

.clear {
    clear: both;
}

html {
    font-size: 62.5%;
    background: #111;
}
body {
    margin: 0;
    font-family: "Roboto Condensed", Helvetica, Arial, "Noto Sans JP", sans-serif;
    margin-bottom: 0 !important;
}

svg {
    width: 100px;
    height: 100px;
}

.img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/********************　wrapper　********************/
#wrapper {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
}

/********************　form　********************/
#_form {
    position: relative;
}
#form {
    width: 90% !important;
    margin: 0 auto !important;
}
#form_wrap {
    background-image: url(../images/entry_bg.jpg);
    background-size: cover;
    background-position: top;
    position: relative;
    width: 100% !important;
    margin: 0 !important;
}
/********************　footer NieR　********************/
footer {
    background: #fff;
    position: relative;
    text-align: center;
    padding: 0px 0 100px;
    color: #111;
    font-size: 14px;
    line-height: 2;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}
.footer {
    padding: 0;
}
@media screen and (max-width: 750px) {
    footer {
        font-size: 12px;
    }
}

ul.footer li {
    display: inline;
    text-align: center;
}
footer a {
    color: #111;
    line-height: 5;
    text-decoration: none;
    padding: 5px 10px;
}
@media screen and (max-width: 750px) {
    footer a {
        line-height: 3.5;
    }
}

footer a:hover {
    background: #333;
    padding: 5px 10px;
}
footer span {
    font-size: 10px;
    line-height: 5;
}
@media screen and (max-width: 750px) {
    footer span {
        line-height: 3.5;
    }
}

#qa {
    position: relative;
    background: rgb(255, 255, 255);
    padding-bottom: 20px;
    margin-top: 100px;
}
.question {
    width: 76%;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
}
.qa__item {
    margin-bottom: 80px;
}
@media screen and (max-width: 750px) {
    .qa__item {
        margin-bottom: 40px;
    }
}
.question picture:nth-child(1) {
    position: relative;
    z-index: 1;
}
.is-open .question picture:nth-child(1) {
    opacity: 0;
}
.question picture:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.is-open .question picture:nth-child(2) {
    opacity: 1;
}

.answer {
    height: 0;
    opacity: 0;
    transition: 0.3s;
    width: 76%;
    margin: -10px auto 0;
}

.is-open .answer {
    margin-top: 15px;
    margin-bottom: 80px;
    height: auto;
    opacity: 1;
    pointer-events: all;
}
@media screen and (max-width: 750px) {
    .is-open .answer {
        margin-bottom: 20px;
    }
}
.qa__list {
    margin: 0 auto;
    padding: 0;
    list-style-type: none;
    background-image: url(../images/qa_bg.jpg);
    background-size: cover;
    background-position: top;
    padding-bottom: 10px;
}

.cta_btn {
    position: absolute;
    bottom: 0%;
    left: 1.5%;
    animation: updown 1.5s linear infinite;
    z-index: 11;
    width: 100%;
    margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
    .cta_btn {
        left: 5%;
        width: 90%;
        margin-bottom: 35px;
    }
}
.cta__wrap {
    position: relative;
}
.cta_btn img {
    display: table;
}
@keyframes updown {
    0%,
    100% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(20px);
    }
}

#floating {
    position: fixed;
    bottom: 0;
    z-index: 1112;
    overflow: hidden;
}
.floating_btn {
    position: relative;
    display: block;
}

.reflection {
    height: 100%;
    width: 200px;
    position: absolute;
    top: -100px;
    left: -800px;
    background-color: #fff;
    opacity: 0;
    transform: rotate(45deg);
    animation: reflection 2s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 2s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 2s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 2s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        transform: scale(0) rotate(45deg);
        opacity: 0.3;
    }
    81% {
        transform: scale(4) rotate(45deg);
        opacity: 0.6;
    }
    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
@-webkit-keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.3;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 0.6;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
@-moz-keyframes reflection {
    0% {
        -moz-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -moz-transform: scale(0) rotate(45deg);
        opacity: 0.3;
    }
    81% {
        -moz-transform: scale(4) rotate(45deg);
        opacity: 0.6;
    }
    100% {
        -moz-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
@-ms-keyframes reflection {
    0% {
        -ms-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -ms-transform: scale(0) rotate(45deg);
        opacity: 0.3;
    }
    81% {
        -ms-transform: scale(4) rotate(45deg);
        opacity: 0.6;
    }
    100% {
        -ms-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
@-o-keyframes reflection {
    0% {
        -o-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -o-transform: scale(0) rotate(45deg);
        opacity: 0.3;
    }
    81% {
        -o-transform: scale(4) rotate(45deg);
        opacity: 0.6;
    }
    100% {
        -o-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.slider_inner {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}
.slider_block {
}

@media screen and (max-width: 750px) {
    .slider_inner {
        width: 100%;
        height: 100%;
    }
}



.tab {
    position: relative;
    width: 86%;
    margin: 0 auto;
}

.tab_list {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
}

.tab_btn {
    cursor: pointer;
}
.tab_btn:nth-child(1) {
    position: relative;
}
.tab_btn:nth-child(2) {
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
}
.tab_btn.is-active {
    z-index: 1;
}
.tab_area {
    position: relative;
}
.visit {
    position: relative;
    opacity: 0;
    transition: 0.3s;
}
.remote {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    transition: 0.3s;
}
.visit.is-active {
    opacity: 1;
}
.remote.is-active {
    opacity: 1;
}

.modal_item{
    margin-top: -1px;
}



.tab_list {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    margin-left: -5px;
    margin-right: -5px;
}
.tab_item {
    position: relative;
    padding: 0 5px;
}
.tab_btn:nth-child(2) {
    position: absolute;
    top: 0;
    left: 5px;
    right: 5px;
}
@media screen and (max-width: 750px) {
    .tab_list {
        position: absolute;
        bottom: 0;
        left: 0;
        display: flex;
        margin-left: -5px;
        margin-right: -5px;
    }
    .tab_item {
        position: relative;
        padding: 0 5px;
    }
    .tab_btn:nth-child(2) {
        position: absolute;
        top: 0;
        left: 5px;
        right: 5px;
    }
}

.area {
    display: none;
    opacity: 0;
    padding-left: 4.5%;
    pointer-events: none;
}

.area.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    padding-bottom: 0px;
    margin-bottom: 100px;
}
@media screen and (max-width: 500px) {
    .area.is-active {
        padding-bottom: 15px;
        margin-bottom: 40px;
    }
}

.ad-off {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
}
.ad-off.is-none {
    display: none;
}
.ad-on {
    display: none;
}
.ad-on.is-open {
    display: block;
}

.acoordion_btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 150px;
    width: 60%;
    box-shadow: 0px 2px 12px 5px #c9c9c9;
    border-radius: 60px;
}

.acoordion_btn:hover {
    opacity: 0.7;
    transition: 0.5s;
    cursor: pointer;
}
.acoordion_btn.is-none {
    display: none;
}
#area {
    position: relative;
}
.is-hide {
    height: 1000px;
    position: relative;
    overflow: hidden;
    padding-bottom: 650px;
}
.is-hide:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 60%);
}

@media screen and (max-width: 500px) {
    .is-hide {
        height: 400px;
        padding-bottom: 450px;
    }
    .acoordion_btn {
        bottom: 50px;
    }
}

#floating {
    position: fixed;
    bottom: 0;
    z-index: 1112;
    overflow: hidden;
}

.floating_btn {
    position: relative;
    display: block;
}

.reflection {
    height: 100%;
    width: 200px;
    position: absolute;
    top: -100px;
    left: -800px;
    background-color: #fff;
    opacity: 0;
    transform: rotate(45deg);
    animation: reflection 2s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 2s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 2s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 2s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        transform: scale(0) rotate(45deg);
        opacity: 0.3;
    }

    81% {
        transform: scale(4) rotate(45deg);
        opacity: 0.6;
    }

    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@-webkit-keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.3;
    }

    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 0.6;
    }

    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@-moz-keyframes reflection {
    0% {
        -moz-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        -moz-transform: scale(0) rotate(45deg);
        opacity: 0.3;
    }

    81% {
        -moz-transform: scale(4) rotate(45deg);
        opacity: 0.6;
    }

    100% {
        -moz-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@-ms-keyframes reflection {
    0% {
        -ms-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        -ms-transform: scale(0) rotate(45deg);
        opacity: 0.3;
    }

    81% {
        -ms-transform: scale(4) rotate(45deg);
        opacity: 0.6;
    }

    100% {
        -ms-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@-o-keyframes reflection {
    0% {
        -o-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        -o-transform: scale(0) rotate(45deg);
        opacity: 0.3;
    }

    81% {
        -o-transform: scale(4) rotate(45deg);
        opacity: 0.6;
    }

    100% {
        -o-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}