@charset "UTF-8";

/*PCデザイン*/
@media screen and (min-width:900px){
    .image{
        width: 100%;
    }
    .topic{
        text-align: center;
        margin-top: 50px;
        font-size: 30px;
    }
    .centerimg{
        text-align: center;
    }
    .centerimg img{
        width: 50%;
    }
    p{
        padding: 0 100px;
        font-size: 30px;
    }
    .icon{
        display: flex;
        justify-content: space-around;
    }
    .icon img{
        width: 20%;
        height: auto;
    }
    .second{
        display: flex;
        justify-content: space-around;
    }
    .second img{
        width: 30%;
    }
    .button{
        width: 800px;
        margin: 150px auto;
        display: block;
    }
    .foot-left p{
        padding: 0;
    }
}

/*スマホデザイン*/
@media screen and (max-width:899px){
    .image{
        width: 100%;
    }
    .topic{
        text-align: center;
        margin-top: 50px;
        font-size: 15px;
    }
    .centerimg{
        text-align: center;
    }
    .centerimg img{
        width: 50%;
    }
    p{
        font-size: 10px;
    }
    .icon{
        display: flex;
        justify-content: space-around;
    }
    .icon img{
        width: 20%;
        height: auto;
    }
    .second{
        display: flex;
        justify-content: space-around;
    }
    .second img{
        width: 30%;
    }
    .button{
        width: 200px;
        margin: 50px auto;
        display: block;
    }
}