/* フォントの読み込み */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+CJK+JP:wght@500;700&display=swap");

.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.title-section {
  margin-bottom: 29px;
}

.image-section {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 calc(120px);
  box-sizing: border-box;
}

.product-image {
  width: calc(100vw - 240px);
  height: auto;
  border-radius: 20px;
  opacity: 1;
  object-fit: contain;
}

.main-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 96px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
  margin: 0;
}

.subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 50px;
  letter-spacing: 10%;
  text-align: center;
  color: #000000;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .main-title {
    font-size: 64px;
  }

  .subtitle {
    font-size: 18px;
    line-height: 40px;
    letter-spacing: 8%;
  }

  .image-section {
    padding: 0 calc(40px);
  }

  .product-image {
    width: calc(100vw - 80px);
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 48px;
  }

  .subtitle {
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 6%;
  }

  .image-section {
    padding: 0 calc(15px);
  }

  .product-image {
    width: calc(100vw - 30px);
  }
}

/* テキストセクションのスタイル */
.text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100vw;
}

.first-section {
  margin-top: 61px;
}

.main-message {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 50px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #000000;
  margin: 0 0 61px 0;
}

.description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #000000;
  margin: 0;
}

/* PC/タブレット用セクション（デフォルト表示） */
.description-desktop {
  display: block;
}

/* スマホ用セクション（デフォルト非表示） */
.description-mobile {
  display: none;
}

/* 769px以上で確実にPC/タブレット用を表示、スマホ用を非表示 */
@media (min-width: 769px) {
  .description-desktop {
    display: block;
  }

  .description-mobile {
    display: none;
  }
}

/* first-sectionのレスポンシブ対応 */
/* 大タブレット用（769px～1024px） */
@media (min-width: 769px) and (max-width: 1024px) {
  .first-section {
    margin-top: 55px;
  }

  .main-message {
    font-size: 20px;
    line-height: 46px;
    letter-spacing: 0.18em;
    margin: 0 0 55px 0;
  }

  .description {
    font-size: 14px;
    line-height: 36px;
    letter-spacing: 0.18em;
  }
}

/* 小タブレット用（481px～768px） */
@media (min-width: 481px) and (max-width: 768px) {
  .first-section {
    margin-top: 50px;
  }

  .main-message {
    font-size: 16px;
    line-height: 42px;
    letter-spacing: 0.16em;
    margin: 0 0 50px 0;
  }

  .description {
    font-size: 13px;
    line-height: 34px;
    letter-spacing: 0.16em;
  }

  .description-desktop {
    display: none;
  }

  .description-mobile {
    display: block;
    text-align: justify;
    text-justify: inter-ideograph;
    padding: 0 25px;
  }
}

/* 大スマホ用（361px～480px） */
@media (min-width: 361px) and (max-width: 480px) {
  .first-section {
    margin-top: 45px;
  }

  .main-message {
    font-size: 14px;
    line-height: 40px;
    letter-spacing: 0.14em;
    margin: 0 0 25px 0;
  }

  .description {
    font-size: 12px;
    line-height: 30px;
    letter-spacing: 0.14em;
  }

  .description-desktop {
    display: none;
  }

  .description-mobile {
    display: block;
    text-align: justify;
    text-justify: inter-ideograph;
    padding: 0 22px;
  }
}

/* 小スマホ用（360px以下） */
@media (max-width: 360px) {
  .first-section {
    margin-top: 40px;
  }

  .main-message {
    font-size: 12px;
    line-height: 36px;
    letter-spacing: 0.12em;
    margin: 0 0 40px 0;
  }

  .description {
    font-size: 11px;
    line-height: 26px;
    letter-spacing: 0.12em;
  }

  .description-desktop {
    display: none;
  }

  .description-mobile {
    display: block;
    text-align: justify;
    text-justify: inter-ideograph;
    padding: 0 20px;
  }
}

/* レスポンシブ対応（テキストセクション） - 旧実装の768px対応を削除し上記で置換 */
@media (max-width: 768px) {
  .description-desktop {
    display: none;
  }

  .description-mobile {
    display: block;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}

/* カルーセルセクションのスタイル */
.carousel-section {
  margin-top: 80px;
  margin-bottom: 0;
}

.carousel-container {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  animation: carouselFlow 25s linear infinite;
}

.carousel-item {
  flex: 0 0 auto;
  margin-right: 30px;
}

.carousel-image {
  width: 280px;
  height: 280px;
  border-radius: 16px;
  opacity: 1;
  object-fit: cover;
  display: block;
}

/* 左から右に流れるアニメーション */
@keyframes carouselFlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* PCでのみホバー時にアニメーション一時停止 */
@media (hover: hover) and (pointer: fine) {
  .carousel-track:hover {
    animation-play-state: paused;
  }
}

/* タブレット用レスポンシブデザイン（769px～1024px） */
@media (min-width: 769px) and (max-width: 1024px) {
  .carousel-section {
    margin-top: 70px;
  }

  .carousel-item {
    margin-right: 25px;
  }

  .carousel-image {
    width: 240px;
    height: 240px;
    border-radius: 14px;
  }

  .carousel-track {
    animation: carouselFlow 22s linear infinite;
  }
}

/* タブレット用レスポンシブデザイン（481px～768px） */
@media (min-width: 481px) and (max-width: 768px) {
  .carousel-section {
    margin-top: 60px;
  }

  .carousel-item {
    margin-right: 20px;
  }

  .carousel-image {
    width: 200px;
    height: 200px;
    border-radius: 12px;
  }

  .carousel-track {
    animation: carouselFlow 20s linear infinite;
  }
}

/* スマートフォン用レスポンシブデザイン（361px～480px） */
@media (min-width: 361px) and (max-width: 480px) {
  .carousel-section {
    margin-top: 50px;
  }

  .carousel-item {
    margin-right: 16px;
  }

  .carousel-image {
    width: 160px;
    height: 160px;
    border-radius: 10px;
  }

  .carousel-track {
    animation: carouselFlow 18s linear infinite;
  }
}

/* 小さなスマートフォン用レスポンシブデザイン（～360px） */
@media (max-width: 360px) {
  .carousel-section {
    margin-top: 40px;
  }

  .carousel-item {
    margin-right: 12px;
  }

  .carousel-image {
    width: 140px;
    height: 140px;
    border-radius: 8px;
  }

  .carousel-track {
    animation: carouselFlow 16s linear infinite;
  }
}

/* 購入ボタンセクションのスタイル */
.purchase-button-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  width: 100%;
  position: relative;
}

.purchase-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 247px;
  height: 68px;
  border: 6px solid #55ab01;
  border-radius: 50px;
  background-color: transparent;
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-underline-offset: unset !important;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
  background-color: white;

  /* タイポグラフィ */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0.2em;
  color: #000000;
  text-align: center;
}

.purchase-button:hover {
  background-color: #55ab01;
  color: #ffffff;
  text-decoration: none !important;
  text-decoration-line: none !important;
}

.purchase-button:link,
.purchase-button:visited,
.purchase-button:active {
  text-decoration: none !important;
  text-decoration-line: none !important;
}

/* MeTIMEロゴのスタイル */
.metime-logo {
  width: 339px;
  height: 99px;
  opacity: 1;
  z-index: 1;
  position: relative;
  margin-bottom: -20px; /* ボタンと20px重なるように調整 */
}

/* 購入ボタンのレスポンシブデザイン */
/* タブレット用（769px～1024px） */
@media (min-width: 769px) and (max-width: 1024px) {
  .purchase-button-section {
    margin-top: 70px;
  }

  .purchase-button {
    width: 230px;
    height: 62px;
    font-size: 19px;
    line-height: 34px;
    letter-spacing: 0.18em;
  }

  .metime-logo {
    width: 295px;
    height: 86px;
    margin-bottom: -18px;
  }
}

/* タブレット用（481px～768px） */
@media (min-width: 481px) and (max-width: 768px) {
  .purchase-button-section {
    margin-top: 60px;
  }

  .purchase-button {
    width: 210px;
    height: 58px;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0.15em;
  }

  .metime-logo {
    width: 270px;
    height: 79px;
    margin-bottom: -16px;
  }
}

/* スマートフォン用（361px～480px） */
@media (min-width: 361px) and (max-width: 480px) {
  .purchase-button-section {
    margin-top: 50px;
  }

  .purchase-button {
    width: 190px;
    height: 54px;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.12em;
    border-width: 4px;
  }

  .metime-logo {
    width: 240px;
    height: 70px;
    margin-bottom: -15px;
  }
}

/* 小さなスマートフォン用（～360px） */
@media (max-width: 360px) {
  .purchase-button-section {
    margin-top: 40px;
  }

  .purchase-button {
    width: 170px;
    height: 50px;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.1em;
    border-width: 3px;
  }

  .metime-logo {
    width: 210px;
    height: 61px;
    margin-bottom: -14px;
  }
}

/* なぜアイスに着目したのかセクションのスタイル */
.why-ice-section {
  margin-top: 180px;
  margin-bottom: 80px;
}

.why-ice-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 50px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #000000;
  margin: 0 0 47px 0; /* 文章2との間に47px余白 */
}

.ice-highlight {
  color: #ff8d8d;
  text-decoration: underline double;
}

.why-ice-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #000000;
  margin: 0;
  word-break: keep-all;
  overflow-wrap: normal;
  white-space: normal;
  padding: 0 40px;
  box-sizing: border-box;
}

/* PC/タブレット用セクション（デフォルト表示） */
.why-ice-description-desktop {
  display: block;
}

/* スマホ用セクション（デフォルト非表示） */
.why-ice-description-mobile {
  display: none;
}

/* 769px以上で確実にPC/タブレット用を表示、スマホ用を非表示 */
@media (min-width: 769px) {
  .why-ice-description-desktop {
    display: block;
  }

  .why-ice-description-mobile {
    display: none;
  }
}

/* なぜアイスセクションのレスポンシブデザイン */
/* タブレット用（769px～1024px） */
@media (min-width: 769px) and (max-width: 1024px) {
  .why-ice-section {
    margin-top: 150px;
    margin-bottom: 70px;
  }

  .why-ice-title {
    font-size: 20px;
    line-height: 42px;
    letter-spacing: 0.18em;
    margin-bottom: 42px;
  }

  .why-ice-description-desktop {
    display: none;
  }

  .why-ice-description-mobile {
    display: block;
    font-size: 14px;
    line-height: 36px;
    letter-spacing: 0.18em;
    padding: 0 70px;
    word-break: normal;
    overflow-wrap: break-word;
    text-align: justify;
    text-justify: inter-ideograph;
    white-space: normal;
  }
}

/* タブレット用（481px～768px） */
@media (min-width: 481px) and (max-width: 768px) {
  .why-ice-section {
    margin-top: 120px;
    margin-bottom: 60px;
  }

  .why-ice-title {
    font-size: 18px;
    line-height: 38px;
    letter-spacing: 0.15em;
    margin-bottom: 38px;
  }

  .why-ice-description-desktop {
    display: none;
  }

  .why-ice-description-mobile {
    display: block;
    font-size: 13px;
    line-height: 32px;
    letter-spacing: 0.15em;
    padding: 0 35px;
    word-break: normal;
    overflow-wrap: break-word;
    text-align: justify;
    text-justify: inter-ideograph;
    white-space: normal;
  }
}

/* スマートフォン用（361px～480px） */
@media (min-width: 361px) and (max-width: 480px) {
  .why-ice-section {
    margin-top: 100px;
    margin-bottom: 50px;
  }

  .why-ice-title {
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.12em;
    margin-bottom: 32px;
  }

  .why-ice-description-desktop {
    display: none;
  }

  .why-ice-description-mobile {
    display: block;
    font-size: 11px;
    line-height: 28px;
    letter-spacing: 0.12em;
    padding: 0 30px;
    word-break: normal;
    overflow-wrap: break-word;
    text-align: justify;
    text-justify: inter-ideograph;
    white-space: normal;
  }
}

/* 小さなスマートフォン用（～360px） */
@media (max-width: 360px) {
  .why-ice-section {
    margin-top: 80px;
    margin-bottom: 40px;
  }

  .why-ice-title {
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
  }

  .why-ice-description-desktop {
    display: none;
  }

  .why-ice-description-mobile {
    display: block;
    font-size: 10px;
    line-height: 24px;
    letter-spacing: 0.1em;
    padding: 0 25px;
    word-break: normal;
    overflow-wrap: break-word;
    text-align: justify;
    text-justify: inter-ideograph;
    white-space: normal;
  }
}

/* 栄養価セクションのスタイル */
.nutrition-section {
  margin-top: 150px; /* why-iceセクションとの間に150px余白 */
  /* NOTE: ここのmargin-bottomは不要と判断し削除 */
  /* margin-bottom: 80px; */
}

.nutrition-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px; /* SVGとタイトル間の間隔 */
}

.nutrition-title {
  font-family: "Noto Sans CJK JP", sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important; /* Bold は font-weight: 700 で表現 */
  font-size: 32px !important;
  line-height: 50px !important;
  letter-spacing: 10% !important;
  text-align: center;
  color: #000000;
  margin: 0;
  white-space: nowrap; /* タイトルの改行を防ぐ */
  /* leading-trim: NONE は CSS標準では normal が相当 */
}

.nutrition-title-annotation {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: #000000;
  margin: 10px 0 20px 0;
}

.title-svg-left,
.title-svg-right {
  flex-shrink: 0; /* SVGのサイズを固定 */
}

.nutrition-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px; /* タイトルとの間に100px余白 */
}

.nutrition-image {
  width: 1000px; /* 基準横幅1000px */
  height: auto;
  object-fit: contain;
}

/* 新しい表形式の栄養価セクション */
.nutrition-table-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  width: 100%;
  text-align: center; /* テーブル内要素の中央配置を確実にする */
}

/* PC用テーブル（デフォルト表示） */
.nutrition-table-desktop {
  border-collapse: separate;
  border-spacing: 80px 40px;
  table-layout: fixed;
  width: calc(220px * 3 + 80px * 2);
  display: table !important; /* PC版では確実にテーブル表示 */
  margin: 0 auto; /* テーブル自体を中央配置 */
}

/* タブレット・スマホ用div（PC版では非表示） */
.nutrition-scroll-mobile {
  display: none !important;
}

/* PC用テーブルセルのスタイル */
.nutrition-table-desktop td {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  text-align: center;
  vertical-align: middle;
  width: 220px !important;
  height: 220px !important;
  box-sizing: border-box;
  max-width: 220px !important;
  min-width: 220px !important;
  position: relative; /* 子要素の絶対位置の基準 */
  display: table-cell; /* 確実にテーブルセルとして表示 */
}

/* PC用テーブル行の表示を確実にする */
.nutrition-table-desktop tr {
  display: table-row; /* 確実にテーブル行として表示 */
}

/* PC用テーブル画像 */
.nutrition-table-desktop .nutrition-table-image {
  width: 220px !important;
  height: 220px !important;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}

/* PC用テーブルテキスト */
.nutrition-table-desktop .nutrition-text {
  font-family: "Noto Sans CJK JP", sans-serif !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-size: 18px !important;
  line-height: 28px !important;
  letter-spacing: 0.15em !important; /* 15% */
  text-align: center !important;
  color: #ffffff !important; /* 白色 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 中央配置 */
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  z-index: 10; /* 画像の上に表示 */
}

.nutrition-table-desktop .nutrition-annotation {
  font-family: "Noto Sans CJK JP", sans-serif !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-size: 12px !important;
  line-height: 32px !important;
  letter-spacing: 0.15em !important; /* 15% */
  text-align: center !important;
  color: #ffffff !important; /* 白色 */
}

/* モバイル用テキスト（.nutrition-item内） */
.nutrition-item .nutrition-text {
  font-family: "Noto Sans CJK JP", sans-serif !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-size: 14px !important;
  line-height: 22px !important;
  letter-spacing: 0.1em !important;
  text-align: center !important;
  color: #ffffff !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  z-index: 10;
}

.nutrition-item .nutrition-annotation {
  font-family: "Noto Sans CJK JP", sans-serif !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-size: 9px !important;
  line-height: 24px !important;
  letter-spacing: 0.1em !important;
  text-align: center !important;
  color: #ffffff !important;
}

.nutrition-number {
  font-size: 1.6em !important; /* ベースのフォントサイズより60%大きく */
  font-weight: 900 !important;
}

/* タブレット・スマホ用divスタイル */
.nutrition-scroll-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  overflow-x: auto;
  padding: 0 calc(50vw - 90px) 0 calc(50vw - 90px); /* 左右対称に最初と最後の要素が中央配置 */
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  /* スクロールバーを非表示 */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nutrition-scroll-container::-webkit-scrollbar {
  display: none;
}

.nutrition-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.nutrition-item-image {
  width: 180px !important;
  height: 180px !important;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}

/* PC版（900px以上）での確実な表示制御 - 栄養価テーブル専用ブレイクポイント */
@media (min-width: 900px) {
  .nutrition-table-desktop {
    display: table !important;
  }

  .nutrition-scroll-mobile {
    display: none !important;
  }
}

/* 中間サイズ（769px～899px）での栄養価セクション表示制御 */
@media (min-width: 769px) and (max-width: 899px) {
  /* PC用テーブルを非表示 */
  .nutrition-table-desktop {
    display: none !important;
  }

  /* タブレット・スマホ用divを表示 */
  .nutrition-scroll-mobile {
    display: flex !important;
  }

  /* 中間サイズ用のnutrition-title-container調整 */
  .nutrition-title-container {
    gap: 25px !important;
  }

  .nutrition-title {
    font-size: 20px !important;
    line-height: 45px !important;
    letter-spacing: 8% !important;
  }

  .nutrition-title-annotation {
    font-size: 12px !important;
    margin: 8px 0 16px 0 !important;
  }

  .title-svg-left,
  .title-svg-right {
    width: 38px !important;
    height: 38px !important;
  }

  /* 中間サイズ用の調整 */
  .nutrition-scroll-container {
    gap: 35px;
    padding: 0 calc(50vw - 80px) 0 calc(50vw - 80px); /* 左右対称に最初と最後の要素が中央配置 */
  }

  .nutrition-item {
    width: 160px;
    height: 160px;
  }

  .nutrition-item-image {
    width: 160px !important;
    height: 160px !important;
  }

  .nutrition-item .nutrition-text {
    font-size: 14px !important;
    line-height: 22px !important;
    letter-spacing: 0.1em !important;
  }

  .nutrition-item .nutrition-annotation {
    font-size: 9px !important;
    line-height: 24px !important;
    letter-spacing: 0.1em !important;
  }
}

/* 栄養価セクションのレスポンシブデザイン */
@media (max-width: 768px) {
  .nutrition-section {
    margin-top: 120px; /* タブレット用に調整 */
    /* NOTE: ここのmargin-bottomは不要と判断し削除 */
    /* margin-bottom: 60px; */
  }

  .nutrition-title-container {
    gap: 25px !important; /* タブレット用に間隔を少し調整 */
  }

  .nutrition-title {
    font-size: 20px !important;
    line-height: 45px !important;
    letter-spacing: 8% !important;
  }

  .nutrition-title-annotation {
    font-size: 12px !important;
    margin: 8px 0 16px 0 !important;
  }

  .title-svg-left,
  .title-svg-right {
    width: 38px !important; /* SVGサイズをタブレット用に調整 */
    height: 38px !important;
  }

  .nutrition-image-container {
    margin-top: 80px; /* タブレット用に間隔調整 */
  }

  .nutrition-image {
    width: 850px; /* タブレット用サイズ（基準1000pxの85%） */
  }

  /* タブレット対応 - 表示切り替え */
  .nutrition-table-container {
    margin-top: 30px;
  }

  /* PC用テーブルを非表示 */
  .nutrition-table-desktop {
    display: none !important;
  }

  /* タブレット・スマホ用divを表示 */
  .nutrition-scroll-mobile {
    display: flex !important;
  }

  /* タブレット用サイズ調整 */
  .nutrition-scroll-container {
    gap: 35px;
    padding: 0 calc(50vw - 80px) 0 calc(50vw - 80px); /* 左右対称に最初と最後の要素が中央配置 */
  }

  .nutrition-item {
    width: 160px;
    height: 160px;
  }

  .nutrition-item-image {
    width: 160px !important;
    height: 160px !important;
  }

  .nutrition-item .nutrition-text {
    font-size: 14px !important;
    line-height: 22px !important;
    letter-spacing: 0.1em !important;
  }

  .nutrition-item .nutrition-annotation {
    font-size: 9px !important;
    line-height: 24px !important;
    letter-spacing: 0.1em !important;
  }
}

@media (max-width: 480px) {
  .nutrition-section {
    margin-top: 100px; /* スマホ用に調整 */
    /* NOTE: ここのmargin-bottomは不要と判断し削除 */
    /* margin-bottom: 40px; */
  }

  .nutrition-title-container {
    gap: 20px !important; /* スマホ用に間隔を調整 */
  }

  .nutrition-title {
    font-size: 18px !important;
    line-height: 40px !important;
    letter-spacing: 6% !important;
  }

  .nutrition-title-annotation {
    font-size: 11px !important;
    margin: 6px 0 14px 0 !important;
  }

  .title-svg-left,
  .title-svg-right {
    width: 32px !important; /* SVGサイズをスマホ用に調整 */
    height: 32px !important;
  }

  .nutrition-image-container {
    margin-top: 60px; /* スマホ用に間隔調整 */
  }

  .nutrition-image {
    width: 700px; /* スマホ用サイズ（基準1000pxの70%） */
  }

  /* スマホ対応 - 表示切り替え */
  .nutrition-table-container {
    margin-top: 30px;
  }

  /* PC用テーブルを非表示 */
  .nutrition-table-desktop {
    display: none !important;
  }

  /* タブレット・スマホ用divを表示 */
  .nutrition-scroll-mobile {
    display: flex !important;
  }

  /* スマホ用サイズ調整 */
  .nutrition-scroll-container {
    gap: 25px;
    padding: 0 calc(50vw - 65px) 0 calc(50vw - 65px); /* 左右対称に最初と最後の要素が中央配置 */
  }

  .nutrition-item {
    width: 130px;
    height: 130px;
  }

  .nutrition-item-image {
    width: 130px !important;
    height: 130px !important;
  }

  .nutrition-item .nutrition-text {
    font-size: 11px !important;
    line-height: 16px !important;
    letter-spacing: 0.08em !important;
  }

  .nutrition-item .nutrition-annotation {
    font-size: 8px !important;
    line-height: 18px !important;
    letter-spacing: 0.08em !important;
  }
}

/* 特徴セクションのスタイル */
.features-section {
  margin-top: 230px; /* 栄養価セクションとの間に230px余白（why-ice→nutritionと同じ） */
  padding-top: 110px; /* セクション内のタイトル上部110px余白 */
  background-color: #f0d129; /* 背景色設定 */
  width: 100vw;
}

.features-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* 画像とタイトル間に10px間隔 */
}

.features-logo {
  height: 30px; /* 画像の高さを30pxに設定 */
  width: auto; /* アスペクト比を維持 */
}

.features-title {
  font-family: "Inter", sans-serif !important;
  font-weight: 600 !important;
  font-style: normal !important;
  font-size: 40px !important;
  line-height: 50px !important;
  letter-spacing: 0.1em !important; /* 10%の文字間隔 */
  text-align: center;
  color: #000000;
  margin: 0 !important; /* マージンを確実に無しにする */
  white-space: nowrap; /* タイトルの改行を防ぐ */
}

/* 特徴セクションのレスポンシブデザイン */
/* 大タブレット用（769px～1024px） */
@media (min-width: 769px) and (max-width: 1024px) {
  .features-section {
    margin-top: 220px; /* 大タブレット用に調整（why-ice→nutritionと同じ: 70px + 150px = 220px） */
    padding-top: 90px; /* タブレット用に調整 */
  }
}

@media (max-width: 768px) {
  .features-section {
    margin-top: 180px; /* タブレット用に調整（why-ice→nutritionと同じ） */
    padding-top: 90px; /* タブレット用に調整 */
  }

  .features-title-container {
    gap: 8px; /* タブレット用に間隔を調整 */
  }

  .features-logo {
    height: 26px; /* タブレット用にサイズ調整 */
  }

  .features-title {
    font-size: 32px !important; /* タブレット用にフォントサイズ調整 */
    line-height: 42px !important;
    letter-spacing: 0.08em !important;
    margin: 0 !important; /* マージンを確実に無しにする */
  }
}

@media (max-width: 480px) {
  .features-section {
    margin-top: 150px; /* スマホ用に調整（why-ice→nutritionと同じ） */
    padding-top: 70px; /* スマホ用に調整 */
  }

  .features-title-container {
    gap: 6px; /* スマホ用に間隔を調整 */
  }

  .features-logo {
    height: 22px; /* スマホ用にサイズ調整 */
  }

  .features-title {
    font-size: 24px !important; /* スマホ用にフォントサイズ調整 */
    line-height: 34px !important;
    letter-spacing: 0.06em !important;
    margin: 0 !important; /* マージンを確実に無しにする */
  }
}

/* 小スマホ用（～360px） */
@media (max-width: 360px) {
  .features-section {
    margin-top: 140px; /* 小スマホ用に調整（why-ice→nutritionと同じ: 40px + 100px = 140px） */
    padding-top: 60px; /* 小スマホ用に調整 */
  }
}

/* 特徴コンテンツサブセクションのスタイル */
.features-content-subsection {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 109px; /* タイトルとの間に109px余白 */
  width: 100%;
  padding: 0 20px; /* 最小限のパディングに変更 */
  box-sizing: border-box;
}

.features-text1 {
  font-family: "Noto Sans CJK JP", sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important; /* Bold は font-weight: 700 で表現 */
  font-size: 40px !important;
  line-height: 50px !important;
  letter-spacing: 0.1em !important; /* 10%の文字間隔 */
  text-align: center;
  color: #000000;
  margin: 0;
  margin-bottom: 46px; /* 文章2との間に46px余白 */
}

.features-text2 {
  font-family: "Noto Sans CJK JP", sans-serif !important;
  font-weight: 500 !important;
  font-style: normal !important; /* Medium は font-weight: 500 で表現 */
  font-size: 16px !important;
  line-height: 40px !important;
  letter-spacing: 0.2em !important; /* 20%の文字間隔 */
  text-align: justify;
  color: #000000;
  margin: 0;
  margin-bottom: 46px; /* 画像との間に46px余白 */
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
  width: 890px;
  max-width: 890px;
  text-justify: inter-ideograph;
  padding: 0 40px; /* 両端に40pxのpadding追加 */
  box-sizing: border-box;
}

.features-complete-nutrition-image {
  width: 50vw; /* 両端25vw余白を考慮したサイズ（100vw - 25vw - 25vw = 50vw） */
  height: auto; /* アスペクト比に合わせて自動調整 */
  object-fit: contain;
  border-radius: 20px; /* 他の画像と統一感を持たせるための角丸 */
  margin-bottom: 20px; /* 注釈との間に20px余白 */
}

.features-graph-annotation {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #666666;
  text-align: left;
  margin-bottom: 130px; /* 下の要素との間に130px余白 */
  padding: 0 20px;
  box-sizing: border-box;
  width: 50vw; /* グラフ画像と同じ幅 */
}

/* 特徴セクション2（介護施設導入）サブセクションのスタイル */
.features-content-subsection-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 20px; /* 最小限のパディングに変更 */
  box-sizing: border-box;
}

.features-text1-section2 {
  font-family: "Noto Sans CJK JP", sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important; /* Bold は font-weight: 700 で表現 */
  font-size: 40px !important;
  line-height: 50px !important;
  letter-spacing: 0.1em !important; /* 10%の文字間隔 */
  text-align: center;
  color: #000000;
  margin: 0;
  margin-bottom: 46px; /* 文章2との間に46px余白 */
}

.features-text2-section2 {
  font-family: "Noto Sans CJK JP", sans-serif !important;
  font-weight: 500 !important;
  font-style: normal !important; /* Medium は font-weight: 500 で表現 */
  font-size: 16px !important;
  line-height: 40px !important;
  letter-spacing: 0.2em !important; /* 20%の文字間隔 */
  text-align: center;
  color: #000000;
  margin: 0;
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
  width: 890px;
  max-width: 890px;
  padding: 0 40px; /* 両端に40pxのpadding追加 */
  box-sizing: border-box;
}

.features-text2-section2 p:last-child {
  margin-bottom: 0; /* 最後の段落の下余白を無しにする */
}

/* PC/タブレット用セクション（デフォルト表示） */
.features-text2-section2-desktop {
  display: block !important;
}

/* スマホ用セクション（デフォルト非表示） */
.features-text2-section2-mobile {
  display: none !important;
}

/* タブレット専用改行の制御 */
.tablet-break {
  display: none; /* デフォルト（PC）では非表示 */
}

/* 特徴セクション内の購入ボタンセクションのスタイル */
.features-purchase-button-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* 前の文章との間に20px余白 */
  margin-bottom: 88px; /* 下に88px余白 */
  width: 100%;
  position: relative;
}

/* 特徴コンテンツサブセクションのレスポンシブデザイン */
/* 大タブレット用（769px～1024px） */
@media (min-width: 769px) and (max-width: 1024px) {
  .features-text2 {
    padding: 0 80px; /* 大タブレット用に左右余白を80pxに調整 */
    box-sizing: border-box;
  }

  .features-complete-nutrition-image {
    width: calc(100vw - 30vw); /* 大タブレット用にサイズ調整 - 70vwに設定 */
    margin-bottom: 20px; /* 注釈との間に20px余白 */
  }

  .features-text2-section2 {
    padding: 0 80px; /* 大タブレット用に左右余白を80pxに調整 */
    box-sizing: border-box;
  }

  .tablet-break {
    display: inline; /* 大タブレットでは表示 */
  }
}

@media (max-width: 768px) {
  .features-content-subsection {
    margin-top: 65px; /* タブレット用に調整 */
    padding: 0 20px; /* タブレット用に余白を調整 */
  }

  .features-text1 {
    font-size: 36px !important; /* タブレット用にフォントサイズ調整 */
    line-height: 46px !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 28px; /* タブレット用に間隔調整 */
  }

  .features-text2 {
    font-size: 16px !important; /* タブレット用にフォントサイズ調整 */
    line-height: 38px !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 42px; /* タブレット用に画像との間隔調整 */
    width: 100%;
    max-width: 720px;
    text-align: justify;
    word-break: normal;
    overflow-wrap: break-word;
    text-justify: inter-ideograph;
    padding: 0 80px; /* タブレット用padding調整 - 適切な余白に変更 */
    box-sizing: border-box;
  }

  .features-complete-nutrition-image {
    width: calc(100vw - 30vw); /* タブレット用にサイズ調整 - 70vwに設定（現在の形式に合わせて） */
    margin-bottom: 20px; /* 注釈との間に20px余白 */
  }

  .features-graph-annotation {
    font-size: 11px; /* タブレット用にフォントサイズ調整 */
    width: calc(100vw - 60px); /* グラフ画像と同じ幅 */
    margin-bottom: 125px; /* タブレット用に下の要素との間隔調整 */
  }

  .features-content-subsection-2 {
    padding: 0 20px; /* タブレット用に余白を調整 */
  }

  .features-text1-section2 {
    font-size: 36px !important; /* タブレット用にフォントサイズ調整 */
    line-height: 46px !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 28px; /* タブレット用に文章間隔調整 */
  }

  .features-text2-section2 {
    font-size: 16px !important; /* タブレット用にフォントサイズ調整 */
    line-height: 38px !important;
    letter-spacing: 0.12em !important;
    width: 100%;
    max-width: 720px;
    text-align: center;
    word-break: normal;
    overflow-wrap: break-word;
    padding: 0 80px; /* タブレット用padding調整 */
    box-sizing: border-box;
  }

  .features-text2-section2-desktop {
    display: none !important;
  }

  .tablet-break {
    display: inline; /* タブレットでは表示 */
  }

  .features-text2-section2-mobile {
    display: block !important;
    text-align: justify;
    text-justify: inter-ideograph;
  }

  .features-purchase-button-section {
    margin-top: 32px; /* タブレット用に余白調整 */
    margin-bottom: 85px; /* タブレット用に余白調整 */
  }
}

@media (max-width: 480px) {
  .features-content-subsection {
    margin-top: 35px; /* スマホ用に調整 */
    padding: 0 20px; /* スマホ用に余白を調整 */
  }

  .features-text1 {
    font-size: 24px !important; /* スマホ用にフォントサイズ調整 */
    line-height: 34px !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 16px; /* スマホ用に間隔調整 */
  }

  .features-text2 {
    font-size: 12px !important; /* スマホ用にフォントサイズ調整 */
    line-height: 30px !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 32px; /* スマホ用に画像との間隔調整 */
    width: 100%;
    max-width: 100%;
    text-align: justify;
    word-break: normal;
    overflow-wrap: break-word;
    text-justify: inter-ideograph;
    padding: 0 20px; /* スマホ用padding調整 */
    box-sizing: border-box;
  }

  .features-complete-nutrition-image {
    width: calc(100vw - 40px); /* スマホ用にサイズ調整（100vw - 20px - 20px = 100vw - 40px） */
    margin-bottom: 20px; /* 注釈との間に20px余白 */
  }

  .features-graph-annotation {
    font-size: 10px; /* スマホ用にフォントサイズ調整 */
    width: calc(100vw - 40px); /* グラフ画像と同じ幅 */
    margin-bottom: 90px; /* スマホ用に下の要素との間隔調整 */
  }

  .features-content-subsection-2 {
    padding: 0 20px; /* スマホ用に余白を調整 */
  }

  .features-text1-section2 {
    font-size: 24px !important; /* スマホ用にフォントサイズ調整 */
    line-height: 34px !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 16px; /* スマホ用に文章間隔調整 */
  }

  .features-text2-section2 {
    font-size: 12px !important; /* スマホ用にフォントサイズ調整 */
    line-height: 30px !important;
    letter-spacing: 0.1em !important;
    width: 100%;
    max-width: 100%;
    text-align: center;
    word-break: normal;
    overflow-wrap: break-word;
    padding: 0 20px; /* スマホ用padding調整 */
    box-sizing: border-box;
  }

  .tablet-break {
    display: none; /* スマホでは非表示 */
  }

  .features-text2-section2-desktop {
    display: none !important;
  }

  .features-text2-section2-mobile {
    display: block !important;
    text-align: justify;
    text-justify: inter-ideograph;
  }

  .features-purchase-button-section {
    margin-top: 16px; /* スマホ用に余白調整 */
    margin-bottom: 60px; /* スマホ用に余白調整 */
  }
}

/* レコメンドセクションのスタイル */
.recommend-section {
  margin-top: 125px; /* 特徴セクションとの間に125px余白 */
  margin-bottom: 80px;
}

.speech-bubble {
  position: relative;
  background-color: #fcf6d4; /* 新しい色に変更 */
  border-radius: 70px; /* 半径を70pxに変更（さらに約18%縮小） */
  width: 400px; /* 横幅を400pxに設定（さらに約17%縮小） */
  height: 90px; /* 縦幅を90pxに設定（さらに約18%縮小） */
  margin: 0 auto; /* 中央揃え */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none; /* シャドウを削除 */
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -13px; /* 吹き出しの下部から少し下に配置（さらに縮小に合わせて調整） */
  left: 50%;
  transform: translateX(-50%); /* 中央揃え */
  width: 0;
  height: 0;
  border-left: 13px solid transparent; /* 左側の透明な境界（さらに約19%縮小） */
  border-right: 13px solid transparent; /* 右側の透明な境界（さらに約19%縮小） */
  border-top: 13px solid #fcf6d4; /* 上側の三角形（吹き出しと同じ色、さらに約19%縮小） */
}

.speech-bubble-text {
  font-family: "Noto Sans CJK JP", sans-serif !important;
  font-weight: 700 !important;
  font-style: Bold !important;
  font-size: 24px !important;
  line-height: 30px !important;
  letter-spacing: 10% !important;
  text-align: center;
  color: #000000;
  margin: 0;
}

/* レコメンド対象者サブセクションのスタイル */
.recommend-target-subsection {
  margin-top: 100px; /* 吹き出しとの間に100px余白 */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* 大画面（1500px以上）- スクロールなし、3つすべて表示 */
@media (min-width: 1500px) {
  .target-containers-wrapper {
    display: flex;
    gap: 94px;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
    width: 100%;
    overflow-x: visible;
    overflow-y: visible;
  }
}

/* 中大画面（1200px～1499px）- 横スクロール */
@media (min-width: 1200px) and (max-width: 1499px) {
  .target-containers-wrapper {
    display: flex;
    gap: 94px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px calc(50vw - 200px) 20px calc(50vw - 200px);
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    /* スクロールバーを非表示 */
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* タッチスクロール対応 */
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }

  .target-containers-wrapper::-webkit-scrollbar {
    display: none;
  }
}

/* 大画面（1500px以上）- スクロールなし */
@media (min-width: 1500px) {
  .target-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    width: 400px;
    min-width: 400px;
  }
}

/* 中大画面（1200px～1499px）- 横スクロール */
@media (min-width: 1200px) and (max-width: 1499px) {
  .target-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    width: 400px;
    min-width: 400px;
    scroll-snap-align: center;
  }
}

.target-image-container {
  margin-bottom: 60px; /* 画像と対象者名の間に60px余白 */
}

.target-image {
  width: 380px;
  height: 380px;
  border-radius: 50%; /* 円形にくり抜く */
  object-fit: cover; /* 中央部分から正方形を作成 */
  object-position: center; /* 中央を基準に切り出し */
}

.target-name {
  font-family: "Noto Sans CJK JP", sans-serif !important;
  font-weight: 700 !important;
  font-style: Bold !important;
  font-size: 24px !important;
  line-height: 50px !important;
  letter-spacing: 6% !important;
  text-align: center;
  color: #000000;
  margin: 0;
  width: 100%; /* コンテナの幅に合わせる */
}

.target-description {
  font-family: "Noto Sans CJK JP", sans-serif !important;
  font-weight: 400 !important;
  font-style: Regular !important;
  font-size: 22px !important;
  line-height: 50px !important;
  letter-spacing: 10% !important;
  text-align: left;
  color: #000000;
  margin: 30px 0 0 0; /* 対象者名との間に30px余白 */
  width: 389px; /* 横幅389px */
}

/* ユーザーレビューセクション */
.user-review-section {
  margin-top: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-subtitle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
}

.review-subtitle {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 50px;
  letter-spacing: 10%;
  text-align: center;
  color: #000000;
  margin: 0;
}

.review-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.review-logo {
  height: 46px;
  width: auto;
  opacity: 1;
}

.review-title {
  font-family: "Inter", sans-serif !important;
  font-weight: 600 !important;
  font-style: normal !important;
  font-size: 64px !important;
  line-height: 50px !important;
  letter-spacing: 10% !important;
  text-align: center !important;
  color: #000000 !important;
  margin: 0 !important;
  display: block !important;
}

/* レビューコンテナ */
.review-container {
  width: 100vw;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 106px;
  margin-top: 118px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-left: 0;
  padding-right: calc(50vw - 165px);
  box-sizing: border-box;
  /* スクロールバーを非表示 */
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* スムーズなスクロール */
  scroll-behavior: smooth;
  /* タッチスクロール対応 */
  -webkit-overflow-scrolling: touch;
}

/* Webkit系ブラウザ用のスクロールバー非表示 */
.review-container::-webkit-scrollbar {
  display: none;
}

/* レビューサブセクション */
.review-subsection {
  width: 330px;
  min-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}

/* 最初のレビューサブセクションに左余白を追加 */
.review-subsection:first-child {
  margin-left: 87px;
}

.review-subtitle-text {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 10%;
  text-align: center;
  color: #000000;
  margin: 0;
  margin-bottom: 8px;
}

.review-main-title {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 10%;
  text-align: center;
  color: #000000;
  margin: 0;
  margin-bottom: 39px;
  position: relative;
  display: inline-block;
  padding: 0 3px;
  /* マーカー用の背景色を直接設定 */
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    #fff12e 50%,
    #fff12e 100%
  );
  background-size: calc(100% + 6px) 100%;
  background-position: center;
}

.review-main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  right: -3px;
  height: 20px; /* 40pxの1/2（下1/2のみ） */
  background-color: #fff12e;
  z-index: -1;
  /* 確実に表示されるように */
  display: block;
  pointer-events: none;
}

.review-image-container {
  margin-bottom: 15px;
}

.review-person-image {
  width: auto;
  height: 162px;
  opacity: 1;
  object-fit: contain;
}

.review-attribute {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 10%;
  text-align: center;
  color: #000000;
  background-color: #eaeaea;
  border-radius: 130px;
  padding: 8px 16px;
  margin: 0;
  margin-bottom: 27px;
  display: inline-block;
}

.review-purpose-label {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 10%;
  text-align: center;
  color: #016cb7;
  margin: 0;
  margin-bottom: 8px;
}

.review-purpose-title {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 10%;
  text-align: center;
  color: #016cb7;
  margin: 0;
  margin-bottom: 17px;
}

.review-purpose-description {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 10%;
  text-align: left;
  color: #000000;
  margin: 0;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease;
}

.review-purpose-description.expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.read-more-btn {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 10%;
  color: #000000;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 10px;
  text-decoration: underline;
  text-underline-offset: 1px;
  text-decoration-thickness: 1px;
}

.read-more-btn:hover {
  opacity: 0.7;
}

/* ユーザーレビューセクションのレスポンシブ対応 */
@media (max-width: 768px) {
  .user-review-section {
    margin-top: 150px;
  }

  .review-title {
    font-size: 48px !important;
    line-height: 45px !important;
  }

  .review-subtitle {
    font-size: 18px !important;
    line-height: 45px !important;
  }

  .review-container {
    gap: 50px;
    margin-top: 80px;
    padding-right: calc(50vw - 120px);
  }

  .review-subsection {
    width: 240px;
    min-width: 240px;
  }

  .review-subsection:first-child {
    margin-left: 50px;
  }

  .review-subtitle-text {
    font-size: 13px;
    line-height: 17px;
  }

  .review-main-title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 24px;
  }

  .review-person-image {
    height: 120px;
  }

  .review-attribute {
    font-size: 13px;
    line-height: 17px;
    padding: 6px 13px;
    margin-bottom: 20px;
  }

  .review-purpose-label {
    font-size: 11px;
    line-height: 16px;
  }

  .review-purpose-title {
    font-size: 13px;
    line-height: 17px;
    margin-bottom: 13px;
  }

  .review-purpose-description {
    font-size: 11px;
    line-height: 22px;
    -webkit-line-clamp: 5;
    line-clamp: 5;
  }

  .read-more-btn {
    font-size: 11px;
    line-height: 22px;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .user-review-section {
    margin-top: 120px;
  }

  .review-title {
    font-size: 36px !important;
    line-height: 40px !important;
  }

  .review-subtitle {
    font-size: 16px !important;
    line-height: 40px !important;
  }

  .review-subtitle-container {
    gap: 20px;
    margin-bottom: 0;
  }

  .review-title-container {
    gap: 8px;
  }

  .review-logo {
    height: 36px;
  }

  .review-container {
    gap: 30px;
    margin-top: 60px;
    padding-right: calc(50vw - 100px);
  }

  .review-subsection {
    width: 200px;
    min-width: 200px;
  }

  .review-subsection:first-child {
    margin-left: 40px;
  }

  .review-subtitle-text {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 6px;
  }

  .review-main-title {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
    padding: 0 2px;
  }

  .review-main-title::after {
    height: 12px;
    left: -2px;
    right: -2px;
  }

  .review-image-container {
    margin-bottom: 12px;
  }

  .review-person-image {
    height: 100px;
  }

  .review-attribute {
    font-size: 12px;
    line-height: 16px;
    padding: 5px 10px;
    margin-bottom: 16px;
  }

  .review-purpose-label {
    font-size: 10px;
    line-height: 14px;
    margin-bottom: 6px;
  }

  .review-purpose-title {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 10px;
  }

  .review-purpose-description {
    font-size: 10px;
    line-height: 18px;
    -webkit-line-clamp: 5;
    line-clamp: 5;
  }

  .read-more-btn {
    font-size: 10px;
    line-height: 18px;
    margin-top: 6px;
  }
}

/* レコメンドセクションのレスポンシブ対応 */
/* 中間サイズ（1024px～1199px）で横スクロールレイアウトに変更 */
@media (min-width: 1025px) and (max-width: 1199px) {
  .target-containers-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px calc(50vw - 190px) 20px calc(50vw - 190px);
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    /* スクロールバーを非表示 */
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* タッチスクロール対応 */
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }

  .target-containers-wrapper::-webkit-scrollbar {
    display: none;
  }

  .target-container {
    flex-shrink: 0;
    width: 380px;
    scroll-snap-align: center;
  }

  .target-name {
    font-size: 20px !important;
    line-height: 42px !important;
    letter-spacing: 6% !important;
  }

  .target-description {
    font-size: 20px !important;
    line-height: 46px !important;
    letter-spacing: 8% !important;
  }
}

@media (max-width: 1024px) {
  .recommend-section {
    margin-top: 100px;
    margin-bottom: 60px;
  }

  .speech-bubble {
    width: 320px;
    height: 72px;
    border-radius: 56px;
  }

  .speech-bubble::after {
    bottom: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fcf6d4;
  }

  .speech-bubble-text {
    font-size: 18px !important;
    line-height: 24px !important;
    letter-spacing: 8% !important;
  }

  .recommend-target-subsection {
    margin-top: 70px;
  }

  .target-containers-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 calc(50vw - 120px) 0 calc(50vw - 120px);
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }

  .target-containers-wrapper::-webkit-scrollbar {
    display: none;
  }

  .target-container {
    flex-shrink: 0;
    width: 250px;
    scroll-snap-align: center;
  }

  .target-image-container {
    margin-bottom: 40px;
  }

  .target-image {
    width: 240px;
    height: 240px;
  }

  .target-name {
    font-size: 18px !important;
    line-height: 32px !important;
    letter-spacing: 8% !important;
    width: 100%;
  }

  .target-description {
    font-size: 14px !important;
    line-height: 32px !important;
    letter-spacing: 8% !important;
    margin-top: 20px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .recommend-section {
    margin-top: 80px;
    margin-bottom: 50px;
  }

  .speech-bubble {
    width: 280px;
    height: 64px;
    border-radius: 48px;
  }

  .speech-bubble::after {
    bottom: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fcf6d4;
  }

  .speech-bubble-text {
    font-size: 16px !important;
    line-height: 20px !important;
    letter-spacing: 6% !important;
  }

  .recommend-target-subsection {
    margin-top: 60px;
  }

  .target-containers-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 calc(50vw - 100px) 0 calc(50vw - 100px);
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }

  .target-containers-wrapper::-webkit-scrollbar {
    display: none;
  }

  .target-container {
    flex-shrink: 0;
    width: 200px;
    scroll-snap-align: center;
  }

  .target-image-container {
    margin-bottom: 32px;
  }

  .target-image {
    width: 200px;
    height: 200px;
  }

  .target-name {
    font-size: 15px !important;
    line-height: 28px !important;
    letter-spacing: 6% !important;
    width: 100%;
  }

  .target-description {
    font-size: 12px !important;
    line-height: 28px !important;
    letter-spacing: 6% !important;
    margin-top: 16px;
    width: 100%;
  }
}
