/* ============================================
   hana to. — Natural Sample
   ナチュラル / 親しみやすい / シーン豊富
   ============================================ */

:root {
  --bg: #F8F3E7;
  --bg-soft: #ECE2CC;
  --bg-warm: #E5D9BF;
  --ink: #3A2A1F;
  --ink-soft: #6B5C53;
  --ink-mute: #9A8C7F;
  --line: #E5DCCB;
  --rose: #B8794D;
  --rose-soft: #DDB389;
  --sage: #7B8B6F;
  --sage-soft: #B5C0A8;
  --gold: #B5874B;
  --line-green: #06C755;
  --serif: 'Noto Serif JP', serif;
  --hand: 'Klee One', 'Noto Serif JP', serif;
  --en: 'Caveat', cursive;
  --sans: 'Noto Sans JP', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
input, textarea, select, label {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
img { max-width: 100%; display: block; -webkit-user-drag: none; user-drag: none; pointer-events: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ============================================
   Top Notice
   ============================================ */
.top-notice {
  background: var(--rose);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-notice a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  background: rgba(251, 248, 243, 0.96);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(12px);
}
.site-header.scrolled {
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
.brand-mark {
  font-family: var(--en);
  color: var(--rose);
  font-size: 24px;
  display: none;
}
.brand-en {
  font-family: var(--en);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.brand-jp {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  margin-top: 4px;
}

.global-nav ul {
  display: flex;
  gap: 26px;
  align-items: center;
}
.global-nav a {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.global-nav a:hover { color: var(--rose); }
.global-nav .nav-line {
  background: var(--line-green);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 500;
}
.global-nav .nav-line:hover {
  color: #fff;
  background: #05a847;
  transform: translateY(-1px);
}
.global-nav .nav-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff !important;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(220, 39, 67, 0.25);
}
.global-nav .nav-icon svg {
  background: rgba(255,255,255,0.18);
  padding: 4px;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: #fff;
}
.global-nav .nav-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.4);
  filter: brightness(1.05);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 110;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: 64px 0 80px;
  background: var(--bg);
  position: relative;
}
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 18px;
}
.hero-text {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 16px;
}
.hero-en {
  font-family: var(--en);
  font-size: 28px;
  color: var(--rose);
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}
.hero-jp {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.55;
  letter-spacing: 0.06em;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero-lead {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
}
.hero-image-1 {
  grid-column: 2;
  grid-row: 1 / span 2;
  background-image: url('../images/gift_birthday.jpg');
  border-radius: 200px 8px 8px 8px;
}
.hero-image-2 {
  grid-column: 3;
  grid-row: 1;
  background-image: url('../images/atelier_2.jpg');
}
.hero-image-3 {
  grid-column: 3;
  grid-row: 2;
  background-image: url('../images/atelier_3.jpg');
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 111, 127, 0.28);
}
.btn-line {
  background: var(--line-green);
  color: #fff;
}
.btn-line:hover {
  background: #05a847;
  transform: translateY(-2px);
}
.btn-line .line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #fff;
  color: var(--line-green);
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--sans);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-soft);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

/* ============================================
   Section Common
   ============================================ */
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-en {
  font-family: var(--en);
  font-size: 28px;
  color: var(--rose);
  margin: 0 0 8px;
  font-weight: 500;
}
.section-jp {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.55;
  letter-spacing: 0.06em;
  margin: 0;
  color: var(--ink);
}
.section-sub {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
  margin: 16px 0 0;
  line-height: 2;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--rose);
  transition: gap 0.3s ease;
}
.link-arrow:hover { gap: 16px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================
   Quick Links
   ============================================ */
.quick {
  padding: 100px 0;
  background: var(--bg-soft);
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.quick-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(58, 47, 42, 0.1);
}
.quick-img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}
.qi-1 { background-image: url('../images/gift_birthday.jpg'); }
.qi-2 { background-image: url('../images/gift_anniversary.jpg'); }
.qi-3 { background-image: url('../images/atelier_2.jpg'); }
.qi-4 { background-image: url('../images/gift_celebration.jpg'); }
.quick-card .quick-jp {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 4px;
}
.quick-card .quick-en {
  font-family: var(--en);
  font-size: 18px;
  color: var(--rose);
  margin: 0;
  letter-spacing: 0.04em;
}

/* ============================================
   Concept
   ============================================ */
.concept {
  padding: 120px 0;
  background: var(--bg);
}
.concept-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.concept-image {
  aspect-ratio: 4 / 5;
  background-image: url('../images/atelier_1.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 200px 8px 8px 8px;
  position: relative;
}
.concept-image::after {
  content: '🌾';
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.concept-text {
  padding-right: 16px;
}
.concept-text > p {
  font-family: var(--serif);
  color: var(--ink-soft);
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 2.2;
}
.concept-text .section-jp {
  margin: 8px 0 32px;
}

/* ============================================
   Purpose / Occasion
   ============================================ */
.purpose {
  padding: 120px 0;
  background: var(--bg-soft);
}
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.purpose-card {
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.purpose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(58, 47, 42, 0.1);
}
.purpose-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.p-birthday    { background-image: url('../images/gift_birthday.jpg'); }
.p-anniv       { background-image: url('../images/gift_anniversary.jpg'); }
.p-celebration { background-image: url('../images/gift_celebration.jpg'); }
.p-condolence  { background-image: url('../images/gift_business.jpg'); filter: brightness(1.05) saturate(0.85); }
.p-business    { background-image: url('../images/atelier_3.jpg'); }
.p-mothers     { background-image: url('../images/bespoke.jpg'); }

.purpose-body { padding: 24px 26px 28px; }
.purpose-en {
  font-family: var(--en);
  font-size: 18px;
  color: var(--rose);
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}
.purpose-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.purpose-card p {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin: 0;
}

/* ============================================
   Budget
   ============================================ */
.budget {
  padding: 120px 0;
  background: var(--bg);
}
.budget-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.budget-card {
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 36px 16px 32px;
  text-align: center;
  transition: all 0.3s ease;
  background: var(--bg);
}
.budget-card:hover {
  border-color: var(--rose);
  background: var(--bg-soft);
  transform: translateY(-4px);
}
.budget-yen {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.budget-yen span {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-left: 4px;
}
.budget-label {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   Works
   ============================================ */
.works {
  padding: 120px 0;
  background: var(--bg-soft);
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.work-card {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
  transition: transform 0.3s ease;
}
.work-card:hover { transform: scale(1.03); }
.work-img {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}
.w-1 { background-image: url('../images/gift_birthday.jpg'); }
.w-2 { background-image: url('../images/gift_anniversary.jpg'); }
.w-3 { background-image: url('../images/gift_celebration.jpg'); }
.w-4 { background-image: url('../images/gift_business.jpg'); }
.w-5 { background-image: url('../images/atelier_2.jpg'); }
.w-6 { background-image: url('../images/bespoke.jpg'); }
.w-7 { background-image: url('../images/hero.jpg'); }
.w-8 { background-image: url('../images/atelier_3.jpg'); }
.work-card figcaption {
  padding: 12px 14px 14px;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink);
}
.work-card figcaption span {
  display: block;
  font-family: var(--en);
  font-size: 14px;
  color: var(--rose);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}
.works-cta { text-align: center; }

/* ============================================
   Bespoke
   ============================================ */
.bespoke {
  padding: 120px 0;
  background: var(--bg);
}
.bespoke-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.bespoke-image {
  aspect-ratio: 4 / 5;
  background-image: url('../images/bespoke.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 8px 200px 8px 8px;
}
.bespoke-text > p {
  font-family: var(--serif);
  color: var(--ink-soft);
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 2.1;
}
.bespoke-text .section-jp { margin-bottom: 28px; }
.bespoke-points {
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bespoke-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-radius: 8px;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
}
.bespoke-points li span {
  font-size: 22px;
  flex-shrink: 0;
}

/* ============================================
   Service
   ============================================ */
.service {
  padding: 120px 0;
  background: var(--bg-warm);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 36px 24px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(58, 47, 42, 0.08);
}
.service-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.service-card p {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin: 0;
}

/* ============================================
   Shop
   ============================================ */
.shop {
  padding: 120px 0;
  background: var(--bg);
}
.shop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.shop-image {
  aspect-ratio: 4 / 3;
  background-image: url('../images/shop.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.shop-info h3 {
  font-family: var(--en);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
  color: var(--ink);
}
.shop-tag {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--rose);
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.shop-info dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  row-gap: 16px;
  column-gap: 24px;
  font-size: 14px;
  margin-bottom: 24px;
}
.shop-info dt {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--rose);
  letter-spacing: 0.08em;
  font-size: 13px;
}
.shop-info dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.85;
  font-family: var(--serif);
}
.shop-area {
  background: var(--bg-soft);
  padding: 16px 20px;
  border-radius: 8px;
  font-family: var(--serif);
  font-size: 13px;
}
.shop-area p { margin: 0; color: var(--ink-soft); }
.shop-area .area-list {
  margin-top: 4px;
  color: var(--ink);
  font-weight: 500;
}

/* ============================================
   Contact
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--bg-soft);
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.channel-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 32px 20px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}
.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(58, 47, 42, 0.08);
}
.channel-line:hover { border-color: var(--line-green); }
.channel-tel:hover { border-color: var(--rose); }
.channel-instagram:hover { border-color: var(--gold); }
.channel-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.channel-line .channel-icon {
  background: var(--line-green);
  color: #fff;
  font-weight: 700;
  font-family: var(--sans);
}
.channel-tel .channel-icon { background: var(--rose-soft); }
.channel-instagram .channel-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.3);
}
.channel-instagram .channel-icon svg { width: 30px; height: 30px; }
.channel-jp {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 4px;
  color: var(--ink);
}
.channel-en {
  font-family: var(--en);
  font-size: 22px;
  color: var(--rose);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.channel-note {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.7;
}

/* Form */
.contact-form {
  background: var(--bg);
  padding: 48px 40px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 1px 0 var(--line);
}
.form-lead {
  font-family: var(--en);
  text-align: center;
  font-size: 22px;
  color: var(--rose);
  margin: 0 0 32px;
  letter-spacing: 0.04em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 10px;
}
.form-group .req {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 500;
  font-family: var(--sans);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.85;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
.form-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
  margin: 8px 0 32px;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--rose);
}
.form-consent a { color: var(--rose); text-decoration: underline; }
.form-submit {
  width: 100%;
  padding: 18px 32px;
  font-size: 15px;
  letter-spacing: 0.16em;
}
.form-thanks {
  margin: 32px 0 0;
  padding: 24px;
  background: var(--bg-soft);
  border-left: 3px solid var(--rose);
  border-radius: 4px;
  font-family: var(--serif);
  color: var(--ink);
  line-height: 2;
  font-size: 15px;
  text-align: center;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 80px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-en {
  font-family: var(--en);
  font-size: 36px;
  color: #fff;
  margin: 0 0 4px;
  font-weight: 500;
}
.footer-brand .brand-jp {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.6);
  margin: 0 0 14px;
}
.footer-tag {
  font-family: var(--serif);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.footer-nav h4,
.footer-sns h4 {
  font-family: var(--en);
  font-size: 22px;
  color: var(--rose-soft);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-nav ul,
.footer-sns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a,
.footer-sns a {
  font-family: var(--serif);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
}
.footer-nav a:hover,
.footer-sns a:hover { color: var(--rose-soft); }

.footer-sns .sns-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease;
}
.footer-sns .sns-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-sns .sns-mark-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 2px 10px rgba(220, 39, 67, 0.3);
}
.footer-sns .sns-mark-line {
  background: var(--line-green);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.footer-sns .sns-mark-x {
  background: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
}
.footer-sns .sns-link:hover .sns-mark {
  transform: translateY(-2px) scale(1.05);
}
.footer-sns .sns-link-instagram:hover .sns-mark {
  box-shadow: 0 6px 18px rgba(220, 39, 67, 0.45);
}
.copyright {
  text-align: center;
  font-family: var(--en);
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  margin: 24px 0 0;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .global-nav ul { gap: 18px; }
  .global-nav a { font-size: 13px; }
  .purpose-grid { grid-template-columns: repeat(2, 1fr); }
  .budget-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .container, .header-inner { padding: 0 20px; }
  .global-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 105;
  }
  body.nav-open .global-nav { transform: translateX(0); }
  .global-nav ul {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .global-nav a { font-size: 18px; }
  .menu-toggle { display: flex; }
  body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 32px 0 56px; }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 12px;
  }
  .hero-text {
    grid-column: 1;
    grid-row: 1;
    padding-right: 0;
  }
  .hero-image-1 {
    grid-column: 1;
    grid-row: 2;
    height: 280px;
    border-radius: 120px 8px 8px 8px;
  }
  .hero-image-2 { grid-column: 1; grid-row: 3; height: 180px; }
  .hero-image-3 { grid-column: 1; grid-row: 4; height: 180px; }

  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .concept-inner { grid-template-columns: 1fr; gap: 48px; }
  .concept-image { aspect-ratio: 4 / 4; max-width: 500px; margin: 0 auto; }
  .purpose-grid { grid-template-columns: 1fr; }
  .budget-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .bespoke-inner { grid-template-columns: 1fr; gap: 48px; }
  .bespoke-image { aspect-ratio: 4 / 4; max-width: 500px; margin: 0 auto; }
  .service-grid { grid-template-columns: 1fr; }
  .shop-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-channels { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 32px 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }

  .quick, .concept, .purpose, .budget, .works, .bespoke, .service, .shop, .contact { padding: 80px 0; }
}

/* ============================================
   モバイル改行調整（日本語の自然な折り返し）
   ============================================ */
.hero-jp,
.section-jp,
.section-sub,
.hero-lead,
.concept-text p,
.bespoke-text > p,
.shop-info h3,
.shop-info dd,
.contact-lead,
.purpose-card p,
.purpose-card h3,
.service-card h3,
.service-card p,
.work-card figcaption,
.budget-label,
.bespoke-points li,
.channel-jp,
.channel-note {
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
}

/* モバイル用 <br> 無効化ルールは廃止
   （PCで意図した改行はモバイルでも維持し、自然な見栄えを保つ） */

/* ============================================
   日本語見出しの禁則処理（句読点・カッコの行末/行頭禁則）
   ============================================ */
h1, h2, h3, h4, h5, h6,
.brand-jp, .shop-tag, p.section-sub {
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
}

/* ============================================
   モバイル：見出しの字間・サイズ調整（折り返し対策）
   ============================================ */
@media (max-width: 600px) {
  .hero-jp, .section-jp, .h1, .contact-jp,
  .shop-info h3, h1, h2, h3 {
    letter-spacing: 0.02em;
    word-break: normal;
    line-break: strict;
    overflow-wrap: break-word;
  }
  .section-jp { font-size: clamp(20px, 5.4vw, 26px); }
  .hero-jp    { font-size: clamp(28px, 7.5vw, 40px); }
}

/* ============================================
   モバイル最終調整（折り返し確実化）— 上書き優先
   ============================================ */
@media (max-width: 600px) {
  .container { padding: 0 20px !important; }
  .hero-jp, .section-jp, .h1, .contact-jp,
  .shop-info h3, h1, h2, h3 {
    letter-spacing: 0 !important;
    word-break: normal !important;
    line-break: strict !important;
    overflow-wrap: break-word !important;
    max-width: 100%;
  }
  .section-jp { font-size: 22px !important; line-height: 1.6 !important; }
  .hero-jp    { font-size: 30px !important; line-height: 1.5 !important; }
  .contact-jp { font-size: 22px !important; line-height: 1.6 !important; }
  .h1         { font-size: 28px !important; }
}

/* ============================================
   全画面サイズ：日本語見出しの自然折り返し（PC含む）
   - text-wrap: pretty で「を。」のような句読点孤立を防止
   - word-break: auto-phrase で文節単位の折り返し（モダンブラウザ）
   ============================================ */
h1, h2, h3, h4, h5, h6,
.hero-jp, .section-jp, .h1, .contact-jp, .hero-lead,
.cta-h, .cta-sub,
.section-sub, .shop-tag,
.purpose-card h3, .purpose-card p,
.cat-card h3, .prod-card h3, .prod-desc,
.flow-step h3, .flow-step p,
.delivery-card h3, .delivery-card p,
.service-card h3, .service-card p,
.bespoke-text > p, .concept-text p, .concept-body p, .atelier-text p,
.shop-info h3, .shop-info dd,
.contact-lead, .channel-jp, .channel-note,
.gift-jp, .quick-card .quick-jp,
.budget-label, .work-card figcaption,
p {
  text-wrap: pretty;
  word-break: auto-phrase;
  line-break: strict;
  overflow-wrap: break-word;
}

/* 短い見出しはバランス重視（左右の長さを揃える） */
.hero-jp, .section-jp, .h1, .contact-jp, .cta-h,
h1, h2, h3 {
  text-wrap: balance;
}

/* ============================================
   最終調整：モバイル見出しを確実に画面幅に収める
   ============================================ */
@media (max-width: 600px) {
  .hero-jp, .section-jp, .h1, .contact-jp,
  h1, h2, h3 {
    text-wrap: pretty !important;  /* balance を解除して自然な折り返し */
  }
  .section-jp { font-size: 20px !important; line-height: 1.65 !important; }
  .hero-jp    { font-size: 28px !important; line-height: 1.5 !important; }
  .contact-jp { font-size: 22px !important; line-height: 1.6 !important; }
  .h1         { font-size: 24px !important; line-height: 1.55 !important; }
}
