:root{
  --bg:#0b0c0f;
  --fg:#f3f4f6;
  --muted:#b6bcc6;
  --line:rgba(255,255,255,.12);
  --card:rgba(255,255,255,.06);
  --max:1120px;
  --pad:20px;
  --header-h:68px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  background:var(--bg);
  color:var(--fg);
  line-height:1.6;
  padding-top: var(--header-h);
}
/* hidden属性を必ず隠す（UAスタイルより作者CSSが勝つため明示） */
[hidden] { display: none !important; }

a{color:inherit;text-decoration:none}
a:hover{opacity:.85}
.muted{color:var(--muted)}

.container{
  width:min(var(--max), 100%);
  margin:0 auto;
  padding:0 var(--pad);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: #000;
  z-index: 1000;
}
.header-inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  transform: translate(0px, 0px);
}

.brand-logo {
  height: 40px; /* ← 上品・主張しすぎない */
  width: auto;
  display: block;
}

/* PC Nav */
.site-nav {
  margin-left: auto;
}
.site-nav .nav-list {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.site-nav a {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-decoration: none;
  position: relative;
}

/* hover：線だけ出す（静） */
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle{
  display:none;
  width:44px;height:44px;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--card);
  color:var(--fg);
}
.nav-toggle-lines{
  position:relative;display:block;
  width:18px;height:2px;background:var(--fg);
  margin:0 auto;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;left:0;
  width:18px;height:2px;background:var(--fg);
}
.nav-toggle-lines::before{top:-6px}
.nav-toggle-lines::after{top:6px}

/* SP Dropdown (overlay) */
.sp-dropdown{
  position: fixed;
  inset: 0;
  z-index: 100; /* headerより前 */
}

/* 背景（タップで閉じる） */
.sp-dropdown .sp-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  border: 0;
}

/* パネル本体（上から下に出す） */
.sp-dropdown-panel{
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(11,12,15,.92);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  padding: 18px var(--pad);
  max-height: calc(100vh - var(--header-h));
  overflow: auto;
}
.sp-drawer-head{
  display:flex;align-items:center;justify-content:space-between;
  border-bottom:1px solid var(--line);
  padding:8px 0 14px;
  margin-bottom:14px;
}
.sp-drawer-title{letter-spacing:.12em;color:var(--muted);font-size:12px}
.sp-close{
  width:40px;height:40px;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--card);
  color:var(--fg);
  font-size:22px;
  line-height:1;
}
.sp-nav{display:flex;flex-direction:column;gap:10px}
.sp-nav a{
  padding:14px 12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--card);
  letter-spacing:.08em;
  color:var(--fg);
}

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  margin-top:12px;
  background:rgba(255,255,255,.02);
}

.footer-inner{
  width:min(var(--max), 100%);
  margin:0 auto;
  padding:34px var(--pad);
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr .9fr;
  gap:22px;
}
.footer-brand{font-weight:800;letter-spacing:.10em}

.footer-meta{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-line{font-size:13px}
.footer-inline-link{color:var(--muted);text-decoration:none}
.footer-inline-link:hover{color:var(--fg)}

.footer-title{font-size:12px;letter-spacing:.12em;color:var(--muted);margin-bottom:12px}
.footer-links{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px}
.site-footer .footer-links a{color:var(--muted);text-decoration:none}
.site-footer .footer-links a:hover{color:var(--fg)}
.site-footer .footer-meta .footer-title{ margin-bottom:2px; }


/* ===== Footer COL1 spacing control (ADDRESS / ACCESS / MAP) ===== */
/* COL1（Company列）だけ、flex gapの影響を外して“狙った行間”を作る */
.site-footer .footer-col:first-child .footer-meta{
  gap: 0;                 /* ← これが効かない原因の元。COL1だけ0にする */
}

/* 住所ブロック（ADDRESS）→ ACCESS見出し の間を広げる */
.site-footer .footer-col:first-child .footer-line{
  margin: 0 0 18px;       /* ← ここで「住所とアクセスのタイトルの行間」を作る */
}

/* ACCESS見出し → Google Map を詰める */
.site-footer .footer-col:first-child .footer-title{
  margin: 0 0 4px;        /* ← ここで「タイトルとGoogle Mapの距離」を詰める */
}

/* Google Map → 最寄り駅 を詰める（ACCESS配下のulだけ） */
.site-footer .footer-col:first-child .footer-links{
  gap: 2px;               /* ← ここで「Google Mapと最寄り駅の行間」を詰める */
  margin: 0;              /* 念のため */
  padding: 0;             /* 念のため */
}

/* 最寄り駅情報（ACCESS内・2行目）の文字サイズ調整 */
.site-footer
.footer-col:first-child
.footer-links
li
.muted{
  font-size:12px;     /* ← ここを 10〜12px で調整 */
  line-height:1.5;    /* 読みやすさ用 */
}

/* Footer SNS icon link */
.footer-links .icon-link{
  display:flex;
  align-items:center;
  gap:8px;              /* アイコンと文字の間隔 */
}

.footer-links .icon{
  width:28px;           /* アイコンサイズ */
  height:28px;
  display:block;
}
/* Footer Project logo */
.footer-links .logo{
  height:28px;     /* 高さだけ固定 */
  width:auto;      /* 横は自動（比率保持） */
  display:block;
}
/* Footer logo block (logo + text) */
.footer-links .logo-block{
  display:flex;
  flex-direction:column;
  align-items:flex-start;   /* 左揃え */
  gap:6px;                  /* ロゴと文字の間 */
}

.footer-links .logo-caption{
  font-size:11px;
  color:var(--muted);
  line-height:1.4;
  letter-spacing:.06em;
}
.footer-bottom{
  border-top:1px solid var(--line);
  padding:14px var(--pad);
  color:var(--muted);
}
.footer-bottom-inner{
  width:min(var(--max), 100%);
  margin:0 auto;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
}
.footer-subnav{display:flex;gap:16px;flex-wrap:wrap}
.footer-subnav a{
  color:var(--muted);
  font-size:12px;
  letter-spacing:.10em;
  text-decoration:none;
}
.footer-subnav a:hover{color:var(--fg)}

/* Responsive */
@media (max-width: 920px){
  .site-nav{display:none}
  .nav-toggle{display:inline-flex;align-items:center;justify-content:center}
  .footer-inner{grid-template-columns:1fr;gap:18px}
}
@media (min-width: 921px){
  .sp-dropdown { display:none !important; }
}

/* =========================
   ACCESS PAGE（LOCK版）
========================= */
.access { padding-top: 28px; }

.access-title{
  margin: 0;
  font-size: 20px;
  letter-spacing: .08em;
}
.access-rule{
  height: 1px;
  background: var(--line);
  margin-top: 14px;
}

/* MAP：中央に大きく */
.access-map{
  max-width: 980px;
  margin: 18px auto 0;
}
.map-embed{
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
}
.map-embed iframe{
  display:block;
  width:100%;
  height: clamp(260px, 46vw, 520px);
  border:0;
}
.map-actions{ margin-top: 12px; }
.btn-map{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--fg);
  letter-spacing: .06em;
}

/* TEXT：左寄せ固定 + 行間を詰める */
.access-info{ text-align:left; }

.access-subtitle{
  margin: 16px 0 10px;
  font-size: 16px;
  letter-spacing: .06em;
  line-height: 1.2;   /* ← ここで会社名と括弧の距離が締まる */
}

.access-company{
  display:block;
  margin:0;
}

.access-sub{
  display:block;
  margin-top: 2px;    /* ← 行間はここで微調整（0〜4pxでOK） */
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .04em;
  line-height: 1.2;
}

/* =========================
   TOP PAGE（index.html）
   - PC: 38% / 62% fixed
   - Right KV: centered, flexible
   - FV height: 70-80%
   - Motion: subtle (A+B), must work even when OFF
========================= */

.top{
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.top-hero{
  min-height: clamp(420px, 60vh, 680px); /* 72vh→60vh：ここが主因 */
  height: auto;
  display: grid;
  grid-template-columns: 38fr 62fr;
  gap: 26px;
  align-items: center;
  padding-top: 16px;    /* 上は息継ぎを残す */
  padding-bottom: 10px; /* 下の無駄を削る */
}

/* Left 38% 内に “基準幅” を作って中央寄せ */
.top-left{
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center; /* カラム全体は中央 */
}

/* タイトル・本文・メニューの共通基準幅 */
.top-title,
.top-copy,
.top-localnav{
  width: min(360px, 100%);
  text-align: left;    /* ← 文字の頭を揃える */
}


/* タイトル・コピー・ボタンの共通幅（＝ボタン幅の基準） */
.top-title,
.top-copy,
.top-localnav{
  width: min(360px, 100%); /* ← ここが “メニュー幅” の基準 */
}

.top-title{
  margin: 0 0 12px;
  font-size: 30px;          /* 32 → 30 */
  letter-spacing: .2em;    /* 少し詰める */
  font-family: "Abril Fatface", serif;
  line-height: 1.1;
  transform: scaleX(0.96);  /* ← 細く“感じさせる”決定打 */
  transform-origin: left;   /* 左基準で潰す */
}


.top-copy{
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.9;   /* 少しだけ余裕を出す */
  letter-spacing: .2em;
}

.top-localnav{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.top-localnav a{
  display: inline-flex;
  align-items: center;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  letter-spacing: .10em;
  font-size: 12px;
  color: var(--fg);
}

.top-right{
  min-width: 0;
  display: flex;
  justify-content: center; /* KV中央寄せ */
  align-items: center;
}

.top-kv{
  position: relative;
  width: 100%;
  max-width: 780px;
  height: clamp(340px, 46vh, 560px);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.10);
}

.top-kv-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0;
  transition: opacity 3000ms ease; /* フェードはゆっくり */
  filter: none;
  transform: none;
  will-change: opacity, transform, filter;
}

.top-kv-img.is-active{
  opacity: 1;
}

/* Motion ON: A 微細呼吸ズーム + B 光量/コントラスト微揺らぎ */
.top-kv[data-motion="on"] .top-kv-img.is-active{
  animation:
    topBreath 16s ease-in-out infinite,
    topFlicker 9s ease-in-out infinite;
}

/* Motion OFF: 何も足さない（フェードのみで成立させる） */
.top-kv[data-motion="off"] .top-kv-img{
  animation: none !important;
}

@keyframes topBreath{
  0%   { transform: scale(1.000); }
  50%  { transform: scale(1.018); }
  100% { transform: scale(1.000); }
}

@keyframes topFlicker{
  0%   { filter: brightness(1.00) contrast(1.00); }
  45%  { filter: brightness(1.03) contrast(1.02); }
  60%  { filter: brightness(0.99) contrast(0.99); }
  100% { filter: brightness(1.00) contrast(1.00); }
}

/* SP: 縦メニュー非表示（採用） + レイアウトは縦積み */
@media (max-width: 920px){
  .top{
    width: min(var(--max), 100%);
  }
  .top-hero{
    grid-template-columns: 1fr;
    height: auto;
    padding-top: 18px;
    gap: 18px;
  }
  .top-localnav{
    display: none;
  }
  .top-kv{
    max-width: 100%;
    height: clamp(260px, 46vw, 420px);
  }
}

/* reduce motion を尊重（OFFでも成立する設計なので、安全側で止める） */
@media (prefers-reduced-motion: reduce){
  .top-kv[data-motion="on"] .top-kv-img.is-active{
    animation: none !important;
  }
  .top-kv-img{
    transition: opacity 1200ms ease;
  }
}

/* =========================
   ABOUT PAGE（LOCK準拠：装飾最小・余白で区切る・画角センター）
========================= */

.about{
  padding-top: 28px;
  padding-bottom: 40px;
}

/* ページ全体はセンター。文字ブロックは“基準幅”で整列 */
.about-head{
  width: min(920px, 100%);
  margin: 0 auto 26px;
  text-align: center;
}

.about-page-title{
  margin: 0 0 10px;
  letter-spacing: .18em;
  font-size: 20px;
}

.about-rule{
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* セクションは“線”ではなく“余白”で区切る */
.about-section{
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 28px 0;
}

.about-section + .about-section{
  padding-top: 34px;
}

/* セクション見出し：控えめ */
.about-section-title{
  margin: 0 0 14px;
  text-align: center;
  font-size: 14px;
  letter-spacing: .10em;
  color: rgba(243,244,246,.90);
}

/* 本文：原稿の呼吸優先（行間・段落間を少し広めに） */
.about-body{
  width: min(720px, 100%);
  margin: 0 auto;
  color: rgba(243,244,246,.86);
  font-size: 14px;
  letter-spacing: .02em;
  line-height: 2.0;
}

.about-body p{
  margin: 0 0 18px;
}

/* セクションタイトル下の共通ルール線 */
.about-section-title::after{
  content: "";
  display: block;
  width: 360px;              /* 線の長さ */
  height: 1px;
  margin: 14px auto 0;       /* 上下余白（中央寄せ） */
  background: var(--line);   /* 既存トーンと統一 */
}


/* ① 理念：背景ロゴ（about_Logo2.png）を“補助要素”として薄く敷く
   不要なら：HTMLの about-philosophy クラス & 下記ブロックを完全削除 */
.about-philosophy{
  position: relative;
  overflow: hidden;
}

.about-philosophy::before{
  content: "";
  position: absolute;
  inset: -10%;
  background: url("../img/about_Logo2.png") center / contain no-repeat;
  opacity: .08;              /* 主役化防止 */
  pointer-events: none;
  filter: grayscale(100%);
}

.about-philosophy .about-body,
.about-philosophy .about-section-title{
  position: relative;
  z-index: 1;
}

/* =========================
   ABOUT：統一版（センター揃え＋会社概要の左右距離を詰める）
========================= */

/* 全文センター */
.about-body{ text-align:center; }
.about-body p{ text-align:center; }

/* 会社概要（中央寄せの2列） */
/* 会社概要：DL全体を「1つの表」としてセンター配置 */
.about-profile{
  width: min(560px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 160px auto; /* 左列固定 + 右列は内容幅 */
  justify-content: center;           /* 表全体をセンターに立てる */
  column-gap: 14px;                  /* 左右距離（ここで詰める） */
  row-gap: 12px;                     /* 行間（好みで 8〜14px） */
}

/* 行ラッパーは “存在しない扱い” にして dt/dd をDLグリッドに参加させる */
.about-row{
  display: contents;
}

/* 左：項目 / 右：内容（頭揃え） */
.about-profile dt{
  margin: 0;
  color: rgba(243,244,246,.72);
  letter-spacing: .04em;
  font-size: 13px;

  text-align: right;        /* 左列は右端で揃う＝芯が出る */
  white-space: nowrap;
}

.about-profile dd{
  margin: 0;
  color: rgba(243,244,246,.88);
  font-size: 14px;
  line-height: 1.9;

  text-align: left;         /* 右列は左端で揃う */
}

/* =========================
   アーティスト紹介：ロゴ＋写真＋キャプション（最終・安定版）
========================= */

/* 親：gapは使わない（距離を個別制御するため） */
.about-artist-visual{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}

/* ロゴ */
.about-artist-logo{
  width: 260px;        /* ← ロゴサイズ */
  max-width: 70vw;
  height: auto;
  display: block;
  opacity: .95;
  margin: 0 0 18px;    /* ← ロゴ→写真の距離 */
}

/* キャプション */
.about-artist-caption{
  text-align: center;
  line-height: 1.4;
  margin: 0;           /* ← 余計なズレを排除 */
}

.about-artist-name{
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(243,244,246,.92);
}

.about-artist-link{
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(182,188,198,.95);
  text-decoration: none;
}

.about-artist-link:hover{
  color: rgba(243,244,246,.95);
  text-decoration: underline;
}

/* =========================
   WORKS PAGE（LOCK準拠）
   - Cards: PC 2col / SP 1col
   - Initial: icon + text only（写真なし）
   - Expand: same page, under the card
========================= */

.works{
  padding-top: 28px;
  padding-bottom: 40px;
}

.works-head{
  width: min(920px, 100%);
  margin: 0 auto 22px;
  text-align: center;
}

.works-title{
  margin: 0 0 10px;
  letter-spacing: .18em;
  font-size: 20px;
}

.works-rule{
  width: 100%;
  height: 1px;
  background: var(--line);
}

.works-body{
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.works-grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.works-card{
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  color: var(--fg);
  padding: 14px;
  display: grid;
  grid-template-columns: 1.7fr 1fr; /* icon 63% / text 37% */
  gap: 12px;
  align-items: center;
  cursor: pointer;
}

.works-card:hover{ opacity: .92; }

.works-item.is-open .works-card{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}

.works-icon{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.works-icon img{
  width: 92%;
  height: 92%;
  object-fit: contain;
  display: block;
}

.works-text{
  min-width: 0;
  display: grid;
  gap: 8px;
  align-content: center;
}

.works-card-title{
  font-size: 14px;
  letter-spacing: .10em;
  line-height: 1.3;
}

.works-card-role{
  font-size: 12px;
  letter-spacing: .04em;
  line-height: 1.8;
}

.works-panel{
  margin-top: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  overflow: hidden;
}

.works-panel-inner{
  padding: 14px;
}

.works-photos{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 920px){
  .works-photos{ grid-template-columns: repeat(2, 1fr); }
}

.works-photos img{
  width: 100%;
  aspect-ratio: 4 / 3;          /* ← PC/SPで画角を固定（最重要） */
  height: auto;                 /* aspect-ratioで高さを決める */
  object-fit: contain;          /* ← 切らない（©を守る） */
  object-position: 50% 50%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02); /* 余白が出ても黒ベースで馴染ませる */
  display: block;
}

.works-close{
  margin-top: 14px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: var(--fg);
  letter-spacing: .10em;
  cursor: pointer;
}

.works-close:hover{ opacity: .92; }

/* =========================
   CONTACT PAGE（フォーム送信）
========================= */
.contact{
  padding-top: 28px;
  padding-bottom: 40px;
}

.contact-head{
  text-align: center;
  margin-bottom: 18px;
}

.contact-title{
  margin: 0 0 10px;
  letter-spacing: .18em;
  font-size: 20px;
}

.contact-rule{
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 0 auto 14px;
}

.contact-lead{
  margin: 0;
  font-size: 13px;
  letter-spacing: .04em;
}

.contact-body{
  width: min(920px, 100%);
  margin: 0 auto;
}

.contact-status{
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  padding: 12px 14px;
  margin: 0 0 14px;
  letter-spacing: .04em;
  font-size: 13px;
}
.contact-status.is-ok{
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}
.contact-status.is-ng{
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.03);
}

.contact-form{
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  padding: 16px;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row{ min-width: 0; }
.form-row--full{ grid-column: 1 / -1; }

.form-label{
  display: inline-block;
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(243,244,246,.90);
}

.req{
  color: rgba(243,244,246,.92);
  margin-left: 6px;
  font-size: 12px;
}

.opt{ margin-left: 6px; font-size: 12px; }

.form-input,
.form-textarea{
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(0,0,0,.20);
  color: var(--fg);
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
}

.form-input:focus,
.form-textarea:focus{
  border-color: rgba(255,255,255,.22);
  background: rgba(0,0,0,.24);
}

.form-textarea{
  resize: vertical;
  min-height: 180px;
  line-height: 1.8;
}

.form-note{
  margin: 8px 0 0;
  font-size: 12px;
}

.form-check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  user-select: none;
}

.form-check input{
  margin-top: 3px;
}

.form-link{
  text-decoration: underline;
}

.form-actions{
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.btn-submit{
  width: min(360px, 100%);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: var(--fg);
  letter-spacing: .10em;
  cursor: pointer;
}
.btn-submit:hover{ opacity: .92; }

.hp-field{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* SP */
@media (max-width: 920px){
  .form-grid{ grid-template-columns: 1fr; }
}


/* SP最適化 */
@media (max-width: 768px){
  .about{ padding-top: 22px; }

  .about-section{
    padding: 22px 0;
  }
  .about-section + .about-section{
    padding-top: 28px;
  }

  .about-row{
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
  }
}
