@charset "UTF-8";

/* ===== CSS変数 ===== */
:root {
  --cream:      #FDFAF5;
  --peach:      #D4A5A5;
  --peach-pale: #fdf0e8;
  --peach-mid:  #f5d5c2;
  --green:      #3d5c3a;
  --green-mid:  #6b9467;
  --green-pale: #e4ede3;
  --sand:       #f0e8de;
  --dark:       #221c1a;
  --text:       #2d2320;
  --text-mid:   #6b5c56;
  --text-light: #a09390;
  --border:     #ddd0c8;
  --white:      #fff;
  --max:        1140px;
  --py:         100px;
}

/* ===== リセット ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  background: var(--cream);
}
img { width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== レイアウト ===== */
.inner { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
section { padding: var(--py) 0; }

/* ===== セクション共通 ===== */
.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-style: italic;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--peach);
  flex-shrink: 0;
}
.section-label--light { color: rgba(255,255,255,.55); }
.section-label--light::before { background: rgba(255,255,255,.55); }

.section-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 56px;
  color: var(--text);
  letter-spacing: -.01em;
}
.section-title--light { color: #fff; }

/* ===== アニメーション ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1);
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ===== ヘッダー ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 66px;
  display: flex;
  align-items: center;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.header__logo {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text);
}
.header__nav { display: flex; align-items: center; gap: 36px; }
.header__nav a {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--text-mid);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 1px;
  background: var(--peach);
  transition: right .3s;
}
.header__nav a:hover { color: var(--text); }
.header__nav a:hover::after { right: 0; }
.header__cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 2px 0;
  color: var(--text-mid);
  border-bottom: 1.5px solid var(--peach);
  transition: color .2s, border-color .2s;
}
.header__cta:hover { color: var(--text); border-color: var(--text); }

/* ハンバーガー */
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); transition: .3s; border-radius: 2px;
}

/* スマホメニュー */
.sp-menu {
  display: none; position: fixed; inset: 0;
  background: var(--cream); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.sp-menu.is-open { display: flex; }
.sp-menu__link {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px; font-weight: 600; letter-spacing: .1em; color: var(--text);
}
.sp-menu__close {
  position: absolute; top: 24px; right: 28px;
  font-size: 22px; cursor: pointer; background: none; border: none; color: var(--text);
}

/* ===== ヒーロー ===== */
.hero {
  min-height: calc(100svh - 66px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* 大きな丸の装飾（桃モチーフ） */
.hero::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 1px solid var(--peach-mid);
  top: -140px; right: 50%;
  pointer-events: none;
  opacity: .5;
}
.hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--peach-mid);
  opacity: .25;
  bottom: -80px; right: 0;
  pointer-events: none;
}

.hero__content {
  padding: 80px 48px 80px max(40px, calc((100vw - var(--max)) / 2 + 40px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--peach);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__label::before { content: ''; width: 44px; height: 1px; background: var(--peach); }

.hero__copy {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(36px, 4.2vw, 50px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.hero__sub {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.8;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__sub::before { content: ''; width: 20px; height: 1px; background: var(--green-mid); flex-shrink: 0; }
.hero__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 44px;
  max-width: 380px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 40px;
  background: var(--text);
  color: var(--white);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  transition: background .25s, transform .25s;
  align-self: flex-start;
}
.hero__cta:hover { background: var(--green); transform: translateY(-3px); }
.hero__cta-arrow {
  display: inline-block; width: 24px; height: 1px;
  background: currentColor; position: relative; flex-shrink: 0;
}
.hero__cta-arrow::after {
  content: ''; position: absolute; right: 0; top: -4px;
  width: 8px; height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.hero__visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__deco {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  font-style: italic;
  color: var(--border);
  opacity: .3;
  line-height: 1;
  bottom: 5%;
  left: -20px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.hero_img_wrapper {
  width: 100%;
  max-width: 550px;
  position: relative;
  z-index: 1;
}

/* ===== ボタン ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 2px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  cursor: pointer; transition: .2s; border: 1.5px solid transparent;
}
.btn--primary { background: var(--peach); color: var(--white); border-color: var(--peach); }
.btn--primary:hover { background: #d0906f; border-color: #d0906f; }
.btn--outline { background: transparent; border-color: var(--text); color: var(--text); }
.btn--outline:hover { background: var(--text); color: var(--white); }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn--outline-light:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn--white { background: var(--white); color: var(--text); }
.btn--white:hover { background: var(--peach-pale); }

/* ===== 選ばれる理由 ─ 緑ダーク ===== */
#reason {
  background: var(--green);
  color: var(--white);
}
.reason__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 40px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
}
.reason__card {
  background: rgba(255,255,255,.06);
  padding: 52px 40px;
  transition: background .25s;
}
.reason__card:hover { background: rgba(255,255,255,.12); }
.reason__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-style: italic;
  color: rgba(255,255,255,.2);
  line-height: 1;
  margin-bottom: 24px;
}
.reason__card-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.5;
  color: var(--white);
}
.reason__card-text { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.9; }
.reason__bottom {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

/* ===== フリーランスが向いている理由 ─ クリーム ===== */
.freelance__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.freelance__card {
  padding: 44px 36px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.freelance__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--peach), var(--peach-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.freelance__card:hover { box-shadow: 0 12px 40px rgba(61,92,58,.1); transform: translateY(-4px); border-color: var(--green-pale); }
.freelance__card:hover::after { transform: scaleX(1); }
.freelance__card-title { font-size: 11px; letter-spacing: .2em; color: var(--green-mid); font-weight: 700; margin-bottom: 16px; }
.freelance__card-head {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 20px; font-weight: 600; margin-bottom: 16px; line-height: 1.5;
}
.freelance__card-text { font-size: 13px; color: var(--text-mid); line-height: 1.95; }

/* ===== プラン ─ ピーチ淡 ===== */
#plan { background: var(--peach-pale); }
.plan__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 32px; align-items: start;
}
.plan__card {
  background: var(--white);
  border-radius: 12px; padding: 44px 36px;
  border: 1.5px solid var(--border);
  transition: border-color .25s, box-shadow .25s;
}
.plan__card:hover { border-color: var(--peach); box-shadow: 0 12px 40px rgba(232,180,154,.18); }
.plan__card--recommend {
  border-color: var(--peach);
  background: var(--white);
  box-shadow: 0 16px 56px rgba(232,180,154,.22);
  position: relative;
}
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--peach); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 5px 22px;
  border-radius: 20px; white-space: nowrap; letter-spacing: .12em;
}
.plan__name { font-family: 'Shippori Mincho B1', serif; font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.plan__price { font-size: 32px; font-weight: 700; color: var(--text); margin-bottom: 28px; letter-spacing: -.03em; line-height: 1; }
.plan__list { text-align: left; }
.plan__list li {
  font-size: 13px; color: var(--text-mid);
  padding: 10px 0 10px 20px; border-bottom: 1px solid var(--border); position: relative;
}
.plan__list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-mid);
}
.plan__note { font-size: 12px; color: var(--text-light); margin-bottom: 24px; line-height: 2; }
.plan__msg { text-align: center; font-size: 14px; color: var(--text-mid); }

/* ===== 後悔しないための選び方 ─ クリーム ===== */
.avoid__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 36px; }
.avoid__item {
  background: var(--white); border-radius: 12px; padding: 32px;
  border: 1px solid var(--border); transition: border-color .25s;
  counter-increment: avoid-counter;
}
.avoid__item:hover { border-color: var(--peach-mid); }
.avoid__num { font-size: 11px; font-weight: 700; color: var(--peach); letter-spacing: .1em; display: block; margin-bottom: 12px; }
.avoid__title { font-family: 'Shippori Mincho B1', serif; font-size: 17px; font-weight: 600; margin-bottom: 14px; line-height: 1.6; }
.avoid__arrow {
  font-size: 12px; color: var(--green); font-weight: 600;
  padding: 10px 16px; background: var(--green-pale); border-radius: 4px; display: block; line-height: 1.7;
}
.avoid__closing {
  border-left: 3px solid var(--green); padding: 24px 28px;
  font-size: 14px; color: var(--text-mid);
  background: var(--sand); border-radius: 0 12px 12px 0; line-height: 2;
}

/* ===== 実績スライダー ─ ホワイト ===== */
.works__slider { overflow: hidden; }
.works__track { display: flex; gap: 20px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.works__card {
  min-width: 340px; background: var(--white); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); flex-shrink: 0;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.works__card:hover { border-color: var(--peach); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(232,180,154,.18); }
.works__thumb {
  background: var(--sand); aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 12px; overflow: hidden;
}
.works__info { padding: 24px 28px; }
.works__category { font-size: 11px; color: var(--green-mid); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px; }
.works__name { font-family: 'Shippori Mincho B1', serif; font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.works__desc { font-size: 13px; color: var(--text-mid); line-height: 1.75; }
.works__controls { display: flex; justify-content: center; gap: 12px; margin-top: 36px; }
.works__btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  cursor: pointer; font-size: 17px; display: flex; align-items: center; justify-content: center;
  transition: .2s; color: var(--text);
}
.works__btn:hover { border-color: var(--peach); color: var(--peach); background: var(--peach-pale); }

/* ===== 私について ─ クリーム ===== */
.about__inner { display: grid; grid-template-columns: 300px 1fr; gap: 72px; align-items: start; }
.about__photo {
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden; background: var(--sand);
}
.about__photo .about_img { width: 100%; height: 100%; object-fit: cover; }
.about__name { font-family: 'Shippori Mincho B1', serif; font-size: 24px; font-weight: 600; margin-bottom: 4px; }
.about__role { font-size: 12px; color: var(--green-mid); font-weight: 700; letter-spacing: .12em; margin-bottom: 28px; }
.about__stance {
  font-size: 15px; font-weight: 500; color: var(--text-mid); margin-bottom: 28px;
  padding: 18px 24px; background: var(--peach-pale); border-left: 3px solid var(--peach);
  border-radius: 0 8px 8px 0; line-height: 1.85;
}
.about__text { font-size: 14px; color: var(--text-mid); margin-bottom: 28px; line-height: 2.1; }
.about__values { margin-bottom: 36px; }
.about__values li {
  font-size: 13px; color: var(--text-mid);
  padding: 10px 0 10px 22px; position: relative; border-bottom: 1px solid var(--border);
}
.about__values li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--peach); opacity: .8;
}

/* ===== サービス一覧 ─ グリーン ===== */
#service { background: var(--green); }
.service__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service__card:last-child:nth-child(3n - 2) { grid-column: 2; }
.service__card {
  background: rgba(255,255,255,.08); border-radius: 12px; padding: 36px 32px;
  border: 1px solid rgba(255,255,255,.12);
  transition: background .25s, transform .3s;
  display: flex; flex-direction: column;
}
.service__card:hover { background: rgba(255,255,255,.15); transform: translateY(-6px); }
.service__icon { width: 48px; height: 48px; border-radius: 10px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; }
.service__icon img { filter: brightness(10); }
.service__name { font-family: 'Shippori Mincho B1', serif; font-size: 18px; font-weight: 600; margin-bottom: 14px; color: var(--white); }
.service__text { font-size: 13px; color: rgba(255,255,255,.68); margin-bottom: 24px; flex: 1; line-height: 1.95; }
.service__link { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 700; letter-spacing: .08em; display: inline-flex; align-items: center; gap: 8px; transition: gap .2s, color .2s; }
.service__card:hover .service__link { gap: 12px; color: var(--white); }

/* ===== フロー ─ クリーム ===== */
.flow__lead { font-size: 14px; color: var(--text-mid); margin-bottom: 56px; max-width: 580px; line-height: 2.1; }
.flow__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 72px; position: relative; }
.flow__list::before {
  content: ''; position: absolute; left: 50%; top: 24px; bottom: 24px;
  width: 1px; background: var(--border);
}
.flow__item { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding-bottom: 40px; }
.flow__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--peach); display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600;
  flex-shrink: 0; transition: background .25s, border-color .25s, color .25s;
}
.flow__item:hover .flow__num { background: var(--peach); border-color: var(--peach); color: var(--white); }
.flow__content-title { font-family: 'Shippori Mincho B1', serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; padding-top: 14px; line-height: 1.4; }
.flow__content-text { font-size: 13px; color: var(--text-mid); line-height: 1.9; }

/* ===== CTA ─ ダーク ===== */
.cta {
  background: var(--dark) !important;
  color: var(--white); text-align: center; padding: 110px 24px; position: relative; overflow: hidden;
}
.cta::before {
  content: 'Contact';
  position: absolute; font-family: 'Cormorant Garamond', serif;
  font-size: 240px; font-style: italic; color: rgba(255,255,255,.03);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  white-space: nowrap; pointer-events: none;
}
/* 装飾円 */
.cta::after {
  content: '';
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  bottom: -160px; right: 10%; pointer-events: none;
}
.cta__title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(22px, 3vw, 34px); font-weight: 600;
  margin-bottom: 16px; line-height: 1.65; position: relative;
}
.cta__text { font-size: 14px; margin-bottom: 44px; opacity: .65; position: relative; }

/* ===== フッター ===== */
.footer { background: #1e1815; color: #ccc; padding: 60px 40px 40px; text-align: center; }
.footer__logo { font-family: 'Shippori Mincho B1', serif; font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 24px; letter-spacing: .06em; }
.footer__nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; margin-bottom: 32px; }
.footer__nav a { font-size: 12px; color: rgba(255,255,255,.4); letter-spacing: .05em; transition: color .2s; }
.footer__nav a:hover { color: var(--white); }
.footer__privacy { font-size: 12px; color: rgba(255,255,255,.28); display: block; margin-bottom: 16px; transition: color .2s; }
.footer__privacy:hover { color: rgba(255,255,255,.6); }
.footer__copy { font-size: 11px; color: rgba(255,255,255,.2); letter-spacing: .05em; }

/* ===== 固定CTAボタン ===== */
.fixed-cta {
  background-image: url(../img/peach.svg);
  background-size: contain; background-repeat: no-repeat;
  width: 80px; height: 80px; position: fixed; bottom: 28px; right: 28px; z-index: 99;
  font-size: 11px; font-weight: 700; line-height: 1.5; text-align: center;
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding-bottom: 12px;
}
@media screen and (min-width: 1080px) { .fixed-cta { width: 120px; height: 120px; font-size: 13px; } }
.fixed-cta:hover { animation: poyon 1s ease; }
@keyframes poyon {
  0%   { transform: scale(1, .85); }
  20%  { transform: scale(.88, 1.12); }
  50%  { transform: scale(1.04, .97); }
  80%  { transform: scale(.98, 1.02); }
  100% { transform: scale(1, 1); }
}

.

/* ===== パンくずリスト ===== */
.breadcrumb { background: var(--sand); border-bottom: 1px solid var(--border); padding: 12px 0; }
.breadcrumb__list { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-light); }
.breadcrumb__list a { color: var(--text-light); transition: color .2s; }
.breadcrumb__list a:hover { color: var(--peach); }
.breadcrumb__sep { color: var(--border); }

/* ===== 内ページヒーロー ===== */
.page-hero { background: var(--cream); padding: 68px 0 60px; border-bottom: 1px solid var(--border); }
.page-hero__label { font-family: 'Cormorant Garamond', serif; font-size: 11px; font-style: italic; letter-spacing: .3em; text-transform: uppercase; color: var(--peach); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.page-hero__label::before { content: ''; width: 28px; height: 1px; background: var(--peach); }
.page-hero__title { font-family: 'Shippori Mincho B1', serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; margin-bottom: 20px; line-height: 1.35; }
.page-hero__catch { font-size: 14px; color: var(--text-mid); line-height: 2.1; max-width: 580px; }

/* ===== こんな方 ===== */
.for-you__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.for-you__item {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 14px 18px; font-size: 13px; color: var(--text-mid);
  display: flex; align-items: flex-start; gap: 10px;
}
.for-you__item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-mid); flex-shrink: 0; margin-top: 6px; }

/* ===== メリット ===== */
.merit__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.merit__card { background: var(--white); border-radius: 12px; padding: 32px 28px; border: 1px solid var(--border); transition: border-color .2s; }
.merit__card:hover { border-color: var(--peach-mid); }
.merit__num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-style: italic; color: var(--border); line-height: 1; margin-bottom: 14px; }
.merit__card-title { font-family: 'Shippori Mincho B1', serif; font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.merit__card-text { font-size: 13px; color: var(--text-mid); line-height: 1.9; }

/* ===== キャッチブロック ===== */
.catch-block { background: var(--peach-pale); border-left: 3px solid var(--peach); padding: 24px 28px; font-size: 14px; color: var(--text-mid); border-radius: 0 8px 8px 0; line-height: 2; margin-bottom: 48px; }

/* ===== テック ===== */
.tech__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tech__card { background: var(--white); border-radius: 12px; padding: 28px 24px; border: 1px solid var(--border); }
.tech__icon { font-size: 28px; margin-bottom: 14px; }
.tech__title { font-family: 'Shippori Mincho B1', serif; font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.tech__text { font-size: 13px; color: var(--text-mid); line-height: 1.95; }

/* ===== About ===== */
.profile__inner { display: grid; grid-template-columns: 260px 1fr; gap: 72px; align-items: start; }
.profile__photo { border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; overflow: hidden; background: var(--sand); }
.profile__name { font-family: 'Shippori Mincho B1', serif; font-size: 26px; font-weight: 600; margin-bottom: 4px; }
.profile__role { font-size: 12px; color: var(--green-mid); font-weight: 700; letter-spacing: .12em; margin-bottom: 24px; }
.profile__stance { font-size: 14px; font-weight: 500; color: var(--text-mid); margin-bottom: 24px; padding: 16px 20px; background: var(--peach-pale); border-left: 3px solid var(--peach); border-radius: 0 8px 8px 0; line-height: 1.85; }
.profile__text { font-size: 14px; color: var(--text-mid); line-height: 2.1; margin-bottom: 24px; }
.profile__values { margin-bottom: 32px; }
.profile__values li { font-size: 13px; color: var(--text-mid); padding: 9px 0 9px 20px; position: relative; border-bottom: 1px solid var(--border); }
.profile__values li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; border-radius: 50%; background: var(--peach); opacity: .75; }
.profile__msg { font-size: 13px; color: var(--green); font-weight: 500; padding: 16px 20px; background: var(--green-pale); border-radius: 8px; line-height: 1.85; }
.history__list { display: flex; flex-direction: column; }
.history__item { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.history__year { color: var(--peach); font-weight: 700; font-size: 13px; }
.history__desc { color: var(--text-mid); }
.skill__grid { display: flex; flex-wrap: wrap; gap: 8px; }
.skill__tag { display: inline-flex; align-items: center; gap: 6px; background: var(--sand); border: 1px solid var(--border); border-radius: 20px; padding: 6px 14px; font-size: 13px; color: var(--text-mid); }
.sns__list { display: flex; gap: 12px; flex-wrap: wrap; }
.sns__link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; color: var(--text-mid); transition: .2s; }
.sns__link:hover { border-color: var(--peach); color: var(--peach); }
.story__block { background: var(--peach-pale); border-radius: 12px; padding: 44px 40px 36px; font-size: 14px; color: var(--text-mid); line-height: 2.1; position: relative; }
.story__block::before { font-family: 'Cormorant Garamond', serif; content: '"'; font-size: 88px; color: var(--peach); opacity: .28; position: absolute; top: 4px; left: 24px; line-height: 1; }

/* ===== お問い合わせ ===== */
.contact-lead { max-width: 600px; margin: 0 auto 52px; text-align: center; }
.contact-lead__title { font-family: 'Shippori Mincho B1', serif; font-size: clamp(22px, 3vw, 30px); font-weight: 600; margin-bottom: 16px; }
.contact-lead__text { font-size: 14px; color: var(--text-mid); line-height: 2; }
.reassure__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 48px; }
.reassure__item { display: flex; align-items: flex-start; gap: 10px; background: var(--sand); border-radius: 8px; padding: 14px 18px; font-size: 13px; color: var(--text-mid); }
.reassure__item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-mid); flex-shrink: 0; margin-top: 5px; }
.form__wrap { max-width: 680px; margin: 0 auto; }
.form__group { margin-bottom: 24px; }
.form__label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--text); letter-spacing: .03em; }
.form__required { font-size: 11px; color: var(--peach); font-weight: 700; margin-left: 6px; background: var(--peach-pale); padding: 2px 6px; border-radius: 4px; }
.form__optional { font-size: 11px; color: var(--text-light); margin-left: 6px; }
.form__input, .form__select, .form__textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 8px; padding: 12px 16px; font-size: 14px; background: var(--white); transition: border-color .2s; font-family: inherit; color: var(--text); }
.form__input:focus, .form__select:focus, .form__textarea:focus { outline: none; border-color: var(--peach); }
.form__textarea { min-height: 160px; resize: vertical; }
.form__select { appearance: auto; }
.form__submit { text-align: center; margin-top: 8px; }
.form__btn { padding: 16px 56px; font-size: 14px; }
.form__note { font-size: 12px; color: var(--text-light); margin-top: 16px; }

/* ===== プライバシー ===== */
.privacy__body { max-width: 740px; margin: 0 auto; }
.privacy__lead { font-size: 14px; color: var(--text-mid); line-height: 2; margin-bottom: 48px; padding: 24px 28px; background: var(--sand); border-radius: 8px; }
.privacy__section { margin-bottom: 40px; }
.privacy__heading { font-family: 'Shippori Mincho B1', serif; font-size: 18px; font-weight: 600; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1.5px solid var(--border); }
.privacy__text { font-size: 14px; color: var(--text-mid); line-height: 2; }
.privacy__list { margin-top: 12px; padding-left: 8px; }
.privacy__list li { font-size: 14px; color: var(--text-mid); padding: 6px 0 6px 16px; position: relative; }
.privacy__list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--green-mid); }
.privacy__date { font-size: 12px; color: var(--text-light); text-align: right; margin-top: 48px; }

/* ===== 実績ページ ===== */
.works-page__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.works-page__card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1.5px solid var(--border); transition: border-color .25s, transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.works-page__card--link:hover { border-color: var(--peach); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(232,180,154,.18); }
.works-page__card--soon { opacity: .5; }
.works-page__thumb { background: var(--sand); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 13px; overflow: hidden; }
.works-page__info { padding: 22px 26px; flex: 1; display: flex; flex-direction: column; }
.works-page__category { font-size: 11px; color: var(--green-mid); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px; }
.works-page__name { font-family: 'Shippori Mincho B1', serif; font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.works-page__desc { font-size: 13px; color: var(--text-mid); line-height: 1.8; flex: 1; margin-bottom: 16px; }
.works-page__link { font-size: 12px; color: var(--peach); font-weight: 700; letter-spacing: .04em; }
.work-detail__inner { display: grid; grid-template-columns: 1fr 280px; gap: 56px; align-items: start; }
.work-detail__img { background: var(--sand); aspect-ratio: 16/9; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 13px; margin-bottom: 48px; overflow: hidden; }
.work-info__box { background: var(--sand); border-radius: 12px; padding: 24px; position: sticky; top: 82px; }
.work-info__item { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.work-info__item:last-child { border-bottom: none; }
.work-info__label { font-size: 11px; color: var(--green-mid); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
.work-info__value { color: var(--text-mid); line-height: 1.7; }
.work-body__section { margin-bottom: 56px; }
.work-body__title { font-family: 'Shippori Mincho B1', serif; font-size: 22px; font-weight: 600; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1.5px solid var(--border); }
.work-body__text { font-size: 14px; color: var(--text-mid); line-height: 2.1; }

/* ===== レスポンシブ ===== */
@media (max-width: 960px) {
  :root { --py: 72px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 72px 32px; }
  .hero__visual { display: none; }
  .reason__grid, .freelance__grid, .plan__grid { grid-template-columns: 1fr; }
  .flow__list { grid-template-columns: 1fr; }
  .flow__list::before { display: none; }
}

@media (max-width: 768px) {
  :root { --py: 56px; }
  .inner { padding: 0 20px; }
  .header__nav { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }
  .header__inner { padding: 0 20px; }
  .avoid__grid { grid-template-columns: 1fr; }
  .service__grid { grid-template-columns: 1fr; }
  .service__card:last-child:nth-child(3n - 2) { grid-column: 1; }
  .about__inner { grid-template-columns: 1fr; }
  .about__photo { max-width: 200px; border-radius: 50%; }
  .works__card { min-width: 280px; }
  .for-you__list { grid-template-columns: 1fr; }
  .merit__grid { grid-template-columns: 1fr; }
  .tech__grid { grid-template-columns: 1fr; }
  .profile__inner { grid-template-columns: 1fr; }
  .profile__photo { max-width: 180px; border-radius: 50%; }
  .history__item { grid-template-columns: 80px 1fr; }
  .reassure__list { grid-template-columns: 1fr; }
  .works-page__grid { grid-template-columns: 1fr; }
  .work-detail__inner { grid-template-columns: 1fr; }
  .work-info__box { position: static; }
}
