@charset "UTF-8";
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15; /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
}

/*
Sections
========
*/
body {
  margin: 0; /* Remove the margin in all browsers. */
}

/*
Text-level semantics
====================
*/
/**
Add the correct font weight in Chrome and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/
/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  border-color: currentcolor;
}

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

:root {
  --color-text: #33312c;
  --color-text-muted: #6f6a5e;
  --color-bg: #fbfaf6;
  --color-surface: #fbf4e6;
  --color-primary: #f0b429;
  --color-primary-dark: #dda31c;
  --color-leaf: #7a8c5c;
  --color-dark: #33312c;
  --color-white: #ffffff;
  --color-border: #e5e1d8;
  --font-sans: Murecho, Hiragino Sans, Yu Gothic, sans-serif;
  --font-en: IBM Plex Mono, Courier New, monospace;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.75rem;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  padding-top: 4.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  padding: 0;
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

a {
  -webkit-tap-highlight-color: transparent;
}

.l-inner {
  width: min(100% - clamp(2.5rem, 14.5vw - 0.875rem, 10rem), 70rem);
  margin-inline: auto;
}

/* =============================================
   l-header
   背景帯・境界線を持たない透明ヘッダー（確定）。
   常設3点（ロゴ白チップ／CTAピル／丸ハンバーガー）が
   それぞれ自前の板を持って浮く
   ============================================= */
.l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
  --header-gutter: clamp(1.25rem, 3vw, 2.75rem);
}

.l-header__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  padding-inline: var(--header-gutter);
}

.l-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem 0.625rem 0.625rem;
  border-radius: 1.125rem;
  background: var(--color-white);
  box-shadow: 0 0.125rem 0.625rem rgba(51, 49, 44, 0.1);
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    gap: 0.625rem;
    padding: 0.5rem 1rem 0.5rem 0.625rem;
  }
}

.l-header__logo-mark {
  width: auto;
  height: 2.25rem;
}
@media screen and (min-width: 768px) {
  .l-header__logo-mark {
    height: 2.5rem;
  }
}

.l-header__logo-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .l-header__logo-text {
    font-size: 1.125rem;
  }
}

.l-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.5rem;
  padding-right: 0.625rem;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .l-header__actions {
    gap: 1.25rem;
  }
}

.l-header .l-header__cta {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header .l-header__cta {
    display: inline-flex;
    min-height: 2.5rem;
    padding-inline: 1.25rem;
    font-size: 0.875rem;
  }
}

.l-header__menu-button {
  position: relative;
  z-index: 2;
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 0.125rem 0.625rem rgba(51, 49, 44, 0.1);
  transition: background-color 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .l-header__menu-button {
    transition: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header__menu-button:hover {
    background: var(--color-surface);
  }
}
.l-header__menu-button:focus-visible {
  outline: 0.125rem solid var(--color-text);
  outline-offset: 0.125rem;
}

.l-header__menu-label {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.l-header__menu-icon::before, .l-header__menu-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1.125rem;
  height: 0.125rem;
  background: var(--color-text);
  transform: translateX(-50%);
}
.l-header__menu-icon::before {
  top: 1.0625rem;
}
.l-header__menu-icon::after {
  top: 1.5rem;
}

.l-header__menu-button[aria-expanded=true] .l-header__menu-icon::before, .l-header__menu-button[aria-expanded=true] .l-header__menu-icon::after {
  top: 1.25rem;
}
.l-header__menu-button[aria-expanded=true] .l-header__menu-icon::before {
  transform: translateX(-50%) rotate(45deg);
}
.l-header__menu-button[aria-expanded=true] .l-header__menu-icon::after {
  transform: translateX(-50%) rotate(-45deg);
}

/* =============================================
   l-nav（ドロワー）
   SP・PC 共通のコンパクトなフローティングカード。
   丸ハンバーガー直下の右上に浮かべ、周囲にページを見せる。
   静的版はシンプルなフェードのみ（meets2 型の弾み・ボタンモーフ・
   現在地ドットの連動は動きフェーズで実装）
   ============================================= */
.l-nav {
  position: absolute;
  top: 1.5rem;
  right: var(--header-gutter);
  z-index: 1;
  width: min(20rem, 100vw - 3rem);
  padding: 4.75rem 1.5rem 1.5rem;
  background: var(--color-white);
  border: 0.0625rem solid var(--color-border);
  border-radius: 1.5rem;
  box-shadow: 0 0.75rem 2.5rem rgba(51, 49, 44, 0.18);
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}
@media (prefers-reduced-motion: reduce) {
  .l-nav {
    transition: none;
  }
}

.l-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}
@media (prefers-reduced-motion: reduce) {
  .l-nav.is-open {
    transition: none;
  }
}

.l-nav__list {
  display: flex;
  flex-direction: column;
}

.l-nav__link {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  padding: 0.625rem 0.5rem 0.625rem 1.25rem;
}
.l-nav__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-primary);
  transform: translateY(-50%) scale(0);
  transition: transform 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .l-nav__link::before {
    transition: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-nav__link:hover::before {
    transform: translateY(-50%) scale(1);
  }
}
.l-nav__link:focus-visible {
  outline: 0.125rem solid var(--color-text);
  outline-offset: 0.125rem;
}

.l-nav__link-en {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.l-nav__link-ja {
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

.l-nav__partner {
  display: block;
  margin-top: 0.75rem;
  padding: 1rem 0.5rem 0 1.25rem;
  border-top: 0.0625rem solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.8125rem;
}
@media (hover: hover) and (pointer: fine) {
  .l-nav__partner:hover {
    text-decoration: underline;
    text-underline-offset: 0.35em;
  }
}
.l-nav__partner:focus-visible {
  outline: 0.125rem solid var(--color-text);
  outline-offset: 0.125rem;
}

.l-nav .l-nav__cta {
  display: flex;
  width: 100%;
  margin-top: 1.25rem;
  min-height: 3rem;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .l-nav .l-nav__cta {
    display: none;
  }
}

.l-section {
  padding-block: clamp(4rem, 1.625rem + 10.2vw, 8rem);
}

.l-section--alt {
  background: var(--color-surface);
}

.l-section__header {
  display: grid;
  gap: 0.75rem;
  margin-bottom: clamp(2.5rem, 1.3125rem + 5.1vw, 4.5rem);
}

.l-section__label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.l-section__title {
  font-size: 1.75rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .l-section__title {
    font-size: 2.25rem;
  }
}

.l-section__text {
  max-width: 45rem;
  color: var(--color-text-muted);
}

.l-footer {
  padding-block: 3rem;
  background: var(--color-dark);
  color: var(--color-white);
}

.l-footer__inner {
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    grid-template-columns: repeat(2, minmax(0, auto));
    align-items: end;
    justify-content: space-between;
  }
}

.l-footer__brand {
  display: grid;
  gap: 0.5rem;
}

.l-footer__logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.l-footer__tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.l-footer__sub {
  display: grid;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer__sub {
    justify-items: end;
  }
}

.l-footer__partner {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__partner:hover {
    color: var(--color-white);
  }
}

.l-footer__copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding-inline: 1.5rem;
  border: 0.0625rem solid transparent;
  border-radius: 624.9375rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .c-button {
    transition: none;
  }
}

.c-button--primary {
  background: var(--color-primary);
  color: var(--color-text);
}
@media (hover: hover) and (pointer: fine) {
  .c-button--primary:hover {
    background: var(--color-primary-dark);
  }
}
.c-button--primary:focus-visible {
  outline: 0.125rem solid var(--color-text);
  outline-offset: 0.125rem;
}

.c-button--secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
@media (hover: hover) and (pointer: fine) {
  .c-button--secondary:hover {
    background: var(--color-text);
    color: var(--color-bg);
  }
}
.c-button--secondary:focus-visible {
  outline: 0.125rem solid var(--color-text);
  outline-offset: 0.125rem;
}

/* =============================================
   c-heading（セクション見出し）
   英字＝IBM Plex Mono の大型ラベル＋日本語の小さな添え
   ============================================= */
.c-heading {
  display: grid;
  gap: 0.5rem;
}

.c-heading__en {
  margin-left: -0.04em;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(1.875rem, 0.4375rem + 6.1vw, 4.25rem);
  letter-spacing: 0.06em;
  line-height: 1.05;
}

.c-heading__ja {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* =============================================
   p-hero（ファーストビュー）
   v2: 大型タイポ＋柚子の輪を文字の背後に重ねる構図
   静的版：柚子の輪は静止の仮SVG（回転アニメは実装フェーズで）
   ============================================= */
.p-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: clip;
  min-height: calc(100vh - 4.5rem);
  min-height: min(100svh - 4.5rem, 55rem, 175vw);
  padding-top: 11rem;
  padding-bottom: clamp(6rem, 3rem + 12.8vw, 11rem);
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  justify-items: start;
  margin-bottom: auto;
}

.p-hero__catch {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2rem;
  font-weight: 600;
  font-size: clamp(2.375rem, 1.375rem + 4.2vw, 4rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.p-hero__catch-br {
  flex-basis: 100%;
  height: 0;
}
@media screen and (min-width: 1000px) {
  .p-hero__catch-br {
    display: none;
  }
}

.p-hero__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 35rem;
  line-height: 1.9;
}

.p-hero__cta-group {
  display: grid;
  gap: 1rem;
  justify-items: start;
  margin-top: 0.75rem;
}

.p-hero__cta {
  min-width: 15rem;
  min-height: 3.5rem;
  font-size: 1rem;
}

.p-hero__cta-note {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.p-hero__ring {
  position: absolute;
  top: -10rem;
  right: clamp(-12.25rem, -14.7vw - 0.9375rem, -3.5rem);
  z-index: -1;
  width: clamp(15.25rem, 45.3vw + 4.1875rem, 41rem);
  aspect-ratio: 1/1;
  color: var(--color-primary);
}

.p-hero__arc {
  position: absolute;
  left: 0;
  bottom: -0.0625rem;
  z-index: 1;
  width: 100%;
  height: clamp(3rem, 12vw, 10rem);
}
.p-hero__arc path {
  fill: var(--color-surface);
}

/* =============================================
   p-works（制作実績）
   静的版：PC＋SP 合成モックアップ風カード（CSS 枠のみ・スクショは準備中）
   ============================================= */
.p-works__list {
  display: grid;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .p-works__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .p-works__list {
    gap: 5rem 4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-works__item:nth-child(even) {
    margin-top: 7.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .p-works__item:nth-child(even) {
    margin-top: 10rem;
  }
}

.p-works__mock {
  position: relative;
  aspect-ratio: 16/10;
}

.p-works__pc {
  display: grid;
  place-items: center;
  width: 82%;
  height: 100%;
  background: var(--color-white);
  border: 0.0625rem solid var(--color-border);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(51, 49, 44, 0.08);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.p-works__sp {
  position: absolute;
  right: 0;
  bottom: -0.75rem;
  width: 20%;
  aspect-ratio: 9/19;
  background: var(--color-white);
  border: 0.0625rem solid var(--color-border);
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1.5rem rgba(51, 49, 44, 0.1);
}

.p-works__title {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.p-works__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.625rem;
}

.p-works__tag {
  padding: 0.25rem 0.75rem;
  border-radius: 624.9375rem;
  background: var(--color-leaf);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.p-works__note {
  margin-top: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

/* =============================================
   p-service（ご依頼いただけること）
   静的版の提案：カード枠なし・mono 番号＋見出し＋本文の3列
   （表示形式は静的版レビューで確定する）
   ============================================= */
.p-service__list {
  display: grid;
  gap: 2.5rem;
}
@media screen and (min-width: 1000px) {
  .p-service__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }
}

.p-service__item {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.p-service__num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}

.p-service__title {
  font-size: 1.375rem;
  font-weight: 700;
}

.p-service__text {
  line-height: 1.8;
}

/* =============================================
   p-flow（制作の流れ）
   縦のステップリスト＋接続線。「公開後」は番号なしの別枠
   ============================================= */
.p-flow__list {
  display: grid;
  gap: 2.25rem;
  max-width: 45rem;
}

.p-flow__item {
  position: relative;
  display: grid;
  gap: 0.5rem;
  padding-left: 4rem;
}
.p-flow__item::before {
  content: "";
  position: absolute;
  left: 0.875rem;
  top: 2.5rem;
  bottom: -2.25rem;
  width: 0.0625rem;
  background: var(--color-border);
}
.p-flow__item:last-child::before {
  content: none;
}

.p-flow__num {
  position: absolute;
  left: 0;
  top: 0.125rem;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}

.p-flow__title {
  font-size: 1.25rem;
  font-weight: 700;
}

.p-flow__text {
  line-height: 1.8;
}

.p-flow__after {
  display: grid;
  gap: 0.5rem;
  max-width: 45rem;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--color-bg);
  border: 0.0625rem solid var(--color-border);
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__after {
    padding: 2rem;
  }
}

.p-flow__after-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.p-flow__after-text {
  line-height: 1.8;
}

/* =============================================
   p-about（ゆずのについて）
   本文＋似顔絵（線画SVG・準備中）。タグラインを信条として添える
   ============================================= */
.p-about__body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 1000px) {
  .p-about__body {
    flex-direction: row;
    align-items: flex-start;
    gap: 5rem;
  }
}

.p-about__text {
  display: grid;
  gap: 1rem;
  line-height: 1.9;
}
@media screen and (min-width: 1000px) {
  .p-about__text {
    flex: 3;
  }
}

.p-about__portrait {
  display: grid;
  place-items: center;
  width: min(15rem, 60%);
  margin-inline: auto;
  aspect-ratio: 1/1;
  border: 0.125rem dashed var(--color-border);
  border-radius: 50%;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}
@media screen and (min-width: 1000px) {
  .p-about__portrait {
    flex: 2;
    width: auto;
    max-width: 17.5rem;
    margin-inline: 0;
  }
}

.p-about__tagline {
  margin-top: 2rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.p-about__tagline-marker {
  background: linear-gradient(transparent 68%, rgba(240, 180, 41, 0.4) 68%);
}

/* =============================================
   p-lab（アニメーションの実験室）
   静的版：仮タイル3枚（ローンチ時に3個未満ならセクションごと非公開）
   ============================================= */
.p-lab__list {
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-lab__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.p-lab__item {
  display: grid;
  place-items: center;
  aspect-ratio: 4/3;
  background: var(--color-bg);
  border: 0.0625rem solid var(--color-border);
  border-radius: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.p-lab__cta {
  margin-top: 3rem;
  text-align: center;
}

/* =============================================
   p-contact（ご相談・お問い合わせ）
   静的版：フォームは見た目のみ（送信は Pages Functions で実装フェーズに）
   ============================================= */
.p-contact__lead {
  max-width: 40rem;
  line-height: 1.9;
}

.p-contact__form {
  display: grid;
  gap: 1.5rem;
  max-width: 40rem;
  margin-top: 2.5rem;
}

.p-contact__field {
  display: grid;
  gap: 0.5rem;
}

.p-contact__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.p-contact__required {
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  background: var(--color-primary);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 700;
}

.p-contact__input,
.p-contact__textarea {
  padding: 0.75rem 0.875rem;
  background: var(--color-white);
  border: 0.0625rem solid var(--color-border);
  border-radius: 0.375rem;
  font-size: 1rem;
}
.p-contact__input:focus-visible,
.p-contact__textarea:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}

.p-contact__textarea {
  min-height: 11.25rem;
  resize: vertical;
}

.p-contact__submit {
  justify-self: start;
  min-width: 15rem;
  min-height: 3.5rem;
  font-size: 1rem;
}