p.margin-vertical-md20 {
  margin: 20px 0 !important;
}

/* p{
  margin:20px 0 !important;
} */

.ranking-section {
  margin:20px 0;
  padding: 20px;
  text-align: center;
}

.ranking-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.ranking-item {
  width: 45%;
  max-width: 180px;
  position: relative;
}

.ranking-label {
  position: absolute;
  top: -10px;
  left: -10px;
  background: gold;
  color: #000;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 50px;
  font-size: 14px;
  z-index: 2;
}

.ranking-item img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.product-name {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}
@media (max-width: 768px) {
  .ranking-item {
    flex: 0 0 calc(50% - 16px); /* 20250710 park mod */
    max-width: none; /* 20250710 park mod */
  }
}
.promo-banner {
  margin: 30px auto;
  text-align: center;
}

.promo-banner img {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  height: auto;
  border-radius: 8px;
}
#about{
  width: 80%;
  border:0px solid #ff0000;
  margin: 0 auto;
  padding:0;
}
.customer-voice-section {
  background-color: gold; /* オレンジ背景 */
  padding: 10px 10px 20px;
  color: #000000;
  text-align: center;
}

.customer-voice-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.voice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.voice-item {
  width: 45%;
  max-width: 250px;
  background-color: #fff;
  color: #333;
  border-radius: 10px;
  padding-top: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.voice-item .thumb {
  width: 60%;
  border-radius: 50%;
  object-fit: cover;
  margin:0px auto 10px;
}

.voice-item .name {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 16px;
}

.voice-item .comment {
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .voice-item {
    width: 48%;
  }
}
.more-button-wrapper {
  text-align: center;
  margin-top: 20px;
}

.more-button {
  display: inline-block;
  padding: 10px 24px;
  background-color: #91bd1d;
  color: #ffffff;
  border: 1px solid #ccc;
  font-size: 14px;
  text-decoration: none;
  border-radius: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.more-button:hover {
  background-color: #ffffff;
  color: #000000;
}

.image-links-wrapper {
  display: flex;
  justify-content: center;
  gap: 16px; /* 画像の間の余白 */
  margin-bottom: 32px;
  flex-wrap: wrap;   /* 20250710 park mod */
}

.image-link {
  text-align: center;
  text-decoration: none;
  color: inherit;
  width: 48%;
}

.image-link img {
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形に保つ */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-caption {
  margin-top: 8px;
  font-size: 14px;
}

@media (max-width: 600px) {
  .image-links-wrapper {
    flex-wrap: wrap;
  }

  .image-link {
    width: 48%;
  }
}
.banner-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: left;
  margin: 30px 0;
}

.banner-container a {
  flex: 1 1 calc(20% - 10px); /* 5枚横並び（PC） */
  max-width: calc(20% - 10px);
  text-decoration: none;
}

.banner-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
　border:1px solid #cccccc;
}

/* スマホ表示：2枚並び */
@media (max-width: 768px) {
  .banner-container a {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
.image-link-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: left;
  margin: 30px 0;
}

.image-link-item {
  width: calc(33.333% - 20px);
  box-sizing: border-box;
}

.image-link-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.image-link-item .link-text {
  font-size: 1em;
  margin-top: 8px;
  color: #333;
  font-weight: bold;
  text-decoration: none;
}

.image-link-item .publish-date {
  font-size: 0.8em;
  color: #666;
  margin-top: 4px;
}

/* スマホ（768px以下）のとき：2列表示に変更 */
@media (max-width: 768px) {
  .image-link-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .image-link {
    width: calc(50% - 8px); /* 20250710 park mod */
  }