@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root{
    --color-orange: #F78F22;
    --color-yellow: #FFDB4F;
    --color-red: #E60012;
    --color-green: #00A75B;
    --color-blue: #377CE1;
    --color-text: #663827;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: bold;
    color: var(--color-text);
    font-family: "Noto Sans JP", sans-serif;
    line-height: normal !important;
}
img{
    width: 100%;
    height: auto;
}
.sp{
    display: none;
}
.wrapper{
    background: var(--color-yellow);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255, 255, 255, 1) 12px, rgba(255, 255, 255, 1) 13px );
}
.mid{
    font-size: clamp(18px, 1.4vw, 30px);
}
.big{
    font-size: clamp(30px, 4vw, 60px);
}
.flex{
    display: flex;
}
.column{
    display: flex;
    flex-direction: column;
}
.center{
    text-align: center;
}
.cont-w{
    width: 100%;
    /* max-width: 1040px; */
    max-width: 760px;
    margin: 0 auto;
    padding: 5%;
}
ul li{
    list-style: none;
}
a{
    text-decoration: none;
}
/* h1隠しテキスト */
.visually-hidden{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* MVアニメーション用 */
.element {
    animation: pop 1.3s ease forwards;
    animation-play-state: paused;
}
@keyframes pop {
    0%{
        transform: scale(0);
    }
    30%{
        transform: scale(1.2);
    }
    50%{
        transform: scale(.9);
    }
    80%{
        transform: scale(1);
    }
}
/* フェードインアニメーション用 */
.fade-in.in-view{
    animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn{
    0%{
        transform: scale(0);
    }
    40%{
        transform: scale(1);
    }
    50%{
        transform: scale(.8);
    }
    70%{
        transform: scale(1);
    }
}
/*========
header
=========*/
header{
    position: fixed;
    padding: 2rem;
    top: 0;
    left: 0;
    z-index: 10;
}
header a:hover{
    opacity: .8;
}
/*========
mv
=========*/
.MV{
    background: url(../images/mv_bg.webp);
    background-size: 100% 100%;
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 0;
}
.MV::before{
    content: "";
    background: url(../images/mv_hata.webp);
    display: block;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 100%;
    height: 50%;
    position: absolute;
    top: 0;
    right: 0;
    background-position: center;
}
.MV h1{
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
}
.MV h1 img{
    width: auto;
    height: 100%;
    display: block;
    margin: 0 auto;
}
.MV h1 .sp-mv,
.MV h1 .ipad-mv,
.MV .content-img .ipad-mv,
.MV .content-img .sp-mv,
.MV .content-txt.sp{
    display: none;
}
.MV .content-img{
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 1;
}
.MV .content-img img:nth-of-type(1){
    width: 35%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.MV .content-img::before{
    content: "";
    background: url(../images/mv_left_pan.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 15rem;
    height: 15rem;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}
.MV .content-img::after{
    content: "";
    background: url(../images/mv_right_flower.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    height: 100%;
    width: 18%;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    z-index: -1;
}
.MV .content-img img:nth-of-type(2){
    width: 37%;
    position: absolute;
    bottom: 0;
    right: 0;
}
/* .MV .content-txt{
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 3;
    bottom: 0;
    right: 0;
}
.MV .content-txt span{
    position: absolute;
    display: block;
    color: #fff;
    padding: .5rem;
}
.MV .content-txt .red-txt{
    background: var(--color-red);
    transform: rotate(-5.4deg);
    right: 25%;
    bottom: 25%;
}
.MV .content-txt .orange-txt{
    background: var(--color-orange);
    transform: rotate(1.7deg);
    right: 7%;
    bottom: 33%;
}
.MV .content-txt .pink-txt{
    background: #E4007F;
    transform: rotate(-7.6deg);
}
.MV .content-txt .green-txt{
    background: var(--color-green);
    transform: rotate(-7.6deg);
} */

/*========
特典
=========*/
.content .button{
    color: #fff;
    position: fixed;
    bottom: 1%;
    right: 1%;
    background: url(../images/button.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 2.5rem;
    line-height: 130%;
    transition: .2s;
    z-index: 999;
}
.content .button:hover{
    transform: scale(1.1);
}
.line-content h2{
    padding: 5% 0;
}
ul{
    gap: 5rem;
}
ul li{
    background: #fff;
    border-radius: 30px;
    gap: 30px;
}
ul li:nth-of-type(1){
    border: var(--color-red) 10px solid;
}
ul li:nth-of-type(2){
    border: var(--color-green) 10px solid;
}
ul li:nth-of-type(3){
    border: var(--color-blue) 10px solid;
}
ul li .cont-image{
    width: 80%;
    margin: 0 auto;
}
ul li .number{
    padding: 2rem 3rem;
    border-radius: 100vh;
    /* width: 50%; */
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: clamp(20px, 2vw, 38px);
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 100%;
}
ul li .number span{
    font-size: clamp(30px, 3vw, 67px);
}
ul li:nth-of-type(1) .number{
    background: var(--color-red);
}
ul li:nth-of-type(2) .number{
    background: var(--color-green);
}
ul li:nth-of-type(3) .number{
    background: var(--color-blue);
}
/*動画を見るには*/
.movie{
    align-items: center;
}
.movie h4{
    color: #fff;
    background: var(--color-orange);
    border-radius: 100vh;
    width: fit-content;
    padding: 1rem 5rem;
    margin-bottom: -1.5rem;
    position: relative;
}
.movie .in-cont-w{
    background: var(--color-yellow);
    border-radius: 30px;
    padding: 5%;
    align-items: center;
    gap: 40px;
}
.movie .in-cont-w .image{
    width: 90%;
    margin: 0 auto;
}
.movie .txt .line{
    text-decoration: underline;
    text-decoration-thickness: 0.8em;
    text-decoration-color: #fff;
    text-underline-offset: -0.4em;
    text-decoration-skip-ink: none;
}
.movie .txt p{
    font-size: clamp(20px, 2vw, 30px);
    margin-bottom: 15px;
}
.movie .txt span{
    display: block;
}
/* LINE登録部分 */
.line-registration{
    /* max-width: 1040px; */
    max-width: 760px;
    margin: 0 auto;
    padding-top: 7%;
}
.line-registration .txt .sub-txt{
    font-size: clamp(20px, 2vw, 30px);
    line-height: 100%;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}
.line-registration .txt .sub-txt::before{
    content: "";
    display: inline-block;
    width: 4px;
    height: 3rem;
    background: var(--color-text);
    transform: rotate(-35deg);
    position: absolute;
    bottom: -.2rem;
    left: -2rem;
}
.line-registration .txt .sub-txt::after{
    content: "";
    display: inline-block;
    width: 4px;
    height: 3rem;
    background: var(--color-text);
    transform: rotate(35deg);
    position: absolute;
    bottom: -.2rem;
    right: -2rem;
}
.line-registration .txt .big{
    color: var(--color-green);
}
.line-registration .line-cont img{
    width: 65%;
    margin: 0 auto;
    display: block;
}

/*========
footer
=========*/
footer{
    background: var(--color-orange);
    padding: 1.5rem 0;
}
footer img{
    width: 20%;
    margin: 0 auto;
    display: block;
}

/*================
レスポンシブ
================*/
@media screen and (max-aspect-ratio: 3/2){
    .MV h1{
        z-index: 2;
    }
}
@media screen and (max-width: 767px) {
    /*======= MV =======*/
    .MV h1 .pc-mv,
    .MV .content-img .pc-mv,
    .MV h1 .sp-mv,
    .MV .content-img .sp-mv{
        display: none;
    }
    .MV .content-img .ipad-mv,
    .MV h1 .ipad-mv{
        display: block;
    }
    .MV .content-img .ipad-mv:nth-of-type(3){
        position: absolute;
        bottom: 0;
        left: 0;
        width: auto;
        height: 80%;
    }
    .MV .content-img .ipad-mv:nth-of-type(4){
        position: absolute;
        bottom: 0;
        right: 0;
        width: auto;
        height: 80%;
    }
    .MV .content-img::before{
        width: 15rem;
        height: 15rem;
    }
}
@media screen and (max-width: 510px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }

    .content .button{
        background: #06C655;
        width: 100%;
        bottom: 0;
        right: 0;
        padding: 1rem 0;
        z-index: 999;
    }
    .wrapper{
        padding-bottom: calc(18px + 2rem);
    }
    /*======= header =======*/
    header{
        padding: 10px;
    }
    header a{
        width: 60%;
        display: inline-block;
    }
    /*======= MV =======*/
    .MV::before{
        height: 40%;
    }
    .MV .content-img .ipad-mv,
    .MV h1 .ipad-mv{
        display: none;
    }
    .MV .content-img .sp-mv{
        display: block;
        height: auto;
        width: 65%;
        position: absolute;
        margin: 0 auto;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .MV h1 .sp-mv{
        display: block;
        width: 54%;
        height: auto;
        position: absolute;
        left: 0;
        right: 0;
        top: 10vw;
    }
    .MV .content-img{
        z-index: 3;
    }
    .MV .content-img::before{
        width: 12rem;
        height: 12rem;
    }
    .MV .content-txt.sp{
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
    }
    .MV .content-txt span{
        color: #fff;
        display: block;
        width: fit-content;
        padding: .5rem 1rem;
    }
    .MV .content-txt .pink-txt{
        background: #E4007F;
        transform: rotate(-7deg);
        position: absolute;
        bottom: 10%;
        left: 6%;
    }
    .MV .content-txt .red-txt{
        background: var(--color-red);
        transform: rotate(5deg);
        position: absolute;
        bottom: 15%;
        right: 6%;
    }
    .MV .content-txt .orange-txt{
        background: var(--color-orange);
        transform: rotate(2deg);
        position: absolute;
        top: 3%;
        right: 3%;
    }
    .MV .content-txt .green-txt{
        background: var(--color-green);
        transform: rotate(-7deg);
        position: absolute;
        left: 5%;
        top: 6%;
    }
    /*======= 特典 =======*/
    ul{
        gap: 3rem;
    }
    ul li{
        gap: 20px;
    }
    ul li .cont-image{
        width: 100%;
    }
    ul li .number{
        width: 100%;
        padding: 1.2rem 0;
    }
    /* 動画を見る */
    .movie .in-cont-w{
        padding: 15% 5%;
    }
    /*======= LINE登録誘導 =======*/
    .line-registration{
        padding: 15% 0;
    }
    .line-registration .line-cont a{
        background: var(--color-green);
        color: #fff;
        width: 80%;
        margin: 0 auto;
        border-radius: 100vh;
        padding: 1rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .line-registration .line-cont a::after{
        content: "";
        background: url(../images/blank_icon.svg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        display: block;
        width: 1rem;
        height: 1rem;
    }
    .line-registration .line-cont img{
        display: none;
    }
    .line-registration .line-cont{
        margin: 3% auto;
    }
    .line-registration .txt .sub-txt{
        margin-bottom: 3%;
    }
    .line-registration .txt .sub-txt::before{
        width: 2px;
        height: 2rem;
        left: -1rem;
    }
    .line-registration .txt .sub-txt::after{
        width: 2px;
        height: 2rem;
        right: -1rem;
    }
    .MV::before{
        height: 20%;
    }
    .MV .content-img::before{
        width: 9rem;
        height: 9rem;
    }
    .MV h1 .sp-mv{
        width: auto;
        height: 50%;
        top: 5vw;
    }
    /* .MV .content-img .sp-mv{
        width: 90%;
    } */
    .MV .content-txt span{
        font-size: clamp(14px, 1.4vw, 30px);
    }
    .MV .content-txt .green-txt{
        left: 0;
    }
    .MV .content-txt .orange-txt{
        right: 0;
    }
    .MV .content-txt .pink-txt{
        left: 0;
    }
    .MV .content-txt .red-txt{
        right: 0;
    }
}
@media screen and (max-width: 420px){
    .MV .content-img .sp-mv{
        width: 90%;
    }
    .MV .content-img::before{
        width: 8rem;
        height: 8rem;
    }
}