/* ============================================
   さわやか ポートフォリオサイト 共通CSS
   基調: 生成りベージュ × ティールグリーン（2026-07 ブランドカラー決定版）
   ※変数名の --blue 系は旧配色の名残。中身はティールグリーン
   ============================================ */

:root {
  --blue-dark: #2e6e63;
  --blue: #2e7d70; /* 白文字とのコントラスト比4.5:1(WCAG AA)を満たす色 */
  --blue-light: #6fbcae;
  --sky: #f2ece0;
  --sky-soft: #f9f5ec;
  --text: #4c3d30;
  --text-sub: #7a6b5a;
  --border: #e6dcc9;
  --gold: #d9a441;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 2px 12px rgba(120, 100, 70, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.9;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

a {
  color: var(--blue);
}

/* ---------- レイアウト共通 ---------- */

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 64px 0;
}

/* 固定ヘッダーの分だけ下げて、ページ内リンクで見出しが隠れないようにする */
section[id] {
  scroll-margin-top: 64px;
}

.section-alt {
  background: var(--sky-soft);
}

.section-title {
  text-align: center;
  font-size: 1.6rem;
  color: var(--blue-dark);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ---------- ヘッダー ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: bold;
  font-size: 1.05rem;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--sky);
  border: 2px solid var(--border);
}

.brand .brand-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: normal;
  color: var(--text-sub);
  line-height: 1.3;
}

.global-nav {
  display: flex;
  gap: 6px;
}

.global-nav a {
  text-decoration: none;
  color: var(--blue-dark);
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s;
}

.global-nav a:hover,
.global-nav a.active {
  background: var(--sky);
}

/* ハンバーガーメニュー（スマホのみ表示） */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* 開いたら三本線を✕に変える */
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- ヒーロー ---------- */

.hero {
  background: linear-gradient(160deg, #f3ead9 0%, #f9f5ec 55%, #ffffff 100%);
  padding: 72px 0 64px;
  text-align: center;
}

.hero-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue-light);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  font-size: 1.75rem;
  color: var(--blue-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.hero .hero-lead {
  color: var(--text-sub);
  max-width: 620px;
  margin: 0 auto 32px;
}

/* ---------- ボタン ---------- */

.btn {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  padding: 14px 42px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(46, 125, 112, 0.35);
  transition: transform 0.15s, background 0.2s;
}

.btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

/* ---------- 実績ハイライト（数字） ---------- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 12px;
  text-align: center;
}

.stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--text-sub);
  margin-bottom: 6px;
}

.stat-card .stat-value {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--blue);
  line-height: 1.4;
}

.stats-note {
  text-align: center;
  color: var(--text-sub);
  max-width: 640px;
  margin: 0 auto;
}

.stats-more {
  text-align: center;
  margin-top: 28px;
}

/* ---------- お悩みリスト ---------- */

.trouble-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto 28px;
}

.trouble-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px 14px 48px;
  margin-bottom: 12px;
  position: relative;
}

.trouble-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  color: var(--blue);
  font-weight: bold;
}

.trouble-close {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.split-section + .trouble-close {
  margin-top: 28px;
}

/* ---------- サービスカード ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
}

.service-card h3 {
  color: var(--blue-dark);
  font-size: 1.05rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sky);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-sub);
}

/* ---------- 引用・ひとこと枠 ---------- */

.note-quote {
  max-width: 640px;
  margin: 32px auto 0;
  background: var(--sky);
  border-radius: var(--radius);
  padding: 20px 26px;
  color: var(--blue-dark);
  font-size: 0.95rem;
}

/* ---------- 選ばれる理由 ---------- */

.reason-list {
  display: grid;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.reason-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.reason-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-item h3 {
  color: var(--blue-dark);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.reason-item p {
  font-size: 0.93rem;
  color: var(--text-sub);
}

/* ---------- お客様の声 ---------- */

.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.voice-item {
  display: flex;
  flex-direction: column;
}

.voice-item .voice-bubble {
  flex: 1;
}

.voice-avatar {
  width: 56px;
  height: 56px;
  display: block;
  margin: 18px 0 0 24px;
}

.voice-bubble {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 26px;
}

.voice-bubble::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 36px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}

.voice-head {
  font-weight: bold;
  color: var(--blue-dark);
  font-size: 1.02rem;
  margin-bottom: 12px;
}

.voice-head:last-child {
  margin-bottom: 0;
}

.voice-text {
  font-size: 0.88rem;
  color: var(--text-sub);
  margin-bottom: 10px;
}

.voice-text:last-child {
  margin-bottom: 0;
}

.voice-text strong {
  color: var(--blue-dark);
}

.voice-note {
  text-align: center;
  color: var(--text-sub);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- ご依頼の流れ ---------- */

.flow-list {
  list-style: none;
  max-width: 680px;
  margin: 0 auto;
  counter-reset: flow;
}

.flow-list li {
  counter-increment: flow;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px 18px 66px;
  margin-bottom: 14px;
  position: relative;
}

.flow-list li::before {
  content: counter(flow);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-list .flow-title {
  font-weight: bold;
  color: var(--blue-dark);
}

.flow-list .flow-desc {
  font-size: 0.9rem;
  color: var(--text-sub);
}

/* ---------- プロフィール ---------- */

.profile-head {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto 28px;
}

.profile-icon {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--sky);
  border: 3px solid var(--blue-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 1.3rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.profile-body {
  max-width: 720px;
  margin: 0 auto;
}

.profile-body p {
  margin-bottom: 16px;
}

.profile-body h3 {
  color: var(--blue-dark);
  font-size: 1.05rem;
  margin: 28px 0 14px;
}

.skill-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.92rem;
}

.skill-table th,
.skill-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.skill-table thead th {
  background: var(--sky);
  color: var(--blue-dark);
}

.skill-table tbody tr:last-child th,
.skill-table tbody tr:last-child td {
  border-bottom: none;
}

.qualifications {
  margin-top: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
  font-size: 0.95rem;
}

/* ---------- お問い合わせ ---------- */

.contact-lead {
  text-align: center;
  margin-bottom: 28px;
}

.contact-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 30px;
}

.contact-box h3 {
  color: var(--blue-dark);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.contact-links {
  list-style: none;
  margin-bottom: 20px;
}

.contact-links li {
  margin-bottom: 10px;
}

.contact-links a {
  display: block;
  background: var(--sky);
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: bold;
  padding: 14px 20px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}

.contact-links a:hover {
  background: #eadfc9;
  transform: translateY(-1px);
}

.contact-links a::after {
  content: "→";
  float: right;
}

.contact-other {
  font-size: 0.92rem;
  color: var(--text-sub);
}

.contact-form-btn {
  text-align: center;
  margin: 16px 0 24px;
}

/* ---------- 実績ページ ---------- */

.page-hero {
  background: linear-gradient(160deg, #f3ead9 0%, #f9f5ec 100%);
  padding: 56px 0 48px;
  text-align: center;
}

.page-hero h1 {
  font-size: 1.6rem;
  color: var(--blue-dark);
  margin-bottom: 18px;
}

.works-lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-sub);
}

.work-detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 32px;
  margin-bottom: 28px;
}

.work-detail .work-category {
  display: inline-block;
  background: var(--sky);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: bold;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.work-detail h3 {
  color: var(--blue-dark);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.work-result {
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--blue);
  background: var(--sky-soft);
  border-left: 4px solid var(--blue);
  padding: 10px 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 18px;
}

.work-detail dl dt {
  font-weight: bold;
  color: var(--blue-dark);
  margin-top: 14px;
}

.work-detail dl dd {
  margin-left: 0;
  font-size: 0.95rem;
}

.work-detail dl dd ul {
  padding-left: 1.4em;
}

.work-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-tags span {
  background: var(--sky);
  color: var(--blue-dark);
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 999px;
}

.work-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
}

.work-card .work-category {
  display: inline-block;
  align-self: flex-start;
  background: var(--sky);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.work-card h3 {
  color: var(--blue-dark);
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.work-card p {
  font-size: 0.9rem;
  color: var(--text-sub);
  flex-grow: 1;
}

.work-card .work-card-result {
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: bold;
  color: var(--blue);
  background: var(--sky-soft);
  border-left: 3px solid var(--blue);
  padding: 8px 12px;
  border-radius: 0 8px 8px 0;
}

/* ---------- 写真＋本文の2カラム ---------- */

.split-section {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 36px;
  align-items: center;
}

.split-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-section .trouble-list,
.split-section .reason-list,
.split-section .flow-list {
  max-width: none;
  margin: 0;
}

.split-section .trouble-list li:last-child,
.split-section .flow-list li:last-child {
  margin-bottom: 0;
}

/* ---------- 実績ページの画像 ---------- */

.work-detail {
  display: flex;
  gap: 28px;
  align-items: center;
}

.work-detail-body {
  flex: 1;
  min-width: 0;
}

.work-detail-figure {
  width: 38%;
  flex-shrink: 0;
  margin: 0;
}

.work-detail-figure img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.work-card-img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

/* ---------- 制作サンプル（自主制作） ---------- */

.sample-lead {
  text-align: center;
  margin-bottom: 32px;
}

/* 実績のバッジ（ティール系）と区別するためゴールド系にする */
.work-card .work-category.sample-badge {
  background: #f4e6c3;
  color: #7a5a17;
}

.sample-note {
  text-align: center;
  color: var(--text-sub);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ---------- 画像拡大（ライトボックス） ---------- */

.zoomable {
  position: relative;
  display: block;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  width: 100%;
}

.zoomable img {
  margin: 0;
}

/* 右下に虫眼鏡アイコン。「拡大できる」ことを示す */
.zoomable::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e6e63' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='16' y1='16' x2='21' y2='21'/><line x1='11' y1='8' x2='11' y2='14'/><line x1='8' y1='11' x2='14' y2='11'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  transition: transform 0.2s ease;
}

.zoomable:hover::after,
.zoomable:focus-visible::after {
  transform: scale(1.1);
}

.zoomable:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 10px;
}

/* 実績詳細のfigureをzoomableボタンで包むためのリセット */
.work-detail-figure .zoomable img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 15, 10, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lightbox.is-open {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  background: var(--white);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  outline: none;
}

/* スクロール抑制（ライトボックス表示中） */
body.lightbox-open {
  overflow: hidden;
}

/* ---------- CTA帯・フッター ---------- */

.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  text-align: center;
  padding: 52px 20px;
  color: var(--white);
}

.cta-band p {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 22px;
}

.cta-band .btn {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cta-band .btn:hover {
  background: var(--sky);
}

.site-footer {
  background: var(--sky-soft);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 28px 20px;
  font-size: 0.85rem;
  color: var(--text-sub);
}

/* ---------- アニメーション ---------- */

/* ヒーローはページ表示時にふんわり出す */
.hero .container {
  animation: hero-in 0.9s ease both;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* スクロールで表示する要素（JS有効時のみ非表示から開始） */
html.js .fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js .fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* カードはホバーでふわっと浮かせる */
.service-card,
.work-card,
.stat-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.work-card:hover,
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(120, 100, 70, 0.18);
}

/* 動きを減らす設定のユーザーにはアニメーションを無効化 */
@media (prefers-reduced-motion: reduce) {
  .hero .container {
    animation: none;
  }

  html.js .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card,
  .work-card,
  .stat-card {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- レスポンシブ ---------- */

@media (max-width: 720px) {
  section {
    padding: 48px 0;
  }

  .hero {
    padding: 48px 0 44px;
  }

  .hero h1 {
    font-size: 1.35rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

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

  .profile-head {
    flex-direction: column;
    text-align: center;
  }

  .header-inner {
    padding: 8px 16px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: flex;
  }

  /* ナビはヘッダー下の開閉パネルにする */
  .global-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 8px 16px 14px;
  }

  .global-nav.is-open {
    display: flex;
  }

  /* 指で押しやすい高さ（約48px）を確保 */
  .global-nav a {
    font-size: 1rem;
    padding: 13px 14px;
    border-radius: 10px;
  }

  /* 本文系の文字はスマホで16px以上を確保 */
  .service-card p,
  .reason-item p,
  .voice-text,
  .flow-list .flow-desc,
  .work-card p,
  .work-detail dl dd,
  .note-quote,
  .skill-table,
  .qualifications,
  .contact-other,
  .work-card .work-card-result,
  .sample-note {
    font-size: 1rem;
  }

  .work-detail {
    padding: 24px 20px;
    flex-direction: column-reverse;
  }

  .work-detail-figure {
    width: 100%;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-photo img {
    aspect-ratio: 16 / 10;
  }

  .skill-table th,
  .skill-table td {
    padding: 10px 12px;
  }
}
