/*リセット----------------------------------------*/
* {
    margin: 0;
}
body{
    width: 100%;
    background-color: #FFF0F5;
}
main{
    margin-top: 100px;
}
/*ヘッダー----------------------------------------*/
header{
    background-color: #FFF0F5;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: #808080 1px 2px 3px;
    position: sticky;
    top: 0;
}
header img{
    margin-left: 30px;
    height: 60px;
}
.nav{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}
.nav li{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin-right: 5px;
    margin-left: 5px;
    width: 100px;
    height: 40px;
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: #808080 1px 2px 3px;
}
.nav li:hover {
    box-shadow: #808080 0px 1px 3px;
}
.nav li a{
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
/*メイン------------------------------------------------*/
.app-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.app-box{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
    color: #000;
    list-style: none;
    width: 30%;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: #808080 1px 2px 3px;
}
.app-box a {
    color: #FFF;
    width: 80%;
    height: 40px;
    background: #12B8D7;
    margin: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.app-box img {
    width: 80%;
    margin: 0 auto;
}


/*フッター-----------------------------------------------*/
footer{
    background-color: #FFF0F5;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer p{
    font-size: 0.785rem;
}