/* ===== CSS変数 ===== */
:root {
  --teal:        #1D6B5F;
  --teal-mid:    #2A8C7E;
  --teal-light:  #E8F4F1;
  --terra:       #C97B4B;
  --terra-mid:   #B86A3A;
  --terra-light: #F7EDE3;
  --cream:       #FAF9F6;
  --white:       #FFFFFF;
  --dark:        #1C2B27;
  --gray:        #5A6B67;
  --light:       #DDE8E5;
  --ff-en:  'Cormorant Garamond', serif;
  --ff-jp:  'Noto Sans JP', sans-serif;
  --ff-ui:  'Josefin Sans', sans-serif;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(29,107,95,.1);
  --trans:   .3s ease;
  --max-w:   1100px;
}

/* ===== リセット ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-jp);
  color: var(--dark);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== コンテナ ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ボタン ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-jp);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .05em;
  transition: all var(--trans);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--terra);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--terra-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,123,75,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,107,95,.35);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ===== ナビゲーション ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--trans), box-shadow var(--trans);
}
#navbar.scrolled {
  background: rgba(29,107,95,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
}
.logo-name {
  font-family: var(--ff-jp);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.logo-badge {
  font-size: .65rem;
  background: var(--terra);
  color: var(--white);
  padding: .15rem .5rem;
  border-radius: 50px;
  letter-spacing: .06em;
  font-family: var(--ff-ui);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  letter-spacing: .08em;
  font-family: var(--ff-ui);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--terra);
  color: var(--white) !important;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-size: .82rem !important;
}
.nav-cta:hover { background: var(--terra-mid); }

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--trans);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(29,107,95,.98);
  padding: 1.5rem 24px 2rem;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  letter-spacing: .08em;
  font-family: var(--ff-ui);
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* ===== ヒーロー ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(29,43,39,.6) 0%,
    rgba(29,107,95,.55) 50%,
    rgba(29,43,39,.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 800px;
  animation: fadeUp .8s ease both;
}
.hero-badge {
  display: inline-block;
  font-family: var(--ff-jp);
  font-size: .8rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.9);
  background: var(--terra);
  padding: .35rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--ff-jp);
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .1em;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .65rem;
  letter-spacing: .15em;
  font-family: var(--ff-ui);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===== セクション共通 ===== */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  font-family: var(--ff-ui);
  font-size: .72rem;
  letter-spacing: .4em;
  color: var(--teal);
  margin-bottom: .8rem;
}
.section-title {
  font-family: var(--ff-jp);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: .8rem;
}
.section-desc {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.8;
}

/* アニメーション */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== 商品ストリップ ===== */
.product-strip {
  background: var(--terra);
  overflow: hidden;
  padding: .7rem 0;
}
.product-strip-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.product-strip-track span {
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  letter-spacing: .1em;
  flex-shrink: 0;
  font-family: var(--ff-jp);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== B型とは ===== */
.about-b { background: var(--white); }
.about-b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-b-image { position: relative; }
.about-b-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.about-b-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-b-tag {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--terra);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,123,75,.3);
}
.about-b-tag .num {
  font-family: var(--ff-en);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.about-b-tag .label {
  font-size: .72rem;
  opacity: .9;
  letter-spacing: .05em;
}
.about-b-text .section-label { text-align: left; }
.about-b-text .section-title { text-align: left; }
.about-b-body {
  color: var(--gray);
  font-size: .95rem;
  line-height: 2;
  margin-bottom: 1.2rem;
}
.about-b-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: 1.5rem;
}
.about-b-list-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .92rem;
  color: var(--dark);
}
.about-b-list-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: .85rem;
  flex-shrink: 0;
}

/* ===== 特徴 ===== */
.features { background: var(--teal); }
.features .section-label { color: rgba(255,255,255,.7); }
.features .section-title { color: var(--white); }
.features .section-desc { color: rgba(255,255,255,.65); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: background var(--trans), border-color var(--trans);
}
.feature-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-num {
  font-family: var(--ff-en);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--terra-light);
  opacity: .7;
  margin-bottom: .5rem;
  line-height: 1;
}
.feature-title {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: .7rem;
}
.feature-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  line-height: 1.9;
}

/* ===== 作業内容 ===== */
.works { background: var(--cream); }
.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.work-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(29,107,95,.15);
}
.work-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans);
}
.work-card:hover .work-card-img img { transform: scale(1.04); }
.work-card-body { padding: 2rem; }
.work-card-badge {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--teal);
  background: var(--teal-light);
  padding: .25rem .8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  font-family: var(--ff-ui);
}
.work-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}
.work-card-desc {
  font-size: .88rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.work-list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.work-list-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--dark);
  line-height: 1.6;
}
.work-list-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
  margin-top: .55em;
}
.works-link-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.works-link-text h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .3rem;
}
.works-link-text p {
  color: rgba(255,255,255,.72);
  font-size: .85rem;
}

/* ===== お菓子ギャラリー ===== */
.sweets-gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform var(--trans), box-shadow var(--trans);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}
.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.gallery-item--large .gallery-img {
  aspect-ratio: 1/1;
  height: 100%;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans);
}
.gallery-item:hover .gallery-img img { transform: scale(1.06); }
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .6rem .9rem;
  background: linear-gradient(to top, rgba(29,43,39,.75), transparent);
  color: var(--white);
  font-size: .78rem;
  letter-spacing: .04em;
  opacity: 0;
  transition: opacity var(--trans);
}
.gallery-item:hover .gallery-label { opacity: 1; }

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--large { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 工賃 ===== */
.wage { background: var(--white); }
.wage-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.wage-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--light);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.wage-card:hover {
  border-color: var(--teal-mid);
  box-shadow: var(--shadow);
}
.wage-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.wage-type {
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: .5rem;
  font-family: var(--ff-ui);
}
.wage-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}
.wage-amount {
  font-family: var(--ff-en);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--terra);
  line-height: 1;
  margin-bottom: .3rem;
}
.wage-unit { font-size: .8rem; color: var(--gray); }
.wage-note {
  text-align: center;
  font-size: .82rem;
  color: var(--gray);
  margin-top: 2rem;
  line-height: 1.8;
}

/* ===== スケジュール ===== */
.schedule { background: var(--cream); }
.schedule-inner {
  max-width: 620px;
  margin: 0 auto;
}
.schedule-timeline {
  position: relative;
  padding-left: 80px;
}
.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--terra));
  border-radius: 2px;
}
.schedule-item {
  position: relative;
  padding: 1.5rem 1.8rem;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(29,107,95,.07);
}
.schedule-item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}
.schedule-item.break::before { background: var(--terra); box-shadow: 0 0 0 2px var(--terra); }
.schedule-item.end::before { background: var(--gray); box-shadow: 0 0 0 2px var(--gray); }
.schedule-time {
  font-family: var(--ff-en);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: .3rem;
}
.schedule-item.break .schedule-time { color: var(--terra); }
.schedule-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .3rem;
}
.schedule-detail {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== 利用の流れ ===== */
.flow { background: var(--white); }
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.flow-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--teal-light), var(--light), var(--teal-light));
  z-index: 0;
}
.flow-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.flow-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-en);
  font-size: 1.3rem;
  font-weight: 300;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 16px rgba(29,107,95,.25);
}
.flow-icon {
  font-size: 1.4rem;
  margin-bottom: .8rem;
  display: block;
}
.flow-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}
.flow-desc {
  font-size: .8rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ===== サポート ===== */
.support { background: var(--terra-light); }
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.support-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.support-img img { width: 100%; height: 100%; object-fit: cover; }
.support-text .section-label { text-align: left; color: var(--terra); }
.support-text .section-title { text-align: left; }
.support-body {
  color: var(--gray);
  font-size: .95rem;
  line-height: 2.1;
  margin-bottom: 1.5rem;
}
.support-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.support-list-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .9rem;
  color: var(--dark);
}
.support-list-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq { background: var(--cream); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light);
  overflow: hidden;
  transition: box-shadow var(--trans);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-jp);
}
.faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-q-text {
  flex: 1;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
}
.faq-arrow {
  font-size: 1rem;
  color: var(--gray);
  transition: transform var(--trans);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.3rem 4rem;
  font-size: .9rem;
  color: var(--gray);
  line-height: 2;
}
.faq-item.open .faq-answer { display: block; }

/* ===== アクセス ===== */
.access { background: var(--white); }
.access-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}
.access-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.access-map iframe { width: 100%; height: 100%; border: 0; }
.access-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--teal-light);
}
.access-dl {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.access-dl dt {
  font-size: .75rem;
  letter-spacing: .12em;
  color: var(--teal);
  font-family: var(--ff-ui);
  margin-bottom: .2rem;
}
.access-dl dd {
  font-size: .92rem;
  color: var(--dark);
  line-height: 1.8;
}
.access-dl dd a {
  color: var(--teal);
  text-decoration: underline;
}
.info-box {
  background: var(--teal-light);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: .82rem;
  color: var(--teal);
  line-height: 1.8;
  border-left: 3px solid var(--teal);
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #1C2B27 0%, var(--teal) 50%, #2A8C7E 100%);
  padding: 100px 0;
}
.cta-inner { text-align: center; }
.cta-label {
  font-family: var(--ff-ui);
  font-size: .72rem;
  letter-spacing: .4em;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
}
.cta-title {
  font-family: var(--ff-jp);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.cta-desc {
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  line-height: 2;
  margin-bottom: 2.5rem;
}
.cta-cards {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cta-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.2rem 1.8rem;
  color: var(--white);
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.cta-card span:first-child { font-size: 1.3rem; }

/* ===== フッター ===== */
.footer {
  background: var(--dark);
  padding: 60px 0 30px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 30px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}
.footer-logo .logo-name {
  color: var(--white);
  font-size: 1.05rem;
}
.footer-logo .logo-badge { font-size: .6rem; }
.footer-tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-legal {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  line-height: 2;
}
.footer-nav h4 {
  font-size: .75rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,.45);
  font-family: var(--ff-ui);
  margin-bottom: 1rem;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.footer-nav a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}
.footer-chapiste-link {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color var(--trans);
}
.footer-chapiste-link:hover { color: rgba(255,255,255,.8); }

/* ===== レスポンシブ ===== */
@media (max-width: 960px) {
  .about-b-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-b-tag { right: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: 1fr; }
  .wage-cards { grid-template-columns: 1fr; max-width: 360px; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid::before { display: none; }
  .support-grid { grid-template-columns: 1fr; gap: 40px; }
  .access-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .works-link-banner { flex-direction: column; text-align: center; }
}
