/* ALL */
*{
    padding: 0;
    margin:0;
    font-family: "Noto Sans JP", sans-serif;
}
ul,li{
    list-style: none;
}
.br-mobile{display: none;}
@media screen and (max-width:500px){.br-mobile{display: block;}}

/* Fade */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Container */
.container{
    width: 90%;
    max-width: 1500px;
    margin:0 auto;
}

/* Title */
.title{
    text-align: center;
}
.title h2{
    text-transform: uppercase;
    color:#a6a5a6;
    font-size: 45px;
    line-height: 1;
}
.title span{
    color: #fff;
    font-size: 18px;
    letter-spacing: 4px;
    display: block;
}
@media screen and (max-width:550px){
    .title h2{
        font-size: 32px;
    }
    .title span{
        font-size: 16px;
    }
}

/* Carousel */
.carousel{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.carousel .carousel-track{
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel .carousel-image{
    width: 50%;
    flex-shrink: 0;
}
.carousel .carousel-image img{
    width: 100%;
    height: auto;
    display: block;
}
.carousel .arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}
.carousel .prev{
    left: 10px;
}
.carousel .next{
    right: 10px;
}
@media screen and (max-width: 760px){
    .carousel .carousel-image{
        width: 100%;
    }
}

/* Header & Reservation */
.header{
    width: 100%;
    padding: 10px 0;
    background-color: #e3cd03;
    position: absolute;
    top: 110px;
    left: 0;
    z-index: 99;
}
.header .container div{
    display: flex;
    align-items: center;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.header .container div span{
    font-size: 25px;
    margin-right: 20px;
    font-weight: bold;
    color: #312f30;
}
.header .container div h3{
    font-size: 30px;
    font-weight: 900;
    color: #312f30;
}
@media screen and (max-width:1023px){
    .header{
        top: 8rem;
    }
}
@media screen and (max-width:767px){
    .header{
        top: 6rem;
    }
}
@media screen and (max-width:700px){
    .header .container{
        justify-content: space-between;
    }
    .header .container div{
        margin: 0;
    }
    .header .container div span{
        font-size: 15px;
    }
    .header .container div h3{
        font-size: 25px;
    }
}
@media screen and (max-width:580px){
    .header{
        padding: 7px 0;
    }
    .header .container div span{
        line-height: 1;
        display: block;
    }
    .header .container div h3{
        line-height: 1;
    }
    .header .container div h3{
        font-size: 23px;
    }
}

.reservation{
    width: 100%;
    padding: 5px 0;
    background-color: #e3cd03;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
}
.reservation .container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.reservation .container h3{
    font-size: 22px;
    color: #312f30;
    position: relative;
    margin-right: 130px;
    font-weight: bold;
}
.reservation .container h3 strong{
    color: #c92b1e;
}
.reservation .container h3::after{
    content: '';
    position: absolute;
    right: -65px;
    top: 50%;
    transform: translateY(-50%) rotate(315deg);
    border: solid #333;
    border-width: 0 2px 2px 0;
    padding: 6px;
    transition: transform 0.3s ease;
}
.reservation .container a{
    color: #fff;
    background-color: #312f30;
    padding: 10px 65px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 18px;
}
.reservation .container a:hover{
    opacity: 0.9;
}
@media screen and (max-width:850px){
    .reservation .container h3{
        margin-right: 80px;
        font-size: 15px;
    }
    .reservation .container h3::after{
        right: -40px;
    }
    .reservation .container a{
        padding: 5px 40px;
        font-size: 17px;
    }
}
@media screen and (max-width:615px){
    .reservation{
        padding: 10px 0;
    }
    .reservation .container{
        display: block;
        text-align: center;
    }
    .reservation .container h3{
        margin-bottom: 10px;
    }
    .reservation .container h3::after{
        content: none;
    }
    .reservation .container h3{
        margin-right: 0;
    }
    .reservation .container a{
        padding: 5px 50px;
        font-size: 16px;
    }
}

/* Hero */
.hero{
    overflow: hidden;
    position: relative;
}
.hero video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero h3 {
  font-size: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: 'Noto Serif JP';
  color: #fff;
  margin: -96px 0 0 -400px;
  width: 800px;
  font-weight: bold;
  text-shadow: 2px 2px 4px #444;
  opacity: 0;
  animation: fadeInOut 7s forwards;
  animation-delay: 2s;
  text-align: center;
}
.hero h3 span{
    color:#e3cd03;
    font-family: 'Noto Serif JP';
    font-weight: bold;
}
.hero .logo{
    position: absolute;
    top: 30px;
    left: 30px;
    width: 400px;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width:850px){
    .hero h3{
        font-size: 40px;
        width: 560px;
        margin: -64px 0 0 -280px;
    }
}
@media screen and (max-width:580px){
    .hero h3{
        font-size: 30px;
        width: 420px;
        margin: -42px 0 0 -210px;
    }
    .hero .logo{
        width: 250px;
        top: 15px;
        left: 50%;
        margin-left: -125px;
    }
}
@media screen and (max-width:450px){
    .hero h3{
        font-size: 25px;
        width: 350px;
        margin: -35px 0 0 -175px;
    }
}

/* History */
.history{
    padding: 100px 0 50px 0;
}
.history .container > img{
    width: 130px;
    display: block;
    margin: 0 auto;
}
.history span{
    font-family: "Noto Serif JP", serif;
    font-size: 25px;
    display: block;
    text-align: center;
    font-weight: bold;
}
.history span strong{
    font-size: 40px;
    font-family: "Noto Serif JP", serif;
}
.history span:last-of-type{
    display: block;
    border-bottom: 2px solid #000;
    width: 530px;
    margin: 0 auto 60px auto;
}
.history ul{
    display: flex;
    justify-content: center;
}
.history ul li img{
    width: 100%;
}
@media screen and (max-width:760px){
    .history span:last-of-type{
        width: 100%;
        margin-bottom: 10px;
    }
    .history ul{
        display: block;
    }
}
@media screen and (max-width:600px){
    .history span{
        font-size: 20px;
    }
    .history span strong{
        font-size: 35px;
    }
}
@media screen and (max-width:450px){
    .history{
        padding: 50px 0 10px 0;
    }
    .history .container > img{
        margin: 0 auto 15px auto;
    }
    .history span{
        font-size: 16px;
    }
    .history span strong{
        font-size: 24px;
    }
}

/* Purchase */
.purchase{
    background-image: url(../images/purchase_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
}
.purchase .container > div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.purchase .container .image{
    position: relative;
}
.purchase .container .image:before{
    content: "今だけ！";
    color: #312f30;
    background-color: #e3cd03;
    padding: 4px 15px;
    position: absolute;
    top: 22px;
    right: 175px;
    font-weight: bold;
    font-size: 33px;
    transform: rotate(354deg);
}
.purchase .container .image:after{
    content: "20% OFF!";
    color: #e3cd03;
    border: 2px solid #e3cd03;
    padding: 0px 10px;
    position: absolute;
    top: 85px;
    right: 124px;
    font-weight: bold;
    font-size: 33px;
    transform: rotate(354deg);
}
.purchase .container .main .content{
    text-align: center;
    color: #fff;
}
.purchase .container .main .content h4{
    font-size: 26px;
    margin-bottom: 30px;
}
.purchase .container .main .content img{
    width: 300px;
    display: block;
    margin: 0 auto 40px auto;
}
.purchase .container .main .content > span{
    position: relative;
    display: block;
    padding-top: 35px;
    font-size: 14px;
}
.purchase .container .main .content > span:after{
    content: " ";
    width: 270px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: rotate(175deg);
    margin-left: -135px;
}
.purchase .container .main .content > span small{
    font-size: 18px;
}
.purchase .container .main .content img.arrow-down{
    width: 50px;
    margin: 35px auto 15px auto;
}
.purchase .container .main .content > strong{
    color: #e3cd03;
    font-size: 65px;
    margin-bottom: 15px;
    display: block;
}
.purchase .container .main .content > strong small{
    font-size: 25px;
}
.purchase .container .main .content > strong.warning{
    font-size: 20px;
    position: relative;
    display: inline-block;
}
.purchase .container .main .content > strong.warning:before{
    content: "2025";
    color: #e3cd03;
    position: absolute;
    top: 20px;
    left: -25px;
    transform: rotate(270deg);
    font-size: 11px;
}
.purchase .container .main .content > strong.warning:after{
    content: "※台数に達し次第終了となります。";
    font-size: 10px;
    position: absolute;
    bottom: -10px;
    right: 0;
    display: block;
    color: #fff;
}
.purchase .container .main .content > strong.warning span{
    font-size: 35px;
    font-weight: bold;
}
.purchase .container .main .content > strong.warning small{
    background-color: #e3cd03;
    border-radius: 40px;
    color: #444;
    font-size: 15px;
    display: inline-block;
    padding: 2px 6px;
    margin: 0 5px;
}
.purchase .container .main .content div{
    display: flex;
    width: 340px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}
.purchase .container .main .content div span:first-of-type{
    border: 1px solid #fff;
    padding: 5px 10px;
    letter-spacing: 3px;
    font-size: 18px;
    margin-right: 10px;
}
.purchase .container .buttons{
    width: 530px;
    margin: 0 0 10px auto;
}
.purchase .container .buttons a{
    border-radius: 26px;
    background-color: #777;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 45px;
    min-width: 250px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
}
.purchase .container .buttons a:last-of-type{
    background-color: #fff;
    color: #312f30;
    margin-left: 30px;
}
.purchase .container .buttons a:hover{
    opacity: 0.9;
}
.purchase .container > small{
    display: block;
    text-align: right;
    color: #fff;
    font-size: 12px;
}
@media screen and (max-width:1300px){
    .purchase .container .main .content h4{
            font-size: 21px;
    }
    .purchase .container .main .content img{
        width: 250px;
    }
    .purchase .container .main .content img.arrow-down{
        width: 35px;
    }
    .purchase .container .main .content > strong{
        font-size: 50px;
    }
    .purchase .container .main .content div span:first-of-type, .purchase .container .main .content div span:last-of-type{
        font-size: 14px;
    }
}
@media screen and (max-width:1200px){
    .purchase .container .image:before{
        right: 90px;
    }
    .purchase .container .image:after{
        right: 40px;
    }
    .purchase .container .main .content h4{
        font-size: 17px;
    }
    .purchase .container .main .content img{
        width: 220px;
    }
    .purchase .container .main .content img.arrow-down{
        margin: 25px auto 15px auto;
    }
    .purchase .container .main .content > strong{
        font-size: 45px;
    }
    .purchase .container .main .content > strong.warning span{
        font-size: 28px;
    }
    .purchase .container .main .content > strong.warning small{
        font-size: 12px;
    }
    .purchase .container .main .content > strong.warning{
        font-size: 18px;
    }
    .purchase .container .main .content > strong.warning:before{
        top: 16px;
        font-size: 9px;
    }
}
@media screen and (max-width:980px){
    .purchase .container .image:before{
        font-size: 26px;
    }
    .purchase .container .image:after{
        font-size: 26px;
        top: 75px;
    }
    .purchase .container .main .content h4{
        font-size: 16px;
        margin-bottom: 20px;
    }
    .purchase .container .main .content img{
        width: 180px;
    }
    .purchase .container .main .content > span:after{
        top: 50px;
        transform: rotate(177deg);
    }
    .purchase .container .main .content img.arrow-down{
        margin: 20px auto 10px auto;
    }
}
@media screen and (max-width:900px){
    .purchase .container .main .content img{
        margin: 0 auto 20px auto;
    }
    .purchase .container .main .content > span{
        padding-top: 18px;
    }
    .purchase .container .main .content > span:after{
        top: 33px;
    }
    .purchase .container .main .content img.arrow-down{
        margin: 15px auto 0px auto;
    }
    .purchase .container .main .content > strong{
        font-size: 40px;
        margin-bottom: 10px;
    }
    .purchase .container .image:before{
        font-size: 21px;
        right: 55px;
    }
    .purchase .container .image:after{
        font-size: 21px;
        top: 65px;
        right: 25px;
    }
}
@media screen and (max-width:800px){
    .purchase .container > div{
        display: block;
        margin-bottom: 30px;
    }
    .purchase .container .image{
        width: 80%;
        margin: 0 auto 20px auto;
        position: relative;
    }
    .purchase .container .image:before{
        font-size: 35px;
        right: 120px;
    }
    .purchase .container .image:after{
        font-size: 35px;
        top: 90px;
        right: 70px;
    }
    .purchase .container .main .content h4{
        font-size: 15px;
        margin-bottom: 25px;
    }
    .purchase .container .main .content > span{
        padding-top: 50px;
    }
    .purchase .container .main .content > span:after{
        top: 67px;
    }
    .purchase .container .main .content img{
        margin: 0 auto 35px auto;
    }
    .purchase .container .main .content img.arrow-down{
        margin: 20px auto 5px auto;
    }
    .purchase .container .main .content > strong{
        margin-bottom: 20px;
    }
    .purchase .container .main .content > strong.warning{
        margin-bottom: 0;
    }
    .purchase .container .buttons{
        display: flex;
        width: 100%;
    }
    .purchase .container > small{
        text-align: center;
    }
    .purchase .container .main .content > strong.warning:after{
        bottom: -15px;
    }
}
@media screen and (max-width:650px){
    .purchase .container .main .content > span:before{
        content: none;
    }
    .purchase .container .main .content > span{
        padding-top: 0;
    }
    .purchase .container .main .content > span:after{
        top: 15px;
    }
    .purchase .container .image:before{
        font-size: 25px;
        right: 55px;
    }
    .purchase .container .image:after{
        font-size: 25px;
        top: 67px;
        right: 15px;
    }
    .purchase .container .buttons a{
        min-width: auto;
    }
    .purchase .container .main .content > strong.warning{
        margin-bottom: 45px;
    }
}
@media screen and (max-width:490px){
    .purchase .container .main .content div{
        width: 290px;
    }
    .purchase .container .main .content div span:first-of-type, .purchase .container .main .content div span:last-of-type{
        font-size: 13px;
    }
    .purchase .container .image{
        width: 100%;
    }
    .purchase .container .image:before{
        top: 5px;
        right: 35px;
    }
    .purchase .container .image:after{
        top: 50px;
        right: 0px;
    }
    .purchase .container .buttons{
        display: block;
    }
    .purchase .container .buttons a{
        display: block;
        width: 230px;
        margin: 0 auto;
    }
    .purchase .container .buttons a:last-of-type{
        margin-top: 20px;
        margin-left: auto;
    }
    .purchase .container .main .content > strong.warning span{
        font-size: 28px;
    }
    .purchase .container .main .content > strong.warning{
        font-size: 18px;
    }
}

/* Introduction */
.introduction{
    background-image: url(../images/introduction.webp);
    background-size: cover;
    padding: 200px 0;
    background-position: center;
}
.introduction img{
    width: 210px;
    display: block;
    margin: 0 auto 40px auto;
}
.introduction p{
    text-align: center;
    font-size: 23px;
    color: #fff;
}
.introduction p:first-of-type{
    margin-bottom: 110px;
}
.introduction p:last-of-type{
    line-height: 2.5;
    font-size: 19px;
    letter-spacing: 2px;
}
@media screen and (max-width:980px){
    .introduction p, .introduction p:last-of-type{
        font-size: 15px;
    }
    .introduction p:first-of-type{
        margin-bottom: 45px;
    }
}
@media screen and (max-width:550px){
    .introduction{
        padding: 100px 0;
    }
    .introduction p, .introduction p:last-of-type{
        font-size: 15px;
    }
}


/* Use cases */
.use-cases{
    background-color: #000;
}
.use-cases .case{
    padding-top: 700px;
    background-size: cover;
}
.use-cases .case:first-of-type, .use-cases .case:last-of-type{
    margin:0;
}
.use-cases .case:nth-of-type(1){
    background-image: url(../images/case_1.webp);
    background-position: left bottom;
}
.use-cases .case:nth-of-type(2){
    background-image: url(../images/case_2.webp);
    background-position: right center;
}
.use-cases .case:nth-of-type(3){
    background-image: url(../images/case_3.webp);
    background-position: right center;
}
.use-cases .case:nth-of-type(4){
    background-image: url(../images/case_4.webp);
    background-position: center center;
}
.use-cases .case > div{
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px 0;
}
.use-cases .case > div > div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.use-cases .case h3{
    color: #fff;
    border-right: 1px solid #fff;
    padding-right: 40px;
    font-size: 30px;
    font-weight: bold;
}
.use-cases .case p{
    padding-left: 40px; 
    color: #fff;
    font-size: 20px;
}
@media screen and (max-width:750px){
    .use-cases .case h3{
        font-size: 20px;
    }
    .use-cases .case p{
        font-size: 13px;
    }
}
@media screen and (max-width:550px){
    .use-cases .case{
        padding-top: 450px;
    }
    .use-cases .case h3{
        padding-right: 20px;
    }
    .use-cases .case p{
        padding-left: 20px;
    }
    .use-cases .case > div{
        padding: 15px 0;
    }
}
@media screen and (max-width:450px){
    .use-cases .case{
        padding-top: 300px;
    }
    .use-cases .case > div > div{
        display: block;
        text-align: center;
    }
    .use-cases .case h3{
        font-size: 18px;
        border-right: none;
        padding-right:0;
        margin-bottom: 10px;
    }
    .use-cases .case p{
        font-size: 12px;
    }
}


/* Features */
.features main{
    background-image: url(../images/features_bg.webp);
    background-size: cover;
    text-align: right;
    position: relative;
    overflow-x: hidden;
}
.features main .title{
    position: absolute;
    top: 200px;
    left: 280px;
    text-align: left;
}
.features main .title h2{
    font-size: 100px;
    text-shadow: -4px -4px 4px #222;
}
.features main .title span{
    font-size: 32px;
    margin: -25px 0 0 39px;
    letter-spacing: 28px;
}
.features .points > div{
    display: grid;
    grid-template-columns: 50% 50%;
}
.features .points > div > img{
    grid-area: section_img;
    width: 100%;
}
.features .points > div > div{
    grid-area: section_content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.features .points div div h3{
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}
.features .points div div p{
    line-height: 2;
    letter-spacing: 1px;
    font-size: 20px;
}
.features .points .point-1{grid-template-areas: 'section_img section_content';}
.features .points .point-2{grid-template-areas: 'section_content section_img';}
.features .points .point-3{grid-template-areas: 'section_img section_content';}
.features .points .point-4{grid-template-areas: 'section_content section_img';}
.features .points .point-1 div{
    background-image: url(../images/point_1_bg.webp);
    background-size: cover;
}
.features .points .point-2 div{
    background-image: url(../images/point_2_bg.webp);
    background-size: cover;
}
.features .points .point-3 div{
    background-image: url(../images/point_3_bg.webp);
    background-size: cover;
}
.features .points .point-4 div{
    background-image: url(../images/point_4_bg.webp);
    background-size: cover;
}
.features .demonstrations .demonstration{
    background-size: cover;
    height: 700px;
    position: relative;
    background-position: center center;
}
.features .demonstrations .demonstration:nth-of-type(1){background-image: url(../images/demonstration_1.webp);}
.features .demonstrations .demonstration:nth-of-type(2){background-image: url(../images/demonstration_2.gif);}
.features .demonstrations .demonstration:nth-of-type(3){background-image: url(../images/demonstration_3.webp);}
.features .demonstrations .demonstration div{
    background-color: rgba(4, 4, 4, 0.8);
    padding: 15px 25px;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
}
.features .demonstrations .demonstration:nth-of-type(2) div{
    top: unset;
    bottom: 30px;
}
.features .demonstrations .demonstration:nth-of-type(3) div{
    left: unset;
    right: 30px;
}
.features .demonstrations .demonstration div h3{
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
}
.features .demonstrations .demonstration div h3 strong{
    font-size: 36px;
}
.features .demonstrations .demonstration div p{
    font-size: 13px;
}
.features .demonstrations .demonstration:nth-of-type(1) div h3 strong{
    margin-left: 45px;
}
@media screen and (max-width:1480px){
    .features main .title{
        left: 160px;
    }
}
@media screen and (max-width:1330px){
    .features main .title{
        left: 90px;
    }
}
@media screen and (max-width:1220px){
    .features main .title{
        top: 155px;
        left: 90px;
    }
    .features main .title h2{
        font-size: 80px;
    }
    .features main .title span{
        font-size: 28px;
    }
    .features main img{
        width: 900px;
    }
    .features .points div div h3{
        font-size: 25px;
    }
    .features .points div div p{
        font-size: 17px;
    }
}
@media screen and (max-width:1030px){
    .features main img{
        width: 750px;
    }
    .features main .title{
        top: 130px;
        left: 70px;
    }
    .features main .title h2{
        font-size: 70px;
    }
    .features main .title span{
        font-size: 25px;
    }
    .features .points div div p{
        font-size: 14px;
    }
}
@media screen and (max-width:870px){
    .features main img{
        width: 590px;
    }
    .features main .title{
        top:90px;
    }
    .features main .title h2{
        font-size: 60px;
    }
    .features main .title span{
        font-size: 23px;
        margin: -20px 0 0 23px;
    }
    .features .points div div p{
        font-size: 12px;
    }
}
@media screen and (max-width:730px){
    .features main img{
        width: 450px;
    }
    .features main .title{
        top: 70px;
    }
    .features main .title h2{
        font-size: 50px;
    }
    .features main .title span{
        font-size: 21px;
        margin: -10px 0 0 17px;
    }
    .features .points div div h3{
        font-size: 19px
    }
}
@media screen and (max-width:580px){
    .features main img{
        width: 380px;
    }
    .features main .title{
        top: 60px;
        left:35px;
    }
    .features main .title h2{
        font-size: 40px;
    }
    .features main .title span{
        font-size: 18px;
        margin: -20px 0 0 9px;
    }
    .features .points > div{
        grid-template-columns: 100%;
    }
    .features .points .point-1{grid-template-areas: 'section_content' 'section_img ';}
    .features .points .point-2{grid-template-areas: 'section_content' 'section_img ';}
    .features .points .point-3{grid-template-areas: 'section_content' 'section_img ';}
    .features .points .point-4{grid-template-areas: 'section_content' 'section_img ';}
    .features .points > div > div{
        min-height: 420px;
    }
    .features .points div div h3{
        font-size: 30px;
    }
    .features .points div div p{
        font-size: 15px;
    }
    .features .demonstrations .demonstration{
        height: 600px;
    }
    .features .demonstrations .demonstration div, .features .demonstrations .demonstration:nth-of-type(2) div, .features .demonstrations .demonstration:nth-of-type(3) div{
        top: 0;
        bottom: unset;
        right: unset;
        left: 0;
        width: 100%;
        text-align: center;
    }
    .features .demonstrations .demonstration:nth-of-type(1) div h3 strong{
        margin-left: 0;
    }
    .features .demonstrations .demonstration div h3{
        font-size: 16px;
    }
    .features .demonstrations .demonstration div h3 strong{
        font-size: 27px;
    }
}
@media screen and (max-width:500px){
    .features .points > div > div{
        min-height: 360px;
    }
    .features .points div div p{
        font-size: 14px;
    }
}
@media screen and (max-width:450px){
    .features main img{
        width: 410px;
        position: relative;
        right: -20px;
    }
    .features main .title h2{
        font-size: 35px;
        text-shadow: 4px -3px 3px #222;
    }
    .features main .title{
        top: 70px;
        left: 15px;
    }
    .features .points div div p{
        font-size: 12px;
    }
}
@media screen and (max-width:400px){
    .features .points > div > div{
        min-height: 280px;
    }
    .features .points div div h3{
        font-size: 27px;
    }
    .features .demonstrations .demonstration div{
        padding: 10px;
    }
    .features .demonstrations .demonstration div p{
        font-size: 12px;
    }
}

/* Purchase cta */
.purchase-cta{
    background-image: url(../images/purchase_bg.webp);
    background-size: cover;
    padding: 50px 0;
}
/* .purchase-cta .container .purchase-image{
    position: relative;
} */
.purchase-cta .container .purchase-image img{
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto;
}
/* .purchase-cta .container .purchase-image::after{
    content: "MATTE BLACK";
    color: #000;
    font-size: 40px;
    position: absolute;
    top: 110px;
    right: 50%;
    font-weight: bold;
    font-style: italic;
    margin-right: -300px;
} */
.purchase-cta .container .content{
    text-align: center;
    color: #fff;
}
.purchase-cta .container .content > strong.warning{
    font-size: 20px;
    position: relative;
    display: inline-block;
}
.purchase-cta .container .content > strong.warning:before{
    content: "2025";
    color: #e3cd03;
    position: absolute;
    top: 14px;
    left: -25px;
    transform: rotate(270deg);
    font-size: 11px;
}
.purchase-cta .container .content > strong.warning:after{
    content: "※台数に達し次第終了となります。";
    font-size: 10px;
    position: absolute;
    bottom: -15px;
    right: -5px;
    display: block;
    color: #fff;
}
.purchase-cta .container .content > strong.warning span{
    font-size: 35px;
    font-weight: bold;
}
.purchase-cta .container .content > strong.warning small{
    background-color: #e3cd03;
    border-radius: 40px;
    color: #444;
    font-size: 15px;
    display: inline-block;
    padding: 2px 6px;
    margin: 0 5px;
}
.purchase-cta .container .content > span{
    position: relative;
    display: block;
    font-size: 14px;
    color: #fff;
}
/* .purchase-cta .container .content > span:after{
    content: " ";
    width: 270px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: rotate(175deg);
    margin-left: -135px;
} */
.purchase-cta .container .content > span small{
    font-size: 12px;
}
.purchase-cta .container .content img.arrow-down{
    width: 35px;
    margin: 30px auto 15px auto;
}
.purchase-cta .container .content > strong{
    color: #e3cd03;
    font-size: 50px;
    margin-bottom: 45px;
    display: block;
    line-height: 1;
}
.purchase-cta .container .content > strong small{
    font-size: 25px;
}
.purchase-cta .container .content a.purchase-btn{
    border-radius: 26px;
    background-color: #fff;
    color: #000;
    padding: 10px 45px;
    min-width: 250px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    display: inline-block;
    margin-bottom: 35px;
}
.purchase-cta .container .content div{
    display: flex;
    width: 330px;
    margin: 0 auto 15px auto;
    align-items: center;
    justify-content: center;
}
.purchase-cta .container .content div span{
    font-size: 15px;
}
.purchase-cta .container .content div span:first-of-type{
    border: 1px solid #fff;
    padding: 5px 10px;
    letter-spacing: 3px;
    font-size: 15px;
    margin-right: 10px;
}
.purchase-cta .container .content > small{
    font-size: 12px;
}
@media screen and (max-width:450px){
    .purchase-cta .container > img{
        margin-bottom: 20px;
    }
    .purchase-cta .container .content > strong.warning span{
        font-size: 28px;
    }
    .purchase-cta .container .content > strong.warning{
        font-size: 18px;
    }
    .purchase-cta .container .content > span{
        color:#fff;
    }
    .purchase-cta .container .content > strong{
        font-size: 35px;
    }
    .purchase-cta .container .content > strong small{
        font-size: 20px;
    }
    .purchase-cta .container .content > strong.warning:before{
        top: 11px;
        left: -22px;
        font-size: 9px;
    }
}

/* Gallery */
.gallery{
    padding: 50px 0;
    background-color: #312f30;
}
.gallery .title{
    margin-bottom: 50px;
}

/* Specs */
.specs{
    padding: 50px 0;
}
.specs h2{
    text-align: center;
    margin-bottom: 40px;
    font-size: 35px;
    font-weight: bold;
}
.specs .description{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.specs .description li img{
    max-width: 430px;
    margin-right: 25px;
}
.specs .description li p{
    line-height: 2;
    font-size: 20px;
}
.specs .attributes{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}
.specs .attributes li{
    background-color: #d9d9d9;
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
    width: 19%;
    box-sizing: border-box;
}
.specs .attributes li img{
    width: 50px;
}
.specs .attributes li h4{
    color:#777;
    font-weight: normal;
    margin-bottom: 10px;
}
.specs small{
    width: 800px;
    display: block;
    margin:0 auto;
    font-size: 12px;
}
@media screen and (max-width:1030px){
    .specs .description li p{
        font-size: 16px;
    }
}
@media screen and (max-width:900px){
    .specs h2{
        font-size: 25px;
    }
    .specs .description{
        display: block;
        text-align: center;
    }
    .specs .description li img{
        width: 90%;
        margin:0 auto;
    }
    .specs .description li p{
        font-size: 18px;
    }
    .specs .attributes{
        flex-wrap: wrap;
    }
    .specs .attributes li{
        width: 49%;
    }
    .specs small{
        width: auto;
    }
}
@media screen and (max-width:450px){
    .specs h2{
        font-size: 22px;
    }
    .specs .description li p{
        font-size: 13px;
    }
}

/* Option */
.option{
    padding: 50px 0;
}
.option .title{
    margin-bottom: 50px;
}
.option .title h2{
    color:#000;
}
.option .title span{
    color:#000;
}
.option h3{
    text-align: center;
    font-size: 33px;
    margin-bottom: 30px;
}
.option h3 strong{
    font-weight: bold;
}
.option .option-recommended{
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto 30px auto;
}
.option .container > span{
    text-align: center;
    display: block;
}
.option .carousel{
    margin-bottom: 50px;
}
.option .carousel-image span{
    display: block;
    text-align: center;
}
.option ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.option ul li{
    width: 19%;
    margin-bottom: 40px;
}
.option ul li div{
    border: 1px solid #000;
    padding: 11px;
    margin-bottom: 20px;
}
.option ul li div img{
    width: 100%;
    margin-bottom: 10px;
}
.option ul li div h4{
    font-size: 16px;
    font-weight: bold;
}
.option ul li div h4 small{
    font-size: 11px;
    display: inline;
}
.option ul li div span{
    font-size: 15px;
}
.option ul li a{
    padding: 7px 0px;
    background-color: #312f30;
    color: #fff;
    text-decoration: none;
    width: 100%;
    display: block;
    border-radius: 20px;
    text-align: center;
    font-size: 19px;
}
.option small{
    display: block;
    text-align: right;
    font-size: 12px;
}
@media screen and (max-width:1120px){
    .option ul li div h4{
        font-size: 15px;
    }
}
@media screen and (max-width:1000px){
    .option ul li{
        width: 49%;
    }
    .option ul li div h4{
        font-size: 20px;
    }
}
@media screen and (max-width:700px){
    .option h3{
        font-size: 27px;
    }
}
@media screen and (max-width:550px){
    .option h3{
        font-size: 23px;
    }
    .option ul li div h4{
        font-size: 17px;
    }
    .option .container > span{
        font-size: 12px;
    }
    .option small{
        text-align: center;
    }
}
@media screen and (max-width:470px){
    .option h3{
        font-size: 18px;
    }
}
@media screen and (max-width:450px){
    .option ul{
        width: 80%;
        margin: 0 auto;
    }
    .option ul li{
        width: 100%;
        margin-bottom: 70px;
    }
    .option ul li div h4{
        font-size: 16px;
    }
    .option ul li div span{
        font-size: 13px;
    }
}

/* Flow */
.flow{
    padding: 50px 0;
    background-color: #312f30;
    border-bottom: 1px solid #777;
}
.flow .description{
    padding: 50px 0;
    border-bottom: 2px dashed #fff;
    text-align: center;
}
.flow .description:last-of-type{
    border-bottom: none;
    padding-bottom: 0;
}
.flow .description strong{
    color: #fff;
    border: 1px solid #fff;
    padding: 10px;
    margin-bottom: 30px;
    display: inline-block;
    font-weight: normal;
}
.flow .description strong span{
    font-size: 22px;
    padding: 0 3px;
    font-weight: 900;
}
.flow .description ul{
    display: flex;
    justify-content: center;
}
.flow .description ul li{
    text-align: center;
    padding: 0 10px;
    width: 25%;
    position: relative;
}
.flow .description ul li::after{
    content: " ";
    width: 50px;
    height: 25px;
    background-image: url(../images/arrow.webp);
    background-size: 100%;
    position: absolute;
    top: 40px;
    right: -25px;
    transform: rotate(270deg);
}
.flow .description ul li:last-of-type:after{
    content: none;
}
.flow .description ul li div{
    background-color: #fff;
    padding: 25px;
    border-radius: 50px;
    width: 100px;
    height: 100px;
    box-sizing: border-box;
    margin: 0 auto 15px auto;
}
.flow .description ul li div img{
    width: 50px;
}
.flow .description ul li span{
    color: #fff;
    font-size: 16px;
}
@media screen and (max-width:1150px){
    .flow .description strong{
        font-size: 14px;
    }
    .flow .description strong span{
        font-size: 18px;
    }
    .flow .description ul li span{
        font-size: 13px;
    }
    .flow .description ul li div{
        width: 80px;
        height: 80px;
        padding: 20px;
    }
    .flow .description ul li div img{
        width: 100%;
    }
    .flow .description ul li::after{
        width: 36px;
        height: 18px;
    }
}
@media screen and (max-width:600px){
    .flow .description ul{
        display: block;
    }
    .flow .description ul li{
        width: 100%;
        margin-bottom: 90px;
        padding: 0;
    }
    .flow .description ul li:last-of-type{
        margin-bottom: 0;
    }
    .flow .description ul li div{
        margin-bottom: 0;
    }
    .flow .description ul li:after{
        transform: rotate(0deg);
        right: 50%;
        top: unset;
        bottom: -50px;
        margin-right: -18px;
    }
}

/* Quality & Warranty */
.quality-warranty{
    padding: 50px 0;
    background-color: #312f30;
    border-bottom: 1px solid #777;
}
.quality-warranty .container > .title{
    margin-bottom: 60px;
}
.quality-warranty .container > ul > li{
    width: 100%;
    height: 103px;
    overflow-y: hidden;
    box-sizing: border-box;
    border: 1px solid #fff;
    margin-bottom: 25px;
}
.quality-warranty .container > ul > li .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 35px 45px;
    cursor:pointer;
}
.quality-warranty .container > ul > li .title h3,.quality-warranty .container > ul > li .title i{
    font-size: 21px;
}
.quality-warranty .container > ul > li .content{
    padding: 20px 45px 30px 45px;
    color: #fff;
}
.quality-warranty .container > ul > li .content h4{
    font-size: 21px;
    margin-bottom: 10px;
}
.quality-warranty .container > ul > li .content h5{
    font-size: 19px;
    margin-bottom: 10px;
}
.quality-warranty .container > ul > li .content p{
    font-size: 17px;
    margin-bottom: 30px;
}
.quality-warranty .container > ul > li .content ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.quality-warranty .container > ul > li .content ul li{
    width: 24%;
}
.quality-warranty .container > ul > li .content ul li img{
    display: block;
    margin-bottom: 10px;
}
.quality-warranty .container > ul > li .content ul li h4{
    font-size: 16px;
    margin-bottom: 5px;
}
.quality-warranty .container > ul > li .content ul li p{
    margin-bottom: 0;
}
.quality-warranty .container > ul > li .content .description{
    max-height: 300px;
    overflow-y: scroll;
    text-align: left;
}
.quality-warranty .container > ul > li .content .description::-webkit-scrollbar, .quality-warranty .container > ul > li::-webkit-scrollbar{
    width: 5px;
}
.quality-warranty .container > ul > li .content .description::-webkit-scrollbar-track, .quality-warranty .container > ul > li::-webkit-scrollbar-track{
    background: #f1f1f1;
}
.quality-warranty .container > ul > li .content .description::-webkit-scrollbar-thumb, .quality-warranty .container > ul > li::-webkit-scrollbar-thumb{
    background: #888;
}
.quality-warranty .container > ul > li .content .description::-webkit-scrollbar-thumb:hover, .quality-warranty .container > ul > li::-webkit-scrollbar-thumb:hover{
    background: #555;
}
.quality-warranty .container > ul > li .content .description small{
    color: #fff;
    text-align: left;
    font-size: 12px;
    font-weight: normal;
}
@media screen and (max-width:600px){
    .quality-warranty .container > ul > li .content h4{
        font-size: 18px;
    }
    .quality-warranty .container > ul > li .content h5{
        font-size: 16px;
    }
    .quality-warranty .container > ul > li .content p{
        font-size: 14px;
    }
    .quality-warranty .container > ul > li .title{
        margin-bottom: 0;
    }
    .quality-warranty .container > ul > li{
        height: 67px;
    }
    .quality-warranty .container > ul > li .title{
        padding: 20px 30px;
    }
    .quality-warranty .container > ul > li .title h3, .quality-warranty .container > ul > li .title i{
        font-size: 18px;
    }
}

/* Voice */
.voice{
    padding: 50px 0;
    background-color: #312f30;
    border-bottom: 1px solid #777;
}
.voice .carousel-wrapper{
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
    position: relative;
}
.voice .carousel-container{
    overflow: hidden;
    width: 100%;
}
.voice .voice-carousel{
    display: flex;
    transition: transform 0.5s ease;
    width: max-content;
}
.voice .card{
    background: #fff;
    color: #000;
    flex: 0 0 auto;
    width: 300px;
    margin: 0 10px;
    padding: 20px 15px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}
.voice .card img{
    display: block;
    margin: 0 auto 30px auto;
    border-radius: 45px;
}
.voice .stars{
    color: gold;
    font-size: 15px;
    margin-bottom: 8px;
    text-align: center;
}
.voice .stars span{
    color: #000;
}
.voice .profile{
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
    display: block;
}
.voice .card p{
    font-size: 13px;
}
.voice .arrow{
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.voice .arrow-left{
    left: -5px;
}
.voice .arrow-right{
    right: -5px;
}
@media screen and (max-width: 1120px){
    .voice .carousel-wrapper{
        max-width: 680px;
    }
}
@media screen and (max-width: 760px){
    .voice .card{
        width: 280px;
    }
    .voice .carousel-wrapper{
        max-width: 340px;
    }
}

/* Other */
.other{
    padding: 50px 0;
    background-color: #312f30;
    border-bottom: 1px solid #777;
}
.other .container h3{
    text-align: center;
    color: #fff;
    font-size: 25px;
    letter-spacing: 2px;
    margin-bottom: 50px;
    font-weight: bold;
}
.other .container div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.other .container div img{
    max-width: 370px;
    margin-right: 30px;
}
.other .container div p{
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}
@media screen and (max-width:800px){
    .other .container h3{
        font-size: 19px;
    }
    .other .container div p{
        font-size: 14px;
    }
    .other .container div img{
        max-width: 250px;
    }
}
@media screen and (max-width:600px){
    .other .container h3 {
        font-size: 16px;
    }
    .other .container div{
        display: block;
        text-align: center;
    }
    .other .container div img{
        margin-bottom: 30px;
    }
    .other .container div p{
        display: block;
        width: 280px;
        margin: 0 auto;
        text-align: left;
    }
}

/* FAQ */
.faq{
    padding: 50px 0;
    background-color: #312f30;
}
.faq .title{
    margin-bottom: 50px;
}
.faq .faq-item{
    margin-bottom: 16px;
    border-bottom: 1px solid #ddd;
}
.faq .faq-question{
    width: 100%;
    text-align: left;
    padding: 16px 25px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
    background-color: #fff;
    color: #000;
}
.faq .faq-question::after{
    content: '';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%) rotate(405deg);
    border: solid #333;
    border-width: 0 2px 2px 0;
    padding: 6px;
    transition: transform 0.3s ease;
}
.faq .faq-question.active::after{
    transform: translateY(-50%) rotate(225deg);
}
.faq .faq-answer{
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}
.faq .faq-answer p{
    margin: 12px 0;
}
@media screen and (max-width:750px){
    .faq .faq-question{
        font-size: 15px;
        padding: 16px 35px 16px 15px;
    }
    .faq .faq-question::after{
        right: 20px;
    }
    .faq .faq-answer p{
        font-size: 12px;
    }
}


