:root {
  --white: #fffdfc;
  --ivory: #fcf8f6;
  --pink-beige: #f8eeee;
  --pink-light: #f3dadd;
  --rose: #bf7080;
  --rose-dark: #9f5867;
  --brown: #684a49;
  --brown-dark: #4d3332;
  --line: #ecd4d7;
  --green: #31b765;
  --shadow: 0 16px 36px rgba(112, 73, 72, .1);
  --serif: "Noto Serif JP", "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --content-width: 760px;
  --header-height: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: 84px;
  color: var(--brown);
  background: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .035em;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
main { padding-top: var(--header-height); }
section[id] { scroll-margin-top: var(--header-height); }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; width: 100%; height: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.content-width {
  width: min(calc(100% - 32px), var(--content-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding: 0 20px;
  background: rgba(255, 253, 252, .98);
  border-bottom: 1px solid rgba(236, 212, 215, .8);
  box-shadow: 0 5px 18px rgba(112, 73, 72, .07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
}
.brand-mark {
  color: var(--brown-dark);
  font-family: Georgia, serif;
  font-size: 19px;
  letter-spacing: .08em;
}
.brand-mark span { color: var(--rose); font-size: .65em; }
.brand-name { font-family: var(--serif); font-size: 10px; letter-spacing: .12em; }
.menu-button {
  position: relative;
  display: grid;
  gap: 7px;
  width: 42px;
  height: 42px;
  padding: 12px 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-button span:not(.sr-only) {
  display: block;
  height: 1px;
  background: var(--rose-dark);
  transition: opacity .2s ease;
}
.menu-button::before,
.menu-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1px;
  border-radius: 999px;
  background: var(--rose-dark);
  content: "";
  opacity: 0;
  transform-origin: center;
  transition: opacity .2s ease, transform .25s ease;
}
.menu-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.menu-button[aria-expanded="true"] span:not(.sr-only) {
  opacity: 0;
}
.menu-button[aria-expanded="true"]::before,
.menu-button[aria-expanded="true"]::after {
  opacity: 1;
}
.global-nav {
  position: fixed;
  inset: var(--header-height) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
  height: calc(100dvh - var(--header-height));
  padding: 60px 24px;
  overflow-y: auto;
  background: rgba(255, 250, 248, .99);
  transform: translateX(100%);
  transition: transform .3s ease;
}
.global-nav.is-open { transform: translateX(0); }
.global-nav a { font-family: var(--serif); font-size: 17px; }
.global-nav .nav-line {
  padding: 12px 26px;
  color: #fff;
  background: var(--rose);
  border-radius: 999px;
}

.image-section { background: var(--white); }
/* .spaced-section { padding: 42px 0; } */
.tint-section { background: var(--ivory); }
.section-image {
  position: relative;
  width: min(100%, var(--content-width));
  margin-inline: auto;
  overflow: hidden;
  background: linear-gradient(145deg, #fff8f7, #f5e5e5);
}
.section-image img { position: relative; z-index: 1; }
.section-image.is-missing {
  display: grid;
  place-items: center;
  min-height: 440px;
  border-block: 1px solid var(--line);
}
.section-image.is-missing::before {
  content: attr(data-image-label);
  color: #b88c92;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .08em;
}
.section-image.is-missing::after {
  content: "セクション画像を配置してください";
  position: absolute;
  top: calc(50% + 28px);
  color: #b59a9a;
  font-size: 11px;
}
.section-image.is-missing img { display: none; }
.hero-section { background: #fbf4f3; }
.hero-image { max-width: 560px; }
.hero-image.is-missing {
  min-height: min(760px, calc(100svh - 68px));
  background:
    radial-gradient(circle at 75% 68%, rgba(255,255,255,.86), transparent 22%),
    linear-gradient(155deg, #fffaf8, #f5dfe1 60%, #ead0cf);
}
.hero-image.is-missing::before { font-size: 24px; }

.cta-band {
  padding: 27px 0 31px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fbf2f2);
}
.cta-band-first { border-bottom: 1px solid rgba(236, 212, 215, .7); }
.cta-lead {
  margin: 0 0 10px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 16px;
}
.line-cta,
.fixed-line-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 10px 17px;
  color: #fff;
  background: linear-gradient(135deg, #c77988, #ad5e6e);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  box-shadow: 0 13px 30px rgba(157, 88, 103, .24), inset 0 0 0 3px rgba(255,255,255,.12);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.line-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(157, 88, 103, .29); }
.split-entry-line-cta {
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.split-entry-line-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(157, 88, 103, .29), inset 0 0 0 3px rgba(255,255,255,.12);
}
.split-entry-cta,
.split-line-cta {
  display: flex;
  align-items: center;
  min-height: 64px;
  color: #fff;
  text-decoration: none;
}
.split-entry-cta {
  flex: 0 0 34%;
  justify-content: center;
  padding: 10px 10px 10px 18px;
  background: rgba(255, 255, 255, .13);
  border-right: 1px solid rgba(255,255,255,.32);
}
.split-entry-label {
  display: grid;
  place-items: center;
  width: min(100%, 112px);
  min-height: 41px;
  padding: 5px 8px;
  color: var(--rose-dark);
  text-align: center;
  background: #fff;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .02em;
}
.split-line-cta {
  flex: 1 1 auto;
  gap: 10px;
  min-width: 0;
  padding: 10px 17px 10px 14px;
}
.line-badge {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 41px;
  height: 41px;
  color: var(--green);
  background: #fff;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: -.04em;
}
.cta-arrow { margin-left: auto; font-size: 19px; }
.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 15px;
  padding: 0;
  margin: 13px 0 0;
  list-style: none;
  color: #866968;
  font-size: 14px;
    font-weight: bold;
}
.cta-features li::before { content: "✓"; margin-right: 4px; color: var(--rose-dark); }

.income-section {  background: var(--pink-beige); }
.job-point-card {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  margin-bottom: 26px;
  padding: 22px 22px;
  color: var(--rose-dark);
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(112, 73, 72, .1);
  font-family: var(--serif);
}
.job-point-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: .06em;
}
.job-point-card p + p {
  margin-top: 6px;
}
.income-notes {
  margin-top: 19px;
  padding: 18px 16px;
  color: #806968;
  text-align: center;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.income-notes p { margin: 2px 0; font-size: 10px; line-height: 1.65; }
.after-image-cta,
.after-faq-cta { margin-top: 28px; margin-bottom: 40px;text-align: center; }

.faq-section {
  padding: 48px 0;
  background: linear-gradient(180deg, #fff, #fcf7f5);
}
.section-title { margin-bottom: 35px; text-align: center; }
.section-title > span {
  color: #bc8a91;
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: .22em;
}
.section-title h2 {
  margin: 3px 0 9px;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: .1em;
}
.section-title p { margin: 0; color: #927978; font-size: 12px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 72px;
  padding: 15px 16px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.faq-item button:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: -4px;
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 1 1 auto;
  min-width: 0;
  color: var(--brown-dark);
  font-family: var(--serif);
    font-size: 16px;
    line-height: 1.65;
    font-weight: bold;
}
.faq-question i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  color: #fff;
  background: var(--rose);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: normal;
}
.faq-question img {
  display: block;
  width: calc(100% - 42px);
  max-width: 100%;
  height: auto;
}
.faq-toggle {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 1px;
  background: var(--rose);
  transition: transform .2s ease;
}
.faq-toggle::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] .faq-toggle::after { transform: rotate(0); }
.faq-answer {
  padding: 0 21px 20px 20px;
  overflow: hidden;
  opacity: 1;
  transition: max-height .34s ease, opacity .28s ease;
}
.faq-answer-inner {
  display: block;
}
.faq-answer img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.faq-answer p { margin: 0; color: #785f5e; font-size: 14px; text-align: justify;}

.company-section {
  padding: 64px 0 60px;
  background: var(--pink-beige);
}
.company-card {
  padding: 26px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.company-list { margin: 0; }
.company-item {
  padding: 19px 0;
  border-bottom: 1px dashed var(--line);
}
.company-item:first-child { padding-top: 0; }
.company-item dt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  padding: 4px 13px;
  color: var(--rose-dark);
  background: var(--pink-beige);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.company-item dd {
  margin: 0;
  color: var(--brown);
  font-size: 14px;
  line-height: 1.85;
}
.company-item dd a {
  color: inherit;
  text-decoration: none;
}
.company-list + .company-access-image {
  margin-top: 22px;
}
.company-access-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.company-map {
  overflow: hidden;
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(112, 73, 72, .1);
}
.company-map img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.legal-section {
  padding: 54px 0;
  background: #fffaf9;
}
.legal-section .content-width {
  display: grid;
  gap: 14px;
}
.legal-accordion {
  color: var(--brown);
  background: rgba(255, 255, 255, .9);
  border-top: 1px solid #c9ad8b;
  border-bottom: 1px solid #c9ad8b;
  border-radius: 2px;
}
.legal-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  padding: 15px 16px;
  list-style: none;
  cursor: pointer;
  color: #6c563f;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .06em;
}
.legal-accordion summary::-webkit-details-marker {
  display: none;
}
.legal-accordion-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}
.legal-accordion-icon::before,
.legal-accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  background: #6c563f;
  border-radius: 999px;
  content: "";
  transform: translate(-50%, -50%);
}
.legal-accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.legal-accordion[open] .legal-accordion-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.legal-accordion[open] .legal-accordion-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.legal-accordion-body {
  padding: 1rem 16px 22px;
  border-top: 1px solid rgba(139, 115, 86, .45);
  overflow: hidden;
  opacity: 1;
  transition: max-height .34s ease, opacity .28s ease;
}
.legal-accordion p,
.legal-accordion dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.85;
  text-align: justify;
}
.legal-accordion p + p {
  margin-top: 8px;
}
.legal-accordion dl {
  margin: 22px 0 0;
}
.legal-accordion dt {
  margin: 20px 0 8px;
  color: #6c563f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}
.legal-accordion .privacy-caps {
  margin: 14px 0 0;
  padding: 14px 15px;
  border: 2px solid rgba(139, 115, 86, .22);
}
.legal-accordion .privacy-caps dt {
  display: inline-block;
  margin: -28px 0 8px;
  padding: 0 10px;
  background: #fff;
}
.legal-accordion .privacy-caps dd {
  position: relative;
  padding-left: 18px;
}
.legal-accordion .privacy-caps dd + dd {
  margin-top: 6px;
}
.legal-accordion .privacy-caps dd::before {
  position: absolute;
  top: .72em;
  left: 2px;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

.final-cta-section {
  position: relative;
  padding-bottom: 46px;
  background: var(--pink-beige);
}
.final-cta-image.is-missing {
  min-height: 470px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.88), transparent 28%),
    linear-gradient(155deg, #f9eeee, #eccfd3);
}
.final-cta-overlay {
  position: relative;
  z-index: 2;
  margin-top: -95px;
}
.line-cta-large { min-height: 72px; font-size: 18px; }

.site-footer {
  padding: 52px 0 50px;
  color: #d7bfc0;
  text-align: center;
  background: var(--brown-dark);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 28px;
  color: #fff;
  font-family: var(--serif);
  font-size: 11px;
}
.footer-brand .brand-mark { color: #fff; font-size: 22px; }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 29px;
  font-size: 10px;
}
.age-note { font-size: 9px; }
.copyright { margin-top: 22px; font-family: Georgia, serif; font-size: 9px; }

.fixed-contact-cta {
  position: fixed;
  z-index: 1200;
  bottom: calc(10px + env(safe-area-inset-bottom));
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(100% - 24px);
  max-width: 720px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s ease;
}
.fixed-contact-cta.is-observed {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
}
.fixed-contact-cta.is-visible,
.fixed-contact-cta.is-observed.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.fixed-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  line-height: 1;
}
.fixed-contact-icon img {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.fixed-contact-line {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 58px;
  padding: 8px 16px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #c77988, #ad5e6e);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(253, 210, 235, 0.24);
}
.fixed-contact-line small {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
}
.fixed-contact-line strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .035em;
}

@media (min-width: 760px) {
  body { padding-bottom: 94px; }
  .spaced-section { padding: 66px 0; }
  .section-image {
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 18px 50px rgba(112, 73, 72, .07);
  }
  .hero-section { padding: 98px 0 52px; }
  .hero-image { box-shadow: 0 22px 60px rgba(112, 73, 72, .12); }
  .line-cta { max-width: 520px; margin-inline: auto; }
  .faq-section { padding: 115px 0; }
  .faq-question { font-size: 15px; }
  .fixed-contact-cta { bottom: calc(20px + env(safe-area-inset-bottom)); }
}

@media (min-width: 980px) {
  :root { --header-height: 80px; }
  .site-header {
    padding: 0 max(36px, calc((100vw - 1120px) / 2));
    background: rgba(255, 253, 252, .94);
  }
  .menu-button { display: none; }
  .global-nav {
    position: static;
    inset: auto;
    flex-direction: row;
    gap: 25px;
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    background: transparent;
    transform: none;
  }
  .global-nav a { font-family: var(--sans); font-size: 11px; }
  .global-nav .nav-line { padding: 8px 18px; }
  .hero-section { padding-top: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
