:root {
  --color-gold: #B89B5E;
  --color-brown: #9C6B4A;
  --color-base: #FAFAF7;
  --color-text: #2A2A2A;
  --color-subtext: #555555;
  --color-border: #E0D9CE;
  --font-base: 'Noto Sans JP', 'Yu Gothic UI', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* レスポンシブ改行: PC表示時は非表示、スマホ表示時のみ表示 */
.sp-br {
  display: none;
}

@media screen and (max-width: 719px) {
  .sp-br {
    display: inline;
  }
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header {
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  position: relative;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.header__logo img {
  width: 45px;
  height: auto;
}

.header__brand {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  color: var(--color-subtext);
}

.header__brand strong {
  font-size: 0.8125rem;
  color: var(--color-text);
}

/* ハンバーガーメニューボタン */
.hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

.hamburger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger__bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* モバイルメニュー */
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  padding-top: 4rem;
}

.nav.active {
  right: 0;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
}

.nav__item {
  border-bottom: 1px solid var(--color-border);
}

.nav__link {
  font-weight: 600;
  color: var(--color-text);
  padding: 1rem 1.5rem;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav__link:focus,
.nav__link:hover,
.nav__link[aria-current="page"] {
  background-color: rgba(184, 155, 94, 0.1);
  color: var(--color-brown);
  outline: none;
}

/* オーバーレイ */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
}

.hero {
  background: linear-gradient(135deg, rgba(184, 155, 94, 0.15), rgba(156, 107, 74, 0.15)), url('../img/hero.png') center/cover no-repeat;
  background-color: #F5F0E8;
  color: #fff;
  text-align: center;
  padding: 4.5rem 1.5rem;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 42, 42, 0.5);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.hero__tagline {
  font-size: 0.875rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: 2.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero__lead {
  margin-bottom: 2rem;
  color: #f5f1e6;
}

.hero__nintaro {
  margin-bottom: 1.5rem;
}

.hero__nintaro-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  animation: float 3s ease-in-out infinite;
}

.hero__greeting-button {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFB6C1, #FFA07A);
  transition: all 0.3s ease;
}

.hero__greeting-button:hover {
  background: linear-gradient(135deg, #FFA07A, #FFB6C1);
  transform: translateY(-2px);
}

/* いらっしゃいメッセージ */
.greeting-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: linear-gradient(135deg, #FFB6C1, #FFA07A);
  color: #fff;
  padding: 2rem 3rem;
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.greeting-message.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  background-color: var(--color-gold);
  color: #fff;
  font-weight: 600;
  border: none;
}

.button:focus,
.button:hover {
  background-color: var(--color-brown);
}

.section {
  padding: 3.5rem 0;
}

.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  word-break: break-word;
}

.section__subtitle {
  color: var(--color-subtext);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.nintaro-greeting {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.nintaro-greeting__image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.section__nintaro-intro {
  margin-bottom: 1rem;
}

.section__nintaro-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--color-gold);
  box-shadow: 0 4px 12px rgba(184, 155, 94, 0.3);
  object-fit: cover;
  animation: float 3s ease-in-out infinite;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.card__title {
  font-size: 1.25rem;
  color: var(--color-brown);
}

.card__text {
  color: var(--color-subtext);
}

.card__body .button {
  margin-top: auto;
}

.company-intro-section {
  background-color: #fff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.company-intro {
  max-width: 800px;
  margin: 0 auto;
}

.company-intro__content {
  display: grid;
  gap: 1rem;
  text-align: center;
  margin-top: 1.5rem;
}

.company-intro__actions {
  margin-top: 1.5rem;
}

.brand-banner {
  background-color: #fff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.brand-banner__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.brand-banner__actions {
  margin-top: 1.5rem;
}

/* にんたろう紹介セクション */
.nintaro-intro-section {
  background: linear-gradient(135deg, rgba(184, 155, 94, 0.08), rgba(156, 107, 74, 0.05));
}

.nintaro-intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nintaro-intro-image {
  flex-shrink: 0;
}

.nintaro-intro-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid var(--color-gold);
  box-shadow: 0 8px 25px rgba(184, 155, 94, 0.3);
  object-fit: cover;
  animation: float 3s ease-in-out infinite;
}

.nintaro-intro-text {
  text-align: center;
  max-width: 680px;
}

.page-hero {
  padding: 3.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(184, 155, 94, 0.2), rgba(156, 107, 74, 0.2));
}

.page-hero.products-hero {
  background: #fff !important;
}

.page-hero__title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.page-hero__lead {
  color: var(--color-subtext);
}

/* 商品ページヒーロー */
.products-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.products-hero__nintaro {
  flex-shrink: 0;
}

.products-hero__nintaro-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--color-gold);
  box-shadow: 0 4px 12px rgba(184, 155, 94, 0.3);
  object-fit: cover;
  animation: float 3s ease-in-out infinite;
}

.products-hero__text {
  text-align: center;
}

.anchor-nav {
  margin: 2rem 0;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem;
}

.anchor-nav__list {
  display: grid;
  gap: 0.75rem;
}

.anchor-nav__link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background-color: var(--color-base);
  border: 1px solid var(--color-border);
  text-align: center;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.anchor-nav__link:hover,
.anchor-nav__link:focus {
  background-color: var(--color-gold);
  color: #fff;
}

.product {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  margin-bottom: 2.5rem;
  padding: 1rem 1rem 1.5rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.product__image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product__image {
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  margin: 0 auto 1.5rem;
  display: block;
}

.product__slider {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto 1.5rem;
}

.product__slider-images {
  position: relative;
  width: 100%;
}

.product__slider-image {
  display: none;
  margin: 0;
}

.product__slider-image.active {
  display: block;
}

.product__slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
  color: var(--color-text);
}

.product__slider-btn:hover {
  background-color: var(--color-gold);
  color: #fff;
}

.product__slider-btn--prev {
  left: 10px;
}

.product__slider-btn--next {
  right: 10px;
}

.product__slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.product__slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background-color: #fff;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.product__slider-dot.active {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

.product__slider-dot:hover {
  background-color: var(--color-brown);
  border-color: var(--color-brown);
}

.product__nintaro {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.product__body {
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.product__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.product__recipe-link {
  flex: 1;
  min-width: 0;
}

.product__recipe-link .button {
  width: 100%;
}

.product__title {
  font-size: 1.5rem;
  color: var(--color-brown);
  word-break: break-word;
  line-height: 1.4;
}

.product__features {
  display: grid;
  gap: 1rem;
}

.product__feature-list {
  list-style: disc;
  margin-left: 1.25rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.product__feature-list a {
  word-break: break-all;
  overflow-wrap: anywhere;
  display: inline-block;
  max-width: 100%;
}

.product__qa {
  background-color: var(--color-base);
  border-radius: 12px;
  padding: 1.25rem;
}

.qa {
  display: grid;
  gap: 1rem;
}

.qa__item {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
}

.qa__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.qa__question {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  table-layout: fixed;
}

.product__table th,
.product__table td {
  border: 1px solid var(--color-border);
  padding: 0.625rem 0.75rem;
  text-align: left;
  word-break: break-word;
  overflow-wrap: break-word;
}

.story {
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}

.story__lead {
  font-size: 1.125rem;
  color: var(--color-brown);
}

.pillars {
  display: grid;
  gap: 1.5rem;
}

.pillar {
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 1.75rem;
}

.pillar--with-image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pillar__image-wrapper {
  width: 100%;
  background-color: var(--color-base);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  height: 220px;
  overflow: hidden;
}

.pillar__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar__content {
  padding: 1.75rem;
}

.pillar__title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  word-break: break-word;
}

.pillar__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pillar__title a:hover,
.pillar__title a:focus {
  color: var(--color-brown);
}

.link-more {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
}

.link-more a {
  color: var(--color-brown);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.link-more a:hover,
.link-more a:focus {
  color: var(--color-gold);
  text-decoration: underline;
}

.map {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}

.map__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.map__details {
  padding: 1.5rem;
}

.quality {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border: 1px solid var(--color-border);
  padding: 0.75rem;
  text-align: left;
}

.table__header {
  background-color: rgba(184, 155, 94, 0.1);
}

.timeline {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.timeline__item {
  display: grid;
  gap: 0.25rem;
}

.timeline__year {
  font-weight: 700;
  color: var(--color-brown);
}

.access {
  display: grid;
  gap: 1.5rem;
}

.access__map {
  border-radius: 16px;
  overflow: hidden;
}

.contact-box {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.forest-hero {
  margin-bottom: 2rem;
}

.forest-hero__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

.forest-hero-section {
  padding: 0;
  background: linear-gradient(180deg, rgba(250, 250, 247, 0.95) 0%, rgba(250, 250, 247, 0.98) 100%);
}

.forest-hero-section__header {
  padding: 2rem 1rem 1.5rem;
  text-align: center;
}

.forest-hero-section__title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--color-brown);
}

.forest-hero-section__lead {
  color: var(--color-subtext);
  font-size: 0.9375rem;
}

.forest-hero-gallery {
  position: relative;
  padding: 1rem 0 1.5rem;
}

.forest__slider {
  position: relative;
  width: min(100%, 540px);
  margin: 0 auto;
}

.forest__slider-images {
  position: relative;
  width: 100%;
}

.forest__slider-image {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.forest__slider-image.active {
  display: block;
}

.forest__slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
  color: var(--color-text);
}

.forest__slider-btn:hover {
  background-color: var(--color-gold);
  color: #fff;
}

.forest__slider-btn--prev {
  left: 10px;
}

.forest__slider-btn--next {
  right: 10px;
}

.forest__slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.forest__slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background-color: #fff;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.forest__slider-dot.active {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

.forest__slider-dot:hover {
  background-color: var(--color-brown);
  border-color: var(--color-brown);
}

.forest-business {
  display: grid;
  gap: 2rem;
}

.forest-business__image {
  width: 100%;
}

.forest-business__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

.forest-gallery {
  display: grid;
  gap: 1.5rem;
}

.forest-gallery__item {
  width: 100%;
}

.forest-gallery__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

.flow {
  display: grid;
  gap: 1.5rem;
}

.flow__item {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.flow__item--with-image {
  flex-direction: column;
  align-items: stretch;
}

.flow__image-wrapper {
  width: 100%;
  margin-bottom: 1rem;
  order: -1;
}

.flow__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.flow__item--with-image .flow__number {
  align-self: flex-start;
}

.flow__number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.flow__content {
  flex: 1;
}

.flow__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}

.flow__text {
  color: var(--color-subtext);
  line-height: 1.7;
}

.footer {
  background-color: #2F2A26;
  color: #fdfbf7;
  padding: 2.5rem 1.5rem;
}

.footer__inner {
  display: grid;
  gap: 1rem;
}

.footer__brand {
  font-size: 1.125rem;
  font-weight: 700;
}

.footer__contact {
  color: #e8e1d7;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-gold);
  color: #fff;
  border-radius: 8px;
  z-index: 1000;
}

main {
  display: block;
}

.products-main {
  background-color: #fff;
  min-height: 100vh;
}

body.white-bg {
  background-color: #fff;
}

html.white-bg {
  background-color: #fff;
}

.lead-text {
  color: var(--color-subtext);
  word-break: break-word;
  overflow-wrap: break-word;
}

.list {
  list-style: disc;
  margin-left: 1.25rem;
  color: var(--color-subtext);
}

.recipe-section {
  margin-bottom: 3.5rem;
}

.recipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.recipe-card {
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.recipe-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  max-width: 100%;
}

.recipe-card__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
}

.recipe-card__body {
  padding: 1.5rem;
}

.recipe-card__body:has(.recipe-card__title:empty + .recipe-card__text:empty),
.recipe-card__body:has(.recipe-card__title:empty:last-child),
.recipe-card__body:has(.recipe-card__text:empty:only-child) {
  padding: 0;
}

.recipe-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}

.recipe-card__title:empty {
  display: none;
}

.recipe-card__text {
  color: var(--color-subtext);
  font-size: 0.9375rem;
}

.recipe-card__text:empty {
  display: none;
}

/* スマホ向けの調整 */
@media (max-width: 719px) {
  .recipe-grid {
    gap: 1rem;
  }

  .recipe-section {
    margin-bottom: 2.5rem;
  }

  .recipe-card__body {
    padding: 1rem;
  }

  .product__actions {
    flex-direction: column;
  }

  .product__recipe-link {
    flex: none;
    width: 100%;
  }
}

.profile-book {
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 2rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.profile-item {
  background: linear-gradient(135deg, rgba(184, 155, 94, 0.05), rgba(156, 107, 74, 0.05));
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 155, 94, 0.15);
}

.profile-item__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.profile-item__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}

.profile-item__value {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
}

.message-box {
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 2rem;
}

.message-content {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.message-signature {
  text-align: right;
  font-weight: 600;
  color: var(--color-brown);
  margin-top: 1rem;
  font-size: 0.9375rem;
}

/* メッセージ動画 */
.message-video {
  margin: 2rem 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.message-video__player {
  width: 100%;
  height: auto;
  display: block;
}

.video-placeholder {
  background: linear-gradient(135deg, rgba(184, 155, 94, 0.1), rgba(156, 107, 74, 0.05));
  padding: 4rem 2rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.video-placeholder p:first-child {
  font-size: 3rem;
  margin: 0;
}

.video-placeholder__text {
  color: var(--color-subtext);
  font-size: 1rem;
}

.social-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.social-card {
  background-color: #fff;
  border: 2px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--color-gold);
}

.social-card__icon {
  color: var(--color-brown);
  margin-bottom: 1rem;
}

.social-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 0.625rem;
}

.social-card__text {
  color: var(--color-subtext);
  font-size: 0.875rem;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.blog-card {
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__date {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--color-subtext);
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card__text {
  color: var(--color-subtext);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-card__link {
  color: var(--color-brown);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card__link:hover {
  color: var(--color-gold);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.category-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

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

/* にんたろうページ専用スタイル */
.nintaro-hero {
  background: linear-gradient(135deg, rgba(184, 155, 94, 0.15), rgba(156, 107, 74, 0.08));
  padding: 2rem 1rem;
  overflow: hidden;
  position: relative;
}

/* 可愛い装飾スタイル */
.cute-title {
  position: relative;
  display: inline-block;
  padding: 0.375rem 1rem;
  background: linear-gradient(135deg, #FFF9F0, #FFF5E8);
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(184, 155, 94, 0.15);
  font-size: 1.25rem;
  line-height: 1.4;
  max-width: 100%;
  word-break: break-word;
}

.cute-decoration {
  display: inline-block;
  font-size: 1.1em;
  margin: 0 0.25rem;
  opacity: 0.85;
}

.profile-section {
  background: linear-gradient(180deg, #FFFBF7 0%, #FFFFFF 100%);
}

.profile-book {
  background-color: #fff;
  border: 1px solid #E0D9CE;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
}

.profile-intro {
  text-align: center;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(184, 155, 94, 0.08), rgba(156, 107, 74, 0.08));
  border-radius: 12px;
  border: 2px dashed rgba(184, 155, 94, 0.3);
  position: relative;
}

.profile-intro__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text);
  font-weight: 600;
}

.profile-table-wrapper {
  margin-top: 2rem;
  overflow-x: auto;
}

.profile-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.profile-table th,
.profile-table td {
  padding: 0.75rem 0.875rem;
  border-bottom: 1px solid #E8E3D9;
  text-align: left;
  vertical-align: middle;
  word-break: break-word;
}

.profile-table th {
  background: linear-gradient(135deg, var(--color-gold), var(--color-brown));
  color: #fff;
  font-weight: 700;
  width: 35%;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.profile-table td {
  background-color: #FEFDFB;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}

.profile-table tr:last-child th,
.profile-table tr:last-child td {
  border-bottom: none;
}

.profile-table tr:hover td {
  background: linear-gradient(135deg, rgba(184, 155, 94, 0.05), rgba(250, 250, 247, 1));
  transition: background 0.3s ease;
}

.table-icon {
  font-size: 1.1em;
  margin-right: 0.5rem;
  display: inline-block;
  animation: iconBounce 0.6s ease-out;
}

.message-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF7 100%);
}

.cute-box {
  background-color: #fff;
  border: 1px solid #E0D9CE;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
}

.message-bubble {
  background: linear-gradient(135deg, rgba(184, 155, 94, 0.06), rgba(250, 250, 247, 1));
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  position: relative;
  border-left: 3px solid var(--color-gold);
  transition: border-color 0.3s ease;
}

.message-bubble:hover {
  border-left-color: var(--color-brown);
}

.message-bubble .lead-text {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.signature-decoration {
  display: inline-block;
  opacity: 0.7;
}

.social-section {
  background: linear-gradient(180deg, #FFFBF7 0%, #FFFFFF 100%);
}

.social-header-with-nintaro {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.social-header-center {
  text-align: center;
  flex: 1;
  max-width: 500px;
}

.social-header-center .cute-title {
  font-size: 1.125rem;
}

.social-header-center .section__subtitle {
  font-size: 0.875rem;
}

.social-header-right {
  display: block;
  flex-shrink: 0;
}

.social-nintaro-large {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(184, 155, 94, 0.3));
}

.cute-card {
  background-color: #fff;
  border: 2px solid #E0D9CE !important;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.cute-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--color-gold) !important;
}

.nintaro-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.nintaro-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.nintaro-hero__image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  animation: float 3s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.nintaro-hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 8px 30px rgba(184, 155, 94, 0.25);
  background: linear-gradient(135deg, #FFF9F0, #FFF5E8);
  transition: transform 0.3s ease;
}

.nintaro-hero__image:hover {
  transform: scale(1.03);
}

.nintaro-hero__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  font-size: 1.5rem;
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle:nth-child(1) { animation-delay: 0s; }
.sparkle:nth-child(2) { animation-delay: 0.5s; }
.sparkle:nth-child(3) { animation-delay: 1s; }
.sparkle:nth-child(4) { animation-delay: 1.5s; }

@keyframes sparkle {
  0%, 100% { 
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% { 
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
}

.nintaro-hero__text {
  text-align: center;
  max-width: 600px;
}

.nintaro-hero__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-brown);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  animation: titleBounce 1s ease-out;
  word-break: keep-all;
}

@keyframes titleBounce {
  0% { transform: translateY(-50px); opacity: 0; }
  60% { transform: translateY(10px); }
  100% { transform: translateY(0); opacity: 1; }
}

.title-decoration {
  display: inline-block;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.nintaro-hero__lead {
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.nintaro-hero__button {
  background: linear-gradient(135deg, var(--color-gold), var(--color-brown));
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(184, 155, 94, 0.3);
  transition: all 0.3s ease;
}

.nintaro-hero__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(156, 107, 74, 0.4);
  background: linear-gradient(135deg, var(--color-brown), var(--color-gold));
}

.nintaro-hero__button:active {
  transform: translateY(0);
}

.profile-item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.profile-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(184, 155, 94, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.profile-item:hover::before {
  width: 300%;
  height: 300%;
}

.profile-item__icon {
  animation: iconBounce 0.6s ease-out;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.profile-item:hover .profile-item__icon {
  animation: iconSpin 0.6s ease-in-out;
}

@keyframes iconSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

/* にんたろうメッセージ */
.nintaro-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: linear-gradient(135deg, #FFB6C1, #FFA07A);
  color: #fff;
  padding: 1.5rem 2.5rem;
  border-radius: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.nintaro-message.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* フローティングハート */
.floating-heart {
  position: fixed;
  bottom: -50px;
  font-size: 2rem;
  animation: floatUp 5s ease-in forwards;
  pointer-events: none;
  z-index: 9999;
}

@keyframes floatUp {
  0% {
    bottom: -50px;
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
  100% {
    bottom: 110vh;
    opacity: 0;
    transform: translateX(100px) rotate(360deg);
  }
}

/* スクロールキラキラ */
.scroll-sparkle {
  position: absolute;
  font-size: 1.5rem;
  animation: sparkleDisappear 1s ease-out forwards;
  pointer-events: none;
  z-index: 9998;
}

@keyframes sparkleDisappear {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.5) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: scale(0) rotate(360deg);
  }
}

@media (min-width: 720px) {
  .hero {
    background-size: cover;
    padding: 8rem 1.5rem;
    min-height: 600px;
  }

  .nintaro-greeting {
    margin-bottom: 2.5rem;
  }

  .nintaro-greeting__image {
    max-width: 500px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* タブレット以上でハンバーガーメニューを非表示 */
  .hamburger {
    display: none;
  }

  .nav-overlay {
    display: none !important;
  }

  .nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    box-shadow: none;
    padding-top: 0;
    overflow-y: visible;
  }

  .nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
  }

  .nav__item {
    border-bottom: none;
  }

  .nav__link {
    padding: 0.5rem 0.875rem;
    border-radius: 999px;
  }

  .nav__link:focus,
  .nav__link:hover,
  .nav__link[aria-current="page"] {
    background-color: var(--color-gold);
    color: #fff;
  }

  .header__inner {
    padding: 0.75rem 1.5rem;
  }

  .header__logo img {
    width: 55px;
  }

  .header__brand strong {
    font-size: 0.875rem;
  }

  .nintaro-intro-content {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
  }

  .nintaro-intro-img {
    width: 220px;
    height: 220px;
  }

  .nintaro-intro-text {
    text-align: left;
  }

  .hero__nintaro-img {
    width: 140px;
    height: 140px;
  }

  .section__nintaro-icon {
    width: 100px;
    height: 100px;
  }

  .products-hero__content {
    flex-direction: row;
    gap: 2rem;
  }

  .products-hero__nintaro-img {
    width: 120px;
    height: 120px;
  }

  .products-hero__text {
    text-align: left;
  }

  .anchor-nav__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .anchor-nav--recipes .anchor-nav__item:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 0.375rem);
  }

  .product {
    padding: 1.5rem 1.5rem 2rem;
  }

  .product__image-wrapper {
    position: relative;
    justify-content: center;
    margin-bottom: 1.75rem;
  }

  .product__image {
    max-width: 360px;
    margin: 0 auto 1.75rem;
  }

  .product__nintaro {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
  }

  .product__body {
    gap: 1.5rem 1.75rem;
  }

  .product__qa {
    margin-top: 0.5rem;
    padding: 1.5rem;
  }

  .product__title {
    font-size: 1.625rem;
  }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar--with-image {
    flex-direction: row;
  }

  .pillar__image-wrapper {
    width: 40%;
    height: 280px;
    padding: 0.75rem;
  }

  .pillar__image {
    max-width: 100%;
  }

  .pillar__content {
    width: 60%;
    padding: 2rem;
  }

  .flow__item {
    padding: 2rem;
  }

  .flow__number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }

  .flow__title {
    font-size: 1.25rem;
  }

  .flow__item--with-image {
    flex-direction: row;
    align-items: flex-start;
  }

  .flow__image-wrapper {
    width: 40%;
    margin-bottom: 0;
    order: 0;
  }

  .flow__item--with-image .flow__number {
    align-self: flex-start;
  }

  .forest-business {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }

  .forest-business__img {
    aspect-ratio: 3 / 4;
  }

  .forest-hero-section__header {
    padding: 2.5rem 1.5rem 2rem;
  }

  .forest-hero-section__title {
    font-size: 2rem;
  }

  .forest-hero-section__lead {
    font-size: 1rem;
  }

  .forest__slider {
    width: min(100%, 640px);
  }

  .forest-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .access {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-header-with-nintaro {
    position: relative;
    justify-content: center;
    gap: 0;
  }

  .social-header-center {
    max-width: 600px;
  }

  .social-header-center .cute-title {
    font-size: 1.75rem;
  }

  .social-header-center .section__subtitle {
    font-size: 1rem;
  }

  .social-header-right {
    position: absolute;
    right: 0;
  }

  .social-nintaro-large {
    width: 180px;
  }

  .social-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nintaro-hero__content {
    flex-direction: row;
    gap: 3rem;
  }

  .nintaro-hero__image-wrapper {
    width: 320px;
    height: 320px;
  }

  .nintaro-hero__text {
    text-align: left;
  }

  .nintaro-hero__title {
    font-size: 2.25rem;
  }

  .nintaro-hero__lead {
    font-size: 1.125rem;
  }

  .nintaro-hero__button {
    font-size: 1.125rem;
    padding: 1rem 2rem;
  }

  .profile-book {
    padding: 3rem;
  }

  .profile-intro {
    padding: 2.5rem;
  }

  .profile-intro__text {
    font-size: 1rem;
  }

  .profile-table th,
  .profile-table td {
    padding: 1.5rem 2rem;
  }

  .profile-table th {
    font-size: 0.9375rem;
  }

  .profile-table td {
    font-size: 0.9375rem;
  }

  .message-bubble {
    padding: 2rem;
  }

  .message-bubble .lead-text {
    font-size: 1rem;
  }

  .cute-box {
    padding: 2.5rem;
  }

  .cute-title {
    font-size: 1.75rem;
    padding: 0.625rem 1.75rem;
  }

  .section__subtitle {
    font-size: 1rem;
  }

  .social-card__title {
    font-size: 1.5rem;
  }

  .social-card__text {
    font-size: 1rem;
  }

  .message-signature {
    font-size: 1rem;
  }

  .profile-book {
    border-radius: 24px;
  }

  .cute-box {
    border-radius: 24px;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 10rem 1.5rem;
    min-height: 700px;
    background-size: cover;
  }

  .nintaro-greeting {
    margin-bottom: 3rem;
  }

  .nintaro-greeting__image {
    max-width: 600px;
  }

  .header__inner {
    padding: 0.75rem 2.5rem;
  }

  .header__logo img {
    width: 60px;
  }

  .nav__link {
    padding: 0.5rem 1rem;
  }

  .nintaro-intro-img {
    width: 240px;
    height: 240px;
  }

  .hero__nintaro-img {
    width: 160px;
    height: 160px;
  }

  .greeting-message {
    font-size: 1.75rem;
    padding: 2.5rem 4rem;
  }

  .products-hero__nintaro-img {
    width: 140px;
    height: 140px;
  }

  .wrapper {
    padding: 0 2rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product {
    padding: 2rem 2.5rem 2.5rem;
  }

  .product__image-wrapper {
    margin-bottom: 2rem;
  }

  .product__image {
    max-width: 380px;
    margin: 0 auto 2rem;
  }

  .product__nintaro {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 240px;
  }

  .product__title {
    font-size: 1.75rem;
  }

  .product__qa {
    padding: 1.75rem;
  }

  .pillar__title {
    font-size: 1.25rem;
  }

  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .pillar--with-image {
    flex-direction: column;
  }

  .forest__slider-image {
    max-width: 450px;
    margin: 0 auto;
  }

  .pillar__image-wrapper {
    width: 100%;
    height: 260px;
    padding: 0.75rem;
  }

  .pillar__content {
    width: 100%;
    padding: 2rem;
  }

  .flow__item {
    padding: 2.5rem;
  }

  .flow__number {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }

  .flow__title {
    font-size: 1.375rem;
  }

  .flow__image-wrapper {
    width: 35%;
  }

  .forest-hero-section__header {
    padding: 3rem 2rem 2.5rem;
  }

  .forest-hero-section__title {
    font-size: 2.25rem;
  }

  .forest-hero-section__lead {
    font-size: 1.0625rem;
  }

  .forest__slider {
    width: min(100%, 720px);
  }

  .forest__slider-btn {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .forest__slider-btn--prev {
    left: 20px;
  }

  .forest__slider-btn--next {
    right: 20px;
  }

  .forest__slider-dots {
    gap: 10px;
    margin-top: 20px;
  }

  .forest__slider-dot {
    width: 12px;
    height: 12px;
  }

  .forest-business {
    grid-template-columns: 1fr 2fr;
  }

  .forest-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .social-header-with-nintaro {
    position: relative;
    justify-content: center;
    gap: 0;
  }

  .social-header-center {
    max-width: 650px;
  }

  .social-header-center .cute-title {
    font-size: 2rem;
  }

  .social-header-center .section__subtitle {
    font-size: 1.0625rem;
  }

  .social-header-right {
    position: absolute;
    right: 0;
  }

  .social-nintaro-large {
    width: 220px;
  }

  .profile-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nintaro-hero__title {
    font-size: 2.75rem;
  }

  .nintaro-hero__lead {
    font-size: 1.1875rem;
  }

  .nintaro-hero__button {
    font-size: 1.125rem;
    padding: 1rem 2.25rem;
  }

  .profile-book {
    padding: 3.5rem;
  }

  .profile-intro {
    padding: 3rem;
  }

  .profile-intro__text {
    font-size: 1.125rem;
  }

  .profile-table th {
    width: 30%;
    font-size: 1rem;
  }

  .profile-table td {
    font-size: 1rem;
  }

  .cute-box {
    padding: 3rem;
  }

  .message-bubble {
    padding: 2.5rem;
  }

  .message-bubble .lead-text {
    font-size: 1.0625rem;
  }

  .cute-title {
    font-size: 2rem;
    padding: 0.75rem 2rem;
    border-radius: 35px;
  }

  .section__subtitle {
    font-size: 1.0625rem;
  }

  .social-card__title {
    font-size: 1.625rem;
  }

  .social-card__text {
    font-size: 1.0625rem;
  }

  .message-signature {
    font-size: 1.0625rem;
  }

  .profile-book {
    border-radius: 28px;
  }

  .cute-box {
    border-radius: 28px;
  }
}

@supports not (aspect-ratio: 1) {
  .card__image,
  .product__image,
  .map__image {
    height: auto;
  }
}

@media print {
  body {
    background-color: #fff;
    color: #000;
  }

  .header,
  .footer,
  .button,
  .anchor-nav {
    display: none !important;
  }

  .section {
    padding: 1.5rem 0;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.75rem;
  }
}
/* にんたろうプロフィール（新UI） */
.profile2 {
  margin-top: 10px;
}

.profile2-row {
  padding: 28px 0 18px;
}

.profile2-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile2-dot {
  font-size: 18px;
  line-height: 1;
  color: var(--color-brown, #9C6B4A);
}

.profile2-title {
  margin: 0;
  font-weight: 800;
  color: var(--color-brown, #9C6B4A);
  font-size: clamp(16px, 2vw, 20px);
}

.profile2-right {
  margin-top: 10px;
}

.profile2-value {
  margin: 0;
  font-weight: 800;
  color: var(--color-text, #2A2A2A);
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.02em;
}

.profile2-note {
  margin: 8px 0 0;
  font-size: 0.875rem;
  color: var(--color-subtext, #555555);
  font-weight: 400;
}

.profile2-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.profile2-accent {
  width: 34%;
  max-width: 520px;
  height: 4px;
  background: var(--color-brown, #9C6B4A);
  border-radius: 999px;
}

.profile2-line {
  flex: 1;
  height: 2px;
  background: var(--color-border, #E0D9CE);
}

@media (min-width: 900px) {
  .profile2-row {
    display: grid;
    grid-template-columns: 340px 1fr;
    column-gap: 56px;
    align-items: center;
  }

  .profile2-right {
    margin-top: 0;
  }

  .profile2-rule {
    grid-column: 1 / -1;
    margin-top: 22px;
  }
}

@media (max-width: 899px) {
  .profile2-row {
    display: block;
  }

  .profile2-left {
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-brown, #9C6B4A);
  }

  .profile2-right {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border, #E0D9CE);
  }

  .profile2-rule {
    display: none;
  }
}

/* ブログ投稿がない場合のメッセージ */
.blog-empty {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-border, #E0D9CE);
}

.blog-empty__text {
  margin: 0;
  font-size: 1.125rem;
  color: var(--color-subtext, #555555);
  line-height: 1.8;
}

/* ブログ記事ページ */
.blog-post {
  padding: 2rem 0 4rem;
}

.blog-post__breadcrumb {
  margin-bottom: 2rem;
}

.blog-post__back-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-brown, #9C6B4A);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.blog-post__back-link:hover {
  color: var(--color-gold, #B89B5E);
}

.blog-post__header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border, #E0D9CE);
}

.blog-post__date {
  display: block;
  font-size: 0.875rem;
  color: var(--color-subtext, #555555);
  margin-bottom: 1rem;
}

.blog-post__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-text, #2A2A2A);
  line-height: 1.4;
  margin: 0;
}

.blog-post__image-wrapper {
  margin-bottom: 3rem;
}

.blog-post__image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-post__content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post__content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-brown, #9C6B4A);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-gold, #B89B5E);
}

.blog-post__content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text, #2A2A2A);
  margin: 2rem 0 1rem;
}

.blog-post__content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.blog-post__figure {
  margin: 2rem 0;
  text-align: center;
}

.blog-post__content-image {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.blog-post__caption {
  font-size: 0.875rem;
  color: var(--color-subtext, #555555);
  font-style: italic;
}

.blog-post__list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.blog-post__list li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.blog-post__quote {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: var(--color-base, #FAFAF7);
  border-left: 4px solid var(--color-gold, #B89B5E);
  font-style: italic;
  color: var(--color-subtext, #555555);
}

.blog-post__related {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: var(--color-base, #FAFAF7);
  border-radius: 8px;
}

.blog-post__related h3 {
  margin-top: 0;
}

.blog-post__link-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.blog-post__link-list li {
  margin-bottom: 0.5rem;
}

.blog-post__link-list a {
  color: var(--color-brown, #9C6B4A);
  text-decoration: none;
  font-weight: 600;
}

.blog-post__link-list a:hover {
  color: var(--color-gold, #B89B5E);
  text-decoration: underline;
}

.blog-post__footer {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border, #E0D9CE);
}

@media (max-width: 719px) {
  .blog-post {
    padding: 1.5rem 0 3rem;
  }

  .blog-post__content h2 {
    font-size: 1.5rem;
  }

  .blog-post__content h3 {
    font-size: 1.25rem;
  }
}
