.news-date {
    color: #ffffff;
}

.news-title {
    color: #ffffff;
}
.extraSec .container {
    max-width: 1040px;
}
.extraSec .es-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 2;
    letter-spacing: 1px;
    text-align: center;
}
.extraSec .es-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.extraSec .es-list .es-row {
    display: grid;
  	grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    background: #FFD8D8;
}
.extraSec .es-list .es-row:nth-of-type(2) {
    background: #E2FFD8;
}
.extraSec .es-list .es-row:nth-of-type(3) {
    background: #FFEED8;
}
.extraSec .es-list .es-row:nth-of-type(4) {
    background: #D8F6FF;
}
.extraSec .es-list .es-row picture {
    display: block;
    height: 100%;
}
.extraSec .es-list .es-row picture img {
    width: 100%;
	height: 100%;
	object-fit: cover;
}
.extraSec .es-list .es-row-text {
    padding: 40px;
}
.extraSec .es-list .es-row-text h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.extraSec .es-list .es-row-text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1px;
}
@media(max-width: 750px) {
  	.extraSec .h2A {
		font-size: 22px;
  	}  
  .extraSec .es-text {
        font-size: 14px;
    }
    .extraSec .es-list .es-row {
        display: flex;
        flex-direction: column;
    }
    .extraSec .es-list .es-row picture {
        width: 100%;
    }
    .extraSec .es-list .es-row-text {
        width: 100%;
        padding: 30px 20px;
    }
}

/* おすすめセクションの画像を揃える */
.itemArrange__img a {
    display: block;
    width: 100%;
    /* 画像の縦横比を固定する（※必要に応じて数値を調整してください） */
    aspect-ratio: 3 / 2; 
    overflow: hidden;
}

.itemArrange__img img.conceptF__bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像が歪まないように枠に合わせて自動トリミング */
    display: block;
}

/* =========================================
   りんごの品質ページ用 追加レイアウト
========================================= */

/* インラインリスト（ページ内リンクの横並び） */
ul.inline.list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* リンク同士の隙間 */
    list-style: none; /* 中黒の点を消す */
    padding: 0;
    margin: 0 0 30px 0;
}
ul.inline.list li a {
    text-decoration: underline; /* リンクだと分かりやすくする */
}

/* 見出しのアンダーライン装飾 */
.h2-border {
    border-bottom: 2px solid #dddddd; /* 線の太さと色 */
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* 3列の横並び（家庭用品質） */
.flex3 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}
.flex3 > div {
    flex: 1;
    min-width: 280px; /* 画面が狭い（スマホの）場合は自動で縦並びにする */
}
.flex3 img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

/* 2列のレイアウト（葉とらずりんご） */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}
/* 画像側（1の割合） */
.grid3-1 {
    flex: 1;
    min-width: 280px;
}
.grid3-1 img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* テキスト側（2の割合） */
.grid3-2 {
    flex: 2; 
    min-width: 280px;
}

/* 黄色いマーカー線の装飾 */
.marker {
    background: linear-gradient(transparent 60%, #fff200 60%);
    font-weight: bold;
}


/* タイトル全体のレイアウト */
.h2A {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px; /* 下との余白（適宜調整） */
}

/* テキストを囲うspanの設定 */
.h2A span {
  position: relative;
  display: inline-block;
  padding: 0 40px; /* 左右に絵文字を置くための余白 */
  font-size: 24px; /* 文字サイズ（適宜調整） */
  font-weight: bold;
}

/* 共通の絵文字設定（疑似要素） */
.h2A span::before,
.h2A span::after {
  content: '\1F33F'; /* &#127807; のコード（文字化け対策） */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 28px; /* 絵文字の大きさ */
}

/* 左側の葉っぱ */
.h2A span::before {
  left: 0;
}

/* 右側の葉っぱ */
.h2A span::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1); /* 左右対称に反転 */
}

/* --- 商品テキスト部分の背景と文字設定 --- */
.bg--highlight {
  background-color: #fcf4d9; 
  padding: 20px; 
  color: #4a3320; 
  box-sizing: border-box; /* レイアウト崩れを防ぐ設定 */
}

/* リンクの線を消して押しやすくする設定 */
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}



/* タイトルの設定 */
.product-title {
  font-size: 18px; 
  font-weight: bold; 
  margin: 0; 
}

/* 点線の設定 */
.dashed-line {
  
  
  
  
  border: none;
  border-top: 1px dashed #998066; 
  margin: 12px 0; 
}

/* 下の説明文の設定 */
.product-description {
  font-size: 14px; 
  margin: 0; 
}

<style>
  .ta-soda-ad,
  .ta-soda-ad * {
    box-sizing: border-box;
  }

  .ta-soda-ad {
    --ta-soda-ink: #443a34;
    --ta-soda-red: #d94f43;
    --ta-soda-red-dark: #b83d34;
    --ta-soda-cream: #fffaf0;
    position: relative;
    max-width: 1000px;
    margin: 34px auto;
    overflow: hidden;
    border: 1px solid #efe3ce;
    border-radius: 25px;
    color: var(--ta-soda-ink);
    font-family: -apple-system, BlinkMacSystemFont,
      "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    background: var(--ta-soda-cream);
    box-shadow: 0 14px 36px rgba(83, 66, 50, 0.09);
  }

  .ta-soda-ad__photo {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
  }

  .ta-soda-ad__copy {
    position: absolute;
    top: 50%;
    left: 6.5%;
    width: 40%;
    padding: 0;
    transform: translateY(-50%);
  }

  .ta-soda-ad__label {
    display: inline-block;
    margin: 0 0 14px;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--ta-soda-red-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    background: rgba(255, 241, 209, 0.92);
  }

  .ta-soda-ad h2 {
    margin: 0 0 14px;
    color: #4a2f24;
    font-size: clamp(25px, 3.2vw, 39px);
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1.42;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95);
  }

  /* 果汁20％・無着色・無香料 */
  .ta-soda-ad__features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 15px;
    padding: 0;
    list-style: none;
  }

  .ta-soda-ad__features li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 29px;
    margin: 0;
    padding: 5px 10px;
    border: 1px solid rgba(217, 79, 67, 0.22);
    border-radius: 999px;
    color: var(--ta-soda-red-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.035em;
    line-height: 1.4;
    background: rgba(255, 250, 240, 0.9);
  }

  /* 商品説明 */
  .ta-soda-ad__description {
    max-width: 390px;
    margin: 0 0 19px;
    color: #59473e;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.75;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .ta-soda-ad__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 23px;
    border-radius: 999px;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.4;
    text-decoration: none !important;
    background: var(--ta-soda-red);
    box-shadow: 0 9px 20px rgba(184, 61, 52, 0.17);
    transition:
      background-color 0.2s ease,
      transform 0.2s ease;
  }

  .ta-soda-ad__button::after {
    margin-left: 10px;
    content: "→";
    font-size: 17px;
    line-height: 1;
  }

  .ta-soda-ad__button:hover {
    color: #ffffff !important;
    background: var(--ta-soda-red-dark);
    transform: translateY(-1px);
  }

  .ta-soda-ad__button:focus-visible {
    outline: 3px solid rgba(217, 79, 67, 0.35);
    outline-offset: 3px;
  }

  @media (max-width: 700px) {
    .ta-soda-ad {
      margin: 22px 12px;
      border-radius: 18px;
    }

    .ta-soda-ad__photo {
      width: 100%;
    }

    .ta-soda-ad__copy {
      position: static;
      width: auto;
      padding: 25px 22px 27px;
      border: 0;
      border-top: 1px solid #efe3ce;
      border-radius: 0;
      background: #fffdf8;
      box-shadow: none;
      transform: none;
    }

    .ta-soda-ad__label {
      margin-bottom: 13px;
    }

    .ta-soda-ad h2 {
      margin-bottom: 16px;
      font-size: 28px;
    }

    .ta-soda-ad__features {
      gap: 6px;
      margin-bottom: 17px;
    }

    .ta-soda-ad__features li {
      padding: 5px 9px;
      font-size: 12px;
    }

    .ta-soda-ad__description {
      max-width: none;
      margin-bottom: 22px;
      font-size: 14px;
      line-height: 1.8;
    }

    .ta-soda-ad__button {
      width: 100%;
    }
  }
</style>


