@charset "utf-8";

/*リセットcss*/
*{
    padding: 0;
    margin: 0;
}
a{
    color: black;
    text-decoration: none;
}
ul{
    list-style-type: none;
}

/*共通部分*/
:root{
    --primary-color:#333;
    --secondary-color:#dc1919;
    --background-color:snow;
}
body{
    color: var(--primary-color);
    background-color: var(--background-color);
}
.containe{
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}
@media screen and (max-width: 767px) {
    /* ここに横幅が767px以下の時に発動するスタイルを記述 */
.about{
    width: 80%;
}
.flex .btn{
        display: flex;
        justify-content: center;
        margin: 20px;
    }
}
    
@media screen and (min-width: 767px) {
    /* ここに横幅が767pxより大きい時に発動するスタイルを記述 */
.about{
    width: 800px;
}
.flex {
    display: flex;
    justify-content: center;
}
.btn{
    margin: 20px;
}
    }

.catalog{
    max-width: 550px;
}

/*ヘッダー*/
header{
    padding: 10px;
    background-color: cornflowerblue;
    text-align: right;
}
.logo a img{
    width: 315px;
}
.title h1{
    font-size: clamp(20px,4vw,50px);
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}
.title nav ul{
    display: flex;
    justify-content: space-around;
    text-align: center;
}
.title a{
    color: #fff;
    text-decoration: none;
    text-align: center;
}


/*フッター*/
footer{
    padding: 10px;
    text-align: center;
    background-color: cornflowerblue;
}