:root {
  --orange: #e97837;
  --orange-deep: #c95c24;
  --apricot: #fff1e8;
  --cream: #fffaf4;
  --ink: #2d2a27;
  --soft-ink: #68615a;
  --line: #efd7c6;
  --paper: #ffffff;
  --charcoal: #2b2521;
  --sage: #6d8275;
  --shadow: 0 22px 70px rgba(128, 76, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(233, 120, 55, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(233, 120, 55, 0.03) 1px, transparent 1px),
    var(--cream);
  background-size: 54px 54px;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.9;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  background: rgba(255, 250, 244, 0.88);
  border-bottom: 1px solid rgba(239, 215, 198, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50% 48% 52% 44%;
  font-family: "Tsukushi A Round Gothic", "Yu Gothic", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.global-nav a,
.site-footer a {
  text-decoration: none;
}

.global-nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  text-align: center;
}

.nav-en {
  font-family: "Avenir Next", "Futura", "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.nav-jp {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--soft-ink);
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.global-nav a:hover::after,
.global-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--orange-deep);
  background: #fff;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  color: #fff;
  background: var(--orange);
}

.button:hover,
.header-cta:hover,
.text-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button--primary {
  min-height: 58px;
  padding-inline: 30px;
  color: #fff;
  background: var(--orange);
}

.button--line {
  color: #fff;
  border-color: var(--sage);
  background: var(--sage);
}

.button--ghost {
  margin-top: 34px;
}

.hero-fv {
  background: #fff;
}

.hero-fv picture {
  display: block;
}

.hero-fv img {
  width: 100%;
  height: auto;
}

.sr-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.page-hero {
  padding: clamp(86px, 10vw, 132px) 0 clamp(64px, 8vw, 96px);
  background:
    radial-gradient(circle at 82% 22%, rgba(233, 120, 55, 0.13), transparent 25%),
    linear-gradient(145deg, #fff, var(--apricot));
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

h2 {
  font-size: clamp(1.76rem, 3.2vw, 3.2rem);
}

h3 {
  font-size: 1.28rem;
}

.page-hero p:last-child,
.section-heading p,
.lead-copy,
.story-copy,
.tile-grid p,
.plan-grid p,
.work-card p,
.faq-list p,
.final-cta p,
.legal-body,
.voice-list {
  color: var(--soft-ink);
}

.intro-grid,
.portrait-split,
.two-col,
.faq-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.lead-copy {
  padding-top: 44px;
  font-size: 1.04rem;
}

.intro-band {
  background: linear-gradient(180deg, #fff, var(--cream));
}

.evidence {
  background: var(--charcoal);
  color: #fff;
}

.evidence .eyebrow {
  color: #ffbc8b;
}

.tile-grid,
.plan-grid,
.work-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tile-grid article,
.plan-grid article,
.work-card {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 48px rgba(128, 76, 42, 0.08);
}

.evidence .tile-grid article {
  min-height: 250px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.tile-grid span {
  color: var(--orange);
  font-weight: 900;
}

.evidence .tile-grid p {
  color: rgba(255, 255, 255, 0.75);
}

.portrait-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px 46px 2px 46px;
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 3.05;
  object-fit: cover;
  object-position: center;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange-deep);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-preview,
.warm-panel,
.faq-preview,
.home-note {
  background:
    linear-gradient(rgba(255, 241, 232, 0.86), rgba(255, 250, 244, 0.95)),
    radial-gradient(circle at 15% 10%, rgba(233, 120, 55, 0.12), transparent 28%);
}

.section-heading {
  max-width: 760px;
}

.plan-grid--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-kicker {
  margin: 0 0 10px;
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-grid h2 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.plan-grid h3,
.work-card h3 {
  margin-bottom: 12px;
}

.plan-grid dl {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.plan-grid dt {
  color: var(--soft-ink);
  font-size: 0.85rem;
  font-weight: 800;
}

.plan-grid dd {
  margin: 2px 0 14px;
  font-size: 1.2rem;
  font-weight: 900;
}

.plan-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--orange-deep);
  font-weight: 900;
}

.home-directory {
  background: linear-gradient(180deg, #fff, var(--cream));
}

.directory-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.directory-card {
  min-height: 230px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  box-shadow: 0 20px 48px rgba(128, 76, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.directory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 120, 55, 0.5);
  box-shadow: var(--shadow);
}

.directory-card--wide {
  grid-column: span 2;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(43, 37, 33, 0.94), rgba(43, 37, 33, 0.78)),
    url("./assets/profile-wide.webp") right center / auto 120% no-repeat;
  border-color: rgba(43, 37, 33, 0.2);
}

.directory-card span {
  color: var(--orange);
  font-weight: 900;
}

.directory-card h3 {
  margin: 18px 0 12px;
}

.directory-card p {
  margin: auto 0 0;
  color: var(--soft-ink);
}

.directory-card--wide p {
  color: rgba(255, 255, 255, 0.78);
}

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

.page-hero--compact h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.grareco-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.work-entry {
  margin-top: 42px;
}

.work-entry + .work-entry {
  margin-top: clamp(56px, 7vw, 84px);
}

.work-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.work-shot {
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 48px rgba(128, 76, 42, 0.1);
}

.work-shot img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  display: block;
}

.work-shot .work-placeholder {
  margin-bottom: 0;
  aspect-ratio: 1400 / 876;
}

.work-entry__body {
  margin-top: 24px;
  max-width: 720px;
}

.work-entry__body h3 {
  margin: 0 0 14px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.work-entry__body p {
  color: var(--soft-ink);
}

.grareco-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grareco-grid figure {
  margin: 0;
  padding: 14px 14px 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 48px rgba(128, 76, 42, 0.08);
}

.grareco-grid img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

.grareco-grid figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--soft-ink);
}

.grareco-grid .tag,
.work-feature .tag {
  display: inline-block;
  margin-right: 8px;
  padding: 1px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--apricot);
  color: var(--orange-deep);
  font-size: 0.72rem;
  font-weight: 700;
}

.work-placeholder {
  margin-bottom: 22px;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  color: var(--orange-deep);
  background:
    linear-gradient(135deg, rgba(233, 120, 55, 0.18), transparent 42%),
    repeating-linear-gradient(-35deg, rgba(233, 120, 55, 0.1) 0 1px, transparent 1px 12px),
    #fff8f2;
  border: 1px dashed rgba(201, 92, 36, 0.45);
  font-family: "Yu Mincho", serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: 0.08em;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list--large {
  max-width: 880px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(128, 76, 42, 0.07);
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.final-cta {
  padding: clamp(48px, 6vw, 72px) 0;
  color: var(--ink);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 241, 232, 0.86), rgba(255, 250, 244, 0.95)),
    radial-gradient(circle at 15% 10%, rgba(233, 120, 55, 0.12), transparent 28%);
}

.final-cta p {
  max-width: 700px;
  color: var(--soft-ink);
}

.final-cta .button {
  margin-top: 26px;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.final-cta__art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-right: clamp(0px, 3vw, 40px);
}

.final-cta__bubble {
  font-family: "Tsukushi A Round Gothic", "Zen Kaku Gothic New", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange-deep);
  transform: rotate(-3deg);
}

.final-cta__mark {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50% 46% 54% 44%;
  font-family: "Tsukushi A Round Gothic", "Yu Gothic", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  transform: rotate(3deg);
  box-shadow: 0 14px 34px rgba(233, 120, 55, 0.25);
}

@media (max-width: 680px) {
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .final-cta__art {
    flex-direction: row;
    justify-content: center;
    padding-right: 0;
  }
}

.cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.flow-list {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.flow-list li {
  display: grid;
  grid-template-columns: 72px 190px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.flow-list span {
  color: var(--orange-deep);
  font-weight: 900;
}

.flow-list strong {
  font-family: "Yu Mincho", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.flow-list p {
  margin: 0;
  color: var(--soft-ink);
}

.voice-list blockquote {
  margin: 0 0 18px;
  padding: 26px;
  color: var(--ink);
  background: #fff;
  border-left: 4px solid var(--orange);
}

.legal-body {
  max-width: 900px;
  background: #fff;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
}

.legal-body h2 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
}

.legal-body p {
  margin: 0 0 16px;
}

.legal-table {
  margin: 0;
}

.legal-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.legal-table dt {
  font-weight: 900;
}

.legal-table dd {
  margin: 0;
  color: var(--soft-ink);
}

.site-footer {
  padding: 44px 0 20px;
  color: rgba(255, 248, 241, 0.96);
  background: #a9511e;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
}

.footer-brand {
  margin: 0 0 12px;
  font-family: "Yu Mincho", serif;
  font-size: 1.35rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.copyright {
  margin: 34px 0 0;
  text-align: center;
  font-size: 0.82rem;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 248, 241, 0.28);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-start;
}

.footer-bottom a,
.footer-bottom .copyright {
  font-size: 0.76rem;
  color: rgba(255, 248, 241, 0.78);
}

.footer-bottom .copyright {
  margin: 0;
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .global-nav {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .intro-grid,
  .portrait-split,
  .two-col,
  .faq-split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lead-copy {
    padding-top: 0;
  }

  .tile-grid,
  .plan-grid,
  .plan-grid--wide,
  .directory-grid {
    grid-template-columns: 1fr;
  }

  .grareco-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-card--wide {
    grid-column: span 1;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .flow-list li {
    grid-template-columns: 54px 1fr;
  }

  .flow-list p {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .grareco-grid {
    grid-template-columns: 1fr;
  }

  .work-entry {
    grid-template-columns: 1fr;
  }

  .work-shots {
    grid-template-columns: 1fr;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 14px;
    gap: 12px;
  }

  .brand {
    font-size: 0.76rem;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .global-nav {
    display: grid;
    grid-template-columns: repeat(5, max-content);
    justify-content: space-between;
    gap: 10px;
    font-size: 0.76rem;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
  }

  .nav-en {
    font-size: 0.78rem;
  }

  .nav-jp {
    font-size: 0.56rem;
  }

  .hero-fv img {
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.62rem, 8vw, 2.35rem);
  }

  .section,
  .page-hero {
    padding-block: 64px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .button--primary,
  .button--line {
    width: 100%;
  }

  .legal-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* 制作実績：ページ全体を1枚で見せる形（2026-08-27追加） */
.work-shots--single {
  grid-template-columns: 1fr;
}

.work-shots--single .work-shot {
  padding: 16px 16px 12px;
}

.work-cap {
  margin-top: 10px;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--soft-ink);
}

/* その他（チラシ・告知画像）：比率の違う画像を同じ枠に収める（2026-08-27追加） */
.grareco-grid--fit {
  align-items: start;
}

.grareco-grid--fit img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #faf8f5;
  border: 1px solid var(--line);
}
