/* =====================================
   STYLE.CSS / CLEAN REBUILD
   index + concept 共通管理版
===================================== */

/* =====================================
   1. TOKENS / RESET
===================================== */

:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf8f2;
  --bg-deep: #e9dfd0;
  --paper: rgba(251, 248, 242, 0.94);
  --white: #ffffff;

  --text: #1f231f;
  --text-soft: #5b6258;
  --muted: #7f877d;

  --green-deep: #243c2d;
  --green: #3d5a48;
  --gold: #b28a43;
  --gold-soft: rgba(178, 138, 67, 0.14);

  --line: rgba(25, 30, 26, 0.08);
  --line-soft: rgba(25, 30, 26, 0.05);

  --shadow-soft: 0 20px 40px rgba(24, 28, 25, 0.08);
  --shadow-strong: 0 28px 60px rgba(18, 24, 20, 0.16);

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;

  --max-width: 1220px;

  --font-sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body.home.editorial-home {
  background:
    radial-gradient(circle at top left, rgba(178, 138, 67, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(36, 60, 45, 0.08), transparent 26%),
    linear-gradient(180deg, #f8f4ed 0%, #f1eadf 100%);
}

body.page-concept {
  background:
    radial-gradient(circle at top left, rgba(178, 138, 67, 0.06), transparent 24%),
    radial-gradient(circle at top right, rgba(36, 60, 45, 0.07), transparent 22%),
    linear-gradient(180deg, #f7f3eb 0%, #efe7db 100%);
}

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

a {
  color: inherit;
}

#container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#contents {
  flex: 1;
}

/* =====================================
   2. SHARED HEADER / FOOTER
===================================== */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 237, 0.54);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #8b6a2b;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 7px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 40px;
  width: auto;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}

nav a {
  text-decoration: none;
  color: #8b6a2b;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  position: relative;
  padding-bottom: 6px;
  white-space: nowrap;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #c39b55, transparent);
  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}

footer {
  margin-top: 46px;
  background: #161b17;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 22px;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.84rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.58);
}

/* =====================================
   3. SHARED LAYOUT / COMMON
===================================== */

main section {
  padding: 88px 0;
}

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

.section-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.70));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: var(--green-deep);
  font-weight: 500;
}

.section-subtitle {
  margin: 0 0 32px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.card {
  background: var(--paper);
  border: 1px solid rgba(25, 30, 26, 0.06);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: 0 14px 30px rgba(24, 28, 25, 0.04);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--green-deep);
  font-weight: 500;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 2;
}

.hero-image,
.card-thumb {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.clean {
  margin: 0 0 14px 1.2em;
  padding: 0;
  color: var(--text-soft);
}

.clean li + li {
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, #c39b55, #9f762f);
  color: #fff;
  box-shadow: 0 14px 28px rgba(159, 118, 47, 0.24);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(159, 118, 47, 0.30);
}

.btn.small {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: inherit;
}

.btn.small:hover {
  background: rgba(255, 255, 255, 0.08);
}

.form-note {
  font-size: 0.84rem;
  color: #6f766d;
  line-height: 1.8;
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.in-view {
  opacity: 1;
  transform: none;
}

/* =====================================
   4. INDEX / EDITORIAL HOME
===================================== */

.editorial-home .kv {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: end;
  padding: 0;
  overflow: hidden;
}

.editorial-home .kv-media {
  position: absolute;
  inset: 0;
}

.editorial-home .kv-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-home .kv-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(14, 18, 15, 0.16) 0%,
      rgba(14, 18, 15, 0.18) 40%,
      rgba(14, 18, 15, 0.54) 100%
    );
}

.editorial-home .kv-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 96px 22px 56px;
  color: #fff;
}

.editorial-home .kv-label {
  margin: 0 0 18px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.92;
}

.editorial-home .kv-title {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1.16;
  letter-spacing: 0.04em;
  font-weight: 500;
  max-width: 820px;
}

.editorial-home .kv-text {
  margin: 0 0 26px;
  font-size: 1rem;
  line-height: 2;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
}

.editorial-home .kv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.editorial-home .kv .btn.small {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  margin-left: 0;
}

/* manifesto */
.editorial-home .manifesto-head {
  margin-bottom: 34px;
}

.editorial-home .manifesto-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.editorial-home .manifesto-item {
  position: relative;
  padding: 28px 22px 26px;
  border-top: 1px solid rgba(36, 60, 45, 0.12);
}

.editorial-home .manifesto-num {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  color: var(--gold);
}

.editorial-home .manifesto-item h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--green-deep);
  font-weight: 500;
}

.editorial-home .manifesto-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 2;
}

/* feature corn */
.editorial-home .feature-corn-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 52px;
  align-items: center;
}

.editorial-home .feature-corn-image img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.editorial-home .feature-corn-body .lead {
  font-size: 1.18rem;
  line-height: 1.9;
  color: var(--green);
  margin: 0 0 18px;
}

.editorial-home .feature-corn-body p {
  margin: 0 0 16px;
  color: #4c534c;
  line-height: 2;
}

.editorial-home .feature-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.editorial-home .feature-points li {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.7);
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
  color: var(--green-deep);
  box-shadow: 0 8px 16px rgba(24, 28, 25, 0.04);
}

/* for-you */
.editorial-home .for-you-head {
  margin-bottom: 34px;
}

.editorial-home .for-you-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.editorial-home .for-you-card {
  background: var(--paper);
  border: 1px solid rgba(25, 30, 26, 0.06);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: 0 14px 30px rgba(24, 28, 25, 0.04);
}

.editorial-home .for-you-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--green-deep);
  font-weight: 500;
}

.editorial-home .for-you-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 2;
}

/* landscape */
.editorial-home .landscape-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px 42px;
  align-items: start;
}

.editorial-home .landscape-photo.large img {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.editorial-home .landscape-copy p {
  color: var(--text-soft);
  line-height: 2;
  margin: 0 0 14px;
}

.editorial-home .landscape-copy p:last-child {
  margin-bottom: 0;
}

.editorial-home .season-editorial {
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.editorial-home .season-line {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(24, 28, 25, 0.04);
}

.editorial-home .season-line h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--green);
  letter-spacing: 0.04em;
}

.editorial-home .season-line p {
  margin: 0;
  color: var(--text-soft);
  line-height: 2;
}

/* gallery */
.editorial-home .gallery-head {
  margin-bottom: 34px;
}

.editorial-home .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.editorial-home .gallery-item {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(24, 28, 25, 0.06);
  border: 1px solid rgba(25, 30, 26, 0.05);
}

.editorial-home .gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.editorial-home .gallery-caption {
  padding: 14px 14px 16px;
}

.editorial-home .gallery-caption h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--green-deep);
  font-weight: 500;
  line-height: 1.35;
}

.editorial-home .gallery-caption p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* purchase */
.editorial-home .purchase-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
}

.editorial-home .purchase-copy p {
  margin: 0 0 16px;
  color: var(--text-soft);
  line-height: 2;
}

.editorial-home .purchase-box {
  background: rgba(251, 248, 242, 0.96);
  border: 1px solid rgba(25, 30, 26, 0.06);
  border-radius: 26px;
  padding: 28px 26px;
  box-shadow: 0 20px 34px rgba(24, 28, 25, 0.05);
}

.editorial-home .purchase-box h3 {
  margin: 0 0 16px;
  font-size: 1.18rem;
  color: var(--green-deep);
  font-weight: 500;
}

.editorial-home .purchase-box ol {
  margin: 0 0 18px 1.3em;
  padding: 0;
  color: var(--text-soft);
}

.editorial-home .purchase-box li + li {
  margin-top: 8px;
}

.editorial-home .purchase-box p {
  margin: 0;
  color: var(--text-soft);
}

.editorial-home .purchase-box a {
  color: var(--green-deep);
}

/* =====================================
   5. CONCEPT PAGE
===================================== */

.page-concept .concept-intro {
  padding-top: 44px;
}

.page-concept .concept-intro-head {
  margin-bottom: 28px;
}

.page-concept .concept-tag {
  margin: 0 0 10px;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-concept .concept-title {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.2;
  color: var(--green-deep);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.page-concept .concept-intro-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: start;
}

.page-concept .concept-message {
  padding-top: 6px;
}

.page-concept .concept-message p {
  margin: 0 0 18px;
  color: #474d46;
  line-height: 2;
  font-size: 0.98rem;
}

.page-concept .concept-quote {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.66);
  border-left: 3px solid var(--gold);
  border-radius: 0 20px 20px 0;
  box-shadow: 0 12px 24px rgba(24, 28, 25, 0.04);
}

.page-concept .concept-intro-photo {
  display: grid;
  gap: 16px;
}

.page-concept .concept-main-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
}

.page-concept .concept-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-concept .concept-meta li {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 35, 31, 0.06);
  color: var(--green-deep);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* profile */
.page-concept .concept-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.page-concept .concept-profile {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: start;
}

.page-concept .concept-profile-photo .card-thumb {
  aspect-ratio: 3 / 4;
}

.page-concept .concept-profile-role {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-concept .concept-profile-text {
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 2;
}

/* meaning */
.page-concept .concept-meaning {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
}

.page-concept .concept-meaning-main > p {
  margin: 0 0 18px;
  color: var(--text-soft);
  line-height: 2;
}

.page-concept .concept-pill-list {
  display: grid;
  gap: 16px;
}

.page-concept .concept-pill {
  padding: 20px 20px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(25, 30, 26, 0.06);
  box-shadow: 0 10px 20px rgba(24, 28, 25, 0.04);
}

.page-concept .concept-pill h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  color: var(--green-deep);
  font-weight: 500;
}

.page-concept .concept-pill p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.9;
}

/* story blocks */
.page-concept .grid-2 > div > h3 {
  margin: 0 0 14px;
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--green-deep);
  font-weight: 500;
}

.page-concept .grid-2 > div > p {
  margin: 0 0 16px;
  color: var(--text-soft);
  line-height: 2;
}

/* faq */
.page-concept .faq-list {
  margin: 0;
  padding: 0;
  background: rgba(251, 248, 242, 0.94);
  border: 1px solid rgba(25, 30, 26, 0.06);
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(24, 28, 25, 0.04);
  overflow: hidden;
}

.page-concept .faq-list dt {
  margin: 0;
  padding: 20px 24px 10px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--green-deep);
  font-weight: 600;
  border-top: 1px solid rgba(31, 35, 31, 0.08);
}

.page-concept .faq-list dt:first-child {
  border-top: none;
}

.page-concept .faq-list dd {
  margin: 0;
  padding: 0 24px 22px;
}

.page-concept .faq-list dd p {
  margin: 0;
  color: var(--text-soft);
  line-height: 2;
}

/* =====================================
   6. MOBILE
===================================== */

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  header nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
  }

  header nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 16px 14px;
    margin: 0;
    background: rgba(22, 27, 23, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  header nav li + li {
    margin-top: 4px;
  }

  header nav a {
    display: block;
    padding: 8px 0;
  }

  body.nav-open header nav ul {
    display: flex;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
}

@media (max-width: 1024px) {
  .editorial-home .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .page-concept .concept-intro-layout,
  .page-concept .concept-meaning,
  .page-concept .concept-profile-grid,
  .page-concept .grid-2 {
    grid-template-columns: 1fr;
  }

  .page-concept .concept-profile {
    grid-template-columns: 1fr;
  }

  .page-concept .concept-profile-photo .card-thumb {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 900px) {
  .grid-2,
  .editorial-home .feature-corn-inner,
  .editorial-home .purchase-grid,
  .editorial-home .landscape-grid,
  .editorial-home .for-you-grid,
  .editorial-home .manifesto-list {
    grid-template-columns: 1fr;
  }

  .editorial-home .season-line {
    grid-template-columns: 1fr;
  }

  .editorial-home .feature-corn-image img,
  .editorial-home .landscape-photo.large img,
  .page-concept .concept-main-photo {
    aspect-ratio: 4 / 3;
  }

  .editorial-home .feature-corn-inner,
  .editorial-home .purchase-grid,
  .editorial-home .landscape-grid {
    gap: 24px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 14px;
  }

  main section,
  .editorial-home section,
  .page-concept section {
    padding: 48px 0;
  }

  .header-inner,
  .inner,
  .editorial-home .kv-inner,
  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* index */
  .editorial-home .kv {
    min-height: 76vh;
  }

  .editorial-home .kv-inner {
    padding-top: 104px;
    padding-bottom: 28px;
  }

  .editorial-home .kv-label {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .editorial-home .kv-title {
    font-size: 2.15rem;
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .editorial-home .kv-text {
    margin-bottom: 18px;
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .editorial-home .kv-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .editorial-home .manifesto-head,
  .editorial-home .for-you-head,
  .editorial-home .gallery-head {
    margin-bottom: 20px;
  }

  .editorial-home .manifesto-list,
  .editorial-home .for-you-grid {
    gap: 14px;
  }

  .editorial-home .manifesto-item {
    padding: 18px 0 16px;
  }

  .editorial-home .manifesto-num {
    margin-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .editorial-home .manifesto-item h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    line-height: 1.45;
  }

  .editorial-home .manifesto-item p,
  .editorial-home .for-you-card p,
  .editorial-home .landscape-copy p,
  .editorial-home .purchase-copy p {
    font-size: 0.88rem;
    line-height: 1.8;
  }

  .editorial-home .feature-corn-body .lead {
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 12px;
  }

  .editorial-home .feature-corn-body p {
    margin: 0 0 12px;
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .editorial-home .feature-points {
    margin-top: 18px;
    gap: 8px;
  }

  .editorial-home .feature-points li {
    padding: 10px 12px;
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .editorial-home .for-you-card,
  .editorial-home .purchase-box,
  .card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .editorial-home .for-you-card h3,
  .editorial-home .purchase-box h3 {
    margin: 0 0 8px;
    font-size: 1rem;
  }

  .editorial-home .season-editorial {
    gap: 10px;
  }

  .editorial-home .season-line {
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
  }

  .editorial-home .season-line h3 {
    font-size: 0.95rem;
  }

  .editorial-home .season-line p {
    font-size: 0.84rem;
    line-height: 1.7;
  }

  .editorial-home .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .editorial-home .gallery-item {
    border-radius: 18px;
  }

  .editorial-home .gallery-caption {
    padding: 12px 12px 14px;
  }

  .editorial-home .gallery-caption h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
  }

  .editorial-home .gallery-caption p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .editorial-home .purchase-box ol {
    margin: 0 0 14px 1.2em;
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .editorial-home .purchase-box p {
    font-size: 0.86rem;
    line-height: 1.7;
  }

  /* concept */
  .page-concept .concept-title {
    font-size: 2rem;
    line-height: 1.28;
  }

  .page-concept .concept-message p,
  .page-concept .grid-2 > div > p,
  .page-concept .concept-profile-text,
  .page-concept .concept-pill p,
  .page-concept .faq-list dd p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .page-concept .concept-quote,
  .page-concept .concept-pill,
  .page-concept .faq-list dt,
  .page-concept .faq-list dd {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-concept .concept-profile,
  .page-concept .concept-intro-layout,
  .page-concept .concept-meaning {
    gap: 18px;
  }

  .footer-inner {
    padding-top: 24px;
    padding-bottom: 26px;
  }

  .footer-nav {
    gap: 12px;
    margin-bottom: 8px;
  }

  .footer-nav a {
    font-size: 0.78rem;
  }

  .footer-copy {
    font-size: 0.72rem;
  }
}


@media (max-width: 860px) {
  header nav ul {
    background: rgba(247, 244, 237, 0.98);
  }

  header nav a {
    color: #8b6a2b; /* 茶色系 */
  }

  .nav-toggle span {
    background: #8b6a2b; /* ハンバーガーも茶色にしたい場合 */
  }
}


/* =====================================
   CONTACT PAGE
===================================== */

body.contact-page {
  background:
    radial-gradient(circle at top left, rgba(178, 138, 67, 0.06), transparent 24%),
    radial-gradient(circle at top right, rgba(36, 60, 45, 0.07), transparent 22%),
    linear-gradient(180deg, #f7f3eb 0%, #efe7db 100%);
}

.contact-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px;
}

.contact-hero {
  padding: 72px 0 34px;
}

.contact-eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.18;
  color: var(--green-deep);
  font-weight: 500;
}

.contact-lead {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  line-height: 2;
  font-size: 0.98rem;
}

.contact-main {
  padding: 18px 0 86px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.contact-info-card,
.contact-form-box {
  background: rgba(251, 248, 242, 0.96);
  border: 1px solid rgba(25, 30, 26, 0.06);
  border-radius: 26px;
  box-shadow: 0 16px 32px rgba(24, 28, 25, 0.05);
}

.contact-info-card {
  padding: 28px 24px;
}

.contact-info-card h3 {
  margin: 0 0 16px;
  font-size: 1.14rem;
  color: var(--green-deep);
  font-weight: 500;
}

.contact-info-card ul {
  margin: 0 0 22px 1.2em;
  padding: 0;
  color: var(--text-soft);
}

.contact-info-card li + li {
  margin-top: 8px;
}

.contact-note-box {
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.72);
}

.contact-note-box p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.9;
}

.contact-form-box {
  padding: 28px 24px;
}

.contact-form-row {
  margin-bottom: 16px;
}

.contact-form-row label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.88rem;
  color: var(--green-deep);
}

.contact-form-row label span {
  color: #c33;
  margin-left: 4px;
}

.contact-form-row input,
.contact-form-row select,
.contact-form-row textarea {
  width: 100%;
  border: 1px solid rgba(25, 30, 26, 0.12);
  background: #fff;
  border-radius: 14px;
  padding: 11px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-row input:focus,
.contact-form-row select:focus,
.contact-form-row textarea:focus {
  border-color: rgba(178, 138, 67, 0.7);
  box-shadow: 0 0 0 4px rgba(178, 138, 67, 0.10);
}

.contact-form-row textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-check-row {
  margin: 6px 0 18px;
}

.contact-check-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.contact-submit-row {
  margin-bottom: 14px;
}

.contact-form-note {
  margin: 0;
  color: #6f766d;
  font-size: 0.84rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-wrap {
    padding: 0 16px;
  }

  .contact-hero {
    padding: 52px 0 20px;
  }

  .contact-title {
    font-size: 2rem;
    line-height: 1.22;
  }

  .contact-lead {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .contact-main {
    padding: 8px 0 54px;
  }

  .contact-info-card,
  .contact-form-box {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .contact-info-card ul {
    margin-bottom: 16px;
  }

  .contact-note-box {
    padding: 14px 14px;
  }

  .contact-form-row {
    margin-bottom: 14px;
  }

  .contact-form-row input,
  .contact-form-row select,
  .contact-form-row textarea {
    padding: 10px 11px;
    border-radius: 12px;
    font-size: 0.92rem;
  }

  .contact-form-row textarea {
    min-height: 140px;
  }
}