body{
    margin-right: auto;
    margin-left: auto;
    
    font-family: 'Hiragino Kaku Gothic Pro','Meiryo','sans-serif';
    font-size: 12px;
   
    padding:0;
      background: lightgray;
    }

*{
  box-sizing:border-box;
}


header{
    position: fixed;
    width: 100%;
    background: lightgray;
    padding: 1%  2%;
    display:flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 1;
    font-family: 'Hiragino Kaku Gothic Pro','Meiryo','sans-serif';
    font-size: 20px;
}
main {
  margin-right: auto;
    margin-left: auto;
  padding: 10% 0 5% 0;
  max-width: 735px;
  
}
Footer {
  margin-right: auto;
    margin-left: auto;
  padding: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

#root {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100lvh;
}

ul{
    display: flex;
    list-style: none;
}
li{
  margin-left: 40px;
}

a{
  text-decoration: none;
  color: #333;
}
  .sec p{
  color: #00ffff;
}
/* マウスオンでメニューアイコンを薄くする */
a:hover{
  opacity: 0.5;
}

p.logo img {
    width: 120px;  /* カタカタロゴの横幅指定 */
    max: width 200px;
    height:auto;
}

img {
max-width: 100%;
height: auto;
}

.image {
  width: 400px; /*画像サイズ指定*/
  
  padding: 0;
  overflow: hidden;
  position: relative;
}
.itemname {
  width: 400px;
  margin: 10 0 10 0;
  padding: 0;
  font-size: 15px;
}

/* トップページピックアップ */
.boxs {
    display: flex;
   
}

  .box {
      width: 40%;
      margin: 5% auto 5% auto;
     
  }

  table{
    
    width: 100%;
    border-collapse: collapse;
  }
  /* テーブル枠線種類指定 */
  td,th{
    text-align: center;
    border: 3px dashed #333;
    padding: 10px;
  }
  /* マウスオンでテーブル1のカラーチェンジ */
.table1 tr td:hover {
  background-color: skyblue;
}