/********************　共通　********************/
.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: rgb(0, 0, 0);
}
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: rgb(0, 0, 0);
    overflow: hidden;
}

/******************** form ********************/
#form {
    width: 100%;
    background-size: 100%;
    /* text-align: center; */
    padding-top: 20px;
}
@media screen and (max-width:750px){
#form {
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 50px;
}
#form iframe {
    width: 90%;
}
}

.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 0.5s;
    display: block;
}
.fadein.effect {
    opacity: 1;
    transform: translate(0, 0);
}

/********************　footer NieR　********************/
footer {
    background: rgb(0, 0, 0);
    position: relative;
    text-align: center;
    padding: 30px 0;
    color: #ffffff;
    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: #ffffff;
    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: #468cff;
}
.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;
}

#fv {
    overflow: hidden;
    position: relative;
}

.cta_btn {
    position: absolute;
    bottom: 25%;
    left: 3%;
    animation: updown 1.5s linear infinite;
    z-index: 11;
    width: 100%;
}
@media screen and (max-width: 750px) {
    .cta_btn {
        left: 1.5%;
    }
}
.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;
    }
}


.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;
    }
}

/* Google Mapを囲う要素 */
.map {
    position: relative;
    width: 75%;
    height: 0;
    padding-top: 55%; /* 比率を4:3に固定 */
    margin: -490px auto 77px;
  }
   
  /* Google Mapのiframe */
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  @media screen and (max-width: 750px) {
.map {
    position: relative;
    width: 75%;
    height: 0;
    padding-top: 55%; /* 比率を4:3に固定 */
    margin: -320px auto 53px;
  }