/* ==========================
   麻布十番カレーカテゴリ
========================== */
/* 本文紹介セクション */
.azabu-section {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
}

.azabu-section h2 {
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid;
}

.azabu-highlight {
  font-weight: bold;
}

.azabu-section p {
  margin-bottom: 15px;
}

.azabu-section ul {
  margin-left: 20px;
}

/* 理由セクション */
.azabu-h3 {
  margin: 40px 0 20px;
  text-align: center;
}

.azabu-resp-container {
  margin: auto;
  width: 90%;
  max-width: 920px;
}

.azabu-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.azabu-text-01 {
  flex: 1;
}

.azabu-text-01 b {
  display: block;
  margin-bottom: 10px;
}

.azabu-img-size,
.azabu-final-img {
  max-width: 100%;
  height: auto;
}

.azabu-align-c {
  text-align: center;
}

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
  .azabu-box {
    flex-direction: column;
    text-align: center;
  }

  .azabu-text-01 {
    width: 100%;
    padding: 0;
  }

  .azabu-img-size,
  .azabu-final-img {
    width: 100%;
  }
}

/*  画像ラッパー */
.azabu-picture-wrapper {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 800px) {
  .azabu-picture-wrapper {
    width: 90%;
  }
}

/* 特定バナー（PC 70%表示）*/
.azabu-main-banner-70 {
  width: 100% !important;     /* スマホは100% */
  margin: 0 auto !important;  /* 中央寄せ */
  text-align: center !important;
}

.azabu-main-banner-70 img {
  width: 100% !important;
  height: auto !important;
}

@media screen and (min-width: 800px) {
  .azabu-main-banner-70 {
    width: 70% !important;    /* PCは70%表示 */
  }
}

/* 汎用バナー（他バナー用）*/
.azabu-main-banner {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.azabu-main-banner img {
  width: 100%;
  height: auto;
}

/* ==========================
   麻布十番パスタソースカテゴリ
========================== */
/* ===== 基本レイアウト ===== */
.azabu-pasta-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  box-sizing: border-box;
}

/* ===== 見出し ===== */
.azabu-pasta-h1, .azabu-pasta-h2, .azabu-pasta-h3 {
  color: #0c336c;
  margin-bottom: 1em;
}

.azabu-pasta-h1 {
  font-size: 24px;
  font-weight: bold;
  color: #c00;
  text-align: center;
}

.azabu-pasta-highlighted-heading {
  color: #fff;
  background: #0c336c;
  text-align: center;
  padding: 10px;
  margin-top: 40px;
}

/* ===== テキスト ===== */
.azabu-pasta-p {
  color: #444;
  line-height: 1.5;
  word-break: break-word;
}

/* ===== セクション ===== */
.azabu-pasta-section {
  margin-bottom: 30px;
}

/* ===== 特徴ブロック ===== */
.azabu-pasta-feature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}

.azabu-pasta-feature:nth-child(even) {
  flex-direction: row-reverse;
}

.azabu-pasta-feature img {
  flex: 1 1 300px;
  max-width: 100%;
  height: auto;
}

.azabu-pasta-feature-text {
  flex: 1 1 300px;
  padding: 20px;
}

/* ===== 商品ラインナップ（使用されていませんが、念のため残しています） ===== */
.azabu-pasta-lineup-title {
  font-size: 20px;
  border-left: 6px solid #0c336c;
  padding-left: 10px;
  margin-top: 30px;
}

.azabu-pasta-product-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.azabu-pasta-product-card {
  flex: 1 1 18%;
  max-width: 18%;
  background: #f4f4f4;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.azabu-pasta-product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 10px;
}

.azabu-pasta-product-card p {
  font-size: 12px;
  color: #666;
  margin: 5px 0;
}

.azabu-pasta-product-card a span {
  font-size: 12px;
  color: #0c336c;
  text-decoration: underline;
  display: inline-block;
  margin-top: 5px;
}

/* ===== コンテンツリンクボタン群 ===== */
.azabu-pasta-olive-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 40px;
}

.azabu-pasta-olive-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #0c336c;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  color: #0c336c;
  line-height: 1.35;
  word-break: break-word;
  transition: transform .12s ease, box-shadow .12s ease;
}

.azabu-pasta-olive-link:hover,
.azabu-pasta-olive-link:focus {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(5,78,59,0.08);
  outline: none;
}

.azabu-pasta-olive-link .azabu-pasta-label {
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .azabu-pasta-container {
    width: 100%;
    padding: 10px;
  }

  .azabu-pasta-product-row {
    gap: 12px;
    justify-content: flex-start;
  }

  .azabu-pasta-product-card {
    flex: 1 1 46%;
    max-width: 46%;
  }

  .azabu-pasta-feature {
    flex-direction: column !important;
    margin-bottom: 20px;
  }

  .azabu-pasta-feature-text {
    padding: 10px 0;
  }

  .azabu-pasta-olive-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .azabu-pasta-olive-link {
    padding: 10px;
    min-height: 68px;
  }

  .azabu-pasta-olive-link .azabu-pasta-label {
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .azabu-pasta-olive-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .azabu-pasta-olive-link {
    min-height: 86px;
    padding: 14px;
  }
}
