body{
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.goods-list{
  min-height: calc(100vh - 110px);
  background-color: peachpuff;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 40px;
  padding: 0 20px;
  color: darkblue;
  font-weight: bold;
  line-height: 1.8;             
}

.goods-list h1{
  background: white;
  padding: 12px 20px;
  border-radius: 20px;
  display: inline-block;
  font-size: 32px;
  margin-bottom: 30px;
}

.denchan{
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 40px 30px 10px;
  
}

.denchan li{
  flex-shrink: 0;
  width: 250px;
  height: auto;

}

.denchan li:first-child{
  margin-left: 0;
}

.denchan img{
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0;
}

.goods-list p{
  font-size: 20px;
  text-indent: 1em;
  margin-bottom: 10px;
  line-height: 2;
}

.denchan p{
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  
}

.shop-link{
  display: block;
  width: fit-content;
  background: papayawhip;
  padding: 10px 16px;
  border-radius: 24px;
  color: darkblue;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid darkblue;
  margin: 20px auto;
  text-align: center;
  line-height: 1.4;
  justify-content: center;
  align-items: center;
  
}

.shop-link:hover{
  background: darkblue;
  color:papayawhip;

}



@media (max-width: 1024px){

  .goods-list{
    min-height: calc(100vh - 50px);
    height: auto;
    padding: 20px;
    margin: 50px auto 40px;
  }

  .goods-list h1{
    font-size: 24px;
  }
  
  .goods-list p{
    font-size: 16px;
    line-height: 2;
  }

  .denchan{
    flex-wrap: wrap;
    justify-content: center;
  }

  .denchan p{
    font-size: 14px;
    line-height: 1.5;
  }

  .shop-link{
    margin:20px auto 20px;
  }


}