.recommend-ttl {
    font-size: 2rem;
    background: #287fd9;
    display: block;
    color: #fff;
    line-height: 1.2;
    padding: 11px 25px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    font-weight: bold;
}

@media (min-width: 768px) {
    .recommend-ttl {
        display: inline-block;
        border-radius: 10px 10px 0 0;
    }
}

.flexbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: #e0efff;
    margin-bottom: 10px;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

.flexbox-left img {
    vertical-align: bottom;
}

@media (min-width: 768px) {
    .flexbox {
        flex-direction: row;
        border-radius: 0 10px 10px 10px;
    }
}

.flexbox-left {
    width: 250px;
}

.flexbox-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .flexbox-right {
        width: calc(100% - 270px);
    }
}

.flexbox-right .subttl {
    font-size: 2rem;
    font-weight: bold;
}

.flexbox-right h3 {
    font-size: 2.8rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .flexbox-right h3 {
        font-size: 3.8rem;
    }
}

.flexbox-right .comment {
    font-size: 1.6rem;
}

.link-btn_column {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}

.flexbox-right .link-btn {
    flex: 1;
    min-width: 0;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 7px;
    font-size: 1.7rem;
    background: #287fd9;
    color: #fff;
    position: relative;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .flexbox-right .link-btn {
        padding: 7px;
        font-size: 1.7rem;
    }
}

.flexbox-right .link-btn.or {
    background-color: #ff9800 !important;
    color: #fff !important;
}

.link-btn:hover {
    opacity: 0.7;
}

.osusume_sct {
    position: relative;
    margin-bottom: 30px;
}

.pb-badge {
    position: absolute;
    top: -20px;
    left: -6px;
    z-index: 10;
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #fff;
    border-radius: 50% / 40% 60% 60% 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.1;
    font-size: 15px;
    font-weight: 700;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.pb-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.product-spec {
    margin-bottom: 10px;
}

.product-spec p {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.5;
}

.product-spec p span {
    color: #d00;
}

@media (min-width: 768px) {
    .product-spec p {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .link-btn_column {
        flex-direction: column;
    }
    .flexbox-right .link-btn {
        width: 100%;
        font-size: 1.5rem;
    }
}

.heading-16 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: sans-serif;
}

.heading-16::before, .heading-16::after {
    width: 3px;
    height: 40px;
    background-color: #ff9900;
    content: '';
}

.heading-16::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}

.heading-16::after {
    transform: rotate(35deg);
    margin-left: 30px;
}

@media (max-width: 767px) {
    .heading-16 {
        font-size: 16px;
    }
    .heading-16::before, .heading-16::after {
        width: 3px;
        height: 25px;
        background-color: #ff9900;
        content: '';
    }
    .heading-16::before {
        transform: rotate(-35deg);
        margin-right: 15px;
    }
    .heading-16::after {
        transform: rotate(35deg);
        margin-left: 15px;
    }
}

.grid-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 0 auto 30px;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 10px;
    color: #333;
    border: 2px solid #ff9800;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    line-height: 1.4;
    transition: all 0.3s ease;
    font-size: 15px;
}

.nav-item:hover {
  background-color: #fffbdf;
}

/* スマホ用：画面幅が768px以下の時に2列にする */
@media (max-width: 768px) {
  .grid-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-item {
    font-size: 14px;
    padding: 12px 5px;
  }
}

.link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    padding: 18px 20px;
    background-color: #fff;
    color: #222;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s;
    font-size: 15px;
    border: 3px solid #ff9800;
}


.action-link:hover {
  background-color: #ff9800; /* 青系（お好みで変更可） */
  color: #fff !important;
}

@media screen and (min-width: 1400px) and (min-height: 550px) {
    .section-navi {
        margin-top: -90px;
        padding-top: 100px;
        padding-bottom: 50px;
    }
}

@media (min-width: 1024px) {
    .block-productlist {
        padding-bottom: 30px !important;
    }
}

.block-productlist__items {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .category-contents__item.col-s {
        width: calc((100% - 30px) / 3) !important;
    }
}


/* 全体コンテナ */
.toc-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 10px;
  font-family: sans-serif;
  box-sizing: border-box;
}

/* ヘッダー領域 */
.toc-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.toc-title {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
}

.toc-subtitle {
  font-size: 13px;
  color: #888888;
}


.toc-nav {
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: max-content;
}

.toc-item {
  width: 100%;
}

.toc-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  padding: 12px 8px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.2s ease;
  position: relative;
}

.toc-link:hover {
  background-color: #fff0f2;
  border: 1.5px solid #e62343;
}

.toc-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.toc-text {
  font-size: 13px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  line-height: 1.3;
}

/* .toc-link.is-active {
  background-color: #fff0f2;
  border: 1.5px solid #e62343;
} */

/* .toc-link.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 4px;
  background-color: #e62343;
  border-radius: 2px 2px 0 0;
}

.toc-link.is-active .toc-icon {
  background-color: #e62343;
  color: #ffffff;
}

.toc-link.is-active .toc-text {
  color: #e62343;
} */

.tab-nav-container {
  margin-top: 20px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.tab-nav-container::-webkit-scrollbar {
  height: 6px;
}

.tab-nav-container::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  border-radius: 3px;
}

.tab-nav-container::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.tab-nav-list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 4px 2px;
  width: 100%;
  box-sizing: border-box;
}

.tab-nav-item {
  flex: 1;
}

.tab-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: auto;
  height: auto;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: bold;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  outline: none;
  box-sizing: border-box;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
}

.tab-button:hover:not(.is-active) {
  background-color: #fafafa;
  border-color: #dddddd;
  color: #333333;
}

.tab-button.is-active {
  background-color: #e62343;
  color: #ffffff;
  border-color: #e62343;
  box-shadow: 0 2px 6px rgba(230, 35, 67, 0.25);
}

@media (max-width: 768px) {
  .tab-nav-list {
    width: max-content;
    gap: 12px;
  }
  
  .tab-nav-item {
    flex: none;
  }
  
  .tab-button {
    width: auto;
    padding: 10px 18px;
    font-size: 14px;
  }
}

.tab-content-container {
  margin-top: 24px;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
  animation: tabFadeIn 0.3s ease;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.link-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  color: #e62343;
  background-color: #ffffff;
  border: 1px solid #e62343;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.action-link::after {
  content: "›";
  font-size: 18px;
  margin-left: 8px;
  line-height: 1;
}

.action-link:hover {
  background-color: #e62343;
  color: #ffffff;
}

@media (max-width: 600px) {
  .link-group {
    flex-direction: column;
  }
  .action-link {
    width: 100%;
    box-sizing: border-box;
  }
}

.about-sweets-section {
  width: 100%;
  padding: 40px 0;
  color: #333333;
  font-family: sans-serif;
  box-sizing: border-box;
}


.section-title-h2 {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #333333;
  line-height: 1.4;
}

.section-lead-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.section-lead-text p {
  margin: 0 0 16px 0;
}

.section-lead-text p:last-child {
  margin-bottom: 0;
}

.section-title-h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 24px 0;
    line-height: 1.4;
    border-bottom: 2px solid #ffdf00;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}

.feature-card {
  display: flex;
  flex-direction: column;
}

.feature-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #9cb2c9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 8px 0;
  line-height: 1.4;
  color: #111111;
}

.feature-text {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: #444444;
}

.feature-text a {
  color: #0066cc;
  text-decoration: underline;
}

.feature-text a:hover {
  text-decoration: none;
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-title-h2 {
    font-size: 18px;
  }

  .section-title-h3 {
    font-size: 16px;
  }
}

:root {
  --accent: #e01e37;
  --accent-tint: #fdecef;
  --ink: #33333d;
  --ink-sub: #7c7c86;
  --line: #ececec;
  --radius: 16px;
}

.scene {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
  color: var(--ink);
  max-width: 1040px;
  margin: 0 auto;
  padding: 8px 16px 60px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

.scene__h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
}

.scene__h2::before {
  content: "";
  width: 6px;
  height: 24px;
  background: var(--accent);
  border-radius: 3px;
}

.scene__lead {
  font-size: 13.5px;
  color: var(--ink-sub);
  margin: 0 0 28px;
  padding-left: 16px;
}

.scene__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin: 0 0 36px;
}

.scene__row:last-child {
  margin-bottom: 0;
}

.scene__row:nth-child(even) .scene__media {
  order: 2;
}

.scene__row:nth-child(even) .scene__text {
  order: 1;
}

.scene__media {
    /* aspect-ratio: 4 / 3; */
    border-radius: var(--radius);
    /* overflow: hidden; */
    /* background: repeating-linear-gradient(45deg, #faf8f5, #faf8f5 14px, #f3efe9 14px, #f3efe9 28px); */
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #b0a99f; */
    /* font-size: 12px; */
    /* letter-spacing: 0.06em; */
}

.scene__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-tint);
  padding: 5px 12px;
  border-radius: 999px;
  margin: 0 0 12px;
}

.scene__ttl {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.55;
}

.scene__txt {
  font-size: 14.5px;
  margin: 0 0 14px;
  color: #4a4a54;
}

.scene__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.scene__tag {
  font-size: 12px;
  color: var(--ink-sub);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 11px;
}

@media (max-width: 768px) {
  .scene {
    padding: 8px 16px 40px;
  }

  .scene__row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .scene__row:nth-child(even) .scene__media {
    order: 0;
  }

  .scene__row:nth-child(even) .scene__text {
    order: 0;
  }

  .scene__h2 {
    font-size: 18px;
  }

  .scene__ttl {
    font-size: 17px;
  }
}


.prt {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
  color: #33333d;
  max-width: 1040px;
  margin: 0 auto;
  padding: 8px 16px 60px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

.prt__lead {
  font-size: 13.5px;
  color: #7c7c86;
  margin: 0 0 16px;
}

.prt__tablewrap {
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.prt__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 760px;
  background: #ffffff;
}

.prt__table th,
.prt__table td {
  padding: 14px 14px;
  text-align: left;
  border-bottom: 1px solid #ececec;
  vertical-align: top;
}

.prt__table thead th {
  background: #faf8f5;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.prt__table tbody tr:last-child th,
.prt__table tbody tr:last-child td {
  border-bottom: none;
}

.prt__table tbody tr:hover {
  background: #fffafa;
}

.prt__method {
  font-weight: 800;
  white-space: nowrap;
  color: #33333d;
}

.prt__methodcell {
  display: flex;
  align-items: center;
  gap: 11px;
}

.prt__thumb {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 9px;
  border: 1px solid #ececec;
  object-fit: cover;
  background: repeating-linear-gradient(45deg, #faf8f5, #faf8f5 8px, #f3efe9 8px, #f3efe9 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
  color: #b0a99f;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0;
}

.prt__lv {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.prt__lv--a {
  background: #fdecef;
  color: #e01e37;
}

.prt__lv--b {
  background: #f1f4f8;
  color: #5b6b80;
}

.prt__note {
    font-size: 11.5px;
    color: #7c7c86;
    margin-bottom: 27px;
    margin: 10px 2px 40px;
}

.prt__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.prt__card {
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 20px 20px 22px;
  background: #ffffff;
}

.prt__cardttl {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.prt__ico {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: #fdecef;
  color: #e01e37;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prt__ico svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prt__txt {
  font-size: 14px;
  color: #4a4a54;
  margin: 0 0 12px;
}

.prt__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
}

.prt__tag {
  font-size: 11.5px;
  color: #7c7c86;
  border: 1px solid #ececec;
  border-radius: 999px;
  padding: 4px 10px;
}

.prt__safe {
  margin-top: 22px;
  border: 1px solid #ececec;
  border-left: 4px solid #e01e37;
  border-radius: 10px;
  background: #fffdfd;
  padding: 18px 20px;
}

.prt__safettl {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 7px;
}

.prt__safetxt {
  font-size: 13.5px;
  color: #4a4a54;
  margin: 0;
}

@media (max-width: 768px) {
  .prt {
    padding: 8px 16px 40px;
  }

  .prt__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .prt__note::before {
    content: "※横にスクロールできます ";
    color: #e01e37;
  }
}

.prc {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
  color: #33333d;
  max-width: 1040px;
  margin: 0 auto;
  padding: 8px 16px 60px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

.prc__lead {
  font-size: 13.5px;
  color: #7c7c86;
  margin: 0 0 20px;
}

.prc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.prc__card {
  border: 1px solid #ececec;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.prc__head {
  padding: 18px 20px 15px;
  background: linear-gradient(180deg, #fdfbf9 0%, #f7f4f0 100%);
  border-bottom: 1px solid #ececec;
}

.prc__band {
  font-size: 26px;
  font-weight: 800;
  color: #e01e37;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 5px;
  font-variant-numeric: tabular-nums;
}

.prc__band small {
  font-size: 12px;
  font-weight: 700;
  color: #7c7c86;
  margin-left: 3px;
  letter-spacing: 0;
}

.prc__use {
  font-size: 12.5px;
  font-weight: 700;
  margin: 0;
  color: #7c7c86;
}

.prc__list {
  list-style: none;
  margin: 0;
  padding: 6px 20px 18px;
  flex: 1;
}

.prc__list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid #f4f1ed;
}

.prc__list li:last-child {
  border-bottom: none;
}

.prc__thumb {
    /* width: 100px; */
    /* height: 100px; */
    /* flex: 0 0 100px; */
    border-radius: 11px;
    /* border: 1px solid #ececec; */
    object-fit: cover;
    /* background: repeating-linear-gradient(45deg, #faf8f5, #faf8f5 9px, #f3efe9 9px, #f3efe9 18px); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    color: #b8b1a7;
    text-align: center;
    line-height: 1.35;
}

.prc__info {
  min-width: 0;
  flex: 1;
}

.prc__nm {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}

.prc__fig {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 16px;
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
}

.prc__fig > span {
  white-space: nowrap;
}

.prc__k {
  color: #7c7c86;
  font-weight: 700;
}

.prc__yen {
  font-weight: 800;
  color: #e01e37;
}

.prc__lot {
  font-weight: 800;
  color: #33333d;
}

.prc__note {
  margin-top: 22px;
  border: 1px solid #ececec;
  border-left: 4px solid #e01e37;
  border-radius: 10px;
  background: #fffdfd;
  padding: 16px 18px;
}

.prc__notettl {
  font-size: 14.5px;
  font-weight: 800;
  margin: 0 0 6px;
}

.prc__notetxt {
  font-size: 13px;
  color: #4a4a54;
  margin: 0;
}

@media (max-width: 768px) {
  .prc {
    padding: 8px 16px 40px;
  }

  .prc__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .prc__band {
    font-size: 23px;
  }

  .prc__list {
    padding: 6px 16px 16px;
  }

  .prc__thumb {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
}

.category_note {
    font-size: 12px; 
    margin-top: 8px; 
    margin-bottom: 10px;
}


.category-header_title {
    font-size: clamp(1.5rem, 2vw, 2.4rem) !important;
  }

.prt__tablewrap img {
  width: 50px;
  height: auto;
}

.title--subtext {
  font-size: 16px !important;
}

.scene__btn-wrap {
  margin-top: 16px;
}

.scene__btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e01e37; /* テーマカラーに合わせて変更してください */
  color: #ffffff;
  font-size: 13.5px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.2s ease;
}

.scene__btn:hover {
  opacity: 0.8;
}

.example-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.example-list {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    scrollbar-width: none; /* Firefox用 */
}

.example-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari用 */
}

.example-list__inr {
    display: flex;
    gap: 15px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    flex-wrap: nowrap !important;
}

/* 画面に約5個並ぶ要素の幅計算 */
.example-list__item {
    flex: 0 0 calc((100% - 60px) / 5); /* 隙間15px × 4箇所分を差し引いた幅 */
    min-width: 150px;
    box-sizing: border-box;
}

.example-list__item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.example-list__item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

/* 左右ボタンのスタイル */
.example-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: background-color 0.2s;
}

.example-slider__btn:hover {
    background: #fff;
}

.example-slider__btn--prev {
    left: -15px;
}

.example-slider__btn--next {
    right: -15px;
}

/* スマホ用のレスポンシブ設定 */
@media (max-width: 768px) {
    .example-list__item {
        flex: 0 0 calc((100% - 15px) / 2.3); /* スマホでは約2.3個表示 */
    }
    .example-slider__btn--prev { left: 0; }
    .example-slider__btn--next { right: 0; }
}