/*
Theme Name: Art Site
Theme URI: https://example.com/
Author: あなたの名前
Description: 絵画・アート作品販売サイト用オリジナルテーマ（HTMLサイトからの移行版）
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: art-site
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }

:root {
  --cream: #f7f2e8;
  --cream2: #efe8d8;
  --ink: #342b22;
  --mid: #7a6e64;
  --gold: #c89a2a;
  --gold2: #d4ad4a;
  --sand: #e8d9a8;
  --sand2: #dece96;
  --script: 'Dancing Script', cursive;
  --serif: 'Noto Serif JP', serif;
  --sans: 'Noto Sans JP', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.8;
  font-size: 15px;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(247,242,232,0.92);
  backdrop-filter: blur(6px);
  gap: 24px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1.3;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span {
  display: block;
  font-family: var(--script);
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
}
/* Desktop horizontal links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
  justify-content: flex-end;
}
.nav-links li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 16px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links li a .en {
  font-family: var(--script);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 1px;
}
.nav-links li a:hover { color: var(--gold); }
/* Instagram icon in nav */
.nav-insta {
  display: flex;
  align-items: center;
  padding: 4px 0 4px 16px;
  color: var(--ink);
  transition: color 0.2s;
  flex-shrink: 0;
  border-left: 1px solid rgba(52,43,34,0.12);
  margin-left: 8px;
}
.nav-insta:hover { color: var(--gold); }
.nav-insta svg { width: 20px; height: 20px; }
/* Hamburger: mobile only */
.nav-menu {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--script);
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: 0.05em;
  background: none;
  border: none;
  padding: 4px 0;
  user-select: none;
  flex-shrink: 0;
}
.nav-menu svg { width: 22px; height: 16px; transition: transform 0.3s; }
.nav-menu.open svg { transform: rotate(90deg); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-insta { display: none; }
  .nav-menu { display: flex; }
}

/* ─── DRAWER MENU ─── */
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--cream);
  z-index: 190;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 100px 48px 48px;
  box-shadow: -4px 0 24px rgba(52,43,34,0.10);
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute;
  top: 20px; right: 28px;
  background: none; border: none;
  font-size: 28px; color: var(--mid);
  cursor: pointer; line-height: 1;
  padding: 4px 8px;
}
.drawer-close:hover { color: var(--ink); }
.drawer-nav { list-style: none; flex: 1; }
.drawer-nav li { border-bottom: 1px solid var(--line, #e8e2d8); }
.drawer-nav a {
  display: block;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink);
  transition: color 0.2s, padding-left 0.2s;
}
.drawer-nav a .en {
  display: block;
  font-family: var(--script);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.drawer-nav a:hover { color: var(--gold); padding-left: 8px; }
.drawer-cta {
  display: block;
  margin-top: 36px;
  padding: 14px;
  background: var(--gold);
  color: white;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.14em;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s;
}
.drawer-cta:hover { background: var(--ink); }
/* Overlay behind drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(52,43,34,0.35);
  z-index: 180;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ─── HERO ─── */
.hero {
  padding-top: 72px;
  background: var(--cream);
  position: relative;
  text-align: center;
}
/* Large arch-shaped image — fills width, dome top */
.hero-arch {
  width: calc(100% - 24px);
  max-width: 1020px;
  margin: 0 auto;
  height: calc(78vh - 50px);
  max-height: 810px;
  min-height: 400px;
  border-radius: 50% 50% 36% 36% / 160px 160px 60px 60px;
  overflow: hidden;
  position: relative;
  background: var(--cream2);
}
.hero-arch .art-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--mid);
  letter-spacing: 0.1em;
}
/* Text block sits below the arch */
.hero-text {
  padding: 51px 24px 8px;
  position: relative;
  z-index: 2;
}
.hero-label {
  font-family: var(--script);
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 14px;
  color: var(--mid);
  letter-spacing: 0.1em;
  max-width: 360px;
  margin: 0 auto;
}
.hero-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 13px 38px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.18em;
  transition: all 0.25s;
}
.hero-cta:hover { background: var(--gold); color: white; }
.hero-h1-wrap { display: flex; align-items: center; justify-content: center; gap: 12px; }
.hero-h1-wrap h1 { margin: 0; }
.hero-clover-inline { width: 84px; height: 84px; object-fit: contain; flex-shrink: 0; }
@media (max-width: 768px) {
  .hero-h1-wrap { display: flex; align-items: center; justify-content: center; gap: 8px; }
  .hero-clover-inline { display: block; }
  .hero-clover-mobile { display: none; }
  .hero-label { display: none; }
}
@media (min-width: 769px) {
  .hero-clover-mobile { display: none; }
  .hero-label { display: none; }
  .hero-h1-wrap h1 br { display: none; }
}
.hero-kontena {
  position: absolute;
  right: calc((100% - 1020px) / 2 - 235px);
  bottom: 270px;
  height: 288px;
  width: auto;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-kontena { height: 192px; right: -10px; bottom: 244px; }
}

/* ─── HILL DIVIDER ─── */
.hill-wrap { overflow: hidden; line-height: 0; margin: 0; display: block; }
.hill-wrap svg { display: block; width: 100%; }
@media (max-width: 768px) {
  .hill-wrap svg { height: 50px; }
}


/* ─── SECTION LABEL ─── */
.section-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 32px;
}
.section-label .en {
  font-family: var(--script);
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label .ja {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ink);
}

/* ─── NEWS ─── */
.news-section { padding: 72px 0 64px; background: var(--cream); }
.news-inner { max-width: 860px; margin: 0 auto; padding: 0 32px; }
.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.view-all {
  font-family: var(--script);
  font-size: 16px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-list { list-style: none; }
.news-item { padding: 22px 0; }
.news-meta {
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.news-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.news-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--ink);
}
.news-wave { display: block; width: 100%; overflow: visible; }

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(52,43,34,0.88);
  align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative; max-width: 520px; width: 100%;
  animation: lb-in 0.22s ease;
}
@keyframes lb-in {
  from { opacity:0; transform:scale(0.94); }
  to   { opacity:1; transform:scale(1); }
}
.lightbox-img {
  width: 100%; aspect-ratio: 1/1;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 13px;
  color: var(--mid); letter-spacing: 0.1em;
}
.lightbox-info { text-align: center; margin-top: 22px; }
.lightbox-title { font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: 0.16em; color: white; margin-bottom: 8px; }
.lightbox-price { font-size: 13px; color: var(--gold2); letter-spacing: 0.1em; }
.lightbox-close {
  position: absolute; top: -18px; right: -18px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* ─── GALLERY SLIDER ─── */
.gallery-slider { position: relative; overflow: hidden; }
.gallery-track { display: flex; transition: transform 0.45s ease; will-change: transform; }
.gallery-page { min-width: 100%; flex-shrink: 0; }
.gallery-page .gallery-grid { margin-top: 0; }
.gallery-slider-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
.gallery-btn { background: none; border: 1.5px solid var(--gold); color: var(--gold); width: 38px; height: 38px; cursor: pointer; font-size: 22px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
.gallery-btn:hover { background: var(--gold); color: white; }
.gallery-btn:disabled { opacity: 0.25; cursor: default; pointer-events: none; }
.gallery-dots { display: flex; gap: 8px; }
.gallery-dot { width: 7px; height: 7px; border-radius: 50%; background: #d4cbb8; cursor: pointer; border: none; padding: 0; transition: background 0.25s, transform 0.25s; }
.gallery-dot.active { background: var(--gold); transform: scale(1.35); }

/* ─── GALLERY ─── */
.gallery-section { padding: 72px 0 56px; background: #ffffff; }
.gallery-coord-wrap { text-align: center; margin-top: 56px; }
.gallery-coord-btn {
  display: inline-block;
  padding: 18px 52px;
  border: 1.5px solid var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.18em;
  transition: all 0.25s;
  position: relative;
}
.gallery-coord-btn::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 0.5px solid var(--gold);
  opacity: 0.4;
  pointer-events: none;
}
.gallery-coord-btn:hover { background: var(--gold); color: white; }
.gallery-coord-btn:hover::before { border-color: rgba(255,255,255,0.4); }
.gallery-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  margin-top: 40px;
}
.gallery-card { position: relative; cursor: pointer; }
.gallery-blob {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream2);
  border-radius: 48% 52% 44% 56% / 54% 48% 52% 46%;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}
.gallery-card:hover .gallery-blob { transform: scale(1.02); }
.gallery-blob .art-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--mid); letter-spacing: 0.1em;
}
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(52,43,34,0.72));
  padding: 32px 20px 20px;
  opacity: 0;
  transition: opacity 0.3s;
  color: white;
}
.gallery-card:hover .gallery-overlay { opacity: 0; }
.gallery-overlay .art-title { font-family: var(--serif); font-size: 14px; letter-spacing: 0.1em; margin-bottom: 4px; }
.gallery-overlay .art-price { font-size: 12px; color: var(--gold2); letter-spacing: 0.08em; }
.gallery-card-info { padding: 14px 4px 0; text-align: center; }
.gallery-card-info .art-name { font-family: var(--serif); font-size: 14px; font-weight: 500; letter-spacing: 0.08em; margin-bottom: 3px; }
.gallery-card-info .art-size { font-size: 12px; color: var(--mid); letter-spacing: 0.05em; }

/* ─── PROFILE ─── */
.profile-section { padding: 80px 0; background: var(--cream2); position: relative; }
.profile-inner {
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.profile-image-wrap { position: sticky; top: 110px; max-width: 360px; margin: 0 auto; }
.profile-blob {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream);
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.1em;
}
.profile-name { font-family: var(--serif); font-size: 28px; font-weight: 700; letter-spacing: 0.2em; margin: 24px 0 8px; }
.profile-tagline { font-size: 13px; color: var(--mid); letter-spacing: 0.1em; margin-bottom: 28px; }
.profile-text { font-size: 14px; line-height: 2; color: var(--ink); letter-spacing: 0.05em; margin-bottom: 40px; }

/* ─── PROFILE CAREER ─── */
.profile-career { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(52,43,34,0.12); }
.career-heading { font-family: var(--script); font-size: 17px; color: var(--gold); letter-spacing: 0.06em; margin-bottom: 16px; }
.career-list { list-style: none; }
.career-item { display: grid; grid-template-columns: 60px 1fr; gap: 0 12px; padding: 10px 0; border-bottom: 1px solid rgba(52,43,34,0.07); font-size: 13px; letter-spacing: 0.04em; line-height: 1.7; }
.career-item:last-child { border-bottom: none; }
.career-year { font-family: var(--serif); font-size: 12px; color: var(--gold); letter-spacing: 0.04em; padding-top: 2px; white-space: nowrap; }
.career-text { color: var(--mid); }

.story-timeline { list-style: none; margin-top: 8px; }
.story-step { display: block; margin-bottom: 28px; position: relative; padding-left: 20px; border-left: 2px solid rgba(212,173,74,0.4); }
.step-label { font-size: 11px; color: var(--gold); letter-spacing: 0.15em; margin-bottom: 4px; font-weight: 500; }
.step-title { font-family: var(--serif); font-size: 15px; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--mid); letter-spacing: 0.04em; line-height: 1.9; }

/* ─── SERVICES ─── */
.services-section { padding: 80px 0; background: var(--cream); }
.services-inner { max-width: 1000px; margin: 0 auto; padding: 0 32px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: white;
  padding: 36px 28px 32px;
  text-align: center;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover, .service-card.featured {
  border-top-color: var(--gold);
  box-shadow: 0 8px 32px rgba(52,43,34,0.08);
}
.service-icon { font-size: 32px; margin-bottom: 20px; display: block; }
.service-en { font-family: var(--script); font-size: 16px; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 6px; }
.service-ja { font-family: var(--serif); font-size: 16px; font-weight: 700; letter-spacing: 0.12em; margin-bottom: 16px; }
.service-price { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: 0.04em; margin-bottom: 16px; }
.service-price span { font-size: 13px; font-weight: 400; color: var(--mid); }
.service-desc { font-size: 13px; color: var(--mid); line-height: 1.9; letter-spacing: 0.04em; }
.service-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 28px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.15em;
  transition: all 0.25s;
}
.service-btn:hover { background: var(--gold); color: white; }

/* ─── ATELIER ─── */
.atelier-section {
  padding: 0 0 80px;
  background: #efe8d8; /* cream2：プロフィールセクションと同色で自然につながる */
  position: relative;
}
.atelier-curve-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0; width: 100%;
  line-height: 0; pointer-events: none;
  z-index: 3;
}
@media (max-width: 768px) {
  .atelier-curve-bottom svg { height: 50px; }
}

/* ─── ATELIER SCENE ─── */
.atelier-scene {
  position: relative;
  height: 340px;
  background: transparent;
}
.atelier-scene-meadow {
  position: absolute;
  inset: 0;
  background: url('images/kusa.jpg') center 60% / 100% no-repeat;
  background-color: #8ab56a;
  /* 丘形クリップ（objectBoundingBox：0–1 = 要素の幅・高さに対する比率） */
  clip-path: url(#atelierMeadowClip);
  /* グラデーション：左フェード・下フェード・右フェード */
  -webkit-mask-image:
    linear-gradient(to right, transparent 3%, rgba(0,0,0,0.55) 14%, black 38%, black 80%, transparent 100%),
    linear-gradient(to bottom, black 42%, rgba(0,0,0,0.5) 72%, transparent 92%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 3%, rgba(0,0,0,0.55) 14%, black 38%, black 80%, transparent 100%),
    linear-gradient(to bottom, black 42%, rgba(0,0,0,0.5) 72%, transparent 92%);
  mask-composite: intersect;
}
.atelier-scene-building {
  position: absolute;
  top: -20px;
  left: calc(7% + 30px);
  height: 264px;
  width: auto;
  z-index: 5;
  object-fit: contain;
}
.atelier-scene-building2 {
  position: absolute;
  top: 20px;
  right: 4%;
  height: 280px;
  width: auto;
  z-index: 5;
  object-fit: contain;
}
@media (max-width: 768px) {
  .atelier-scene-building2 { height: 160px; top: 60px; right: 2%; }
}
@media (max-width: 768px) {
  .atelier-scene { height: 150px; }
  .atelier-scene-building { height: 180px; top: -55px; left: calc(4% + 10px); }
  /* モバイル：ドームを緩やかな丘形に（ellipseで横長・低め） */
  .atelier-scene-meadow {
    clip-path: ellipse(72% 96% at 52% 100%);
    background-position: center 40%;
    background-size: 100% 200%;
  }
}

.atelier-header { max-width: 900px; margin: 0 auto; padding: 48px 32px 0; text-align: center; margin-bottom: 52px; }
/* 文字はcream2背景の上にインク色で読みやすく */
.atelier-section .section-label .en { color: var(--gold); text-shadow: none; }
.atelier-section .section-label .ja { color: var(--ink); text-shadow: none; }
.atelier-desc { font-size: 14px; color: var(--mid); line-height: 2.1; letter-spacing: 0.06em; max-width: 460px; margin: 20px auto 0; }
.atelier-track-wrap { overflow: hidden; width: 100%; position: relative; }
.atelier-track-wrap::before,
.atelier-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.atelier-track-wrap::before { left: 0; background: linear-gradient(to right, #efe8d8 10%, transparent); }
.atelier-track-wrap::after  { right: 0; background: linear-gradient(to left,  #efe8d8 10%, transparent); }
.atelier-track {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 0 16px;
  animation: atelier-slide 32s linear infinite;
  width: max-content;
}
.atelier-track:hover { animation-play-state: paused; }
@keyframes atelier-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.atelier-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.atelier-caption {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--mid);
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.6;
}
.atelier-photo {
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.1em;
  box-shadow: 0 4px 20px rgba(52,43,34,0.07);
}

/* ─── CTA ─── */
.cta-section { padding: 80px 32px; background: var(--ink); text-align: center; position: relative; overflow: hidden; z-index: 10; }
.cta-title { font-family: var(--serif); font-size: clamp(18px, 3vw, 26px); font-weight: 700; color: white; letter-spacing: 0.14em; line-height: 1.7; margin-bottom: 40px; }
.contact-form { max-width: 520px; margin: 0 auto; text-align: left; }
.contact-field { margin-bottom: 20px; }
.contact-label { display: block; font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.12em; margin-bottom: 6px; }
.contact-label .req { color: var(--gold2); margin-left: 4px; font-size: 11px; }
.contact-input,
.contact-textarea { width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18); color: white; font-family: var(--sans); font-size: 14px; letter-spacing: 0.04em; outline: none; transition: border-color 0.2s; }
.contact-input::placeholder,
.contact-textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-input:focus,
.contact-textarea:focus { border-color: var(--gold); }
.contact-textarea { resize: vertical; min-height: 120px; }
.contact-submit { display: block; width: 100%; padding: 15px; background: var(--gold); border: none; color: white; font-family: var(--sans); font-size: 13px; letter-spacing: 0.16em; cursor: pointer; transition: background 0.2s; margin-top: 28px; }
.contact-submit:hover { background: var(--gold2); }
.contact-note { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 16px; letter-spacing: 0.06em; text-align: center; }
.contact-thanks { display: none; color: var(--gold2); font-family: var(--serif); font-size: 15px; letter-spacing: 0.1em; margin-top: 24px; text-align: center; }

/* ─── FOOTER ─── */
.footer { padding: 0 0 0; background: var(--sand); position: relative; overflow: hidden; }
.footer-deco { display: flex; justify-content: space-between; align-items: flex-end; padding: 0 32px; margin-top: -300px; margin-bottom: 48px; }
.footer-main { text-align: center; padding: 0 32px 48px; position: relative; z-index: 1; }
.footer-logo { font-family: var(--serif); font-size: 22px; font-weight: 700; letter-spacing: 0.12em; margin-bottom: 6px; color: var(--ink); }
.footer-logo .en { font-family: var(--script); font-size: 14px; color: var(--gold); display: block; margin-bottom: 4px; letter-spacing: 0.08em; }
.footer-address { font-size: 13px; color: var(--mid); letter-spacing: 0.1em; line-height: 2; margin: 20px 0; font-style: normal; }
.footer-sns { display: flex; justify-content: center; align-items: center; gap: 4px; font-family: var(--script); font-size: 15px; color: var(--mid); margin-bottom: 16px; }
.sns-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(52,43,34,0.1); display: flex; align-items: center; justify-content: center; margin-left: 4px; font-size: 14px; transition: background 0.2s; }
.sns-icon:hover { background: var(--gold); color: white; }
.footer-nav { display: flex; justify-content: center; gap: 32px; font-size: 12px; color: var(--mid); letter-spacing: 0.1em; margin: 24px 0; flex-wrap: wrap; }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; color: var(--mid); letter-spacing: 0.08em; padding: 20px; border-top: 1px solid rgba(52,43,34,0.12); background: var(--sand2); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .hero-text { padding-top: 153px; }
  .nav-logo { font-size: 15px; }
  .hero-arch { height: 55vh; border-radius: 50% 50% 30% 30% / 100px 100px 40px 40px; }
  .gallery-inner { padding: 0 10px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 10px; }
  .gallery-page .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-inner { grid-template-columns: 1fr; gap: 40px; }
  .profile-image-wrap {
    position: static;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: start;
    max-width: 100%;
    margin: 0;
  }
  .profile-career {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    border-left: 1px solid rgba(52,43,34,0.12);
    padding-left: 16px;
  }
  /* services: 縦1列に */
  .services-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .cta-form { flex-direction: column; }
  .footer-deco { display: flex; margin-top: -250px; }
  .news-inner { padding: 0 20px; }
  .gallery-inner { padding: 0 10px; }
  .profile-inner { padding: 0 20px; }
}
@media (max-width: 480px) {
  .gallery-inner { padding: 0 10px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 8px; max-width: none; }
  .gallery-page .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ─── WordPress 追加スタイル ─── */
.news-title a { color: inherit; transition: color 0.2s; }
.news-title a:hover { color: var(--gold); }

/* Contact Form 7 */
.contact-form .wpcf7-form p { margin: 0; }
.contact-form .wpcf7-not-valid-tip { color: #e89999; font-size: 12px; margin-top: 6px; letter-spacing: 0.06em; }
.contact-form .wpcf7-response-output { color: var(--gold2); border: 1px solid rgba(255,255,255,0.25); margin: 24px 0 0; padding: 12px 16px; font-size: 13px; letter-spacing: 0.06em; text-align: center; }
.contact-form .wpcf7-spinner { display: block; margin: 12px auto 0; }

/* 投稿詳細ページ */
.single-main { max-width: 760px; margin: 0 auto; padding: 140px 32px 80px; min-height: 60vh; }
.single-main .news-meta { margin-bottom: 16px; }
.single-title { font-family: var(--serif); font-size: clamp(22px, 4vw, 30px); font-weight: 700; letter-spacing: 0.08em; line-height: 1.7; margin-bottom: 32px; }
.single-content { font-size: 15px; line-height: 2.1; letter-spacing: 0.04em; color: var(--ink); }
.single-content p { margin-bottom: 1.4em; }
.single-content img { border-radius: 6px; margin: 1.5em 0; }
.single-back { display: inline-block; margin-top: 48px; padding: 12px 32px; border: 1.5px solid var(--gold); color: var(--gold); font-size: 13px; letter-spacing: 0.15em; transition: all 0.25s; }
.single-back:hover { background: var(--gold); color: white; }

/* ─── 小判/大判 サブ見出し ─── */
.gallery-subhead { display: flex; align-items: baseline; gap: 14px; margin: 56px 0 8px; }
.gallery-subhead:first-of-type { margin-top: 40px; }
.gallery-subhead .en { font-family: var(--script); font-size: 20px; color: var(--gold); letter-spacing: 0.06em; }
.gallery-subhead .ja { font-family: var(--serif); font-size: 19px; font-weight: 700; letter-spacing: 0.2em; color: var(--ink); }
.gallery-slider + .gallery-subhead { margin-top: 64px; }
