section#cover{
  background-color: #fff;
  height: 20vw;
}
#button ul{
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}

section#choice-logic{
  figure{
    width: 100%;
    max-width: 1000px;
    margin:0 auto;
    img{
      width: 100%;
    }
  }

}

main{
  margin-bottom: 50px;
}

main section{
  margin-top: 150px;
}

main h2{
  font-weight: 500;
  text-align: left;
  border-bottom: 1px solid #999999;
  padding: 0 0 20px 10px;
}
div.items{
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

dl.item{
  font-size: 32px;
  width: calc((100% - 50px) / 2);
}
.item figure,.item figure img{
  width: 100%;
}

dl.item dt{
  font-size: 1em;
  margin-bottom: 0.2em;
}
dl.item dd{
  font-size: 0.5em;
}

dl.item dd.price{
  font-size: 0.8em;
  font-weight:400;
}

dl.item div.button{
  display: flex;
  gap: 20px;
  margin: 0.5rem 0;
}

.item a{
  font-size: 0.6em;
  color: #fff;
  width: 200px;
  line-height: 2.8em;
  text-align: center;
  border-radius: 50px;
}

.item a.detail{
  background-color: #8C1E23;
}

.item a.detail:hover{
  background-color: #660a1c;
  text-decoration: none;
}


.item a.catalog{
  background-color: #000C60;
}

.item a.catalog:hover{
  background-color: #00053a;
  text-decoration: none;
}

@media screen and (max-width: 992px){
  main section{
    margin-top: 100px;
  }
  dl.item{
    font-size: 21px;
  }
  dl.item div.button{
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media screen and (max-width: 575px){
  dl.item {
    width: 90%;
    margin: auto;
  }
  dl.item div.button{
    flex-direction: row;
    align-items: center;
  }
}
