@charset "UTF-8";
/* 

fruits mobile

*/
:root {
  --base-color: #fcfae6;
  --main-color: #df7857;
  --sub-color: #e49277;
  --accent-color: #80c076;
}
.fruits-button {
  display: inline-block;
  margin: 0 10px 40px;
  font-weight: 300;
}
.fruits-button a {
  color: var(--sub-color);
  font-size: 1.5rem;
  padding: 10px;
  border: solid 1px var(--sub-color);
  transition: all 0.3s;
}
.fruits-button a:hover {
  color: var(--base-color);
  background-color: var(--sub-color);
  opacity: 1;
}
.contents-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.contents {
  margin: 0 10px 30px;
  width: 150px;
  text-align: left;
}
.contents a {
  pointer-events: none;
  transition: 0.3s;
}
.contents-image-wrapper {
  width: 150px;
  height: 150px;
  margin-bottom: 8px;
  position: relative;
}
/* 限定商品装飾 */
.contents-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 商品名 */
.contents-name {
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 5px;
}
.contents-fee1 {
  display: inline;
  font-weight: 400;
  font-size: 1.3rem;
}
.contents-fee2 {
  font-weight: 400;
  font-size: 1rem;
}
/* 

fruits pc

*/
@media (min-width: 768px) {
  .fruits-button {
    margin: 0 15px 50px;
  }
  .fruits-button a {
    color: var(--sub-color);
    font-size: 1.6rem;
    padding: 10px 15px;
  }
  .contents-wrapper {
    margin-bottom: 60px;
  }
  .contents {
    margin: 0 50px 60px;
    width: 250px;
  }
  .contents-image-wrapper {
    justify-content: center;
    width: 250px;
    height: 250px;
    margin-bottom: 10px;
  }
  /* 限定商品装飾 */
  .contents-image-wrapper.new::before {
    font-size: 1.5rem;
    padding: 3px 6px;
  }
  .contents-image-wrapper.season::before {
    font-size: 1.5rem;
    padding: 3px 6px;
  }
  .contents-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .contents-fee1 {
    font-size: 1.5rem;
  }
}
