@charset "utf-8";

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
/*firstview----------------------------*/
.firstview img {
    width: 100%;
}

/* campaign----------------------------*/
.campaign {
    text-align: center;
    background-image: url(../img/bg.png);
    background-repeat: repeat-y;
    background-size: contain;
    background-position: center;
}

/* overview----------------------------*/
.overview{
    padding-top: 50px;
}
.overview,.present{
    margin-bottom: 100px;
}
.overview img,.present img{
    width: 100%;
}
.overview h1,.present h1,.recommend h1 {
    font-family: ab-kirigirisu, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 5em;
    line-height: 80px;
    margin: 0 auto;
    color: #000000;
    padding: 30px 0;
}

/* recommend-------------------------*/
.recommend {
    padding-bottom: 50px;
}
.recommend_item {
    width: 90%;
    margin: 0 auto;
}

.list_item {
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
}

.item1 img,
.item2 img,
.item3 img {
    width: 300px;
}
.kurukuru {
        opacity: 0;
        padding-bottom: 20px;
      }
.item1.kurukuru.is-animated {
        animation: kurukuru 3s ease-out;
        opacity: 1;
      }
.item2.kurukuru.is-animated {
        animation: kurukuru 4.5s ease-out;
        opacity: 1;
      }
.item3.kurukuru.is-animated {
        animation: kurukuru 6s ease-out;
        opacity: 1;
      }
@keyframes kurukuru {
        0%{
          transform: rotateY(0) translateY(40px);
          opacity: 0;
        }
        100%{
          transform: rotateY(360deg) translateY(0);
          opacity: 1;
        }
      }


@media screen and (max-width:768px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    .content-wrapper {
        margin-top: 10vh;
    }

    /* overview------------------------------*/
    .overview,.present{
        padding: 0 20px;
    }
    /* recommend---------------------*/
    .recommend_item {
        width: 85%;
    }

    .list_item {
        display: block;
    }

    .item1 img,
    .item2 img,
    .item3 img {
        width: 350px;
    }

}

@media screen and (max-width:480px) {
    /* overview----------------------------*/
    .overview h1,.present h1,.recommend h1{
        font-size: 3.5em;
        line-height: 40px;
    }
    .overview,.present{
        margin-bottom: 30px;
    }
}

@media screen and (max-width:375px) {
    /* overview----------------------------*/
    .overview h1,.present h1,.recommend h1{
        font-size: 2.8em;
        padding: 20px 0;
    }

    /* recommend---------------------*/
    .recommend {
        padding-bottom: 20px;
    }
    .recommend_item li img {
        width: 80%;
    }
}