

/*スマホとタブレットサイズ設定*/
@media only screen and (max-width: 960px) {
  
}







/*全体共通*/
body{
  font-family: "Kosugi Maru", sans-serif;
    background-color: #ffffff;
}

/*ヘッダー*/
header{color: #181619;
    
}

header .row{
    display: flex;
    justify-content: space-between;
  
    }
header .logo{
    font-size: 24px;
    font-weight: 700;
}

header nav ul {
    display: flex;
}

header nav ul li{
    margin-left: 30px;
}




/*概要画像*/
.section{
 color: #000000;
    padding: 80px 0;
}

.section .container{
    width: 90%;
    margin:0 auto;
    max-width: 1280px;
}
/*スマホとタブレットサイズ設定*/
@media only screen and (max-width: 960px) {section .row {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

section .col{
    width: 100%;
}
    
}




/*フッター*/
footer{
color: #181619;
text-align: center;
font-size:12px;
}