:root {
  --bg: #f5f0e8;
  --paper: #fdf9f2;
  --ink: #22201b;
  --muted: #666056;
  --accent: #b9885b;
  --line: #ddd2c1;
  --shadow: 0 16px 36px rgba(38, 25, 10, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  background: radial-gradient(circle at 10% -10%, #fff9ef 0%, var(--bg) 46%, #efe5d8 100%);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  z-index: 15;
  background: rgba(248, 241, 231, 0.82);
  border-bottom: 1px solid rgba(92, 77, 57, 0.14);
  box-shadow: 0 10px 28px rgba(45, 33, 19, 0.08);
  backdrop-filter: blur(12px);
}

h1, h2, h3, .eyebrow, .top-wordmark {
  font-family: "Playfair Display", "Noto Sans JP", serif;
  letter-spacing: 0.04em;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  filter: blur(14px);
  opacity: 0.33;
  pointer-events: none;
}

.bg-shape-a {
  width: 360px;
  height: 360px;
  right: -80px;
  top: 80px;
  background: #e4d4c1;
  border-radius: 60% 40% 54% 46% / 40% 41% 59% 60%;
}

.bg-shape-b {
  width: 260px;
  height: 260px;
  left: -60px;
  bottom: 80px;
  background: #d7d7cd;
  border-radius: 65% 35% 39% 61% / 52% 49% 51% 48%;
}

.top-wordmark {
  position: fixed;
  top: 23px;
  left: 16px;
  z-index: 20;
  transform: scale(1);
  transform-origin: left top;
  font-size: clamp(1rem, 2.1vw, 1.6rem);
  line-height: 1;
  letter-spacing: 0.16em;
  color: #3c3228;
  pointer-events: none;
  transition: transform 0.42s ease, letter-spacing 0.42s ease, opacity 0.42s ease;
  opacity: 0.9;
}

.menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 32;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.55);
  box-shadow: none;
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 3px 0;
  border-radius: 999px;
  background: #3b3127;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: fixed;
  top: 70px;
  right: 16px;
  z-index: 31;
  width: min(240px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(72, 62, 49, 0.16);
  border-radius: 18px;
  background: rgba(253, 249, 242, 0.96);
  box-shadow: 0 18px 38px rgba(45, 33, 19, 0.12);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
}

body.menu-open .site-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2f2a22;
}

.site-nav > * + * {
  margin-top: 4px;
}

.site-nav a:hover {
  background: rgba(231, 220, 204, 0.56);
}

.site-nav a[href*="reserve/index.html"],
.site-nav a[href*="/reserve/"] {
  color: #fff7ee;
  font-weight: 700;
  background: linear-gradient(135deg, #b27a4a 0%, #8e5e34 100%);
  box-shadow: 0 10px 22px rgba(124, 79, 39, 0.24);
}

.site-nav a[href*="reserve/index.html"]:hover,
.site-nav a[href*="/reserve/"]:hover {
  background: linear-gradient(135deg, #c28750 0%, #9a6538 100%);
  color: #fffdfa;
}

.site-nav a.active,
.site-nav .nav-dropdown > summary.active {
  color: #fff;
  background: rgba(34, 32, 27, 0.92);
}

.site-nav .nav-dropdown {
  display: block;
}

.site-nav .nav-dropdown > summary {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2f2a22;
  cursor: pointer;
}

.site-nav .nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.site-nav .nav-dropdown > summary::after {
  content: "▾";
  float: right;
  opacity: 0.72;
}

.site-nav .nav-dropdown[open] > summary {
  background: rgba(231, 220, 204, 0.56);
}

.site-nav .nav-dropdown-menu {
  margin-top: 6px;
  padding-left: 10px;
}

.site-nav .nav-dropdown-menu a {
  font-size: 0.88rem;
}

.language-switcher {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(72, 62, 49, 0.16);
  border-radius: 999px;
  background: rgba(253, 249, 242, 0.94);
  box-shadow: 0 16px 30px rgba(45, 33, 19, 0.12);
  backdrop-filter: blur(10px);
}

.language-switcher-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.language-switcher-link {
  min-width: 38px;
  padding: 6px 10px;
  border-radius: 999px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.language-switcher-link {
  color: #2f2a22;
  background: rgba(231, 220, 204, 0.56);
}

.language-switcher-link.is-current {
  color: #fff;
  background: rgba(34, 32, 27, 0.92);
}

.language-switcher-link:hover {
  background: rgba(216, 199, 176, 0.72);
}

body.is-top .top-wordmark {
  transform: scale(1.18);
  letter-spacing: 0.2em;
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 88vh;
  margin-top: 26px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 16px;
  padding: 180px 14px 110px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 19, 14, 0.24) 0%, rgba(22, 19, 14, 0.32) 65%, rgba(22, 19, 14, 0.38) 100%),
    var(--hero-image, url("ヒーロー/1.jpeg")) center/cover no-repeat;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-plain {
  min-height: auto;
  place-content: end start;
  text-align: left;
  gap: 14px;
  padding: 152px 28px 52px;
  border-radius: 0;
}

.hero-plain::before {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92) 0%, rgba(248, 239, 226, 0.86) 100%);
}

.hero-plain .eyebrow {
  color: #7a6853;
}

.hero-plain h1 {
  color: #2f251c;
  text-shadow: none;
}

.hero-plain .lead {
  max-width: 760px;
  color: #5d4d3c;
}

.learn-insights-page .hero-plain {
  gap: 10px;
  padding: 136px 28px 34px;
}

.learn-insights-page .hero-plain .lead {
  max-width: 700px;
}

.learn-insights-page .section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.learn-insights-page main > .section:first-child {
  padding-top: 24px;
}

.learn-insights-page .problem-summary {
  max-width: 720px;
}

.learn-insights-page #insights > h1 {
  display: block;
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  color: #2f251c;
  text-shadow: none;
}

.learn-insights-page .insight-grid,
.learn-insights-page .reason-list,
.learn-insights-page .service-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.no-hero main {
  padding-top: 112px;
}

.page-intro {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.page-intro .lead {
  margin: 0;
  max-width: 700px;
  color: #5d4d3c;
  font-size: 0.98rem;
  line-height: 1.8;
}

.page-intro h1 {
  margin: 0;
  font-size: clamp(2rem, 4.1vw, 3.1rem);
  line-height: 1.12;
}

.header-section-nav {
  position: fixed;
  top: 23px;
  left: 520px;
  right: 72px;
  z-index: 21;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  overflow: visible;
}

.header-section-nav::-webkit-scrollbar {
  display: none;
}

.header-section-nav a {
  color: rgba(54, 45, 35, 0.84);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.header-section-nav a:hover {
  color: #2f251c;
}

.header-section-nav a[href*="reserve/index.html"],
.header-section-nav a[href*="/reserve/"] {
  padding: 10px 16px;
  border: 1px solid rgba(128, 83, 44, 0.16);
  border-radius: 999px;
  color: #fff8f0;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(180, 124, 73, 0.98) 0%, rgba(139, 92, 48, 0.98) 100%);
  box-shadow: 0 12px 24px rgba(123, 84, 47, 0.18);
}

.header-section-nav a[href*="reserve/index.html"]:hover,
.header-section-nav a[href*="/reserve/"]:hover {
  color: #fffdfa;
  background: linear-gradient(135deg, rgba(194, 133, 79, 0.98) 0%, rgba(152, 101, 56, 0.98) 100%);
}

.header-section-nav .nav-dropdown {
  position: relative;
}

.header-section-nav .nav-dropdown > summary {
  list-style: none;
  color: rgba(54, 45, 35, 0.84);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}

.header-section-nav .nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.header-section-nav .nav-dropdown > summary::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.72rem;
  opacity: 0.7;
}

.header-section-nav .nav-dropdown > summary:hover,
.header-section-nav .nav-dropdown > summary.active {
  color: #2f251c;
}

.header-section-nav .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  padding: 10px;
  border: 1px solid rgba(72, 62, 49, 0.16);
  border-radius: 16px;
  background: rgba(253, 249, 242, 0.98);
  box-shadow: 0 18px 38px rgba(45, 33, 19, 0.12);
  backdrop-filter: blur(12px);
}

.header-section-nav .nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #2f2a22;
}

.header-section-nav .nav-dropdown-menu a + a {
  margin-top: 4px;
}

.header-section-nav .nav-dropdown-menu a:hover {
  background: rgba(231, 220, 204, 0.56);
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 250, 240, 0.92);
}

h1 {
  margin: 0;
  display: inline-block;
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  line-height: 0.95;
  color: #fff8ed;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.small-for {
  font-size: 0.46em;
  letter-spacing: 0.02em;
  font-style: italic;
  vertical-align: middle;
}

.lead {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.95;
  color: rgba(255, 250, 242, 0.98);
  text-wrap: pretty;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.btn {
  width: fit-content;
  margin: 8px auto 0;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: #21473b;
  color: #fff;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #17352c;
}

.btn-sub {
  background: rgba(255, 252, 247, 0.92);
  color: var(--ink);
  border: 1px solid rgba(34, 32, 27, 0.22);
}

.btn-sub:hover {
  background: #fff;
}

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 14px;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.section-kicker {
  margin: 0 0 8px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6a5844;
}

.problem-summary {
  max-width: 780px;
  margin: 0 0 22px;
  color: var(--muted);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: start;
}

.problem-intro {
  padding-right: 8px;
}

.problem-intro .problem-summary {
  margin-bottom: 0;
}

.problem-panel {
  border: 1px solid rgba(221, 210, 193, 0.9);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.problem-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 14px 18px;
  text-decoration: none;
  transition: background 0.24s ease;
}

.problem-card + .problem-card {
  border-top: 1px solid rgba(221, 210, 193, 0.9);
}

.problem-card:hover {
  background: rgba(248, 241, 231, 0.6);
}

.problem-number {
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid rgba(181, 154, 122, 0.28);
  border-radius: 10px;
  background: rgba(247, 239, 226, 0.58);
  backdrop-filter: blur(6px);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(112, 91, 64, 0.86);
}

.problem-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
}

.problem-visual {
  width: 100%;
  margin: 0;
  display: block;
  aspect-ratio: 1.14 / 1;
  object-fit: cover;
  border-radius: 14px;
  grid-row: 1 / span 4;
  opacity: 0.88;
  mix-blend-mode: multiply;
  filter: saturate(0.88) contrast(0.96) brightness(1.02);
  mask-image: radial-gradient(circle at center, #000 62%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, #000 62%, transparent 100%);
}

.page-home .problem-card {
  position: relative;
  isolation: isolate;
}

.page-home .problem-visual {
  object-fit: contain;
  padding: 8px;
  opacity: 1;
  mix-blend-mode: normal;
  filter: none;
  mask-image: none;
  -webkit-mask-image: none;
}

.problem-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: #2d241c;
}

.problem-card > p:not(.problem-number):not(.problem-link) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.problem-link {
  margin: 8px 0 0 !important;
  padding-top: 0;
  font-weight: 700;
  color: #33281f !important;
}


.reason-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.reason-block {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.reason-image {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.reason-content {
  padding: 22px;
}

.reason-label {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #7a6853;
}

.reason-content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.12rem, 1.8vw, 1.55rem);
  line-height: 1.3;
}

.reason-content p:last-child {
  margin: 0;
  color: var(--muted);
}

.flow-list-vertical {
  display: grid;
  gap: 0;
  margin-top: 24px;
  padding: 10px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffaf2 0%, #f3e9dc 100%);
  box-shadow: var(--shadow);
}

.flow-step-row {
  display: grid;
  grid-template-columns: 72px 132px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
}

.flow-step-row[data-service-plan] {
  cursor: pointer;
  transition: transform 0.22s ease;
}

.flow-step-row[data-service-plan]:hover {
  transform: translateX(4px);
}

.flow-step-row[data-service-plan]:focus-visible {
  outline: 2px solid #c6a579;
  outline-offset: 8px;
  border-radius: 16px;
}

.flow-step-number {
  font-family: "Playfair Display", "Noto Sans JP", serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1;
  color: #8a7358;
}

.flow-step-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(221, 210, 193, 0.6);
  opacity: 0.9;
  mix-blend-mode: multiply;
  filter: saturate(0.88) contrast(0.94) brightness(1.03);
}

.flow-step-body {
  padding-bottom: 0;
  border-bottom: 1px solid rgba(221, 210, 193, 0.9);
}

.flow-step-row:last-child .flow-step-body {
  border-bottom: none;
}

.flow-step-tag {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6f5e49;
}

.flow-step-tag-optional {
  color: #876549;
}

.flow-step-tag-premium {
  color: #6f4f2e;
}

.plan-tag-light {
  color: #8a6440;
}

.plan-tag-standard {
  color: #3f8a57;
}

.plan-tag-premium {
  color: #b58a2a;
}

.flow-step-body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.flow-step-body p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.flow-step-summary {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.65;
}

.flow-step-cta {
  margin: 0 0 2px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #2f251c;
}


.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-home .service-list {
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
}

.service-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  border-color: #ccb08c;
  box-shadow: 0 20px 38px rgba(45, 33, 19, 0.12);
  outline: none;
}

.service-image {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-content {
  padding: 22px;
}

.service-content h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.service-content p {
  margin: 0 0 14px;
  color: var(--muted);
}

.service-price {
  margin: 0 0 12px !important;
  font-size: 0.96rem;
  font-weight: 700;
  color: #2f251c !important;
}

.service-meta {
  display: inline-block;
  margin: 0 0 14px !important;
  padding: 7px 12px;
  border: 1px solid rgba(72, 62, 49, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  color: #5b4b3a !important;
}

.service-content ul {
  margin: 0;
  padding-left: 1.1rem;
}

.service-content li + li {
  margin-top: 4px;
}

.service-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  color: #2f251c;
  text-decoration: none;
}

.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.plan-modal[hidden] {
  display: none;
}

.plan-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.58);
  backdrop-filter: blur(6px);
}

.plan-modal-dialog {
  position: relative;
  width: min(1120px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  padding: 28px;
  border: 1px solid rgba(72, 62, 49, 0.14);
  border-radius: 26px;
  background: linear-gradient(180deg, #fffaf2 0%, #f5ecdf 100%);
  box-shadow: 0 26px 54px rgba(25, 19, 12, 0.24);
  overflow: auto;
}

.plan-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: block;
  padding: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6d5c47;
  cursor: pointer;
}

.plan-modal-head {
  margin-top: 8px;
}

.plan-modal-kicker {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #7a6853;
  text-transform: uppercase;
}

.plan-modal-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.plan-modal-summary {
  margin: 0 0 18px;
  max-width: 760px;
  color: #5b4b3a;
}

.plan-modal-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(120, 104, 83, 0.18);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.9);
}

.plan-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.plan-table th,
.plan-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(120, 104, 83, 0.16);
  border-right: 1px solid rgba(120, 104, 83, 0.16);
  text-align: center;
  vertical-align: middle;
}

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

.plan-table th:last-child,
.plan-table td:last-child {
  border-right: none;
}

.plan-table thead th {
  background: rgba(247, 240, 228, 0.95);
  font-size: 0.95rem;
  color: #2f251c;
}

.plan-table tbody th {
  min-width: 140px;
  background: rgba(247, 240, 228, 0.95);
  text-align: left;
  font-size: 0.94rem;
  color: #3d3126;
}

.plan-table td {
  font-weight: 600;
  color: #4b3f33;
}

.plan-table .plan-table-total td {
  color: #2a2119;
  font-weight: 700;
}

.plan-modal-notes {
  margin-top: 18px;
  color: #5b4b3a;
}

.plan-modal-notes ul {
  margin: 0;
  padding-left: 1.2rem;
}

.plan-modal-notes li + li {
  margin-top: 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(155deg, #fffaf2 10%, #f5ecdf 100%);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.insight-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 24px;
}

.insight-toolbar .problem-summary {
  margin: 0;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.insight-card {
  display: block;
  padding: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.insight-card:hover,
.insight-card:focus-visible {
  transform: translateY(-4px);
  border-color: #ccb08c;
  box-shadow: 0 20px 38px rgba(45, 33, 19, 0.12);
  outline: none;
}

.insight-card-image {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.insight-card-body {
  padding: 22px;
}

.insight-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7d654b;
}

.insight-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.5;
  color: #2d241c;
}

.insight-card p {
  margin: 0;
  color: var(--muted);
}

.insight-card-cta {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  color: #33281f;
}

.article-shell {
  max-width: 880px;
  margin: 0 auto;
  width: min(880px, calc(100% - 48px));
}

.article-shell-narrow {
  max-width: 840px;
  width: min(840px, calc(100% - 48px));
}

.article-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 38px rgba(45, 33, 19, 0.08);
}

.article-card h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.34rem, 2vw, 1.82rem);
  line-height: 1.5;
}

.article-card p {
  margin: 0;
  font-size: clamp(0.99rem, 1.25vw, 1.06rem);
  line-height: 2;
  color: var(--muted);
}

.article-card p + p {
  margin-top: 14px;
}

.article-card .article-list {
  margin-top: 16px;
  line-height: 1.9;
}

.article-card .article-list a,
.article-card p a {
  color: #3f3123;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.single-article-card-page .article-shell-narrow {
  max-width: 900px;
  width: min(900px, calc(100% - 48px));
}

.single-article-card-page .article-card:not(.toc-card) {
  padding: clamp(28px, 4.8vw, 52px);
}

.single-article-card-page .article-shell-narrow > .section:not(#toc):not(#related) {
  padding-top: 0;
  padding-bottom: 0;
}

.single-article-card-page .article-shell-narrow > .section:not(#toc):not(#related) .article-card {
  border-radius: 0;
  box-shadow: none;
}

.single-article-card-page .article-shell-narrow > .section#section-1 .article-card,
.single-article-card-page .article-shell-narrow > .section:first-of-type:not(#toc) .article-card {
  border-radius: 28px 28px 0 0;
}

.single-article-card-page .article-shell-narrow > .section#cta .article-card,
.single-article-card-page .article-shell-narrow > .section:last-of-type:not(#related) .article-card {
  border-radius: 0 0 28px 28px;
}

.single-article-card-page .article-shell-narrow > .section:not(#toc):not(#related) + .section:not(#toc):not(#related) .article-card {
  border-top: 1px solid rgba(141, 112, 78, 0.16);
}

.single-article-card-page .article-card:not(.toc-card) > div + div {
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid rgba(141, 112, 78, 0.16);
}

.single-article-card-page .article-card:not(.toc-card) h2 {
  margin: 10px 0 16px;
  font-size: clamp(1.42rem, 2.2vw, 2rem);
  line-height: 1.45;
}

.single-article-card-page .article-card:not(.toc-card) p {
  font-size: clamp(1.02rem, 1.35vw, 1.1rem);
  line-height: 2.02;
}

.single-article-card-page .article-card:not(.toc-card) p + p {
  margin-top: 16px;
}

.single-article-card-page .article-card:not(.toc-card) .article-list {
  margin-top: 18px;
  padding-left: 1.25rem;
  line-height: 2;
}

.single-article-card-page .article-card:not(.toc-card) .article-quote {
  margin-top: 22px;
}

.toc-card {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.96) 0%, rgba(245, 236, 223, 0.96) 100%);
}

.article-toc-list {
  margin: 8px 0 0;
  padding-left: 1.2rem;
}

.article-toc-list li + li {
  margin-top: 10px;
}

.article-toc-list a {
  color: #33281f;
  text-decoration: none;
  border-bottom: 1px solid rgba(141, 112, 78, 0.28);
}

.article-toc-list a:hover,
.article-toc-list a:focus-visible {
  color: #6f5338;
}

.article-intro {
  display: grid;
  gap: 14px;
}

.article-eyebrow {
  display: inline-block;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7d654b;
}

.article-section + .article-section {
  margin-top: 22px;
}

.article-section h2 {
  margin-bottom: 12px;
}

.article-section p + p {
  margin-top: 12px;
}

.article-list {
  margin: 14px 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.article-list li + li {
  margin-top: 8px;
}

.article-quote {
  margin: 18px 0 0;
  padding: 18px 20px;
  border-left: 3px solid #b99873;
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.84);
  color: #5b4b3a;
}

.article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.learn-dual-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.learn-bottom-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(155deg, #fffaf2 10%, #f5ecdf 100%);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
}

.learn-bottom-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.35;
}

.learn-bottom-card p:not(.section-kicker) {
  margin: 0;
  max-width: 34rem;
  color: #5c5247;
}

.learn-bottom-card .service-link {
  margin-top: 26px;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.learn-bottom-card-accent {
  border-color: rgba(122, 88, 51, 0.18);
  background:
    radial-gradient(circle at top right, rgba(255, 247, 231, 0.7), transparent 36%),
    linear-gradient(145deg, #f5e6d0 0%, #e4c39c 100%);
  box-shadow: 0 22px 42px rgba(85, 58, 31, 0.16);
}

.learn-bottom-card-accent .section-kicker,
.learn-bottom-card-accent h3,
.learn-bottom-card-accent p {
  color: #38271b;
}

.learn-bottom-card-accent .service-link {
  color: #fff8ef;
  align-self: flex-start;
  padding: 12px 20px;
  border-radius: 999px;
  background: #5b3d24;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(61, 40, 20, 0.16);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(155deg, #fffaf2 10%, #f5ecdf 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  position: relative;
  padding: 20px 56px 20px 22px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: #2d241c;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #7a6853;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.8;
}

.concept-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.flow-group + .flow-group {
  margin-top: 20px;
}

.flow-heading {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #5e4d39;
}

.flow-calendar {
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fcf7ef 0%, #f2e7d8 100%);
  box-shadow: var(--shadow);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.calendar-title {
  margin: 0;
  font-weight: 700;
  color: #4f4030;
}

.calendar-note {
  margin: 0;
  font-size: 0.88rem;
  color: #746555;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.calendar-week {
  margin: 0;
}

.calendar-week-label {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6a5844;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-day {
  min-height: 84px;
  padding: 8px 6px;
  border: 1px solid #e2d5c6;
  border-radius: 12px;
  background: rgba(255, 252, 247, 0.8);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calendar-day-name {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #8a7a69;
}

.calendar-day strong {
  font-size: 0.78rem;
  color: #3f3124;
}

.calendar-day span:last-child {
  font-size: 0.74rem;
  line-height: 1.35;
  color: #5f5347;
}

.calendar-day.is-active {
  border-color: #d4b183;
  background: linear-gradient(180deg, #fff7ea 0%, #f3dec0 100%);
  box-shadow: 0 10px 20px rgba(132, 93, 45, 0.12);
}

.concept-card {
  position: relative;
}

.concept-card-optional {
  background: linear-gradient(155deg, #fff8ef 10%, #efe4d3 100%);
}

.step-label {
  margin: 0 0 12px;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #3f3224;
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f3ddbb 0%, #e8c99b 100%);
  border: 1px solid #d7b281;
  box-shadow: 0 8px 18px rgba(132, 93, 45, 0.16);
}

.step-label-optional {
  color: #5a4630;
  background: linear-gradient(180deg, #eadcc8 0%, #dcc5a5 100%);
  border-color: #c9ab81;
}

.concept-subtitle {
  margin: 0 0 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #6a5844;
}

.concept-timing {
  margin: 0 0 10px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #8a7358;
}

.pricing-rich {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.pricing-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.pricing-card-simple {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.pricing-card-simple-accent {
  background: linear-gradient(180deg, #fff7ea 0%, #f1dfc3 100%);
}

.pricing-mini-label {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #7a6853;
}

.pricing-card-simple h3 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: "lnum" 1, "pnum" 1;
  color: #2f251c;
}


.pricing-card-simple p {
  margin: 0 0 14px;
  color: var(--muted);
}

.pricing-card-simple ul {
  margin: 0;
  padding-left: 1.1rem;
}

.pricing-card-simple li + li {
  margin-top: 4px;
}

.pricing-note {
  margin: 16px 0 0;
  color: #5e564d;
  font-size: 0.92rem;
}

.other-link {
  margin-top: 14px;
  color: #4d463d;
}

.other-link a {
  color: #3b2f1f;
  font-weight: 700;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.page-home .case-list {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  max-width: 980px;
  justify-content: center;
}

.page-home .case-card {
  display: grid;
  grid-template-rows: minmax(280px, 320px) 1fr;
  align-self: start;
}

.page-home .case-image {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.case-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(45, 33, 19, 0.14);
}

.story-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.story-card .problem-link {
  margin-top: 14px;
}

.case-card-featured {
  grid-column: 1 / -1;
}

.case-card-featured .case-mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-card-featured .case-content {
  padding-top: 18px;
}

.office-case-card .case-mosaic {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 14px;
}

.case-image {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.case-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px 14px 0;
}

.case-thumb {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.case-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(45, 33, 19, 0.18);
  filter: brightness(1.03);
}

.case-content {
  padding: 22px;
}

.case-place {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #7a6853;
}

.case-content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.case-content .pricing-mini-label {
  color: #b58a2a;
}

.case-meta {
  margin: -2px 0 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5f5343;
}

.case-content p:last-child {
  margin: 0;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 17, 12, 0.84);
  backdrop-filter: blur(8px);
}

.lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(92vw, 1080px);
  max-height: 86vh;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 243, 0.28);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.12);
  color: #fff8ef;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  padding: 12px 14px;
  border: 1px solid rgba(255, 250, 243, 0.28);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.12);
  color: #fff8ef;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.consultation {
  max-width: 980px;
  margin: 0 auto 110px;
  padding: 0 14px;
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.consultation-main {
  position: relative;
  overflow: hidden;
  padding: 28px;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(255, 247, 235, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(34, 28, 22, 0.34) 0%, rgba(34, 28, 22, 0.5) 100%),
    url("お問い合わせ/1.jpeg") center/cover no-repeat;
  text-align: left;
}

.consultation-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 13, 10, 0.08) 0%, rgba(16, 13, 10, 0.18) 100%);
  pointer-events: none;
}

.consultation-main > * {
  position: relative;
  z-index: 1;
}

.consultation-main .section-kicker,
.consultation-main h2,
.consultation-main .problem-summary,
.consultation-main .consultation-text {
  color: #fff9f0;
}

.consultation-main .problem-summary {
  max-width: 100%;
}

.consultation-support {
  margin-top: 22px;
}

.consultation-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.consultation-actions .btn {
  background: rgba(255, 249, 240, 0.94);
  color: #2f251c;
  border-color: rgba(255, 249, 240, 0.5);
}

.consultation-actions .btn:hover {
  background: #fffdf8;
}

.consultation-brand {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #7a6853;
}

.consultation-copy {
  margin: 0 0 10px;
  font-family: "Playfair Display", "Noto Sans JP", serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  color: #2f251c;
}

.consultation-text {
  margin: 0 0 18px;
  color: #fff9f0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: #7a6853;
}

.breadcrumb-nav a {
  color: #5c4a38;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav span[aria-current="page"] {
  color: #8f7d68;
}

.reserve-title {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  color: #2f251c;
  text-shadow: none;
}

.reserve-list {
  margin: 0;
  padding-left: 1.1rem;
}

.reserve-list li + li {
  margin-top: 6px;
}

.reserve-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.reserve-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.reserve-meta p {
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(72, 62, 49, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.9);
  font-size: 0.84rem;
  font-weight: 700;
  color: #5b4b3a;
}

.reserve-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-top: 24px;
  width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.reserve-page {
  padding-top: 108px;
}

.reserve-form-card {
  width: min(900px, 100%);
  justify-self: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fffaf2 0%, #f2e8da 100%);
  box-shadow: var(--shadow);
}

.reserve-card-title {
  margin-bottom: 12px;
}

.reserve-card-summary {
  margin-bottom: 22px;
}

.reserve-form-note {
  margin: 0 0 18px;
  color: var(--muted);
}

.reserve-form {
  display: grid;
  gap: 14px;
}

.spam-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reserve-field {
  display: grid;
  gap: 8px;
}

.reserve-field span,
.reserve-choice-group legend {
  font-size: 0.9rem;
  font-weight: 700;
  color: #3c3228;
}

.reserve-choice-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.reserve-choice-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reserve-choice-pill {
  position: relative;
  cursor: pointer;
}

.reserve-choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reserve-choice-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(72, 62, 49, 0.16);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.92);
  color: #5b4b3a;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.reserve-choice-pill input:checked + span {
  background: #3c3228;
  border-color: #3c3228;
  color: #fff9f0;
  box-shadow: 0 10px 20px rgba(45, 33, 19, 0.14);
}

.reserve-choice-pill:hover span {
  border-color: rgba(72, 62, 49, 0.32);
}

.reserve-field input,
.reserve-field select,
.reserve-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(72, 62, 49, 0.16);
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.92);
  font: inherit;
  color: #2f2a22;
}

.reserve-field textarea {
  resize: vertical;
}

.reserve-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.reserve-form-status {
  margin: 0;
  min-height: 1.6em;
  font-size: 0.92rem;
  font-weight: 600;
  color: #5b4b3a;
}

.reserve-form-status.is-success {
  color: #2f6b45;
}

.reserve-form-status.is-error {
  color: #9b3b2c;
}

.reserve-side {
  display: grid;
  gap: 16px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .case-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .learn-dual-cards {
    grid-template-columns: 1fr;
  }

  .problem-layout {
    grid-template-columns: 1fr;
  }

  .reserve-page-grid {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .pricing-stack {
    grid-template-columns: 1fr;
  }

  .flow-step-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-step-body {
    padding-bottom: 16px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    display: block;
  }

  .hero {
    min-height: 76vh;
    margin-top: 18px;
    padding: 136px 14px 88px;
    border-radius: 18px;
  }

  .hero-plain {
    min-height: auto;
    padding: 116px 14px 34px;
    border-radius: 0;
  }

  .learn-insights-page .hero-plain {
    padding: 112px 14px 24px;
  }

  .learn-insights-page .section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .learn-insights-page .insight-grid,
  .learn-insights-page .reason-list,
  .learn-insights-page .service-list {
    grid-template-columns: 1fr;
  }

  .no-hero main {
    padding-top: 96px;
  }

  .page-intro h1 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .header-section-nav {
    display: none;
  }

  .header-section-nav .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    background: transparent;
  }

  body::before {
    height: 72px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .concept-list {
    grid-template-columns: 1fr;
  }

  .pricing-stack {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .article-shell-narrow {
    width: min(840px, calc(100% - 28px));
  }

  .article-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .article-card h2 {
    font-size: clamp(1.18rem, 5.2vw, 1.46rem);
  }

  .article-card p {
    font-size: 0.98rem;
    line-height: 1.88;
  }

  .single-article-card-page .article-shell-narrow {
    width: min(900px, calc(100% - 28px));
  }

  .single-article-card-page .article-card:not(.toc-card) {
    padding: 24px 20px;
  }

  .single-article-card-page .article-shell-narrow > .section#section-1 .article-card,
  .single-article-card-page .article-shell-narrow > .section:first-of-type:not(#toc) .article-card {
    border-radius: 20px 20px 0 0;
  }

  .single-article-card-page .article-shell-narrow > .section#cta .article-card,
  .single-article-card-page .article-shell-narrow > .section:last-of-type:not(#related) .article-card {
    border-radius: 0 0 20px 20px;
  }

  .single-article-card-page .article-card:not(.toc-card) > div + div {
    margin-top: 28px;
    padding-top: 24px;
  }

  .single-article-card-page .article-card:not(.toc-card) h2 {
    font-size: clamp(1.22rem, 5.4vw, 1.56rem);
  }

  .single-article-card-page .article-card:not(.toc-card) p {
    font-size: 1rem;
    line-height: 1.92;
  }

  .insight-toolbar {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .problem-card {
    grid-template-columns: 1fr;
  }

  .problem-visual {
    aspect-ratio: 4 / 3;
    grid-row: auto;
  }

  .reason-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    grid-template-columns: 1fr;
  }

  .pricing-unit-grid {
    grid-template-columns: 1fr;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.85;
  }

  .top-wordmark {
    top: 22px;
    letter-spacing: 0.1em;
  }

  body.is-top .top-wordmark {
    letter-spacing: 0.13em;
  }

  .menu-toggle {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .site-nav {
    top: 62px;
    right: 12px;
    width: min(220px, calc(100vw - 24px));
  }

  .language-switcher {
    right: 12px;
    bottom: 12px;
    padding: 9px 10px;
    gap: 6px;
  }

  .language-switcher-label {
    display: none;
  }

  .language-switcher-link {
    min-width: 36px;
    padding: 6px 9px;
  }
}

.site-footer {
  max-width: none;
  margin: 84px 0 0;
  padding: 40px 28px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: #6b5848;
  color: rgba(255, 249, 240, 0.92);
  font-size: 0.88rem;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.1fr) minmax(180px, 0.7fr);
  gap: 18px 24px;
}

.site-footer p {
  margin: 0;
}

.site-footer-brand {
  display: grid;
  gap: 8px;
}

.site-footer-kicker {
  font-family: "Playfair Display", "Noto Sans JP", serif;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
  color: rgba(255, 244, 231, 0.9);
}

.site-footer-copy {
  font-family: "Playfair Display", "Noto Sans JP", serif;
  font-size: clamp(1.28rem, 2.2vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: rgba(255, 249, 240, 0.92);
}

.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  align-content: start;
  gap: 10px 24px;
}

.site-footer-nav a {
  border-bottom: none;
}

.site-footer-meta {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 8px;
}

.site-footer a {
  color: rgba(255, 249, 240, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 249, 240, 0.34);
}

@media (max-width: 760px) {
  .site-footer {
    font-size: 0.82rem;
    margin-top: 68px;
    padding: 28px 14px 34px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
  }

  .site-footer-meta {
    justify-items: start;
  }
}
