/********************　共通　********************/
.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 100px;
    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: #000;
}
.question {
    width: 80%;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
}
.qa__item {
    margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
    .qa__item {
        margin-bottom: 20px;
    }
}
.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: 80%;
    margin: -10px auto 0;
}

.is-open .answer {
    margin-top: 10px;
    margin-bottom: 0px;
    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;
}

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

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

/********************　HOW　********************/

.slick-slider {
    padding: 0;
    line-height: 0;
}
.slider .slick-slide {
    margin: 0 20px;
    height: auto;
    padding-bottom: 150px;
}
.slider2 .slick-slide {
    margin: 0 10px;
    height: auto;
    padding-bottom: 50px;
}
@media screen and (max-width: 750px) {
    .slider .slick-slide,
    .slider2 .slick-slid {
        margin: 0 10px;
    }
}
.slider .slick-slide img,
.slider2 .slick-slide img {
    display: block;
}
.slider .slick-arrow,
.slider2 .slick-arrow {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    margin: -55px 10px 0;
    box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.45);
}

.slick-next {
    right: 10px;
    background-image: url(../images/arrow_right.webp);
    background-size: cover;
}
.slick-prev {
    left: 10px;
    background-image: url(../images/arrow_left.webp);
    background-size: cover;
}

.slick-dots {
    position: absolute;
    bottom: 0px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    left: 0;
    list-style: none;
    text-align: center;
    z-index: 1111;
}
.slider01 .slick-dots {
    bottom: 100px;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}
@media (max-width: 767px) {
    .slick-dots li {
        width: 10px;
        height: 10px;
    }
}

.slick-dots li button {
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    background: transparent;
    border: 0;
    outline: none;
    border-radius: 50%;
}
@media (max-width: 767px) {
    .slick-dots li button {
        width: 10px;
        height: 10px;
    }
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
    background: #41cdff;
}

.slider02 .slick-dots li button:hover:before,
.slider02 .slick-dots li button:focus:before {
    opacity: 1;
    background: #468cff;
}

.slick-dots li button:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    background: #acacac;
    border-radius: 50%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767px) {
    .slick-dots li button:before {
        width: 10px;
        height: 10px;
    }
}

.slick-dots li.slick-active button:before {
    background: #FFCDFF;
}
.slider02 .slick-dots li.slick-active button:before {
    background: #8CFF9B;
}

@media screen and (max-width: 750px) {
    .slider .slick-arrow,
    .slider2 .slick-arrow {
        width: 40px;
        height: 40px;
    }
    .slick-next {
        right: 3px;
    }
    .slick-prev {
        left: 3px;
    }
}

/*==================================================
スライダー
===================================*/


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

@media screen and (max-width: 750px) {
    .slider_inner {
        top: 10px;
        width: auto;
        height: 50%;
    }
}

/* 01 */
.slider_inner--1 {
    display: flex;
    animation: slide01 60s linear infinite;
}

.slider_block {
    width: auto;
    flex-shrink: 0;
}

.slider_block--1 {
    width: 1748px;
    /* width: auto; */
    height: 100%;
}
.slider_item--1 {
    width: 100%;
    height: 100%;
}
.slider_item--1 img {
    width: auto;
    height: 100%;
}
@keyframes slide01 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-5000px);
    } /* .x-scroll_block 1つ分の幅だけ動かす */
}

@media screen and (max-width: 750px) {
    .slider_inner--1 {
        animation: 20s linear infinite slide01;
    }
    .slider_block--1 {
        width: 1748px;
        height: 100%;
    }
    .slider_item--1 {
        width: 100%;
        height: 100%;
    }
    .slider_item--1 img {
        width: auto;
        height: 140%;
    }
    @keyframes slide01 {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-1000px);
        } /* .x-scroll_block 1つ分の幅だけ動かす */
    }
}



.slider01 {
    position: relative;
}
.slider01 .slider {
    margin: 0;
}

.slider-area {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 0 30px;
    padding-bottom: 10px;
    width: 100%;
}

.slider-area .slider{
}
.slider-area:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: calc(100% - 110px);
    height: calc(100% - 60px);
    margin-left: 55px;
}
@media screen and (max-width: 750px) {
    .slider-area:before {
        width: calc(100% - 50px);
        margin-left: 25px;
    }
}


/* checkの画像 */
.check_img{
    text-align: center;
    position: relative;
}

.check_img ul{
    margin: auto;
    padding-left:0px;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 2%;
}

.check_img li{
    padding: 10px 40px;
}

.toggle_img_a:hover {
    opacity: 0.8;
}
.toggle_img_b:hover {
    opacity: 0.8;
}
.toggle_img_c:hover {
    opacity: 0.8;
}


/* FV動画の微調整 */
#background-video {
    display: inline-block;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

h1 {
    margin: 0;
}


@keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
      to {
      transform: translateX(-100%);
    }
    }
    .scroll-infinity__wrap {
      display: flex;
      overflow: hidden;
    }
    .scroll-infinity__list {
      display: flex;
      list-style: none;
      padding: 0
    }
    .scroll-infinity__list--left {
      animation: infinity-scroll-left 20s infinite linear 0.5s both;
    }
    .scroll-infinity__item {
      width: 300px;
    }
    .scroll-infinity__item>img {
      width: 100%;
    }

    @media screen and (max-width: 750px) {
        .scroll-infinity__item {
            width: calc(100vw / 3);
            margin: 0; /* マージンをリセット */
        }
    }