body{
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
    border-left: #e2e2e2 1px solid;
    border-right: #e2e2e2 1px solid;

    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;

    padding-bottom: 100px;
}

.u1{
    position: fixed;
    bottom: 0;
    right: 0;
    width: 150px;
    z-index: 1000; /* 他の要素より前面に表示 */
}


.top{
    display: flex;
    align-items:center;
}

.top img{
    width: 50%;
}

.top p{
    width: 45%;
    text-align: justify;
}

.t-title{
    width: 100%;
}

.t-root{
    background-color: #f3f3f3;
    width: 100%;
    display: flex;
    gap: 40px 0px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 20px 0px;
    margin: 0px 0px 40px 0px;
}
.t-root img{
    width: 45%;
}

.s-title{
    width: 100%;
}
.s-root{
    display: flex;
    gap: 30px 0px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 95%;
    max-width: 1200px;
    margin: 20px auto 50px;
}

.s{
    width: 40%;
    text-align: center;
}

.s-midasi{
    width: 100%;
    margin: 0;
}

.s-text{
    margin: 0 auto 10px;
    text-align: justify;
    font-size: 14px;
    width: 85%;
}

.s-img{
    width: 85%;
    
}
.s video{
    border: #000000 1px solid;
}

.d-title{
    width: 100%;

}

.d-storebutton{
    text-align: center;
    margin: 30px 0px 0px 0px;
}
.d-storebutton a{
    margin: 0px 10px;
}
.d-text{
    width: 95%;
    max-width: 500px;
    display: block;
    margin: 0px auto;
    margin-bottom: 40px;
}

.k-root{
    margin-top: 30px;
    text-align: center;
}
.k-img{
    max-width: 400px;
}

.d-root{
    width: 90%;
    margin: 0 auto;
}

.b-img{
    margin: 0 auto;
    max-width: 700px;
    width: 100%;
    cursor: pointer;
    display: block;
}

.b-img2{
    margin: 0 auto 20px auto;
    max-width: 700px;
    width: 80%;
    cursor: pointer;
    display: block;
}

.pconly{
    display: block;
}
.mobileonly{
    display: none;
}
/* スマホ向けのスタイル */
@media only screen and (max-width: 900px) {
    .pconly{
        display: none;
    }
    .mobileonly{
        display: block;
    }

    body{
        width: 100%;
        margin: 0;
    }
    
    .top{
        display: block;
    }
    .top *{
        width: 90% !important;
        margin: 0 auto;
    }

    .top p{
        margin-bottom: 20px;
    }

    .s{
        width: 90%;
        text-align: center;
    }

    .t-root img{
        width: 95%;
    
    }

    .k-img{
        max-width: 90%;
    }

    .d-root{
        width: 90%;
        margin: 0 auto;
    }

}