/* ============================================
   Single Article Page Styles (PC)
   ============================================ */

/* ============================================
   Reset — 親テーマ(the-thor)の影響を完全排除
   ============================================ */

/* 親テーマのレイアウト・コンテンツ系クラスを非表示/無効化 */
body.single-page .l-wrapper,
body.single-page .l-main,
body.single-page .l-sidebar,
body.single-page .wider,
body.single-page .container,
body.single-page .viral,
body.single-page .prevNext,
body.single-page .snsFollow,
body.single-page .postCta,
body.single-page .social-top,
body.single-page .social-bottom,
body.single-page .dividerTop,
body.single-page .dividerBottom {
  all: unset;
  display: none !important;
}

.quick-ai {
  display: none !important;
}

/* 独自コンテンツ領域のリセット */
.single-breadcrumb,
.single-breadcrumb *,
.single-container,
.single-cta,
.single-cta *,
.single-related,
.single-related * {
  all: revert;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 親テーマの見出し・本文スタイルを上書きリセット */
body.single-page .heading,
body.single-page .heading-primary,
body.single-page .heading-secondary,
body.single-page .dateList,
body.single-page .eyecatch,
body.single-page .postContents,
body.single-page .content {
  all: unset;
  display: none !important;
}

body.single-page {
  margin: 0;
  background: #FBF6EE;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 見出し内強調をリセット */

body.single-page .single-article__content h2 strong {
  font-weight: normal;
}

/* ============================================
   Breadcrumb
   ============================================ */
.single-breadcrumb {
  background: var(--color-primary);
  height: clamp(60px, calc(43px + 2.24vw), 86px);
  display: flex;
  align-items: center;
}

.single-breadcrumb__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 clamp(161px, calc(115px + 5.99vw), 230px);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: clamp(11px, calc(8px + 0.417vw), 16px);
  line-height: 1;
  letter-spacing: 0.8px;
  color: #fff;
}

.single-breadcrumb__inner a {
  color: #fff;
  text-decoration: none;
}

.single-breadcrumb__inner a:hover {
  opacity: 0.7;
}

.single-breadcrumb__sep {
  display: inline-block;
  width: 6px;
  height: 14px;
  margin: 0 15px;
  position: relative;
}

.single-breadcrumb__sep::after {
  content: '';
  display: block;
  width: 6px;
  height: 14px;
  border-right: 2px solid #fff;
  transform: skewX(-20deg);
}

.single-breadcrumb__current {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================
   Main Container Layout
   ============================================ */
.single-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: clamp(63px, calc(45px + 2.344vw), 90px) clamp(161px, calc(115px + 5.99vw), 230px) 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: clamp(70px, calc(50px + 2.604vw), 100px);
  row-gap: 0;
}

/* ============================================
   Article Area
   ============================================ */
.single-article {
  flex: 1;
  max-width: 1000px;
  min-width: 0;
  order: 1;
}

/* --- Title Section --- */
.single-article__header {
  margin-bottom: clamp(50px, calc(36px + 1.823vw), 70px);
}

.single-article__date {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, calc(10px + 0.521vw), 20px);
  line-height: 1;
  color: #B4B4B4;
  margin-bottom: clamp(18px, calc(13px + 0.651vw), 25px);
}

.single-article__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, calc(16px + 0.833vw), 32px);
  line-height: clamp(42px, calc(30px + 1.563vw), 60px);
  letter-spacing: 1.6px;
  color: #333;
  margin-bottom: clamp(14px, calc(10px + 0.521vw), 20px);
}

.single-article__categories {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, calc(8px + 0.391vw), 15px);
}

.single-category-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(32px, calc(23px + 1.172vw), 45px);
  padding: 0 clamp(21px, calc(15px + 0.781vw), 30px);
  border: 1.5px solid var(--color-primary);
  border-radius: 50px;
  background: #FBF6EE;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, calc(8px + 0.417vw), 16px);
  line-height: 1;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
}

.single-category-tag:hover {
  background: var(--color-primary);
  color: #fff;
}

/* --- Featured Image --- */
.single-article__eyecatch {
  margin-bottom: clamp(56px, calc(40px + 2.083vw), 80px);
}

.single-article__eyecatch img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: clamp(420px, calc(300px + 15.625vw), 600px);
  object-fit: contain;
  display: block;
}

/* ============================================
   Article Content (WordPress the_content)
   ============================================ */
.single-article__content {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  line-height: 2.1875;
  letter-spacing: 0.8px;
  color: var(--color-text, #333);
  margin-bottom: clamp(56px, calc(40px + 2.083vw), 80px);
}

/* --- H2 --- */
.single-article__content h2 {
  font-size: clamp(22px, calc(16px + 0.833vw), 32px);
  line-height: clamp(35px, calc(25px + 1.302vw), 50px);
  letter-spacing: 1.6px;
  color: var(--color-primary);
  border-left: 6px solid var(--color-primary);
  padding-left: clamp(21px, calc(15px + 0.781vw), 30px);
  margin-top: clamp(56px, calc(40px + 2.083vw), 80px);
  margin-bottom: clamp(28px, calc(20px + 1.042vw), 40px);
  scroll-margin-top: 120px;
}

/* --- H3 --- */
.single-article__content h3 {
  font-size: clamp(20px, calc(14px + 0.729vw), 28px);
  line-height: clamp(39px, calc(28px + 1.432vw), 55px);
  letter-spacing: 1.4px;
  color: #333;
  margin-top: clamp(42px, calc(30px + 1.563vw), 60px);
  margin-bottom: clamp(21px, calc(15px + 0.781vw), 30px);
}

/* --- H4 --- */
.single-article__content h4 {
  font-size: clamp(15px, calc(11px + 0.573vw), 22px);
  line-height: clamp(32px, calc(23px + 1.172vw), 45px);
  letter-spacing: 1.1px;
  color: #333;
  padding-left: clamp(39px, calc(28px + 1.432vw), 55px);
  position: relative;
  margin-top: clamp(35px, calc(25px + 1.302vw), 50px);
  margin-bottom: clamp(18px, calc(13px + 0.651vw), 25px);
}

.single-article__content h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: clamp(15px, calc(11px + 0.573vw), 22px);
  width: clamp(28px, calc(20px + 1.042vw), 40px);
  height: 2px;
  background: #333;
}

/* --- Paragraph --- */
.single-page--world-breakfast .single-article__content .has-vivid-cyan-blue-color,
.single-page .has-vivid-cyan-blue-color {
  color: var(--color-primary) !important;
}

.single-page--food .single-article__content .has-vivid-cyan-blue-color {
  color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.single-article__content .has-black-color {
  color: inherit !important;
}

.single-article__content mark {
  background-color: transparent;
  color: inherit;
}

/* 食品成分表カテゴリのみマーカーを有効化 */
.single-page--food .single-article__content mark {
  background-color: mark;
  color: marktext;
}

.single-article__content p {
  font-size: clamp(11px, calc(8px + 0.417vw), 16px);
  line-height: clamp(25px, calc(18px + 0.911vw), 35px);
  letter-spacing: 0.8px;
}

/* --- Images in content --- */
.single-article__content img {
  max-width: 100%;
  max-height: 600px;
  object-fit: contain;
  border-radius: 10px;
}

.single-article__content figure {
  margin: 30px 0;
}

.single-article__content figure img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.single-article__content figcaption {
  font-size: clamp(11px, calc(8px + 0.417vw), 16px);
  line-height: clamp(25px, calc(18px + 0.911vw), 35px);
  letter-spacing: 0.8px;
  color: var(--color-primary);
  background-color: inherit;
  margin-top: 10px;
  text-align: center;
}

.single-page--food  figcaption {
  background-color: #fff;
}

/* --- Consecutive Figure-Divs Row (world breakfast) --- */
.single-article__content .asa-figure-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 40px 0;
  align-items: center;
}

.single-article__content .asa-figure-row>div {
  flex: 1 1 calc(50% - 8px);
  max-width: calc(50% - 8px);
  min-width: 0;
}

.single-article__content .asa-figure-row>div>figure {
  margin: 0;
}

@media (max-width: 600px) {
  .single-article__content .asa-figure-row>div {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* --- Nested Figures Row (figure > figure) --- */
.single-article__content .asa-figure-row--nested {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 40px 0;
  align-items: center;
}

.single-article__content .asa-figure-row--nested>figure {
  flex: 1 1 calc(50% - 8px);
  max-width: calc(50% - 8px);
  min-width: 0;
  margin: 0;
}

@media (max-width: 600px) {
  .single-article__content .asa-figure-row--nested>figure {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* --- Unordered List --- */
.single-article__content ul {
  background: #fff;
  padding: clamp(32px, calc(23px + 1.172vw), 45px) clamp(42px, calc(30px + 1.563vw), 60px);
  list-style: none;
  border-radius: 0;
}

.single-article__content ul li {
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.8px;
  padding-left: 25px;
  position: relative;
  margin-bottom: 20px;
}

.single-article__content ul li:last-child {
  margin-bottom: 0;
}

.single-article__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* --- Ordered List --- */
.single-article__content ol {
  background: #fff;
  padding: clamp(32px, calc(23px + 1.172vw), 45px) clamp(42px, calc(30px + 1.563vw), 60px);
  list-style: none;
  counter-reset: ol-counter;
  border-radius: 0;
}

.single-article__content ol li {
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.8px;
  padding-left: 50px;
  position: relative;
  margin-bottom: 20px;
}

.single-article__content ol li:last-child {
  margin-bottom: 0;
}

.single-article__content ol li::before {
  counter-increment: ol-counter;
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--color-primary);
  line-height: 1;
}

/* --- Blockquote --- */
.single-article__content blockquote {
  background: #fff;
  border-left: 4px solid var(--color-primary);
  padding: clamp(21px, calc(15px + 0.781vw), 30px) clamp(28px, calc(20px + 1.042vw), 40px);
  margin: clamp(28px, calc(20px + 1.042vw), 40px) 0;
  font-style: normal;
}

/* --- Table --- */
.single-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

.single-article__content table th,
.single-article__content table td {
  border: 1px solid #ddd;
  padding: 12px 16px;
  text-align: left;
}

.single-article__content table th {
  background: var(--color-primary);
  color: #fff;
}

/* --- Links in content --- */
.single-article__content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.single-article__content a:hover {
  opacity: 0.7;
}

/* ============================================
   Paywall Preview (3 blocks visible)
   ============================================ */
.single-article__preview {
  position: relative;
  overflow: hidden;
}

.single-article__preview-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15vh;
  background: linear-gradient(to bottom, rgba(251, 246, 238, 0) 0%, rgba(251, 246, 238, 1) 100%);
  pointer-events: none;
}

/* ============================================
   Login Menu (Paywall)
   ============================================ */
.single-article__login {
  background: #FFEB82;
  padding: clamp(40px, calc(29px + 1.458vw), 56px) clamp(30px, calc(21px + 1.172vw), 43px);
  text-align: center;
  margin-top: clamp(40px, calc(29px + 1.432vw), 56px);
}

.single-article__login .bl_lock_txt {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, calc(10px + 0.521vw), 20px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333;
  margin-bottom: clamp(20px, calc(14px + 0.781vw), 28px);
}

.single-article__login .bl_lock_txt span {
  display: inline;
}

.single-article__login .mail_magazine_register,
.single-article__login .bl_lock a[href="/member-regist"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(240px, calc(171px + 8.984vw), 343px);
  height: clamp(56px, calc(40px + 2.083vw), 80px);
  background: var(--color-primary);
  color: #fff;
  border-radius: clamp(37px, calc(27px + 1.389vw), 53px);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, calc(10px + 0.469vw), 18px);
  text-decoration: none;
  transition: opacity 0.3s;
  margin-bottom: clamp(18px, calc(13px + 0.651vw), 25px);
}

.single-article__login .mail_magazine_register:hover,
.single-article__login .bl_lock a[href="/member-regist"]:hover {
  opacity: 0.8;
}

.single-article__login>span,
.single-article__login .bl_lock_txt+span {
  display: block;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(12px, calc(9px + 0.391vw), 16px);
  line-height: 1.8;
  color: #666;
  margin-bottom: clamp(16px, calc(11px + 0.651vw), 23px);
}

.single-article__login .bl_login {
  max-width: clamp(320px, calc(229px + 11.849vw), 456px);
  margin: 0 auto;
}

.single-article__login .bl_login_result {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(13px, calc(10px + 0.469vw), 18px);
  color: #333;
  margin-bottom: 16px;
}

.single-article__login .bl_login_formParts {
  margin-bottom: 12px;
  text-align: left;
}

.single-article__login .bl_login_txt {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(12px, calc(9px + 0.391vw), 16px);
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}

.single-article__login .bl_login_txt .is_required {
  color: var(--color-primary);
  margin-left: 4px;
}

.single-article__login .bl_login_input input {
  width: 100%;
  height: clamp(42px, calc(30px + 1.563vw), 60px);
  border: 1.5px solid #ccc;
  border-radius: 6px;
  padding: 0 14px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(13px, calc(10px + 0.469vw), 18px);
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.single-article__login .bl_login_input input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.single-article__login .bl_login_submit {
  margin-top: clamp(16px, calc(11px + 0.651vw), 23px);
}

.single-article__login .bl_login_submit .btn__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(48px, calc(34px + 1.823vw), 68px);
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: clamp(32px, calc(23px + 1.172vw), 45px);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, calc(10px + 0.469vw), 18px);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.single-article__login .bl_login_submit .btn__link:hover {
  opacity: 0.8;
}

.single-article__login .bl_login_submit .btn__link.btn__link-normal {
  background: #fff;
  color: var(--color-primary) !important;
  border: 1.5px solid var(--color-primary);
}

.single-article__login .bl_login_submit .btn__link.btn__link-normal:hover {
  background: var(--color-primary) !important;
  color: #fff !important;
}

/* ============================================
   Back to List Button
   ============================================ */
.single-article__back {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(42px, calc(30px + 1.563vw), 60px);
}

.btn-back-list{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: clamp(266px, calc(190px + 9.896vw), 380px);
  height: clamp(74px, calc(53px + 2.734vw), 105px);
  background: var(--color-primary);
  color: #fff;
  border-radius: clamp(49px, calc(35px + 1.823vw), 70px);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, calc(11px + 0.573vw), 22px);
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.3s;
}

.single-article__content a.wp-element-button,
.single-article__content .now-read{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: clamp(266px, calc(190px + 9.896vw), 380px);
  height: clamp(74px, calc(53px + 2.734vw), 105px);
  background: var(--color-primary);
  color: #fff;
  border-radius: clamp(49px, calc(35px + 1.823vw), 70px);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, calc(11px + 0.573vw), 22px);
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.3s;
  margin: 0 auto;
}

.single-article__content a.wp-element-button{
  color: #fff;
}

.single-article__content .now-read{
  background-color: #fff;
  color: var(--color-primary);
  border: 2px var(--color-primary) solid;
  width: 75%;
  margin-top: 60px;
}

.btn-back-list:hover {
  opacity: 0.8;
}

.btn-back-list__arrow {
  width: clamp(18px, calc(13px + 0.651vw), 25px);
  height: 8px;
  position: absolute;
  top: 50%;
  right: clamp(32px, calc(23px + 1.172vw), 45px);
  transform: translateY(-50%);
}

/* ============================================
   Share Section
   ============================================ */
.single-article__share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, calc(13px + 0.651vw), 25px);
  margin-bottom: clamp(70px, calc(50px + 2.604vw), 100px);
}

.single-article__share-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(13px, calc(9px + 0.469vw), 18px);
  line-height: 1;
  letter-spacing: 1.8px;
  color: #333;
  text-transform: uppercase;
}

.single-article__share-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-icon img {
  width: 40px;
  height: 40px;
  display: block;
}

.share-icon--x img {
  width: 34px;
  height: 35px;
}

.share-icon--copy {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.share-icon--copy:hover {
  opacity: 0.6;
}

.share-icon--copy .copy-tooltip {
  position: absolute;
  top: 50%;
  left: calc(100% + 8px);
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 12px;
  color: #fff;
  background: #333;
  border-radius: 4px;
  padding: 4px 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.share-icon--copy.is-copied .copy-tooltip {
  opacity: 1;
}

.share-icon--sp-only {
  display: none;
}

/* ============================================
   Sidebar (layout only — visual styles in common.css)
   ============================================ */
.sidebar {
  flex: 0 0 min(18.75vw, 360px);
  width: min(18.75vw, 360px);
  min-width: 0;
  order: 2;
}

/* ============================================
   CTA Section
   ============================================ */
.single-cta {
  flex-basis: 100%;
  order: 3;
}

.single-cta__inner {
  background: #FFEB82;
  width: 100%;
  max-width: min(1000px, calc(100% - min(18.75vw, 360px) - clamp(70px, calc(50px + 2.604vw), 100px)));
  height: clamp(212px, calc(152px + 7.891vw), 303px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  padding: 0 clamp(20px, 5.208vw, 100px);
  position: relative;
}

.single-cta__body {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, calc(13px + 0.651vw), 25px);
}

.single-cta__heading {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.458vw, 28px);
  line-height: 1;
  letter-spacing: clamp(1.6px, 0.1167vw, 2.24px);
  color: var(--color-primary);
  white-space: nowrap;
}

.single-cta__text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.042vw, 20px);
  line-height: clamp(32px, 2.344vw, 45px);
  letter-spacing: clamp(0.7px, 0.0521vw, 1px);
  color: #333;
}

.single-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47.5%;
  max-width: 380px;
  height: clamp(74px, calc(53px + 2.734vw), 105px);
  background: var(--color-primary);
  color: #fff;
  border-radius: clamp(49px, calc(35px + 1.823vw), 70px);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.146vw, 22px);
  text-decoration: none;
  text-align: center;
  transition: opacity 0.3s;
  padding: 0 40px;
  box-sizing: border-box;
}

.single-cta__btn:hover {
  opacity: 0.8;
}

/* ============================================
   Related Articles
   ============================================ */
.single-related {
  flex-basis: auto;
  width: calc(100% - min(18.75vw, 360px) - clamp(70px, calc(50px + 2.604vw), 100px));
  order: 4;
  margin-top: clamp(70px, calc(50px + 2.604vw), 100px);
  padding-bottom: clamp(84px, calc(60px + 3.125vw), 120px);
  max-width: 985px;
}

.single-related--no-cta {
  margin-top: 0;
}

.single-related__heading {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, calc(10px + 0.521vw), 20px);
  margin-bottom: clamp(10px, calc(53px + 0.391vw), 60px);
  padding-bottom: clamp(10px, calc(28px + 0.391vw), 35px);
  border-bottom: 1px solid #A0A0A0;
}

.single-related__heading-en {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, calc(16px + 0.833vw), 32px);
  line-height: 1;
  letter-spacing: 3.2px;
  color: #333;
  text-transform: uppercase;
}

.single-related__heading-ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, calc(10px + 0.521vw), 20px);
  line-height: 1;
  letter-spacing: 1.6px;
  color: var(--color-primary);
}

.single-related__slider-wrap {
  position: relative;
}

.single-related__arrow {
  width: 60px;
  height: 60px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.single-related__arrow--prev {
  left: -2.5rem;
  top: calc(50% - 1rem);
}

.single-related__arrow--next {
  right: -2.5rem;
  top: calc(50% - 1rem);
}

.single-related__arrow img {
  width: 60px;
  height: 60px;
  display: block;
}

.single-related__slider {
  display: flex;
  gap: 4%;
  overflow: hidden;
  width: 100%;
}

/* --- Related Card --- */
.related-card {
  width: 48%;
  flex-shrink: 0;
}

.related-card__image-link {
  display: block;
  margin-bottom: -10px;
  position: relative;
  z-index: 1;
}

.related-card__image {
  width: 100%;
  aspect-ratio: 473 / 313;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.related-card__body {
  background: #fff;
  padding: clamp(35px, calc(25px + 1.302vw), 50px);
  position: relative;
  height: 100%;
}

.related-card__date {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.8px;
  color: #B4B4B4;
  display: block;
  margin-bottom: 15px;
}

.related-card__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, calc(10px + 0.521vw), 20px);
  line-height: 2;
  letter-spacing: 0.6px;
  color: #333;
  margin-bottom: clamp(10px, calc(8px + 0.391vw), 15px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card__title a {
  color: #333;
  text-decoration: none;
}

.related-card__excerpt {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, calc(8px + 0.417vw), 16px);
  line-height: clamp(25px, calc(18px + 0.911vw), 35px);
  letter-spacing: 0.8px;
  color: #333;
  margin-bottom: clamp(14px, calc(10px + 0.521vw), 20px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-card__categories .category-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border: 1.5px solid var(--color-primary);
  border-radius: 40px;
  background: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 14px;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
}

/* ============================================
   世界の朝ごはんめぐり — Asagohan Tag Styles
   ============================================ */

/* --- Breadcrumb (yellow variant) --- */
.single-breadcrumb--asagohan {
  background: #FFEB82;
}

.single-breadcrumb--asagohan .single-breadcrumb__inner {
  color: #333;
}

.single-breadcrumb--asagohan .single-breadcrumb__inner a {
  color: #333;
}

/* --- Country Name Banner --- */
.asagohan-country {
  background: var(--color-primary);
  height: clamp(63px, calc(45px + 2.344vw), 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.asagohan-country__name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, calc(14px + 0.729vw), 28px);
  line-height: 1;
  letter-spacing: 1.4px;
  color: #FBF6EE;
  text-align: center;
}

/* --- Author Credit --- */
.asagohan-credit {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, calc(9px + 0.469vw), 18px);
  line-height: clamp(28px, calc(20px + 1.042vw), 40px);
  letter-spacing: 0.9px;
  color: #333;
  margin-bottom: 0;
}

/* --- Table of Contents (TOC) --- */
.asagohan-toc {
  background: #fff;
  padding: clamp(35px, calc(25px + 1.302vw), 50px) clamp(56px, calc(40px + 2.083vw), 80px);
  margin-bottom: clamp(56px, calc(40px + 2.083vw), 80px);
}

.asagohan-toc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.asagohan-toc__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(17px, calc(12px + 0.625vw), 24px);
  line-height: 1;
  letter-spacing: 1.2px;
  color: #333;
  margin: 0;
}

.asagohan-toc__toggle {
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.asagohan-toc__toggle-icon {
  display: block;
  width: 16px;
  height: 10px;
  position: relative;
}


.asagohan-toc__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0 0 25px;
}

.asagohan-toc__list {
  list-style: none;
  counter-reset: none;
  padding: 0;
  margin: 0;
}

.asagohan-toc.is-closed .asagohan-toc__list {
  display: none;
}

.asagohan-toc__item {
  margin-bottom: 5px;
}

.asagohan-toc__item>a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, calc(9px + 0.469vw), 18px);
  line-height: clamp(28px, calc(20px + 1.042vw), 40px);
  letter-spacing: 0.9px;
  color: #333;
  text-decoration: none;
}

.asagohan-toc__item>a:hover {
  color: var(--color-primary);
}

.asagohan-toc__sublist {
  list-style: none;
  padding: 0 0 0 25px;
  margin: 0;
}

.asagohan-toc__subitem>a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.8px;
  color: #333;
  text-decoration: none;
}

.asagohan-toc__subitem>a:hover {
  color: var(--color-primary);
}

/* --- SNS Section --- */
.asagohan-sns {
  display: flex;
  align-items: stretch;
  margin-bottom: clamp(35px, calc(25px + 1.302vw), 50px);
  overflow: hidden;
}

.asagohan-sns__label {
  background: var(--color-primary);
  width: clamp(224px, calc(160px + 8.333vw), 320px);
  min-height: clamp(84px, calc(60px + 3.125vw), 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.asagohan-sns__label span {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, calc(10px + 0.521vw), 20px);
  line-height: 2;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
}

.asagohan-sns__body {
  background: #F5F0E8;
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(14px, calc(10px + 0.521vw), 20px) clamp(28px, calc(20px + 1.042vw), 40px);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, calc(10px + 0.521vw), 20px);
  line-height: 2;
  letter-spacing: 1px;
  color: #333;
}

.asagohan-sns__body a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* --- Author Profile --- */
.asagohan-author {
  background: #fff;
  padding: clamp(35px, calc(25px + 1.302vw), 50px) clamp(56px, calc(40px + 2.083vw), 80px);
  margin-bottom: clamp(35px, calc(25px + 1.302vw), 50px);
}

.asagohan-author__header {
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, calc(20px + 1.042vw), 40px);
  margin-bottom: clamp(21px, calc(15px + 0.781vw), 30px);
}

.asagohan-author__photo {
  width: clamp(111px, calc(79px + 4.115vw), 158px);
  height: clamp(88px, calc(63px + 3.255vw), 125px);
  object-fit: cover;
  flex-shrink: 0;
}

.asagohan-author__meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.asagohan-author__name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, calc(14px + 0.729vw), 28px);
  line-height: 1;
  letter-spacing: 1.4px;
  color: #333;
  margin: 0;
}

.asagohan-author__reading {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.8px;
  color: #333;
}

.asagohan-author__role {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.9px;
  color: #B4B4B4;
  margin: 5px 0 0;
}

.asagohan-author__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0 0 30px;
}

.asagohan-author__bio {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.8px;
  color: #333;
}

.asagohan-author__bio a {
  color: var(--color-primary);
  text-decoration: underline;
}

.asagohan-author__bio p {
  margin-bottom: 20px;
}

.asagohan-author__bio p:last-child {
  margin-bottom: 0;
}

/* --- Magazine / Book Section --- */
.asagohan-book {
  margin-bottom: 60px;
}

.asagohan-book__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0;
}

.asagohan-book__inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(42px, calc(30px + 1.563vw), 60px);
  padding: clamp(35px, calc(25px + 1.302vw), 50px) clamp(56px, calc(40px + 2.083vw), 80px);
}

.asagohan-book__cover {
  width: clamp(166px, calc(119px + 6.172vw), 237px);
  height: clamp(224px, calc(160px + 8.333vw), 320px);
  object-fit: cover;
  flex-shrink: 0;
}

.asagohan-book__info {
  flex: 1;
}

.asagohan-book__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, calc(14px + 0.729vw), 28px);
  line-height: 1.14;
  letter-spacing: 1.4px;
  color: #333;
  margin: 0 0 clamp(21px, calc(15px + 0.781vw), 30px);
}

.asagohan-book__details {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.9px;
  color: #333;
}

.asagohan-book__details p {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 15px;
}

.asagohan-book__details p:last-child {
  margin-bottom: 0;
}

.asagohan-book__details p::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-right: 15px;
  flex-shrink: 0;
}

/* ============================================
   食品成分表 (food_composition_table) Styles
   ============================================ */

/* --- Author Profile --- */
.food-author {
  background: #fff;
  padding: clamp(56px, calc(40px + 2.083vw), 80px);
  margin-bottom: clamp(35px, calc(25px + 1.302vw), 50px);
}

.food-author__header {
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, calc(20px + 1.042vw), 40px);
  margin-bottom: clamp(21px, calc(15px + 0.781vw), 30px);
}

.food-author__photo {
  width: clamp(69px, calc(49px + 2.552vw), 98px);
  height: clamp(88px, calc(63px + 3.255vw), 125px);
  object-fit: cover;
  flex-shrink: 0;
}

.food-author__meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.food-author__name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, calc(14px + 0.729vw), 28px);
  line-height: 1;
  letter-spacing: 1.4px;
  color: #333;
  margin: 0;
}

.food-author__reading {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.8px;
  color: #333;
}

.food-author__role {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.9px;
  color: #B4B4B4;
  margin: 5px 0 0;
}

.food-author__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0 0 30px;
}

.food-author__bio {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.8px;
  color: #333;
}

.food-author__bio a {
  color: var(--color-primary);
  text-decoration: underline;
}

.food-author__bio p {
  margin-bottom: 20px;
}

.food-author__bio p:last-child {
  margin-bottom: 0;
}

/* --- Table of Contents (TOC) --- */
.food-toc {
  background: #fff;
  padding: clamp(35px, calc(25px + 1.302vw), 50px) clamp(56px, calc(40px + 2.083vw), 80px);
  margin-bottom: clamp(56px, calc(40px + 2.083vw), 80px);
}

.food-toc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.food-toc__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(17px, calc(12px + 0.625vw), 24px);
  line-height: 1;
  letter-spacing: 1.2px;
  color: #333;
  margin: 0;
}

.food-toc__toggle {
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.food-toc__toggle-icon {
  display: block;
  width: 16px;
  height: 10px;
  position: relative;
}

.food-toc__toggle-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateX(-50%) rotate(45deg);
  transition: transform 0.3s;
}

.food-toc.is-closed .food-toc__toggle-icon::before {
  transform: translateX(-50%) rotate(-135deg);
  top: 4px;
}

.food-toc__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0 0 25px;
}

.food-toc__list {
  list-style: none;
  counter-reset: none;
  padding: 0;
  margin: 0;
}

.food-toc.is-closed .food-toc__list {
  display: none;
}

.food-toc__item {
  margin-bottom: 25px;
}

.food-toc__item>a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, calc(9px + 0.469vw), 18px);
  line-height: clamp(28px, calc(20px + 1.042vw), 40px);
  letter-spacing: 0.9px;
  color: #333;
  text-decoration: none;
}

.food-toc__item>a:hover {
  color: var(--color-primary);
}

.food-toc__sublist {
  list-style: none;
  padding: 0 0 0 25px;
  margin: 0;
}

.food-toc__subitem>a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.8px;
  color: #333;
  text-decoration: none;
}

.food-toc__subitem>a:hover {
  color: var(--color-primary);
}

/* --- Food: Content overrides for ul bullet color --- */
.single-page--food .single-article__content ul li::before {
  background: #333;
}

/* --- Food: Annotation text (small/muted notes) --- */
.single-page--food .single-article__content .food-annotation,
.single-page--food .single-article__content small {
  font-size: 16px;
  line-height: 35px;
  color: #A0A0A0;
  letter-spacing: 0.8px;
}

/* --- Food: Table wrapper (white box) --- */
.single-page--food .single-article__content .food-table-wrap {
  background: #fff;
  padding: clamp(28px, calc(20px + 1.042vw), 40px);
  margin: clamp(28px, calc(20px + 1.042vw), 40px) 0;
  overflow-x: auto;
}

.single-page--food .single-article__content .food-table-wrap table {
  margin: 0;
}

/* --- Food: Table heading (h3 used as table title) --- */
.single-page--food .single-article__content h3 {
  font-size: clamp(20px, calc(14px + 0.729vw), 28px);
  line-height: clamp(35px, calc(25px + 1.302vw), 50px);
  letter-spacing: 1.4px;
  color: #333;
}

/* --- Pagination --- */
.food-pagination {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.food-pagination__inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.food-pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1.5px solid #c46a4a;
  border-radius: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  color: #c46a4a;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.food-pagination__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #c46a4a;
  text-decoration: none;
}

.food-pagination__item a:hover {
  background: #c46a4a;
  color: #fff;
}

.food-pagination__item--current {
  background: #c46a4a;
  color: #fff;
  border-color: #c46a4a;
}

/* ============================================
   スマートミール (smart_meal) Styles
   ============================================ */

/* --- Hero Image --- */
.smart-hero {
  margin-bottom: 0;
}

.smart-hero__image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  aspect-ratio: 1000 / 667;
  object-fit: cover;
  display: block;
}

/* --- Shop Name Banner --- */
.smart-shop-name {
  background: var(--color-primary);
  /* height: clamp(63px, calc(45px + 2.344vw), 90px); */
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(49px, calc(35px + 1.823vw), 70px);
  padding: 12px 20px;
  box-sizing: border-box;
}

.smart-shop-name__text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 1.2em;
  letter-spacing: 1.4px;
  color: #FBF6EE;
  text-align: center;
  margin: 0;
}

/* --- Shop Info Section --- */
.smart-shop-info {
  margin-bottom: clamp(56px, calc(40px + 2.083vw), 80px);
}

.smart-shop-info__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

.smart-shop-info__left,
.smart-shop-info__right {
  position: relative;
  z-index: 1;
}

.smart-shop-info__address a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* --- Nutrition Table --- */
.smart-nutrition {
  background: #FFEB82;
  width: 100%;
  max-width: 1000px;
  padding: clamp(35px, calc(25px + 1.302vw), 50px) clamp(28px, calc(20px + 1.042vw), 40px);
  padding-bottom: clamp(35px, calc(24px + 2.913vw), 80px);
  margin-bottom: clamp(56px, calc(40px + 2.083vw), 80px);
  box-sizing: border-box;
}

.smart-nutrition__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, calc(11px + 0.573vw), 22px);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: clamp(21px, calc(15px + 0.781vw), 30px);
  background-image: url(../img/top/nutrition_title_l.png), url(../img/top/nutrition_title_r.png);
  background-repeat: no-repeat;
  background-position: left bottom, right bottom;
  background-size: auto 100%;
  width: fit-content;
  padding: 0 50px;
  margin-left: auto;
  margin-right: auto;
}

.smart-nutrition__tables {
  display: flex;
  /* gap: clamp(28px, calc(20px + 1.042vw), 40px); */
  justify-content: center;
}

.smart-nutrition__table {
  width: 100%;
  max-width: 440px;
  border-collapse: collapse;
}

.smart-nutrition__table th,
.smart-nutrition__table td {
  padding: clamp(10px, calc(8px + 0.391vw), 15px) clamp(14px, calc(10px + 0.521vw), 20px);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, calc(9px + 0.469vw), 18px);
  border-bottom: 1px solid #ddd;
}

.smart-nutrition__table tr:last-of-type td,
.smart-nutrition__table tr:last-of-type th {
  border-bottom: none;
}

.smart-nutrition__table th {
  background: var(--color-primary);
  color: #fff;
  text-align: left;
  width: 50%;
}

.smart-nutrition__table td {
  background: #fff;
  color: #333;
  text-align: left;
}

/* --- PDF Section --- */
.smart-pdf {
  margin-bottom: clamp(56px, calc(40px + 2.083vw), 80px);
}

.smart-pdf__heading {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, calc(16px + 0.833vw), 32px);
  line-height: clamp(35px, calc(25px + 1.302vw), 50px);
  letter-spacing: 1.6px;
  color: var(--color-primary);
  border-left: 6px solid var(--color-primary);
  padding-left: clamp(21px, calc(15px + 0.781vw), 30px);
  margin-bottom: clamp(28px, calc(20px + 1.042vw), 40px);
}

.smart-pdf__inner {
  display: flex;
  align-items: center;
  gap: clamp(28px, calc(20px + 1.042vw), 40px);
  justify-content: space-between;
}

.smart-pdf__image-wrap {
  flex-shrink: 0;
}

.smart-pdf__image {
  width: clamp(150px, calc(42.19vw - 270px), 540px);
  height: auto;
  max-height: 733px;
  object-fit: contain;
  display: block;
}

.smart-pdf__actions {
  display: flex;
  flex-direction: column;
  gap: clamp(21px, calc(15px + 0.781vw), 30px);
  flex: 1;
}

.smart-pdf__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  height: clamp(84px, calc(60px + 3.125vw), 120px);
  border-radius: 9999px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, calc(11px + 0.573vw), 22px);
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
  padding: 0 30px;
  box-sizing: border-box;
}

.smart-pdf__btn:hover {
  opacity: 0.8;
}

.smart-pdf__btn--download {
  background: #fff;
  color: var(--color-primary);
  border: 2.5px solid var(--color-primary);
}

.smart-pdf__btn--official {
  background: var(--color-primary);
  color: #fff;
  border: none;
}

.smart-pdf__instagram {
  width: 100%;
  max-width: 380px;
}

.smart-pdf__instagram-divider {
  border: none;
  border-top: 1px solid #A0A0A0;
  margin: 0;
}

.smart-pdf__instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: clamp(14px, calc(10px + 0.521vw), 20px) 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, calc(11px + 0.573vw), 22px);
  line-height: clamp(20px, calc(14px + 0.729vw), 28px);
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}

.smart-pdf__instagram-link:hover {
  opacity: 0.7;
}

.smart-pdf__instagram-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

/* --- Certification Section --- */
.smart-certification {
  margin-bottom: 30px;
}

.smart-certification__box {
  background: #fff;
  width: 100%;
  max-width: 1000px;
  padding: clamp(42px, calc(30px + 1.563vw), 60px);
  padding-bottom: clamp(35px, calc(22px + 3.560vw), 90px);
  text-align: center;
  box-sizing: border-box;
}

.smart-certification__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, calc(11px + 0.573vw), 22px);
  color: var(--color-primary);
  margin-bottom: clamp(21px, calc(15px + 0.781vw), 30px);
  background-image: url(../img/top/nutrition_title_l.png), url(../img/top/nutrition_title_r.png);
  background-repeat: no-repeat;
  background-position: left bottom, right bottom;
  background-size: auto 50%;
  width: fit-content;
  padding: 0 50px;
  margin-left: auto;
  margin-right: auto;
}

.smart-certification__deco {
  color: var(--color-primary);
  margin: 0 5px;
}

.smart-certification__text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, calc(8px + 0.417vw), 16px);
  line-height: clamp(25px, calc(18px + 0.911vw), 35px);
  color: #333;
  max-width: 880px;
  margin: 0 auto clamp(28px, calc(20px + 1.042vw), 40px);
  text-align: center;
}

.smart-certification__buttons {
  display: flex;
  justify-content: center;
  gap: clamp(21px, calc(15px + 0.781vw), 30px);
}

.smart-certification__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  height: clamp(84px, calc(60px + 3.125vw), 120px);
  background: var(--color-primary);
  color: #fff;
  border-radius: clamp(49px, calc(35px + 1.823vw), 70px);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, calc(11px + 0.573vw), 22px);
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.3s;
}

.smart-certification__btn:hover {
  opacity: 0.8;
}

/* --- Supervision --- */
.smart-supervision {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, calc(8px + 0.417vw), 16px);
  line-height: clamp(25px, calc(18px + 0.911vw), 35px);
  letter-spacing: 0.8px;
  color: #333;
  max-width: 850px;
  margin-bottom: clamp(56px, calc(40px + 2.083vw), 80px);
}

.smart-supervision p::first-letter {
  color: var(--color-primary);
}

/* --- Smart: Content image full-width for menu photos --- */
.single-page--smart .single-article__content {
  display: none;
}

.single-page--smart .single-article__content figure img,
.single-page--smart .single-article__content>img {
  width: 100%;
  max-height: 752px;
  object-fit: cover;
  border-radius: 0;
}

/* --- Smart: Menu subtitle --- */
.single-page--smart .single-article__content h3 {
  font-size: clamp(20px, calc(14px + 0.729vw), 28px);
  line-height: clamp(35px, calc(25px + 1.302vw), 50px);
  letter-spacing: 1.4px;
  color: #333;
}

/* --- Instagram Button (PDF Section) --- */
.smart-pdf__btn--instagram {
  background: var(--color-primary);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  height: clamp(74px, calc(53px + 2.734vw), 105px);
  border-radius: clamp(49px, calc(35px + 1.823vw), 70px);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, calc(11px + 0.573vw), 22px);
  text-decoration: none;
  transition: opacity 0.3s;
}

.smart-pdf__btn--instagram:hover {
  opacity: 0.8;
}

.smart-pdf__btn--instagram svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.smart-pdf__btn--instagram svg rect,
.smart-pdf__btn--instagram svg circle,
.smart-pdf__btn--instagram svg path {
  stroke: #fff;
}

/* --- Nutrition Decoration --- */
.smart-nutrition__title .smart-nutrition__deco {
  font-size: 1.1em;
  vertical-align: middle;
  display: inline-block;
  margin: 0 4px;
}

/* ============================================
   スマートミール — 目次リスト（JSが番号付きテキストを生成するため
   olのデフォルト番号を非表示にする）
   ============================================ */
.single-page--smart .food-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-page--smart .food-toc__sublist {
  list-style: none;
  padding: 0 0 0 25px;
  margin: 0;
}

/* ============================================
   スマートミール — 本文内コンテンツ上書き
   メニュー箇所はulで出力されるため丸アイコン色を統一
   ============================================ */
.single-page--smart .single-article__content ul li::before {
  background: var(--color-primary);
}

/* ============================================
   スマートミール — 認証セクション デコレーション行
   ============================================ */
.smart-certification__deco-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-primary);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, calc(9px + 0.469vw), 18px);
  margin-bottom: clamp(14px, calc(10px + 0.521vw), 20px);
}

/* ============================================
   スマートミール — 栄養表 タイトルデコ
   ============================================ */
.smart-nutrition__title-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.smart-nutrition__deco-icon {
  color: var(--color-primary);
  font-size: 1.1em;
  flex-shrink: 0;
}

/* ============================================
   スマートミール — 区切り線
   ============================================ */
.smart-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: clamp(28px, calc(20px + 1.042vw), 40px) 0;
}

/* ============================================
   Responsive — Tablet (max-width: 1199px)
   ============================================ */
@media (max-width: 1199px) {
  .single-container {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 40px 30px 0;
    gap: 50px;
  }

  .single-article,
  .single-cta,
  .single-related,
  .sidebar {
    order: unset;
  }

  .single-cta,
  .single-related {
    flex-basis: auto;
  }

  .sidebar {
    flex: none;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    overflow: visible;
  }

  .single-breadcrumb__inner {
    padding: 0 30px;
  }

  .single-related {
    padding-bottom: 60px;
    width: 100%;
    max-width: 100%;
  }

  .single-cta {
    padding: 0;
  }

  .single-cta__inner {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    height: auto;
    padding: 40px;
    text-align: center;
    gap: 25px;
  }

  .single-cta__body {
    align-items: center;
  }

  .food-author {
    padding: 40px;
  }

  .food-author__header {
    gap: 20px;
  }

  .single-related__slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .related-card {
    scroll-snap-align: start;
  }

  .food-toc {
    padding: 35px 40px;
  }

  /* Smart Meal — Tablet */
  .smart-shop-info__box {
    flex-direction: column;
    padding: 30px;
  }

  .smart-shop-info__left {
    max-width: 100%;
  }

  .smart-shop-info__right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .smart-pdf__inner {
    flex-direction: column;
  }

  .smart-pdf__image {
    width: 100%;
    max-width: 540px;
  }

  .smart-pdf__actions {
    align-items: center;
    width: 100%;
  }

  .smart-certification__buttons {
    flex-direction: column;
    align-items: center;
  }

  .smart-nutrition__tables {
    flex-direction: column;
    align-items: center;
  }

  .smart-nutrition__table {
    max-width: 100%;
  }

  .smart-nutrition__table tr:last-of-type td,
  .smart-nutrition__table tr:last-of-type th {
    border-bottom: 1px solid #ddd;
  }

  /* Food Composition — Tablet */
  .fc-author-box {
    padding: 35px 30px;
  }

  .fc-toc {
    padding: 35px 40px;
  }
}

/* ===============================
   smart記事 セクション見出し（共通）
   =============================== */
.smart-section-h2 {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  margin-bottom: 40px;
}

.smart-section-h2__bar {
  width: 6px;
  height: 55px;
  background: var(--color-primary);
  flex-shrink: 0;
}

.smart-section-h2__text {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 0;
}

/* ===============================
   料理セクション
   =============================== */
.smart-menu {
  margin-bottom: 60px;
}

.smart-menu__h2-text {
  line-height: 1.5;
}

.smart-menu__price {
  font-size: 20px;
  color: var(--color-text);
  margin-left: 12px;
}

.smart-menu__photo {
  margin-bottom: 60px;
}

.smart-menu__img {
  width: 100%;
  height: auto;
  display: block;
}

.smart-menu__list-wrap {
  background: #fff;
  padding: 45px 60px;
}

.smart-menu__list-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin: 0 0 30px;
}

.smart-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.smart-menu__list-item {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 35px;
  letter-spacing: 0.03em;
  padding-left: 25px;
  position: relative;
  margin-bottom: 20px;
}

.smart-menu__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* ===============================
   インタビューセクション
   =============================== */
.smart-interview {
  margin-bottom: 80px;
}

.smart-interview__h2 {
  margin-bottom: 40px;
}

.smart-interview__name {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin: 0 0 30px;
}

.smart-interview__body p {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 2.1875;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}

/* ============================================================
   スマートミール記事 — 本文内の旧コンテンツ非表示 + 店舗情報修正
   追記先: jefferson/assets/css/single.css の末尾
   ============================================================ */


/* ============================================================
   【1】本文内の旧フォーマット要素を非表示
   .single-article__content 内に残っている重複コンテンツを隠す
   ============================================================ */

/* 本文内の旧コンテンツ非表示 */
body.single-page--smart .single-article__content div[style*="grid-template-columns"] {
  display: none !important;
}

body.single-page--smart .single-article__content>div:not([class]):not([id]):not([style]) {
  display: none !important;
}

body.single-page--smart .single-article__content p:has(> a[href$=".pdf"]:not([class])) {
  display: none !important;
}

body.single-page--smart .single-article__content p[style*="font-size:16px"] {
  display: none !important;
}

body.single-page--smart .single-article__content h1[style] {
  display: none !important;
}

body.single-page--smart .single-article__content>div>div>div {
  display: none !important;
}


/* ============================================================
   【2】店舗情報セクションのレイアウト修正
   ============================================================ */

/* セクション見出し */
.smart-shop-info__heading {
  position: relative;
  padding-left: 1em;
  color: #C46A4A;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.5625;
  letter-spacing: 1.6px;
  border-left: 6px solid var(--color-primary);
  margin-bottom: 40px;
}

/* ボックス本体：左テキスト ＋ 右写真の横並び */
.smart-shop-info__box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 5rem);
  background-color: #fff;
  padding: clamp(2rem, 4vw, 3.75rem) clamp(1.5rem, 3.5vw, 3.25rem);
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* 左カラム（テキスト） */
.smart-shop-info__left {
  flex: 460 1 0;
  min-width: 0;
}

/* 店舗正式名称（オレンジ） */
.smart-shop-info__name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: #C46A4A;
  line-height: 1.667;
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem;
}

/* 区切り線 */
.smart-shop-info__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0.75rem 0;
  width: 100%;
  max-width: 460px;
}

/* 住所テキスト */
.smart-shop-info__address {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(0.8125rem, 1.1vw, 1rem);
  color: #333;
  line-height: 2.1875;
  letter-spacing: 0.05em;
  margin-bottom: clamp(28px, calc(20px + 1.042vw), 40px);
}

/* メモテキスト（オレンジ） */
.smart-shop-info__memo {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(0.8125rem, 1.1vw, 1rem);
  color: #C46A4A;
  line-height: 2.1875;
  letter-spacing: 0.05em;
}

/* SNSアイコンエリア */
.smart-shop-info__sns {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.smart-shop-info__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.smart-shop-info__sns a:hover {
  opacity: 0.7;
}

.smart-shop-info__sns img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* 右カラム（写真） */
.smart-shop-info__right {
  flex: 300 1 0;
  min-width: 0;
}

.smart-shop-info__right:not(:has(*)) {
  display: none;
}

.smart-shop-info__box:has(> .smart-shop-info__right:not(:has(*))) {
  display: block;
}

.smart-shop-info__photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #a0a0a0;
  flex-shrink: 0;
}

.smart-shop-info__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   世界の朝ごはん — Breadcrumb override
   ============================================ */
.single-page--world-breakfast .single-breadcrumb {
  background-color: #c46a4a;
}

.single-page--world-breakfast .single-breadcrumb__inner a,
.single-page--world-breakfast .single-breadcrumb__sep,
.single-page--world-breakfast .single-breadcrumb__current {
  color: #fff;
}

/* ============================================
   世界の朝ごはん — Country Banner
   ============================================ */
.asa-country-banner {
  background-color: #c46a4a;
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 24px;
}

/* ============================================
   世界の朝ごはん — Author Credit
   ============================================ */
.asa-author-credit {
  text-align: left;
  font-size: 0.9em;
  color: #333;
  margin: 30px 0 60px;
}

/* ============================================
   世界の朝ごはん — Greeting Block
   ============================================ */
.asa-greeting {
  border-left: 4px solid #c46a4a;
  padding: 50px 80px 60px;
  margin-bottom: 60px;
  background: #fff;
}

.asa-greeting__text {
  font-size: 1.5em;
  font-weight: bold;
  color: #c46a4a;
  margin: 0 0 8px;
}

.asa-greeting__kana {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.8;
}

/* ============================================
   世界の朝ごはん — SNS Block
   ============================================ */
.asa-sns-block {
  display: flex;
  width: 100%;
  max-width: 1000px;
  height: 120px;
  margin: 40px 0;
  background: #fff;
}

.asa-sns-block__label {
  flex: 0 0 32%;
  max-width: 320px;
  min-width: 180px;
  height: 120px;
  background: #c46a4a;
  clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 50%, calc(100% - 35px) 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 35px;
  color: #fff;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: bold;
  letter-spacing: 1px;
  white-space: nowrap;
}

.asa-sns-block__content {
  flex: 1 1 0%;
  align-self: center;
  min-width: 0;
  background: #fff;
  padding: 20px 40px 20px 20px;
  box-sizing: border-box;
  line-height: 1.8;
  font-size: clamp(14px, 1.3vw, 20px);
  color: #333;
  letter-spacing: 1px;
  white-space: normal;
  overflow: hidden;
}

.asa-sns-block__content a {
  color: #c46a4a;
  text-decoration: underline;
}

.asa-sns-block__content p {
  margin: 0;
}

/* ============================================
   世界の朝ごはん — Author Profile Block
   ============================================ */
.asa-author-box {
  background: #fff;
  max-width: 1000px;
  margin: 0 auto 70px;
  padding: 50px;
}

.asa-author-box__header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}

.asa-author-box__photo {
  flex-shrink: 0;
  width: 158px;
  height: 125px;
  overflow: hidden;
  margin-right: 30px;
}

.asa-author-box__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asa-author-box__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 125px;
}

.asa-author-box__name-row {
  margin-bottom: 4px;
}

.asa-author-box__name {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.07em;
}

.asa-author-box__name-kana {
  font-size: 16px;
  color: #333;
}

.asa-author-box__title {
  font-size: 18px;
  color: var(--color-primary);
  margin: 0;
}

.asa-author-box__divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0;
  max-width: 840px;
}

.asa-author-box__profile {
  font-size: 16px;
  line-height: 2em;
  color: #333;
  max-width: 840px;
}

.asa-author-box__profile a {
  color: #c46a4a;
  text-decoration: underline;
}

/* ============================================
   世界の朝ごはん — Magazine Block
   ============================================ */
.asa-magazine-box {
  border-top: 1px solid #A0A0A0;
  border-bottom: 1px solid #A0A0A0;
  padding: 50px 0;
  max-width: 1000px;
  margin: 0 auto 70px;
}

.asa-magazine-box__inner {
  display: flex;
  align-items: center;
}

.asa-magazine-box__cover {
  flex-shrink: 0;
  width: 237px;
  margin-right: 60px;
}

.asa-magazine-box__cover img {
  width: 237px;
  height: 320px;
  object-fit: cover;
  display: block;
}

.asa-magazine-box__title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.05em;
  margin: 0 0 30px;
}

.asa-magazine-box__dates {
  list-style: none;
  padding: 0;
  margin: 0;
}

.asa-magazine-box__date-item {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
  align-items: center;
}

.asa-magazine-box__date-item svg {
  display: inline-block;
  padding-right: 15px;
}

/* ============================================
   食品成分表 — Author Profile Block (fc-author-box)
   ============================================ */
.fc-author-box {
  background: #fff;
  max-width: 1000px;
  margin: 0 auto 70px;
  padding: 40px 50px;
}

.fc-author-box__header {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 0;
}

.fc-author-box__photo {
  flex-shrink: 0;
  width: 98px;
  height: 125px;
}

.fc-author-box__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-author-box__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 125px;
}

.fc-author-box__name-row {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 4px;
}

.fc-author-box__name {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.07em;
}

.fc-author-box__kana {
  font-size: 16px;
  color: #333;
}

.fc-author-box__title {
  font-size: 18px;
  color: var(--color-primary);
  margin: 5px 0 0;
}

.fc-author-box__divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0;
}

.fc-author-box__profile {
  font-size: 16px;
  line-height: 2em;
  color: #333;
}

.fc-author-box__profile a {
  color: #c46a4a;
  text-decoration: underline;
}

/* ============================================
   食品成分表 — Table of Contents (fc-toc)
   ============================================ */
.fc-toc {
  background: #fff;
  padding: clamp(35px, calc(25px + 1.302vw), 50px) clamp(56px, calc(40px + 2.083vw), 80px);
  margin-bottom: clamp(56px, calc(40px + 2.083vw), 80px);
}

.fc-toc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.fc-toc__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(17px, calc(12px + 0.625vw), 24px);
  line-height: 1;
  letter-spacing: 1.2px;
  color: #333;
  margin: 0;
  border: none;
  padding: 0;
}

.fc-toc__toggle {
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.fc-toc__toggle-icon {
  display: block;
  width: 16px;
  height: 10px;
  position: relative;
}

.fc-toc__toggle-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateX(-50%) rotate(45deg);
  transition: transform 0.3s;
}

.fc-toc.is-closed .fc-toc__toggle-icon::before {
  transform: translateX(-50%) rotate(-135deg);
  top: 4px;
}

.fc-toc__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0 0 25px;
}

.fc-toc__list {
  list-style: none;
  counter-reset: none;
  padding: 0;
  margin: 0;
}

.fc-toc.is-closed .fc-toc__list {
  display: none;
}

.fc-toc__item {
  margin-bottom: 25px;
}

.fc-toc__item>a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, calc(9px + 0.469vw), 18px);
  line-height: clamp(28px, calc(20px + 1.042vw), 40px);
  letter-spacing: 0.9px;
  color: #333;
  text-decoration: none;
}

.fc-toc__item>a:hover {
  color: var(--color-primary);
}

.fc-toc__sublist {
  list-style: none;
  padding: 0 0 0 25px;
  margin: 0;
}

.fc-toc__subitem>a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.8px;
  color: #333;
  text-decoration: none;
}

.fc-toc__subitem>a:hover {
  color: var(--color-primary);
}

/* ============================================
   食品成分表 — 本文スタイル上書き
   ============================================ */
.single-page--food .single-article__content h2 {
  font-size: 32px;
  color: #c46a4a;
  border-left: 6px solid #c46a4a;
  padding: 0 0 0 20px;
  margin: 60px 0 30px;
  line-height: 1.6;
  font-weight: bold;
  scroll-margin-top: 200px;
}

.single-page--food .single-article__content table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin: 30px 0;
  font-size: 14px;
}

.single-page--food .single-article__content th,
.single-page--food .single-article__content td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  line-height: 1.6;
  vertical-align: top;
}

.single-page--food .single-article__content th {
  background: #f5f5f5;
  font-weight: bold;
}

/* 脚注（※で始まる段落） */
.single-page--food .single-article__content .fc-footnote {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 10px;
}

/* ============================================
   SP版 投稿ページ — Figma準拠 (max-width: 768px)
   ※ ヘッダー・フッター・ハンバーガーメニュー等の
     共通パーツには一切影響しないようスコープを限定
   ============================================ */
@media (max-width: 768px) {

  .fixed-buttons {
    right: 20px;
  }

  /* --- Layout: Single Column --- */
  .single-container {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0;
    gap: 0;
  }

  .single-article {
    max-width: 100%;
    padding: 0 25px;
    overflow-x: hidden;
  }

  /* --- Breadcrumb --- */
  .single-breadcrumb {
    height: auto;
    padding: 25px 0;
    align-items: flex-start;
    margin-top: 19px;
  }

  .single-breadcrumb__inner {
    padding: 0 25px;
    flex-wrap: wrap;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 25px;
    max-width: 100%;
  }

  .single-breadcrumb__sep {
    width: 4px;
    height: 10px;
    margin: 0 10px;
  }

  .single-breadcrumb__sep::after {
    width: 4px;
    height: 10px;
    border-right-width: 1.5px;
  }

  .single-breadcrumb__current {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  /* --- Title Section --- */
  .single-article__header {
    margin-bottom: 60px;
    padding-top: 50px;
  }

  .single-article__date {
    font-size: 12px;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
  }

  .single-article__title {
    font-size: 20px;
    line-height: 38px;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .single-article__categories {
    gap: 10px;
  }

  .single-category-tag {
    height: 30px;
    padding: 0 18px;
    font-size: 12px;
    font-weight: 900;
    border-width: 1px;
  }

  /* --- Featured Image --- */
  .single-article__eyecatch {
    margin-left: -25px;
    margin-right: -25px;
    margin-bottom: 40px;
  }

  .single-article__eyecatch img {
    width: 100%;
    max-height: none;
    border-radius: 0;
  }

  /* --- TOC --- */
  .food-toc {
    padding: 30px 25px 25px;
    margin-bottom: 50px;
  }

  .food-toc__title {
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  .food-toc__toggle-icon {
    width: 10px;
    height: 6px;
  }

  .food-toc__toggle-icon::before {
    width: 8px;
    height: 8px;
  }

  .food-toc__item {
    margin-bottom: 15px;
  }

  .food-toc__item>a {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.42px;
  }

  .food-toc__sublist {
    padding-left: 13px;
  }

  .food-toc__subitem>a {
    font-size: 12px;
    line-height: 25px;
    letter-spacing: 0.36px;
  }

  /* --- Food Author --- */
  .food-author {
    padding: 25px 20px;
  }

  .food-author__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .food-author__photo {
    width: 80px;
    height: auto;
  }

  /* --- Content --- */
  .single-article__content {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.42px;
    margin-bottom: 40px;
  }

  .single-article__content>* {
    margin-bottom: 25px;
  }

  /* H2 */
  .single-article__content h2 {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 1px;
    border-left: 4px solid var(--color-primary);
    padding-left: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  /* H3 */
  .single-article__content h3 {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.9px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  /* H4 */
  .single-article__content h4 {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1.28px;
    padding-left: 30px;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .single-article__content h4::before {
    width: 20px;
    height: 1px;
    top: 15px;
  }

  /* Paragraph */
  .single-article__content p {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.42px;
  }

  /* Images */
  .single-article__content img {
    border-radius: 0;
    height: auto;
  }

  .single-article__content figure {
    margin: 25px 0;
  }

  .single-article__content figure img {
    border-radius: 0;
  }

  /* Unordered List */
  .single-article__content ul {
    padding: 30px 25px;
  }

  .single-article__content ul li {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.42px;
    padding-left: 20px;
    margin-bottom: 15px;
  }

  .single-article__content ul li::before {
    width: 8px;
    height: 8px;
    top: 10px;
  }

  /* Ordered List */
  .single-article__content ol {
    padding: 30px 25px;
  }

  .single-article__content ol li {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.42px;
    padding-left: 32px;
    margin-bottom: 15px;
  }

  .single-article__content ol li::before {
    width: 20px;
    height: 20px;
    font-size: 9px;
    top: 4px;
  }

  /* Blockquote */
  .single-article__content blockquote {
    padding: 20px 25px;
    margin: 25px 0;
  }

  /* Table */
  .single-article__content table {
    margin: 25px 0;
    font-size: 12px;
  }

  .single-article__content table th,
  .single-article__content table td {
    padding: 8px 10px;
  }

  /* --- Back to List --- */
  .single-article__back {
    margin-bottom: 30px;
  }

  .btn-back-list {
    width: 240px;
    max-width: none;
    height: 65px;
    border-radius: 75px;
    font-size: 14px;
  }

  /* --- Share --- */
  .single-article__share {
    gap: 15px;
    margin-bottom: 40px;
  }

  .single-article__share-label {
    font-size: 14px;
    letter-spacing: 1.4px;
  }

  .single-article__share-icons {
    gap: 15px;
  }

  .share-icon img {
    width: 30px;
    height: 30px;
  }

  .share-icon--x img {
    width: 24px;
    height: 25px;
  }

  .share-icon--pc-only {
    display: none;
  }

  .share-icon--sp-only {
    display: flex;
  }

  /* --- Sidebar (layout only) --- */
  .sidebar {
    max-width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
    order: unset;
  }

  /* --- Reset flex order/basis for column layout --- */
  .single-article {
    order: unset;
  }

  .single-cta {
    flex-basis: auto;
    order: unset;
    padding: 0;
  }

  .single-related {
    flex-basis: auto;
    order: unset;
  }

  .single-cta__inner {
    width: 100%;
    max-width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 25px 60px;
    gap: 0;
  }

  .single-cta__body {
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 25px;
  }

  .single-cta__heading {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .single-cta__text {
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.42px;
    text-align: center;
  }

  .single-cta__btn {
    width: 240px;
    height: 65px;
    border-radius: 75px;
    font-size: 14px;
  }

  /* --- Related Articles --- */
  .single-related {
    padding: 0 0 60px;
    margin-top: 70px;
  }

  .single-related__inner {
    max-width: 100%;
    padding: 0 25px;
  }

  .single-related__heading {
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 35px;
    padding-bottom: 25px;
  }

  .single-related__heading-en {
    font-size: 24px;
    letter-spacing: 2.4px;
    margin-bottom: 10px;
  }

  .single-related__heading-ja {
    font-size: 14px;
    letter-spacing: 1.12px;
  }

  .single-related__slider-wrap {
    position: relative;
  }

  .single-related__arrow {
    display: flex;
    width: 25px;
    height: 25px;
  }

  .single-related__arrow--prev {
    left: -15px;
    top: 50%;
  }

  .single-related__arrow--next {
    right: -15px;
    top: 50%;
  }

  .single-related__arrow img {
    width: 40px;
    height: 40px;
  }

  .single-related__slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding: 0;
  }

  .related-card {
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .related-card__image {
    aspect-ratio: auto;
    height: 196px;
  }

  .related-card__body {
    padding: 25px;
  }

  .related-card__date {
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
  }

  .related-card__title {
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.7px;
    margin-bottom: 10px;
  }

  .related-card__excerpt {
    font-size: 12px;
    line-height: 30px;
    letter-spacing: 0.6px;
    margin-bottom: 15px;
  }

  .related-card__categories .category-tag {
    height: 25px;
    padding: 0 15px;
    font-size: 10px;
    line-height: 10px;
    border-width: 1px;
    border-radius: 50px;
  }

  /* --- 世界の朝ごはん SP --- */
  .asa-country-banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
  }

  .asa-greeting {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
    padding: 45px 25px 60px;
    margin-bottom: 30px;
    border-left: none;
    border-top: 4px solid #c46a4a;
  }

  .asa-greeting__text {
    font-size: 22px;
  }

  .asa-sns-block {
    height: auto;
    flex-direction: column;
  }

  .asa-sns-block__label {
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
    height: 100px;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
    padding: 0 0 40px;
    box-sizing: border-box;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 30px;
    align-items: flex-end;
  }

  .asa-sns-block__content {
    height: auto;
    line-height: 1.8;
    padding: 15px 20px 40px;
    white-space: nowrap;
    font-size: 14px;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
  }

  .asa-sns-block__content .sns-after-link {
    white-space: normal;
    display: inline;
  }

  .asa-author-box {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 40px;
    padding: 25px;
    box-sizing: border-box;
  }

  .asa-author-box__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .asa-author-box__photo {
    width: 100px;
    height: 80px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .asa-author-box__meta {
    min-height: auto;
    align-items: center;
  }

  .asa-author-box__name {
    font-size: 18px;
  }

  .asa-author-box__name-kana {
    font-size: 10px;
  }

  .asa-author-box__title {
    font-size: 12px;
  }

  .asa-author-box__profile {
    font-size: 12px;
  }

  .asa-magazine-box {
    padding: 25px 0;
    margin-bottom: 40px;
  }

  .asa-magazine-box__inner {
    flex-direction: column;
    align-items: center;
  }

  .asa-magazine-box__cover {
    width: 180px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .asa-magazine-box__cover img {
    width: 180px;
    height: 243px;
  }

  .asa-magazine-box__title {
    font-size: 20px;
    text-align: center;
  }

  .asa-magazine-box__date-item {
    font-size: 14px;
  }

  /* ============================================
     スマートミール SP — Figma準拠
     ※ 共通パーツ（ヘッダー・フッター等）には影響なし
     ============================================ */

  /* --- Hero Image --- */
  .smart-hero {
    margin-left: -25px;
    margin-right: -25px;
  }

  .smart-hero__image {
    width: 100%;
    height: auto;
    max-height: none;
    border-radius: 0;
    aspect-ratio: 375/282;
  }

  /* --- Shop Name Banner --- */
  .smart-shop-name {
    width: 100vw;
    height: auto;
    /* max-width: 100%; */
    margin-left: -25px;
    margin-right: -25px;
    padding: 20px 25px;
    margin-bottom: 30px;
  }

  .smart-shop-name__text {
    line-height: 32px;
    letter-spacing: 0.9px;
    margin: 0;
  }

  /* --- Shop Info H2 (uses generic H2 style via .smart-shop-info__heading) --- */
  .smart-shop-info__heading {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 1px;
    border-left: 4px solid var(--color-primary);
    padding-left: 24px;
  }

  /* --- Shop Info Box --- */
  .smart-shop-info__box {
    flex-direction: column-reverse;
    padding: 40px 25px 60px;
    gap: 50px;
    margin-left: -25px;
    margin-right: -25px;
    max-width: none;
    width: auto;
  }

  .smart-shop-info__left {
    max-width: 100%;
  }

  .smart-shop-info__name {
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.9px;
    margin-bottom: 20px;
  }

  .smart-shop-info__address {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.7px;
    margin-bottom: 0;
  }

  .smart-shop-info__divider {
    max-width: 100%;
    margin: 40px 0 30px;
  }

  .smart-shop-info__memo {
    font-size: 12px;
    line-height: 28px;
    letter-spacing: 0.6px;
    color: var(--color-primary);
  }

  .smart-shop-info__sns {
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }

  .smart-shop-info__sns img {
    width: 30px;
    height: 30px;
  }

  .smart-shop-info__right {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
  }

  .smart-shop-info__photo-wrap {
    width: 100%;
    max-width: 325px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 0;
  }

  .smart-shop-info__photo {
    width: 100%;
    height: 100%;
  }

  /* --- Section H2 (smart-section-h2 — 料理名/インタビュー等) --- */
  .smart-section-h2 {
    gap: 0;
    margin-bottom: 25px;
  }

  .smart-section-h2__bar {
    width: 4px;
    height: 35px;
    margin-right: 20px;
  }

  .smart-section-h2__text {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 1px;
    color: var(--color-primary);
  }

  /* --- Menu Section --- */
  .smart-menu {
    margin-bottom: 40px;
  }

  .smart-menu__photo {
    margin-bottom: 30px;
  }

  .smart-menu__list-title {
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 0.9px;
    margin-bottom: 15px;
  }

  .smart-menu__list-wrap {
    padding: 30px 25px;
  }

  .smart-menu__list-item {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.42px;
    padding-left: 20px;
    margin-bottom: 10px;
  }

  .smart-menu__list-item::before {
    width: 8px;
    height: 8px;
  }

  .smart-menu__price {
    font-size: 16px;
  }

  /* --- Nutrition Table --- */
  .smart-nutrition {
    margin-left: -25px;
    margin-right: -25px;
    max-width: none;
    width: auto;
    padding: 50px 25px 70px;
  }

  .smart-nutrition__title {
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 0.9px;
    padding: 0 30px;
    margin-bottom: 20px;
    background-size: auto 40%;
  }

  .smart-nutrition__tables {
    flex-direction: column;
    gap: 0;
  }

  .smart-nutrition__table {
    max-width: 100%;
  }

  .smart-nutrition__table th,
  .smart-nutrition__table td {
    font-size: 14px;
    letter-spacing: 0.7px;
    padding: 12px 25px;
  }

  .smart-nutrition__table th {
    width: 50%;
  }

  /* --- Interview Section --- */
  .smart-interview {
    margin-bottom: 60px;
  }

  .smart-interview__name {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.9px;
    margin-bottom: 20px;
  }

  .smart-interview__body p {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.7px;
  }

  /* --- PDF Section --- */
  .smart-pdf {
    margin-bottom: 60px;
  }

  .smart-pdf__heading {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 1px;
    border-left: 4px solid var(--color-primary);
    padding-left: 24px;
    margin-bottom: 25px;
  }

  .smart-pdf__inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .smart-pdf__image {
    width: 100%;
    max-width: 325px;
    height: 441px;
    object-fit: contain;
  }

  .smart-pdf__actions {
    width: 100%;
    align-items: center;
    gap: 20px;
  }

  .smart-pdf__btn {
    width: 240px;
    max-width: none;
    height: 65px;
    border-radius: 75px;
    font-size: 14px;
    line-height: 22px;
  }

  .smart-pdf__btn--download {
    border-width: 1.5px;
  }

  .smart-pdf__instagram {
    max-width: 240px;
  }

  .smart-pdf__instagram-link {
    font-size: 14px;
    line-height: 22px;
    gap: 15px;
    padding: 12px 0;
  }

  .smart-pdf__instagram-icon {
    width: 30px;
    height: 30px;
  }

  .smart-pdf__btn--instagram {
    width: 240px;
    max-width: none;
    height: 65px;
    border-radius: 75px;
    font-size: 14px;
    line-height: 22px;
  }

  /* --- Certification Section --- */
  .smart-certification {
    margin-bottom: 30px;
  }

  .smart-certification__box {
    padding: 50px 25px 70px;
    margin-left: -25px;
    margin-right: -25px;
    max-width: none;
    width: auto;
  }

  .smart-certification__title {
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 0.9px;
    padding: 0 30px;
    margin-bottom: 20px;
    background-size: auto 40%;
  }

  .smart-certification__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.42px;
    text-align: center;
    max-width: 325px;
    margin-bottom: 25px;
    text-align: left;
  }

  .smart-certification__buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .smart-certification__btn {
    width: 240px;
    max-width: none;
    height: 65px;
    border-radius: 75px;
    font-size: 14px;
    line-height: 22px;
  }

  /* --- Supervision --- */
  .smart-supervision {
    font-size: 12px;
    line-height: 25px;
    letter-spacing: 0.6px;
    max-width: 325px;
    margin-bottom: 40px;
  }

  /* --- Food Composition (fc) --- */
  .fc-author-box {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 50px;
    padding: 40px 25px 20px;
    box-sizing: border-box;
  }

  .fc-author-box__header {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .fc-author-box__photo {
    width: 70px;
    height: 90px;
  }

  .fc-author-box__meta {
    min-height: 0;
  }

  .fc-author-box__name-row {
    justify-content: center;
  }

  .fc-author-box__name {
    font-size: 18px;
  }

  .fc-author-box__kana {
    font-size: 10px;
  }

  .fc-author-box__title {
    font-size: 12px;
  }

  .fc-author-box__profile {
    font-size: 12px;
  }

  .fc-toc {
    padding: 30px 25px 25px;
  }

  .single-page--food .single-article__content h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .single-container--locked .single-related {
    margin-top: 80px;
  }
}