@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Zen+Kurenaido&display=swap');

/* ===========================
   Foundation - Variables
=========================== */
:root {
  --brown-dark:   #4B2E17;
  --brown-btn:    #6B4226;
  --brown-mid:    #8B5E3C;
  --brown-light:  #C4956A;
  --beige-dark:   #E2CBA8;
  --beige-mid:    #F0E6D3;
  --beige-light:  #FAF6EF;
  --cream:        #FFFDF8;
  --text-dark:    #3A2416;
  --text-mid:     #7A6050;
  --text-light:   #A08870;
  --border:       #D9C5A8;
  --inner:        1100px;
  --radius-card:  12px;
  --radius-btn:   50px;
}

/* ===========================
   Foundation - Reset
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ===========================
   Foundation - Base
=========================== */
html { scroll-behavior: smooth; }
body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  background: var(--cream);
}

/* ===========================
   Layout
=========================== */
.l-wrapper { overflow: hidden; }

.l-inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 767.9px) {
  .l-inner { padding: 0 20px; }
}

/* ===========================
   Component - Section Title
=========================== */
.c-section-title {
  text-align: center;
  margin-bottom: 48px;
}
.c-section-title__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.c-section-title__deco::before,
.c-section-title__deco::after {
  content: '';
  display: block;
  width: 34px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C4956A' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M31 18C21 15 14 9 8 3'/%3E%3Cpath d='M10 5C9 1 5 1 4 4c2 3 5 3 6 1Z'/%3E%3Cpath d='M16 10c0-4-4-5-7-3 1 4 4 5 7 3Z'/%3E%3Cpath d='M22 14c1-4-2-6-6-5 0 4 3 6 6 5Z'/%3E%3Cpath d='M27 17c2-3 0-6-4-6-1 4 1 6 4 6Z'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}
.c-section-title__deco::after {
  transform: scaleX(-1);
}
.c-section-title__leaf {
  font-size: 16px;
  color: var(--brown-light);
}
.c-section-title__ja {
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}
.c-section-title__en {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brown-light);
  margin-top: 4px;
}

/* ===========================
   Component - Buttons
=========================== */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity 0.2s, background 0.2s;
}
.c-btn--primary {
  background: var(--brown-btn);
  color: #fff;
}
.c-btn--primary:hover { opacity: 0.85; }

.c-btn--outline {
  background: transparent;
  border: 1px solid var(--brown-mid);
  color: var(--brown-mid);
  font-size: 13px;
  padding: 10px 24px;
}
.c-btn--outline:hover { background: var(--beige-mid); }

.c-btn--header {
  background: var(--brown-dark);
  color: #fff;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
}
.c-btn--header:hover { opacity: 0.85; }

/* ===========================
   Component - Badge / Tag
=========================== */
.c-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.4;
}
.c-badge__icon { font-size: 18px; color: var(--brown-mid); }

.c-tag {
  display: inline-block;
  font-size: 11px;
  color: #fff;
  background: var(--brown-mid);
  border-radius: 4px;
  padding: 3px 8px;
}

/* ===========================
   Component - Point Card
=========================== */
.c-point-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 16px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.c-point-card__icon {
  font-size: 22px;
  color: var(--brown-mid);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--beige-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-point-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}
.c-point-card__text {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===========================
   Project - Header
=========================== */
.p-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--beige-dark);
}
.p-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.p-header__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-header__logo-mark svg {
  width: 44px;
  height: 44px;
  color: var(--brown-mid);
}
.p-header__logo-text { line-height: 1.2; }
.p-header__logo-text--sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-mid);
}
.p-header__logo-text--main {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.18em;
}
.p-header__tagline {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.p-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.p-header__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
  padding-bottom: 2px;
}
.p-header__nav-link--ja {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}
.p-header__nav-link--en {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-light);
}
.p-header__nav-link.is-active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brown-mid);
  border-radius: 2px;
}
.p-header__nav-link:hover .p-header__nav-link--ja { color: var(--brown-mid); }

@media (max-width: 767.9px) {
  .p-header__nav { display: none; }
  .p-header__cta { display: none; }
  .p-header__inner { justify-content: space-between; }
  .p-header__tagline { display: none; }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .p-header__inner {
    gap: 18px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .p-header__logo-mark svg {
    width: 36px;
    height: 36px;
  }
  .p-header__logo-text--main {
    font-size: 20px;
    letter-spacing: 0.12em;
  }
  .p-header__tagline {
    display: none;
  }
  .p-header__nav {
    gap: 18px;
  }
  .p-header__nav-link--ja {
    font-size: 12px;
  }
  .p-header__nav-link--en {
    font-size: 9px;
  }
  .c-btn--header {
    padding: 9px 14px;
    font-size: 12px;
  }
}

/* ===========================
   Project - Footer
=========================== */
.p-footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 24px;
}
.p-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.p-footer__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.p-footer__logo-mark svg {
  width: 36px;
  height: 36px;
  color: var(--beige-dark);
}
.p-footer__logo-text--sub { font-size: 9px; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); display: block; }
.p-footer__logo-text--main { font-family: 'Lato', sans-serif; font-size: 21px; font-weight: 700; letter-spacing: 0.16em; color: #fff; display: block; }
.p-footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.p-footer__nav-link {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.p-footer__nav-link:hover { color: #fff; }
.p-footer__sns { display: flex; gap: 16px; align-items: center; }
.p-footer__sns-link { font-size: 13px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.p-footer__sns-link:hover { color: #fff; }
.p-footer__copy { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; text-align: center; }

@media (max-width: 767.9px) {
  .p-footer__nav { gap: 16px; }
}

/* ===========================
   Project - Hero (トップ)
=========================== */
.p-hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}
.p-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px 80px;
  max-width: 620px;
  min-height: 580px;
  background: linear-gradient(to right, rgba(250,246,239,0.92) 70%, rgba(250,246,239,0) 100%);
}
.p-hero__deco-leaf {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  opacity: 0.35;
  color: var(--brown-light);
}
.p-hero__title {
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.p-hero__text {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 36px;
}
.p-hero__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.p-hero__badges .c-badge {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(196,149,106,0.22);
  box-shadow: 0 8px 24px rgba(74,46,23,0.08);
}
.p-hero__badges .c-badge__icon {
  display: block;
  width: 28px;
  height: 28px;
  font-size: 0;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-hero__badges .c-badge:nth-child(1) .c-badge__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 28V5'/%3E%3Cpath d='M16 10c-5-1-8-4-9-7 5 0 8 3 9 7Z'/%3E%3Cpath d='M16 14c5-1 8-4 9-7-5 0-8 3-9 7Z'/%3E%3Cpath d='M16 19c-5-1-8-4-9-7 5 0 8 3 9 7Z'/%3E%3Cpath d='M16 23c5-1 8-4 9-7-5 0-8 3-9 7Z'/%3E%3Cpath d='M8 28h16'/%3E%3C/g%3E%3C/svg%3E");
}
.p-hero__badges .c-badge:nth-child(2) .c-badge__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 27V12'/%3E%3Cpath d='M15 15C9 14 6 10 6 6c5 0 9 3 9 9Z'/%3E%3Cpath d='M17 17c6-1 9-5 9-9-5 0-9 3-9 9Z'/%3E%3Cpath d='M12 27h8'/%3E%3Cpath d='M10 22c2-2 4-3 6-3s4 1 6 3'/%3E%3C/g%3E%3C/svg%3E");
}
.p-hero__badges .c-badge:nth-child(3) .c-badge__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 4C10 12 7 17 7 22a9 9 0 0 0 18 0c0-5-3-10-9-18Z'/%3E%3Cpath d='M12 23c1 2 3 3 5 3'/%3E%3C/g%3E%3C/svg%3E");
}
.p-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767.9px) {
  .p-hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .p-hero__content {
    padding: 40px 20px;
    max-width: none;
    min-height: auto;
    order: 2;
    background: var(--beige-light);
  }
  .p-hero__title { font-size: 28px; }
  .p-hero__image {
    position: relative;
    inset: auto;
    height: 260px;
    order: 1;
  }
}

/* ===========================
   Project - Products Section (トップ)
=========================== */
.p-top-products {
  padding: 80px 0;
  background: var(--cream);
}
.p-top-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.p-product-card {
  border-radius: var(--radius-card);
  overflow: visible;
  background: var(--cream);
  transition: box-shadow 0.2s;
}
.p-product-card:hover { box-shadow: 0 4px 20px rgba(74,46,23,0.1); }
.p-product-card__image {
  position: relative;
  height: 220px;
  overflow: visible;
}
.p-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  border-radius: var(--radius-card);
}
.p-product-card:hover .p-product-card__image img { transform: scale(1.04); }
.p-product-card__tag {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(147,109,67,0.85);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.p-product-card__body { padding: 20px; text-align: center; }
.p-product-card__title {
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.p-product-card__text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

@media (max-width: 767.9px) {
  .p-top-products__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===========================
   Project - About Section (トップ)
=========================== */
.p-top-about {
  background: var(--beige-mid);
  overflow: hidden;
}
.p-top-about__inner {
  display: grid;
  grid-template-columns: 33.5% 33% 33.5%;
  align-items: stretch;
  min-height: 350px;
}
.p-top-about__lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 54px 44px;
  background: var(--beige-mid);
}
.p-top-about__label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brown-mid);
  margin-bottom: 18px;
}
.p-top-about__title {
  position: relative;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-dark);
  letter-spacing: 0.14em;
  margin-bottom: 0;
}
.p-top-about__title::before,
.p-top-about__title::after {
  content: '';
  display: inline-block;
  width: 34px;
  height: 22px;
  margin: 0 12px;
  vertical-align: -4px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C4956A' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M31 18C21 15 14 9 8 3'/%3E%3Cpath d='M10 5C9 1 5 1 4 4c2 3 5 3 6 1Z'/%3E%3Cpath d='M16 10c0-4-4-5-7-3 1 4 4 5 7 3Z'/%3E%3Cpath d='M22 14c1-4-2-6-6-5 0 4 3 6 6 5Z'/%3E%3Cpath d='M27 17c2-3 0-6-4-6-1 4 1 6 4 6Z'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}
.p-top-about__title::after {
  transform: scaleX(-1);
}
.p-top-about__title span { display: inline; }
.p-top-about__text {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 22px;
  max-width: 330px;
}
.p-top-about__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  background: var(--beige-mid);
}
.p-about-point {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.p-about-point:nth-child(2n) { border-right: none; }
.p-about-point:nth-last-child(-n + 2) { border-bottom: none; }
.p-about-point__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,253,248,0.72);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--brown-mid);
  flex-shrink: 0;
  font-size: 0;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}
.p-about-point:nth-child(1) .p-about-point__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 28V5'/%3E%3Cpath d='M16 10c-5-1-8-4-9-7 5 0 8 3 9 7Z'/%3E%3Cpath d='M16 14c5-1 8-4 9-7-5 0-8 3-9 7Z'/%3E%3Cpath d='M16 19c-5-1-8-4-9-7 5 0 8 3 9 7Z'/%3E%3Cpath d='M16 23c5-1 8-4 9-7-5 0-8 3-9 7Z'/%3E%3Cpath d='M8 28h16'/%3E%3C/g%3E%3C/svg%3E");
}
.p-about-point:nth-child(2) .p-about-point__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 27V12'/%3E%3Cpath d='M15 15C9 14 6 10 6 6c5 0 9 3 9 9Z'/%3E%3Cpath d='M17 17c6-1 9-5 9-9-5 0-9 3-9 9Z'/%3E%3Cpath d='M12 27h8'/%3E%3Cpath d='M10 22c2-2 4-3 6-3s4 1 6 3'/%3E%3C/g%3E%3C/svg%3E");
}
.p-about-point:nth-child(3) .p-about-point__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 28C9 22 7 16 8 8c5 2 8 6 8 13 0-7 3-11 8-13 1 8-1 14-8 20Z'/%3E%3Cpath d='M16 21v7'/%3E%3C/g%3E%3C/svg%3E");
}
.p-about-point:nth-child(4) .p-about-point__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 14c-2-3-5-2-5 2v4c0 4 3 7 7 7h6c4 0 7-3 7-7v-4c0-4-3-5-5-2'/%3E%3Cpath d='M12 18V9c0-2 3-2 3 0v8'/%3E%3Cpath d='M17 17V8c0-2 3-2 3 0v10'/%3E%3Cpath d='M9 18c2 1 4 2 6 2h2c2 0 4-1 6-2'/%3E%3C/g%3E%3C/svg%3E");
}
.p-about-point__title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.p-about-point__text { font-size: 12px; color: var(--text-mid); line-height: 1.7; }
.p-top-about__image {
  overflow: hidden;
  min-height: 350px;
  position: relative;
}
.p-top-about__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, var(--beige-mid) 0%, rgba(240,230,211,0.72) 42%, rgba(240,230,211,0) 100%);
  z-index: 1;
  pointer-events: none;
}
.p-top-about__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 767.9px) {
  .p-top-about__inner { grid-template-columns: 1fr; }
  .p-top-about__lead { padding: 48px 20px; }
  .p-top-about__image { min-height: 260px; }
  .p-top-about__points { grid-template-columns: 1fr; }
  .p-about-point,
  .p-about-point:nth-child(2n),
  .p-about-point:nth-last-child(-n + 2) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .p-about-point:last-child { border-bottom: none; }
}

/* ===========================
   Project - Contact Section (トップ)
=========================== */
.p-top-contact {
  background: var(--beige-mid);
  overflow: hidden;
}
.p-top-contact__inner {
  display: grid;
  grid-template-columns: 32% 36% 32%;
  min-height: 330px;
}
.p-top-contact__image { position: relative; min-height: 330px; overflow: hidden; }
.p-top-contact__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.p-top-contact__image-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  background: rgba(74,46,23,0.6);
  padding: 16px 24px;
  border-radius: 8px;
}
.p-top-contact__main {
  background: var(--cream);
  padding: 42px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.p-top-contact__aside {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background: var(--beige-light);
}
.p-top-contact__aside img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.p-top-contact__label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brown-mid);
  margin-top: -8px;
  margin-bottom: 8px;
}
.p-top-contact__title {
  position: relative;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: 0.1em;
}
.p-top-contact__title::before,
.p-top-contact__title::after {
  content: '';
  display: inline-block;
  width: 34px;
  height: 22px;
  margin: 0 12px;
  vertical-align: -4px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C4956A' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M31 18C21 15 14 9 8 3'/%3E%3Cpath d='M10 5C9 1 5 1 4 4c2 3 5 3 6 1Z'/%3E%3Cpath d='M16 10c0-4-4-5-7-3 1 4 4 5 7 3Z'/%3E%3Cpath d='M22 14c1-4-2-6-6-5 0 4 3 6 6 5Z'/%3E%3Cpath d='M27 17c2-3 0-6-4-6-1 4 1 6 4 6Z'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}
.p-top-contact__title::after {
  transform: scaleX(-1);
}
.p-top-contact__text {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 360px;
}
.p-top-contact__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 4px;
  padding: 8px 24px;
  border: 1px solid var(--brown-mid);
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
}
.p-top-contact__tel-note { font-size: 11px; color: var(--text-light); margin-bottom: 16px; }
.p-top-contact__aside-title { font-weight: 700; color: var(--text-dark); margin-bottom: 8px; font-size: 14px; }

@media (max-width: 767.9px) {
  .p-top-contact__inner { grid-template-columns: 1fr; }
  .p-top-contact__image { min-height: 180px; }
  .p-top-contact__main { padding: 42px 20px; }
  .p-top-contact__aside { min-height: 220px; }
  .p-top-contact__tel { font-size: 20px; }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .p-top-about__inner {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .p-top-about__lead {
    padding: 44px 32px;
  }
  .p-top-about__image {
    grid-column: 1 / -1;
    min-height: 300px;
  }
  .p-top-about__image::before {
    width: 100%;
    height: 90px;
    background: linear-gradient(to bottom, var(--beige-mid), rgba(240,230,211,0));
  }
  .p-about-point {
    padding: 24px 22px;
  }
  .p-top-contact__inner {
    grid-template-columns: 1fr 1fr;
  }
  .p-top-contact__main {
    padding: 42px 34px;
  }
  .p-top-contact__aside {
    grid-column: 1 / -1;
    min-height: 280px;
  }
}

/* ===========================
   Project - Page Hero
=========================== */
.p-page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  background: var(--beige-light);
  overflow: hidden;
}
.p-page-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 80px;
}
.p-page-hero__en {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--brown-light);
  margin-bottom: 8px;
}
.p-page-hero__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.p-page-hero__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}
.p-page-hero__image { overflow: hidden; }
.p-page-hero__image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 767.9px) {
  .p-page-hero { grid-template-columns: 1fr; min-height: auto; }
  .p-page-hero__content { padding: 40px 20px; order: 2; }
  .p-page-hero__title { font-size: 28px; }
  .p-page-hero__image { height: 220px; order: 1; }
}

/* ===========================
   Project - Products Page
=========================== */
.p-products { padding: 80px 0; background: var(--cream); }
.p-product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.p-product-section:last-of-type { border-bottom: none; }
.p-product-section--reverse { direction: rtl; }
.p-product-section--reverse > * { direction: ltr; }
.p-product-section__image { border-radius: var(--radius-card); overflow: hidden; }
.p-product-section__image img { width: 100%; height: 320px; object-fit: cover; }
.p-product-section__badge {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brown-light);
  margin-bottom: 8px;
}
.p-product-section__title { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.p-product-section__subtitle { font-size: 14px; color: var(--text-mid); margin-bottom: 16px; }
.p-product-section__text { font-size: 14px; color: var(--text-mid); line-height: 1.9; margin-bottom: 24px; }
.p-product-section__points-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.p-product-section__points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.p-lineup {
  padding: 80px 0;
  background: var(--beige-light);
}
.p-lineup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.p-lineup-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 24px;
}
.p-lineup-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.p-lineup-card__title-icon { color: var(--brown-light); }
.p-lineup-card__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.p-lineup-card__images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}
.p-lineup-card__labels {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.p-products-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 60px 0;
}
.p-products-cta-card {
  background: var(--beige-mid);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-products-cta-card__title { font-size: 18px; font-weight: 700; color: var(--text-dark); }
.p-products-cta-card__text { font-size: 13px; color: var(--text-mid); line-height: 1.8; }

@media (max-width: 767.9px) {
  .p-product-section { grid-template-columns: 1fr; gap: 24px; }
  .p-product-section--reverse { direction: ltr; }
  .p-product-section__image img { height: 220px; }
  .p-lineup__grid { grid-template-columns: 1fr; }
  .p-lineup-card__images { grid-template-columns: repeat(3, 1fr); }
  .p-products-cta { grid-template-columns: 1fr; }
}

/* Products page polish */
.page-products .p-products-title {
  padding: 34px 0 22px;
  background: var(--beige-light);
}
.page-products .p-products-title .c-section-title {
  margin-bottom: 0;
}
.page-products .p-products-title .c-section-title__deco {
  gap: 26px;
}
.page-products .p-products-title .c-section-title__ja {
  font-size: 40px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.page-products .p-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  min-height: 365px;
  background: linear-gradient(90deg, var(--cream), var(--beige-light));
}
.page-products .p-page-hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 90px;
  height: 130px;
  opacity: 0.5;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 90 130' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C4956A' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 118C34 84 51 45 72 8'/%3E%3Cpath d='M26 94c-9-5-17-4-24 3 8 7 18 7 24-3Z'/%3E%3Cpath d='M38 71c-11-4-20-2-27 7 10 6 20 5 27-7Z'/%3E%3Cpath d='M49 51c-10-5-18-4-25 4 8 7 18 7 25-4Z'/%3E%3Cpath d='M59 32c-9-5-16-4-22 3 7 7 16 7 22-3Z'/%3E%3Cpath d='M31 91c2-11 8-18 18-22 2 12-5 20-18 22Z'/%3E%3Cpath d='M44 66c2-12 8-20 19-23 2 13-5 21-19 23Z'/%3E%3Cpath d='M56 43c2-11 8-18 18-22 2 12-5 20-18 22Z'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}
.page-products .p-page-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 70px 88px max(70px, calc((100vw - var(--inner)) / 2 + 40px));
}
.page-products .p-page-hero__title {
  display: block;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 22px;
  white-space: nowrap;
}
.page-products .p-page-hero__title span {
  display: inline;
}
.page-products .p-page-hero__text {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 2;
}
.page-products .p-page-hero__image {
  position: relative;
  min-height: 365px;
}
.page-products .p-page-hero__image::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 -1px;
  width: 170px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, var(--cream) 0%, rgba(255,253,248,0.78) 38%, rgba(255,253,248,0) 100%);
}
.page-products .p-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.page-products .p-products {
  padding: 0 0 42px;
  margin-top: -64px;
  background: linear-gradient(180deg, var(--beige-light), var(--cream) 20%);
}
.page-products .p-product-section {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: stretch;
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(217,197,168,0.5);
  border-radius: 12px;
  background: rgba(255,253,248,0.95);
  box-shadow: 0 8px 22px rgba(74,46,23,0.045);
  overflow: hidden;
}
.page-products .p-product-section > * {
  min-width: 0;
}
.page-products .p-product-section--reverse {
  direction: ltr;
}
.page-products .p-product-section--reverse > * {
  direction: ltr;
}
.page-products .p-product-section:last-of-type {
  border-bottom: 1px solid rgba(217,197,168,0.5);
}
.page-products .p-product-section__image {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  aspect-ratio: 1.62 / 1;
  overflow: hidden;
  border-radius: 8px;
}
.page-products .p-product-section__image img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-products .p-product-section__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-products .p-product-section__points-label {
  margin-top: auto;
}
.page-products .p-product-section__title {
  position: relative;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.page-products .p-product-section__title::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 32px;
  margin-right: 10px;
  vertical-align: -6px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.page-products .p-product-section:nth-of-type(1) .p-product-section__title::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 22c0-6 5-11 12-11h3c4 0 7 3 7 7s-3 7-7 7H7Z'/%3E%3Cpath d='M7 22c-3 0-5-2-5-5 0-4 3-7 8-7h5'/%3E%3Cpath d='M10 26h15'/%3E%3Cpath d='M13 13c2 3 2 6 0 9'/%3E%3Cpath d='M19 12c2 4 2 8 0 12'/%3E%3C/g%3E%3C/svg%3E");
}
.page-products .p-product-section:nth-of-type(2) .p-product-section__title::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 20c0-6 5-11 11-11s11 5 11 11'/%3E%3Cpath d='M6 20c0 5 5 8 11 8s11-3 11-8'/%3E%3Cellipse cx='17' cy='19' rx='4' ry='3'/%3E%3Cpath d='M8 22c5 3 13 3 18 0'/%3E%3Cpath d='M11 12c2-3 5-5 6-7 1 2 4 4 6 7'/%3E%3C/g%3E%3C/svg%3E");
}
.page-products .p-product-section:nth-of-type(3) .p-product-section__title::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='13' cy='18' r='8'/%3E%3Cpath d='M19 13c5 0 9 4 9 9 0 3-2 5-5 6'/%3E%3Cpath d='M10 16h.1M15 14h.1M16 20h.1M11 23h.1'/%3E%3Cpath d='M22 18h.1M25 23h.1'/%3E%3C/g%3E%3C/svg%3E");
}
.page-products .p-product-section__subtitle,
.page-products .p-product-section__text {
  color: var(--text-dark);
}
.page-products .p-product-section__points-label {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  border-bottom: none;
  padding-bottom: 0;
  text-align: center;
}
.page-products .p-product-section__points-label::before,
.page-products .p-product-section__points-label::after {
  content: '';
  height: 1px;
  border-top: 1px dashed var(--border);
}
.page-products .p-product-section__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.page-products .p-product-section--reverse .p-product-section__points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.page-products .c-point-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 112px;
  height: auto;
  padding: 15px 10px;
  background: var(--cream);
}
.page-products .c-point-card__icon {
  background: transparent;
  border: 1px solid rgba(196,149,106,0.35);
  font-size: 0;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px 28px;
}
.page-products .c-point-card:nth-child(1) .c-point-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 28V5'/%3E%3Cpath d='M16 10c-5-1-8-4-9-7 5 0 8 3 9 7Z'/%3E%3Cpath d='M16 14c5-1 8-4 9-7-5 0-8 3-9 7Z'/%3E%3Cpath d='M16 19c-5-1-8-4-9-7 5 0 8 3 9 7Z'/%3E%3Cpath d='M16 23c5-1 8-4 9-7-5 0-8 3-9 7Z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-products .c-point-card:nth-child(2) .c-point-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 27V12'/%3E%3Cpath d='M15 15C9 14 6 10 6 6c5 0 9 3 9 9Z'/%3E%3Cpath d='M17 17c6-1 9-5 9-9-5 0-9 3-9 9Z'/%3E%3Cpath d='M12 27h8'/%3E%3Cpath d='M10 22c2-2 4-3 6-3s4 1 6 3'/%3E%3C/g%3E%3C/svg%3E");
}
.page-products .c-point-card:nth-child(3) .c-point-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 20c0-5 4-9 9-9h2c3 0 5 2 5 5s-2 5-5 5H9Z'/%3E%3Cpath d='M9 20c-2 0-3-1-3-3s2-4 4-4h3'/%3E%3Cpath d='M12 24h10'/%3E%3Cpath d='M14 14c1 2 1 4 0 6'/%3E%3C/g%3E%3C/svg%3E");
}
.page-products .c-point-card:nth-child(4) .c-point-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='16' cy='16' r='9'/%3E%3Cpath d='M12 14h.1M20 14h.1'/%3E%3Cpath d='M12 19c2 2 6 2 8 0'/%3E%3C/g%3E%3C/svg%3E");
}

.page-products .p-lineup {
  padding: 28px 0 34px;
  background: var(--cream);
}
.page-products .p-lineup .c-section-title {
  margin-bottom: 18px;
}
.page-products .p-lineup .c-section-title__ja {
  font-size: 27px;
}
.page-products .p-lineup__grid {
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--cream);
  overflow: hidden;
}
.page-products .p-lineup-card {
  border: 0;
  border-right: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  text-align: center;
}
.page-products .p-lineup-card:last-child {
  border-right: 0;
}
.page-products .p-lineup-card__images img {
  border-radius: 8px;
}
.page-products .p-lineup-card__title {
  justify-content: center;
  text-align: center;
}
.page-products .p-lineup-card__labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}
.page-products .p-lineup-card__labels span {
  display: block;
  overflow-wrap: anywhere;
  text-align: center;
  line-height: 1.5;
}
.page-products .p-lineup-card .c-btn {
  align-self: center;
  justify-content: center;
  padding: 0;
  border: 0;
  min-width: 0;
  margin: 8px auto 0;
  text-align: center;
}
.page-products main > .p-products:last-of-type {
  padding: 0 0 36px;
  margin-top: 0;
  background: var(--cream);
}
.page-products .p-products-cta {
  gap: 28px;
  padding: 0;
}
.page-products .p-products-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(120px, 0.65fr);
  align-items: center;
  min-height: 168px;
  padding: 30px 34px;
  background: var(--beige-light);
  gap: 26px;
}
.page-products .p-products-cta-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.page-products .p-products-cta-card__title {
  line-height: 1.7;
  margin-bottom: 10px;
}
.page-products .p-products-cta-card__text {
  max-width: 300px;
  margin-bottom: 18px;
}
.page-products .p-products-cta-card .c-btn {
  margin-top: 4px;
}
.page-products .p-products-cta-card__image,
.page-products .p-products-cta-card__illust {
  overflow: hidden;
  border-radius: 8px;
  min-height: 96px;
}
.page-products .p-products-cta-card__image img {
  width: 100%;
  height: 96px;
  object-fit: cover;
}
.page-products .p-products-cta-card__illust {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 170 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M44 63h82'/%3E%3Cpath d='M58 63c-2-16 7-26 21-26s23 10 21 26'/%3E%3Cpath d='M49 61c-8-10-5-24 8-28 7 7 6 20-8 28Z'/%3E%3Cpath d='M124 61c8-10 5-24-8-28-7 7-6 20 8 28Z'/%3E%3Cpath d='M72 56c7-7 16-7 24 0'/%3E%3Cpath d='M61 71h65'/%3E%3Cpath d='M75 79h36'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

@media (max-width: 1100px) {
  .page-products .p-page-hero {
    grid-template-columns: 1fr 1fr;
  }
  .page-products .p-page-hero__content {
    padding-left: 40px;
    padding-right: 36px;
  }
  .page-products .p-page-hero__title {
    white-space: normal;
  }
  .page-products .p-page-hero__title span {
    display: block;
  }
  .page-products .p-product-section,
  .page-products .p-product-section--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .page-products .p-product-section__points,
  .page-products .p-product-section--reverse .p-product-section__points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.9px) {
  .page-products .p-products-title {
    padding: 30px 0 18px;
  }
  .page-products .p-products-title .c-section-title__ja {
    font-size: 34px;
  }
  .page-products .p-page-hero {
    grid-template-columns: 1fr;
  }
  .page-products .p-page-hero__content {
    padding: 38px 20px 52px;
  }
  .page-products .p-page-hero__image {
    min-height: 220px;
  }
  .page-products .p-products {
    margin-top: 0;
    padding-top: 28px;
  }
  .page-products .p-product-section {
    padding: 18px;
  }
  .page-products .p-product-section__points,
  .page-products .p-product-section--reverse .p-product-section__points {
    grid-template-columns: 1fr;
  }
  .page-products .p-lineup__grid {
    grid-template-columns: 1fr;
  }
  .page-products .p-lineup-card,
  .page-products .p-lineup-card:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .page-products .p-products-cta,
  .page-products .p-products-cta-card {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   Project - About Page
=========================== */
.p-about { padding: 80px 0; background: var(--cream); }

.p-about-message {
  padding: 60px 80px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  text-align: center;
  margin-bottom: 80px;
}
.p-about-message__title { font-size: 24px; font-weight: 700; margin-bottom: 20px; color: var(--text-dark); }
.p-about-message__text { font-size: 14px; color: var(--text-mid); line-height: 2; max-width: 640px; margin: 0 auto; }

.p-about-ingredients {
  margin-bottom: 80px;
}
.p-about-ingredients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.p-about-ingredient {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-about-ingredient__top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}
.p-about-ingredient__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--beige-mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--brown-mid);
  flex-shrink: 0;
}
.p-about-ingredient__name { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.p-about-ingredient__image { border-radius: 8px; overflow: hidden; }
.p-about-ingredient__image img { width: 100%; height: 180px; object-fit: cover; }
.p-about-ingredient__text { font-size: 13px; color: var(--text-mid); line-height: 1.9; }

.p-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  background: var(--beige-mid);
  margin: 0 -40px;
  padding-left: 40px;
  padding-right: 40px;
}

.p-about-story__image { border-radius: var(--radius-card); overflow: hidden; }
.p-about-story__image img { width: 100%; height: 400px; object-fit: cover; }
.p-about-story__badge {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brown-light);
  margin-bottom: 8px;
}
.p-about-story__title { font-size: 24px; font-weight: 700; line-height: 1.6; margin-bottom: 20px; }
.p-about-story__text { font-size: 14px; color: var(--text-mid); line-height: 2; }

.p-about-daily {
  padding: 80px 0;
  background: var(--cream);
}
.p-about-daily__intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.p-about-daily__intro-title { font-size: 20px; font-weight: 700; line-height: 1.6; color: var(--text-dark); }
.p-about-daily__intro-title span { display: block; }
.p-about-daily__intro-text { font-size: 14px; color: var(--text-mid); line-height: 1.9; }
.p-about-daily__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.p-about-daily__image-wrap { position: relative; }
.p-about-daily__image-wrap img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; }
.p-about-daily__image-caption { text-align: center; font-size: 12px; color: var(--text-mid); margin-top: 8px; }

.p-about-closing {
  background: var(--beige-mid);
  padding: 60px 0;
}
.p-about-closing__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
}
.p-about-closing__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  color: var(--text-dark);
}
.p-about-closing__text span { display: block; }
.p-about-closing__image { border-radius: var(--radius-card); overflow: hidden; }
.p-about-closing__image img { width: 100%; height: 200px; object-fit: cover; }

@media (max-width: 767.9px) {
  .p-about-message { padding: 40px 20px; }
  .p-about-ingredients__grid { grid-template-columns: 1fr; }
  .p-about-story { grid-template-columns: 1fr; gap: 32px; margin: 0 -20px; padding: 40px 20px; }
  .p-about-story__image img { height: 260px; }
  .p-about-daily__intro { grid-template-columns: 1fr; gap: 16px; }
  .p-about-daily__images { grid-template-columns: 1fr; }
  .p-about-closing__inner { grid-template-columns: 1fr; }
}

/* ===========================
   Project - Contact Page
=========================== */
.p-contact { padding: 80px 0; background: var(--cream); }
.p-contact__layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  margin-bottom: 60px;
}

.p-flow { margin-bottom: 40px; }
.p-flow__section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.p-flow__icon { color: var(--brown-light); }
.p-flow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.p-flow-step {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
  text-align: center;
  position: relative;
}
.p-flow-step::after {
  content: '›';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brown-light);
  font-size: 20px;
}
.p-flow-step:last-child::after { display: none; }
.p-flow-step__num {
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: var(--brown-btn);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.p-flow-step__icon { font-size: 28px; color: var(--brown-mid); margin-bottom: 8px; }
.p-flow-step__title { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.p-flow-step__text { font-size: 12px; color: var(--text-mid); line-height: 1.6; }

.p-flow__notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.p-flow-note {
  background: var(--beige-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}
.p-flow-note__title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.p-flow-note__icon { color: var(--brown-light); }
.p-flow-note__text { font-size: 12px; color: var(--text-mid); line-height: 1.7; }
.p-flow-note__list { font-size: 12px; color: var(--text-mid); line-height: 1.9; padding-left: 12px; }
.p-flow-note__list li { list-style: disc; }

.p-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-contact-info {
  background: var(--beige-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
}
.p-contact-info__title {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.p-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.p-contact-info__item:last-child { border-bottom: none; }
.p-contact-info__icon { color: var(--brown-mid); font-size: 14px; margin-top: 2px; }
.p-contact-info__label { font-size: 12px; color: var(--text-light); margin-bottom: 2px; }
.p-contact-info__value { font-size: 13px; color: var(--text-dark); font-weight: 500; }
.p-contact-info__note { font-size: 11px; color: var(--text-light); }
.p-contact-info__tel { font-size: 22px; font-family: 'Lato', sans-serif; font-weight: 700; color: var(--brown-dark); }
.p-contact-info__btn { margin-top: 8px; width: 100%; text-align: center; }

.p-contact-dm {
  background: var(--beige-mid);
  border-radius: var(--radius-card);
  padding: 20px;
  font-size: 13px;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.8;
}

/* Form */
.p-form { padding: 60px 0; background: var(--beige-light); }
.p-form__inner { max-width: 720px; margin: 0 auto; }
.p-form__required-note { font-size: 12px; color: var(--text-light); text-align: right; margin-bottom: 24px; }
.p-form__row { margin-bottom: 24px; }
.p-form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.p-form__required {
  font-size: 11px;
  background: var(--brown-btn);
  color: #fff;
  border-radius: 3px;
  padding: 2px 6px;
}
.p-form__input,
.p-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.2s;
}
.p-form__input:focus,
.p-form__textarea:focus {
  outline: none;
  border-color: var(--brown-mid);
}
.p-form__textarea { min-height: 140px; resize: vertical; }
.p-form__input::placeholder,
.p-form__textarea::placeholder { color: var(--text-light); }
.p-form__submit { text-align: center; margin-top: 32px; }
.p-form__submit .c-btn--primary { min-width: 240px; font-size: 15px; padding: 16px 40px; }
.p-form__privacy { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 16px; }

/* FAQ */
.p-faq { padding: 60px 0; background: var(--cream); }
.p-faq__inner { max-width: 720px; margin: 0 auto; }
.p-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.p-faq-item__q {
  display: flex;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.p-faq-item__q-mark {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--brown-light);
  flex-shrink: 0;
}
.p-faq-item__a {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
}
.p-faq-item__a-mark {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--brown-mid);
  flex-shrink: 0;
}

/* Contact CTA */
.p-contact-cta {
  background: var(--beige-mid);
  padding: 60px 0;
}
.p-contact-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.p-contact-cta__image { border-radius: var(--radius-card); overflow: hidden; }
.p-contact-cta__image img { width: 100%; height: 220px; object-fit: cover; }
.p-contact-cta__content { text-align: center; }
.p-contact-cta__title { font-size: 18px; font-weight: 700; line-height: 1.8; margin-bottom: 8px; }
.p-contact-cta__text { font-size: 13px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }

@media (max-width: 767.9px) {
  .p-contact__layout { grid-template-columns: 1fr; }
  .p-flow__steps { grid-template-columns: 1fr; }
  .p-flow-step::after { display: none; }
  .p-flow__notes { grid-template-columns: 1fr; }
  .p-contact-cta__inner { grid-template-columns: 1fr; }
}

/* ===========================
   Utility
=========================== */
.u-hidden-sp { display: block; }
.u-hidden-pc { display: none; }
@media (max-width: 767.9px) {
  .u-hidden-sp { display: none; }
  .u-hidden-pc { display: block; }
}

.page-products .p-lineup-card__title-icon {
  display: inline-block;
  width: 20px;
  height: 22px;
  flex: 0 0 20px;
  font-size: 0;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.page-products .p-lineup-card:nth-child(1) .p-lineup-card__title-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox=\0470 0 34 34\047 xmlns=\047http://www.w3.org/2000/svg\047%3E%3Cg fill=\047none\047 stroke=\047%238B5E3C\047 stroke-width=\0471.35\047 stroke-linecap=\047round\047 stroke-linejoin=\047round\047%3E%3Cpath d=\047M7 22c0-6 5-11 12-11h3c4 0 7 3 7 7s-3 7-7 7H7Z\047/%3E%3Cpath d=\047M7 22c-3 0-5-2-5-5 0-4 3-7 8-7h5\047/%3E%3Cpath d=\047M10 26h15\047/%3E%3Cpath d=\047M13 13c2 3 2 6 0 9\047/%3E%3Cpath d=\047M19 12c2 4 2 8 0 12\047/%3E%3C/g%3E%3C/svg%3E");
}
.page-products .p-lineup-card:nth-child(2) .p-lineup-card__title-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox=\0470 0 34 34\047 xmlns=\047http://www.w3.org/2000/svg\047%3E%3Cg fill=\047none\047 stroke=\047%238B5E3C\047 stroke-width=\0471.35\047 stroke-linecap=\047round\047 stroke-linejoin=\047round\047%3E%3Cpath d=\047M6 20c0-6 5-11 11-11s11 5 11 11\047/%3E%3Cpath d=\047M6 20c0 5 5 8 11 8s11-3 11-8\047/%3E%3Cellipse cx=\04717\047 cy=\04719\047 rx=\0474\047 ry=\0473\047/%3E%3Cpath d=\047M8 22c5 3 13 3 18 0\047/%3E%3Cpath d=\047M11 12c2-3 5-5 6-7 1 2 4 4 6 7\047/%3E%3C/g%3E%3C/svg%3E");
}
.page-products .p-lineup-card:nth-child(3) .p-lineup-card__title-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox=\0470 0 34 34\047 xmlns=\047http://www.w3.org/2000/svg\047%3E%3Cg fill=\047none\047 stroke=\047%238B5E3C\047 stroke-width=\0471.35\047 stroke-linecap=\047round\047 stroke-linejoin=\047round\047%3E%3Ccircle cx=\04713\047 cy=\04718\047 r=\0478\047/%3E%3Cpath d=\047M19 13c5 0 9 4 9 9 0 3-2 5-5 6\047/%3E%3Cpath d=\047M10 16h.1M15 14h.1M16 20h.1M11 23h.1\047/%3E%3Cpath d=\047M22 18h.1M25 23h.1\047/%3E%3C/g%3E%3C/svg%3E");
}

/* Lineup title icons */
.page-products .p-lineup-card__title-icon {
  display: inline-block;
  width: 18px;
  height: 20px;
  flex: 0 0 18px;
  font-size: 0;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.page-products .p-lineup-card:nth-child(1) .p-lineup-card__title-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 34 34%22%3E%3Cg fill=%22none%22 stroke=%22%238B5E3C%22 stroke-width=%221.5%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3E%3Cpath d=%22M7 22c0-6 5-11 12-11h3c4 0 7 3 7 7s-3 7-7 7H7Z%22/%3E%3Cpath d=%22M7 22c-3 0-5-2-5-5 0-4 3-7 8-7h5%22/%3E%3Cpath d=%22M10 26h15%22/%3E%3Cpath d=%22M13 13c2 3 2 6 0 9%22/%3E%3Cpath d=%22M19 12c2 4 2 8 0 12%22/%3E%3C/g%3E%3C/svg%3E");
}
.page-products .p-lineup-card:nth-child(2) .p-lineup-card__title-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 34 34%22%3E%3Cg fill=%22none%22 stroke=%22%238B5E3C%22 stroke-width=%221.5%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3E%3Cpath d=%22M6 20c0-6 5-11 11-11s11 5 11 11%22/%3E%3Cpath d=%22M6 20c0 5 5 8 11 8s11-3 11-8%22/%3E%3Cellipse cx=%2217%22 cy=%2219%22 rx=%224%22 ry=%223%22/%3E%3Cpath d=%22M8 22c5 3 13 3 18 0%22/%3E%3Cpath d=%22M11 12c2-3 5-5 6-7 1 2 4 4 6 7%22/%3E%3C/g%3E%3C/svg%3E");
}
.page-products .p-lineup-card:nth-child(3) .p-lineup-card__title-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 34 34%22%3E%3Cg fill=%22none%22 stroke=%22%238B5E3C%22 stroke-width=%221.5%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3E%3Ccircle cx=%2213%22 cy=%2218%22 r=%228%22/%3E%3Cpath d=%22M19 13c5 0 9 4 9 9 0 3-2 5-5 6%22/%3E%3Cpath d=%22M10 16h.1M15 14h.1M16 20h.1M11 23h.1%22/%3E%3Cpath d=%22M22 18h.1M25 23h.1%22/%3E%3C/g%3E%3C/svg%3E");
}

/* Contact page polish */
.page-contact .p-page-hero {
  position: relative;
  min-height: 390px;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  background: linear-gradient(90deg, var(--cream), var(--beige-light));
}
.page-contact .p-page-hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 30px;
  width: 120px;
  height: 140px;
  opacity: 0.55;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 110 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C4956A' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 128C42 88 62 50 96 10'/%3E%3Cpath d='M28 99c-11-5-20-4-27 4 9 7 20 7 27-4Z'/%3E%3Cpath d='M44 72c-12-4-22-2-30 7 11 7 22 5 30-7Z'/%3E%3Cpath d='M60 48c-11-5-20-4-28 4 10 8 21 7 28-4Z'/%3E%3Cpath d='M39 94c2-13 10-21 23-25 1 14-7 23-23 25Z'/%3E%3Cpath d='M55 65c3-13 11-22 24-26 1 15-8 24-24 26Z'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}
.page-contact .p-page-hero__content {
  position: relative;
  z-index: 1;
  align-items: center;
  text-align: center;
  padding: 74px 64px 74px max(72px, calc((100vw - var(--inner)) / 2 + 42px));
  order: 1;
}
.page-contact .p-page-hero__en {
  order: 2;
  width: 100%;
  margin: 0 0 24px;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-align: center;
  color: var(--brown-dark);
}
.page-contact .p-page-hero__title {
  order: 1;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  white-space: nowrap;
}
.page-contact .p-page-hero__title::before,
.page-contact .p-page-hero__title::after {
  content: '';
  display: block;
  width: 28px;
  height: 22px;
  flex: 0 0 28px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C4956A' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M31 18C21 15 14 9 8 3'/%3E%3Cpath d='M10 5C9 1 5 1 4 4c2 3 5 3 6 1Z'/%3E%3Cpath d='M16 10c0-4-4-5-7-3 1 4 4 5 7 3Z'/%3E%3Cpath d='M22 14c1-4-2-6-6-5 0 4 3 6 6 5Z'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}
.page-contact .p-page-hero__title::after {
  transform: scaleX(-1);
}
.page-contact .p-page-hero__text {
  order: 3;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 2.15;
  text-align: left;
}
.page-contact .p-page-hero__image {
  position: relative;
  min-height: 390px;
  order: 2;
}
.page-contact .p-page-hero__image::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 -1px;
  width: 190px;
  z-index: 1;
  background: linear-gradient(to right, var(--cream), rgba(255,253,248,0.78) 42%, rgba(255,253,248,0));
  pointer-events: none;
}

.page-contact .p-contact {
  padding: 50px 0 44px;
  background: var(--cream);
}
.page-contact .p-contact__layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 46px;
  align-items: start;
  margin-bottom: 0;
}
.page-contact .p-flow {
  position: relative;
  margin-bottom: 34px;
}
.page-contact .p-flow__section-title,
.page-contact .p-form .c-section-title,
.page-contact .p-faq .c-section-title {
  justify-content: flex-start;
  margin-bottom: 18px;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.09em;
}
.page-contact .p-flow__icon {
  display: inline-block;
  width: 28px;
  height: 32px;
  flex: 0 0 28px;
  font-size: 0;
  color: transparent;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 33V4'/%3E%3Cpath d='M16 10C10 9 7 6 6 2c6 0 9 3 10 8Z'/%3E%3Cpath d='M16 16c6-1 9-4 10-8-6 0-9 3-10 8Z'/%3E%3Cpath d='M16 22c-6-1-9-4-10-8 6 0 9 3 10 8Z'/%3E%3Cpath d='M16 28c6-1 9-4 10-8-6 0-9 3-10 8Z'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}
.page-contact .p-flow__steps {
  position: relative;
  gap: 0;
  margin-bottom: 0;
  padding: 34px 30px 30px;
  border: 1px dashed var(--border);
  border-radius: 12px 12px 0 0;
  background: rgba(255,253,248,0.78);
}
.page-contact .p-flow__steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -11px;
  width: 130px;
  height: 24px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(181,143,102,0.38);
}
.page-contact .p-flow-step {
  border: 0;
  border-right: 1px dashed var(--border);
  border-radius: 0;
  background: transparent;
  padding: 0 28px;
}
.page-contact .p-flow-step:last-child {
  border-right: 0;
}
.page-contact .p-flow-step::after {
  content: '';
  right: -5px;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--brown-light);
  border-right: 1px solid var(--brown-light);
  transform: translateY(-50%) rotate(45deg);
}
.page-contact .p-flow-step__num {
  background: var(--brown-btn);
  margin-right: 8px;
  vertical-align: middle;
}
.page-contact .p-flow-step__title {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.page-contact .p-flow-step__icon {
  width: 72px;
  height: 62px;
  margin: 18px auto 18px;
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.page-contact .p-flow-step:nth-child(1) .p-flow-step__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 72 54' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%236B4226' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='9' width='54' height='36' rx='2'/%3E%3Cpath d='m10 11 26 20 26-20'/%3E%3Cpath d='M10 44 29 27M62 44 43 27'/%3E%3C/g%3E%3C/svg%3E");
}
.page-contact .p-flow-step:nth-child(2) .p-flow-step__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%236B4226' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='16' y='12' width='32' height='44' rx='3'/%3E%3Cpath d='M24 12c0-4 4-7 8-7s8 3 8 7'/%3E%3Cpath d='M24 25h16M24 34h16M24 43h12'/%3E%3C/g%3E%3C/svg%3E");
}
.page-contact .p-flow-step:nth-child(3) .p-flow-step__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 76 54' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%236B4226' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 38c0-10 9-18 21-18h4c7 0 12 5 12 11s-5 11-12 11H8Z'/%3E%3Cpath d='M45 28c6-6 17-6 22 0 5 7 0 14-8 14H43'/%3E%3Cpath d='M16 42h42M20 23c3 5 3 10 0 15M31 20c3 7 3 14 0 21'/%3E%3C/g%3E%3C/svg%3E");
}
.page-contact .p-flow-step__text {
  color: var(--text-dark);
  font-size: 12.5px;
  line-height: 1.85;
}
.page-contact .p-flow__notes {
  gap: 0;
  padding: 24px 30px 30px;
  border: 1px dashed var(--border);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: rgba(255,253,248,0.78);
}
.page-contact .p-flow-note {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 24px;
}
.page-contact .p-flow-note + .p-flow-note {
  border-left: 1px dashed var(--border);
}
.page-contact .p-flow-note__title {
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 17px;
  letter-spacing: 0.06em;
}
.page-contact .p-flow-note__icon {
  font-size: 0;
}

.page-contact .p-form {
  padding: 0;
  background: transparent;
}
.page-contact .p-form__inner {
  max-width: none;
  margin: 0;
}
.page-contact .p-form .c-section-title {
  float: left;
}
.page-contact .p-form__required-note {
  padding-top: 10px;
  color: #a45b42;
}
.page-contact .p-form form {
  clear: both;
  padding: 30px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: rgba(255,253,248,0.82);
}
.page-contact .p-form__row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 20px;
}
.page-contact .p-form__label {
  margin: 10px 0 0;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.page-contact .p-form__required {
  padding: 0;
  background: transparent;
  color: #a45b42;
  font-size: 14px;
}
.page-contact .p-form__input,
.page-contact .p-form__textarea {
  background: rgba(255,255,255,0.86);
  border-color: rgba(217,197,168,0.85);
  box-shadow: inset 0 1px 4px rgba(74,46,23,0.04);
}
.page-contact .p-form__submit {
  margin: 30px 0 0 174px;
  text-align: left;
}
.page-contact .p-form__submit .c-btn--primary {
  min-width: 360px;
  border-radius: 8px;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.page-contact .p-form__privacy {
  max-width: 620px;
  margin: 26px auto 0;
  color: var(--text-dark);
  line-height: 1.9;
  text-align: left;
}

.page-contact .p-contact-aside {
  gap: 28px;
}
.page-contact .p-contact-info {
  position: relative;
  padding: 34px 32px;
  background: linear-gradient(180deg, #F5EADD, #EFE1CF);
  border: 0;
  border-radius: 12px;
}
.page-contact .p-contact-info__title {
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}
.page-contact .p-contact-info__item {
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px dashed var(--border);
}
.page-contact .p-contact-info__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139,94,60,0.45);
  border-radius: 50%;
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}
.page-contact .p-contact-info__item:nth-of-type(1) .p-contact-info__icon,
.page-contact .p-contact-info__item:nth-of-type(2) .p-contact-info__icon,
.page-contact .p-contact-info__item:nth-of-type(3) .p-contact-info__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='14' cy='14' r='9'/%3E%3Cpath d='M14 8v7l5 2'/%3E%3C/g%3E%3C/svg%3E");
}
.page-contact .p-contact-info__item:nth-of-type(2) .p-contact-info__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 5c4 8 7 11 15 15l-3 4C11 21 5 15 4 8l4-3Z'/%3E%3Cpath d='M17 5c3 1 5 3 6 6'/%3E%3C/g%3E%3C/svg%3E");
}
.page-contact .p-contact-info__item:nth-of-type(3) .p-contact-info__icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='6' width='16' height='16' rx='4'/%3E%3Ccircle cx='14' cy='14' r='4'/%3E%3Cpath d='M19 9h.1'/%3E%3C/g%3E%3C/svg%3E");
}
.page-contact .p-contact-info__label {
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}
.page-contact .p-contact-info__value,
.page-contact .p-contact-info__note {
  line-height: 1.9;
}
.page-contact .p-contact-info__tel {
  font-size: 25px;
  letter-spacing: 0.08em;
}
.page-contact .p-contact-info__btn .c-btn {
  width: 100%;
  justify-content: center;
  border-radius: 7px;
  box-shadow: none;
}
.page-contact .p-contact-dm {
  position: relative;
  padding: 28px 30px 34px;
  background: #F4E6D2;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(74,46,23,0.08);
  color: var(--text-dark);
  text-align: left;
}
.page-contact .p-contact-dm::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -11px;
  width: 96px;
  height: 22px;
  transform: translateX(-50%) rotate(-5deg);
  background: rgba(181,143,102,0.35);
}
.page-contact .p-contact-dm::after {
  content: '';
  display: block;
  width: 112px;
  height: 58px;
  margin: 18px 0 -8px auto;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 150 78' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M37 55h76'/%3E%3Cpath d='M50 55c-2-14 6-23 19-23s21 9 19 23'/%3E%3Cpath d='M43 54c-7-9-4-21 7-25 7 6 5 18-7 25Z'/%3E%3Cpath d='M112 54c7-9 4-21-7-25-7 6-5 18 7 25Z'/%3E%3Cpath d='M63 49c7-6 15-6 23 0'/%3E%3Cpath d='M52 64h61'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.page-contact .p-faq {
  padding: 28px 26px;
  background: rgba(255,253,248,0.82);
  border: 1px dashed var(--border);
  border-radius: 12px;
}
.page-contact .p-faq .c-section-title {
  justify-content: center;
  margin-bottom: 12px;
}
.page-contact .p-faq .c-section-title__ja {
  font-size: 22px;
}
.page-contact .p-faq__inner {
  max-width: none;
}
.page-contact .p-faq-item {
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.page-contact .p-faq-item:last-child {
  border-bottom: 0;
}
.page-contact .p-faq-item__q,
.page-contact .p-faq-item__a {
  gap: 8px;
  font-size: 12.5px;
}
.page-contact .p-faq-item__q-mark,
.page-contact .p-faq-item__a-mark {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brown-btn);
  color: #fff;
  font-size: 11px;
}
.page-contact .p-faq-item__a-mark {
  background: transparent;
  color: var(--brown-btn);
}

.page-contact .p-contact-cta {
  position: relative;
  padding: 34px 0 30px;
  background: var(--beige-light);
  overflow: hidden;
}
.page-contact .p-contact-cta__inner {
  position: relative;
  display: block;
  min-height: 170px;
  padding-left: 0;
}
.page-contact .p-contact-cta__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}
.page-contact .p-contact-cta__title {
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.page-contact .p-contact-cta__image {
  position: absolute;
  left: -10px;
  bottom: -28px;
  width: 330px;
  height: 220px;
  margin-left: 0;
  overflow: visible;
  pointer-events: none;
}
.page-contact .p-contact-cta__image img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 330px;
  max-width: none;
  height: auto;
}
.page-contact .p-contact-cta__content::after {
  content: 'お待ちしています！';
  display: block;
  width: 220px;
  margin: 14px 0 0 auto;
  padding-top: 52px;
  font-family: 'Zen Kurenaido', sans-serif;
  color: var(--brown-dark);
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 190 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 57h120V26L84 8 24 26v31Z'/%3E%3Cpath d='M52 57V36h22v21M98 57V38h24v19M24 26h120M154 57c8-12 20-12 28 0M7 57c8-12 20-12 28 0'/%3E%3C/g%3E%3C/svg%3E") right top/190px 70px no-repeat;
}

@media (max-width: 1100px) {
  .page-contact .p-page-hero__title {
    font-size: 30px;
    gap: 10px;
    letter-spacing: 0.05em;
  }
  .page-contact .p-page-hero__title::before,
  .page-contact .p-page-hero__title::after {
    width: 22px;
    flex-basis: 22px;
  }
  .page-contact .p-contact__layout {
    grid-template-columns: 1fr;
  }
  .page-contact .p-contact-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .page-contact .p-faq {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.9px) {
  .page-contact .p-page-hero {
    grid-template-columns: 1fr;
  }
  .page-contact .p-page-hero__content {
    padding: 42px 20px;
  }
  .page-contact .p-page-hero__title {
    font-size: 28px;
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.45;
  }
  .page-contact .p-page-hero__title::before,
  .page-contact .p-page-hero__title::after {
    display: none;
  }
  .page-contact .p-page-hero__image {
    min-height: 230px;
  }
  .page-contact .p-flow__steps {
    gap: 18px;
  }
  .page-contact .p-flow-step {
    border-right: 0;
    border-bottom: 1px dashed var(--border);
    padding: 0 0 18px;
  }
  .page-contact .p-flow-step:last-child {
    border-bottom: 0;
  }
  .page-contact .p-flow__notes {
    grid-template-columns: 1fr;
  }
  .page-contact .p-flow-note {
    padding: 0;
  }
  .page-contact .p-flow-note + .p-flow-note {
    border-left: 0;
    border-top: 1px dashed var(--border);
    padding-top: 20px;
    margin-top: 20px;
  }
  .page-contact .p-form__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .page-contact .p-form__label {
    margin-top: 0;
  }
  .page-contact .p-form__submit {
    margin-left: 0;
  }
  .page-contact .p-form__submit .c-btn--primary {
    min-width: 0;
    width: 100%;
  }
  .page-contact .p-contact-aside,
  .page-contact .p-contact-cta__inner {
    grid-template-columns: 1fr;
  }
  .page-contact .p-contact-cta__inner {
    min-height: 0;
  }
  .page-contact .p-contact-cta__image {
    position: relative;
    left: auto;
    bottom: auto;
    width: 220px;
    height: 110px;
    margin: 0 auto 14px;
  }
  .page-contact .p-contact-cta__image img {
    position: static;
    width: 220px;
  }
}

/* About page polish */
.page-about .p-page-hero {
  position: relative;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  min-height: 350px;
  background: linear-gradient(90deg, var(--cream), var(--beige-light));
}
.page-about .p-page-hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 118px;
  height: 140px;
  opacity: 0.55;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 110 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C4956A' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 128C42 88 62 50 96 10'/%3E%3Cpath d='M28 99c-11-5-20-4-27 4 9 7 20 7 27-4Z'/%3E%3Cpath d='M44 72c-12-4-22-2-30 7 11 7 22 5 30-7Z'/%3E%3Cpath d='M60 48c-11-5-20-4-28 4 10 8 21 7 28-4Z'/%3E%3Cpath d='M39 94c2-13 10-21 23-25 1 14-7 23-23 25Z'/%3E%3Cpath d='M55 65c3-13 11-22 24-26 1 15-8 24-24 26Z'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}
.page-about .p-page-hero__content {
  position: relative;
  z-index: 1;
  align-items: center;
  text-align: center;
  padding: 62px 54px 58px max(60px, calc((100vw - var(--inner)) / 2 + 38px));
}
.page-about .p-page-hero__title {
  order: 1;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}
.page-about .p-page-hero__en {
  order: 2;
  width: 100%;
  margin: 0 0 28px;
  color: var(--brown-dark);
  font-size: 16px;
  letter-spacing: 0.16em;
  text-align: center;
}
.page-about .p-page-hero__en::after {
  content: '';
  display: block;
  width: 150px;
  height: 22px;
  margin: 18px auto 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M0 12h58M102 12h58'/%3E%3Cpath d='M75 16c-8-2-12-7-13-13 7 1 12 5 13 13Z'/%3E%3Cpath d='M85 16c8-2 12-7 13-13-7 1-12 5-13 13Z'/%3E%3Cpath d='M80 20V7'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}
.page-about .p-page-hero__text {
  order: 3;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 2.2;
  text-align: center;
}
.page-about .p-page-hero__image {
  position: relative;
  min-height: 350px;
}
.page-about .p-page-hero__image::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 -1px;
  width: 170px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, var(--cream), rgba(255,253,248,0.7) 44%, rgba(255,253,248,0));
}
.page-about .p-page-hero__image img {
  display: block;
  object-position: center right;
}

.page-about .p-about {
  padding: 34px 0 0;
}
.page-about .p-about-message {
  position: relative;
  padding: 36px 70px;
  margin-bottom: 42px;
  border: 1px solid rgba(196,149,106,0.55);
  border-radius: 12px;
  background: rgba(255,253,248,0.78);
}
.page-about .p-about-message__title {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 0.13em;
  margin-bottom: 22px;
}
.page-about .p-about-message__title::before,
.page-about .p-about-message__title::after,
.page-about .p-about-ingredients .c-section-title__ja::before,
.page-about .p-about-ingredients .c-section-title__ja::after,
.page-about .p-about-story__title::before,
.page-about .p-about-story__title::after,
.page-about .p-about-daily__intro-title::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 24px;
  vertical-align: -5px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M31 20C22 16 15 10 8 3'/%3E%3Cpath d='M10 5C9 1 5 1 4 4c2 3 5 3 6 1Z'/%3E%3Cpath d='M16 11c0-4-4-5-7-3 1 4 4 5 7 3Z'/%3E%3Cpath d='M22 16c1-4-2-6-6-5 0 4 3 6 6 5Z'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}
.page-about .p-about-message__title::after,
.page-about .p-about-ingredients .c-section-title__ja::after,
.page-about .p-about-story__title::after {
  transform: scaleX(-1);
}
.page-about .p-about-message__text {
  color: var(--text-dark);
  max-width: 760px;
  font-weight: 500;
}

.page-about .p-about-ingredients {
  margin-bottom: 46px;
}
.page-about .p-about-ingredients .c-section-title {
  margin-bottom: 28px;
}
.page-about .p-about-ingredients .c-section-title__ja {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 29px;
  letter-spacing: 0.13em;
}
.page-about .p-about-ingredients .c-section-title__deco::before,
.page-about .p-about-ingredients .c-section-title__deco::after,
.page-about .p-about-ingredients .c-section-title__en {
  display: none;
}
.page-about .p-about-ingredients__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.page-about .p-about-ingredient {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px 16px;
  align-items: center;
}
.page-about .p-about-ingredient__top {
  display: block;
  margin: 0;
}
.page-about .p-about-ingredient__icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  padding: 10px 12px;
  background: transparent;
  text-align: center;
}
.page-about .p-about-ingredient__icon-wrap::before {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  margin: 0 auto 6px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.page-about .p-about-ingredient:nth-child(1) .p-about-ingredient__icon-wrap::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 28V5'/%3E%3Cpath d='M16 10c-5-1-8-4-9-7 5 0 8 3 9 7Z'/%3E%3Cpath d='M16 14c5-1 8-4 9-7-5 0-8 3-9 7Z'/%3E%3Cpath d='M16 19c-5-1-8-4-9-7 5 0 8 3 9 7Z'/%3E%3Cpath d='M16 23c5-1 8-4 9-7-5 0-8 3-9 7Z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-about .p-about-ingredient:nth-child(2) .p-about-ingredient__icon-wrap::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 27V12'/%3E%3Cpath d='M15 15C9 14 6 10 6 6c5 0 9 3 9 9Z'/%3E%3Cpath d='M17 17c6-1 9-5 9-9-5 0-9 3-9 9Z'/%3E%3Cpath d='M12 27h8'/%3E%3Cpath d='M10 22c2-2 4-3 6-3s4 1 6 3'/%3E%3C/g%3E%3C/svg%3E");
}
.page-about .p-about-ingredient:nth-child(3) .p-about-ingredient__icon-wrap::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 4C10 12 7 17 7 22a9 9 0 0 0 18 0c0-5-3-10-9-18Z'/%3E%3Cpath d='M12 23c1 2 3 3 5 3'/%3E%3C/g%3E%3C/svg%3E");
}
.page-about .p-about-ingredient__name {
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-dark);
  overflow-wrap: anywhere;
}
.page-about .p-about-ingredient:nth-child(3) .p-about-ingredient__name {
  font-size: 14px;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: normal;
}
.page-about .p-about-ingredient:nth-child(3) .p-about-ingredient__name br {
  display: block;
}
.page-about .p-about-ingredient__image {
  border-radius: 8px;
}
.page-about .p-about-ingredient__image img {
  height: 146px;
}
.page-about .p-about-ingredient__text {
  grid-column: 1 / -1;
  color: var(--text-dark);
  font-size: 12.5px;
  line-height: 1.9;
}

.page-about .p-about-story {
  position: relative;
  width: min(980px, calc(100% - 80px));
  max-width: 980px;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 auto;
  padding: 0;
  background: var(--beige-light);
  overflow: hidden;
  align-items: stretch;
}
.page-about .p-about-story.l-inner {
  width: min(980px, calc(100% - 80px));
  max-width: 980px;
}
.page-about .p-about-story__image {
  border-radius: 0;
  height: 100%;
}
.page-about .p-about-story__image img {
  display: block;
  height: 100%;
  min-height: 238px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.page-about .p-about-story__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 238px;
  padding: 24px 36px;
}
.page-about .p-about-story__badge {
  display: none;
}
.page-about .p-about-story__title {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.45;
  margin-bottom: 10px;
}
.page-about .p-about-story__title br {
  display: none;
}
.page-about .p-about-story__text {
  color: var(--text-dark);
  font-size: 11.4px;
  line-height: 1.72;
}
.page-about .p-about-story__content::after {
  content: '';
  position: absolute;
  right: 34px;
  bottom: 18px;
  width: 86px;
  height: 62px;
  opacity: 0.5;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 110' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238B5E3C' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M47 77h76'/%3E%3Cpath d='M60 77c-2-17 7-28 22-28s24 11 22 28'/%3E%3Cpath d='M51 75c-8-11-5-25 8-30 8 7 6 21-8 30Z'/%3E%3Cpath d='M121 75c8-11 5-25-8-30-8 7-6 21 8 30Z'/%3E%3Cpath d='M73 69c8-7 17-7 26 0'/%3E%3Cpath d='M61 87h63'/%3E%3Cpath d='M25 45c-5-5-4-12 3-15 5 5 4 12-3 15ZM135 25l8-8M142 25l-8-8M28 86c-8 1-14 5-18 12M130 86c8 1 14 5 18 12'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.page-about .p-about-daily {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 42px 0 58px;
}
.page-about .p-about-daily__intro {
  display: block;
  margin-bottom: 0;
}
.page-about .p-about-daily__intro-title {
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.55;
  margin-bottom: 10px;
  white-space: nowrap;
}
.page-about .p-about-daily__intro-title span {
  display: inline;
}
.page-about .p-about-daily__intro-text {
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.9;
}
.page-about .p-about-daily__images {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: none;
  margin-left: 0;
}
.page-about .p-about-daily__image-wrap img {
  height: 132px;
}
.page-about .p-about-daily__image-caption {
  color: var(--text-dark);
  font-size: 11.5px;
  font-weight: 700;
}

.page-about .p-about-closing {
  padding: 0 0 30px;
  background: var(--cream);
}
.page-about .p-about-closing__inner {
  position: relative;
  grid-template-columns: 1fr;
  min-height: 155px;
  gap: 0;
  padding: 34px 340px 34px 46px;
  border-radius: 10px;
  background: var(--beige-light);
  overflow: visible;
}
.page-about .p-about-closing__bg {
  position: absolute;
  left: 28px;
  top: -100px;
  z-index: 0;
  width: 265px;
  height: 160px;
  background: url("../image/about-bgimage-line.png") center/contain no-repeat;
  pointer-events: none;
}
.page-about .p-about-closing__text {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2.05;
  text-align: center;
}
.page-about .p-about-closing__image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 380px;
  z-index: 1;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.65) 8%, #000 20%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.65) 8%, #000 20%);
}
.page-about .p-about-closing__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

@media (max-width: 1100px) {
  .page-about .p-about-ingredients__grid,
  .page-about .p-about-story {
    grid-template-columns: 1fr;
  }
  .page-about .p-about-story,
  .page-about .p-about-story.l-inner {
    width: min(720px, calc(100% - 40px));
  }
  .page-about .p-about-story__content {
    min-height: 0;
    padding: 30px 34px;
  }
  .page-about .p-about-story__image img {
    min-height: 240px;
  }
  .page-about .p-about-daily__images {
    max-width: none;
  }
  .page-about .p-about-daily {
    grid-template-columns: 1fr;
  }
  .page-about .p-about-daily__intro-title {
    white-space: normal;
  }
}

@media (max-width: 767.9px) {
  .page-about .p-page-hero {
    grid-template-columns: 1fr;
  }
  .page-about .p-page-hero__content {
    padding: 44px 20px;
  }
  .page-about .p-page-hero__title {
    font-size: 36px;
  }
  .page-about .p-page-hero__image {
    min-height: 230px;
  }
  .page-about .p-about-message {
    padding: 30px 18px;
  }
  .page-about .p-about-message__title {
    display: block;
    font-size: 24px;
  }
  .page-about .p-about-message__title::before,
  .page-about .p-about-message__title::after {
    display: none;
  }
  .page-about .p-about-ingredient {
    grid-template-columns: 104px minmax(0, 1fr);
  }
  .page-about .p-about-ingredient__icon-wrap {
    width: 96px;
    height: 96px;
  }
  .page-about .p-about-ingredient__name {
    font-size: 14px;
  }
  .page-about .p-about-daily__intro,
  .page-about .p-about-daily__images,
  .page-about .p-about-closing__inner {
    grid-template-columns: 1fr;
  }
  .page-about .p-about-daily {
    grid-template-columns: 1fr;
  }
  .page-about .p-about-closing__inner {
    min-height: 0;
    padding: 28px 18px;
  }
  .page-about .p-about-closing__text {
    max-width: none;
  }
  .page-about .p-about-closing__bg {
    left: -26px;
    top: -78px;
    width: 210px;
    height: 124px;
  }
  .page-about .p-about-closing__image {
    position: relative;
    inset: auto;
    width: calc(100% + 36px);
    height: 150px;
    margin: 20px -18px -28px;
    border-radius: 0 0 10px 10px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 18%, #000 36%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 18%, #000 36%);
  }
}
