:root {
  --yellow: #ffe500;
  --yellow-soft: #fff8c0;
  --bg-alt: #fffde7;
  --orange: #e65100;
  --red: #d32f2f;
  --blue: #1565c0;
  --blue-dark: #0d47a1;
  --green: #2e7d32;
  --text: #222222;
  --muted: #555555;
  --white: #ffffff;
  --border: #eeeeee;
  --soft: #f5f5f5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue);
}

.l-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.l-header__bar {
  display: none;
}

.l-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 4px solid var(--yellow);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.c-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.c-logo__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.c-logo__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.c-logo__sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
  white-space: nowrap;
}

.l-header__contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.l-header__hours {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}

.l-header__tel {
  display: block;
  color: var(--blue-dark);
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.l-nav {
  background: var(--white);
  width: 100%;
  order: 3;
}

.l-nav__list {
  display: flex;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 24px 16px;
  list-style: none;
  overflow-x: auto;
}

.l-nav__list a {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.l-nav__list a:hover {
  color: var(--text);
  border-bottom: 2px solid var(--yellow);
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  border: 0;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

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

.c-btn--primary {
  background: var(--yellow);
  color: var(--text);
}

.c-btn--secondary {
  background: var(--blue-dark);
  color: var(--white);
}

.c-btn--ghost {
  background: var(--white);
  color: var(--blue-dark);
}

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

.p-fv {
  background: var(--bg-alt);
  padding: 0;
}

.p-fv__stage {
  width: 100%;
  height: auto;
  overflow: visible;
  background: var(--blue-dark);
}

.p-fv__visual {
  display: block;
  width: 100%;
  height: auto;
}

.p-fv__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
  vertical-align: top;
}

.p-fv__img--pc {
  display: none;
}

.p-fv__img--sp {
  display: block;
}

.p-fv__copy {
  padding: 80px 24px;
}

.p-fv__label {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.p-fv__label::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  margin-top: 8px;
  background: var(--yellow);
}

.p-fv__title {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.p-fv__body {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
}

.p-fv__meta {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.p-fv__meta a {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.p-fv__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.p-concept {
  padding: 80px 0 64px;
  background: var(--bg-alt);
}

.p-concept__inner {
  max-width: 800px;
}

.p-concept__label,
.p-reserve__kicker,
.p-section__label {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.p-concept__label::after,
.p-reserve__kicker::after,
.p-section__label::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  margin-top: 8px;
  background: var(--yellow);
}

.p-concept__label {
  margin: 0 0 24px;
}

.p-concept__lead {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.p-concept__body {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
}

.p-reserve {
  background: var(--yellow-soft);
  padding: 48px 0;
}

.p-reserve--mid {
  background: var(--yellow-soft);
  border-top: 0;
  border-bottom: 0;
}

.p-reserve__row {
  display: grid;
  gap: 24px;
}

.p-reserve__kicker {
  margin: 0 0 8px;
}

.p-reserve__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.p-reserve__note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.p-reserve__note a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
}

.p-reserve__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.p-section {
  padding: 80px 0;
}

.p-section--alt {
  background: var(--bg-alt);
}

.p-section__label {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.p-section__title {
  margin: 0 0 40px;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.p-about {
  display: grid;
  gap: 40px;
}

.p-about__photo {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 16px;
}

.p-about__photo img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: 90% center;
}

.p-about__points {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.p-about__points li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px 0;
  background: transparent;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
}

.p-about__points li:first-child {
  border-top: 2px solid var(--border);
}

.p-about__points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 24px;
  background: var(--yellow);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.p-about__points h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.p-about__points p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.p-worry__list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: worry;
}

.p-worry__item {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  font-size: 16px;
  counter-increment: worry;
  border-top: 4px solid var(--yellow);
}

.p-worry__item::before {
  content: counter(worry, decimal-leading-zero);
  display: block;
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.p-reason__list,
.p-relief__list {
  display: grid;
  gap: 16px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.p-reason__item,
.p-relief__item {
  margin: 0;
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 32px 24px;
  border-top: 4px solid var(--yellow);
}

.p-reason__item .p-reason__no,
.p-relief__item .p-relief__no {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.p-reason__item h3,
.p-relief__item h3 {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.p-reason__item h3 + p,
.p-relief__item h3 + p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.p-relief__item {
  background: var(--white);
}

.p-solution__text {
  margin: 0 0 32px;
  font-size: 16px;
  color: var(--muted);
}

.p-feature__grid {
  display: grid;
  gap: 16px;
  margin: 0 0 64px;
}

.p-feature__card {
  display: grid;
  gap: 16px;
  background: var(--white);
  border: 0;
  border-radius: 16px;
  padding: 24px;
  border-top: 4px solid var(--yellow);
  transition: transform 0.3s ease;
}

.p-feature__card:hover {
  transform: translateY(-4px);
}

.p-feature__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 120px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--yellow-soft) 0%, var(--yellow) 100%);
  color: var(--text);
  font-size: 40px;
  font-weight: 700;
}

.p-feature__no {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.p-feature__card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.p-feature__card > div p {
  margin: 0;
  color: var(--muted);
}

.p-items {
  padding-top: 16px;
}

.p-items__title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.p-items__lead {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 16px;
}

.p-items__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-items__grid li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  padding: 24px 16px;
  background: var(--bg-alt);
  border-radius: 8px;
  text-align: center;
  border-top: 4px solid var(--yellow);
}

.p-items__grid span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.p-items__grid small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.p-items__note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.p-cases__grid {
  display: grid;
  gap: 16px;
}

.p-cases__card {
  margin: 0;
  background: var(--white);
  border-radius: 8px;
  padding: 32px 24px;
  border-top: 4px solid var(--yellow);
}

.p-cases__card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.p-cases__card p::before {
  content: "“";
  display: block;
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 40px;
  line-height: 1;
}

.p-flow__list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-flow__item {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 32px 24px;
  border-top: 4px solid var(--yellow);
}

.p-flow__step {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.p-flow__item h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

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

.p-faq details {
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
  padding: 20px 0;
  margin: 0;
}

.p-faq details:first-of-type {
  border-top: 2px solid var(--border);
}

.p-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
}

.p-faq details p {
  margin: 16px 0 0;
  color: var(--muted);
}

.p-form {
  background: var(--blue-dark);
  color: var(--white);
}

.p-form .p-section__label,
.p-form .p-section__title {
  color: var(--white);
}

.p-form > .l-inner > p {
  margin: 0 0 32px;
}

.p-form__card {
  background: var(--white);
  color: var(--text);
  border-radius: 8px;
  padding: 40px 24px;
  border-top: 4px solid var(--yellow);
}

.c-field {
  margin: 0 0 24px;
}

.c-field label {
  display: block;
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 14px;
}

.c-field input,
.c-field select,
.c-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  background: var(--bg-alt);
}

.c-field textarea {
  min-height: 120px;
  resize: vertical;
}

.c-check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
}

.c-check input {
  margin-top: 4px;
}

.p-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.p-privacy {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

.l-footer {
  background: var(--text);
  color: var(--white);
  padding: 64px 0;
  font-size: 14px;
  border-top: 4px solid var(--yellow);
}

.l-footer a {
  color: var(--white);
}

.l-footer__name {
  margin: 0 0 16px;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.l-footer p {
  margin: 0 0 8px;
  color: #cccccc;
}

.l-footer__grid {
  display: grid;
  gap: 32px;
}

.p-fixed {
  display: none;
}

.p-thanks {
  padding: 80px 0;
  text-align: center;
}

.p-thanks h1 {
  margin: 0 0 16px;
  font-size: 28px;
}

.p-area {
  padding: 80px 0;
  background: var(--yellow-soft);
  text-align: center;
}

.p-area__lead {
  margin: 0 auto;
  max-width: 640px;
  font-size: 18px;
}

.p-bring {
  text-align: left;
}

.p-bring__lead {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
}

.p-bring__address {
  margin: 0 0 32px;
  padding: 24px;
  background: var(--bg-alt);
  border-top: 4px solid var(--yellow);
  border-radius: 8px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.p-bring__visual {
  margin: 0;
}

.p-bring__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .c-btn,
  .p-feature__card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 768px) {
  .l-header__inner {
    flex-wrap: wrap;
    max-width: 1200px;
    align-items: center;
    gap: 12px 24px;
    padding: 12px 24px 8px;
  }

  .l-header__contact {
    margin-left: auto;
  }

  .l-header__tel {
    font-size: 24px;
  }

  .l-header__contact .c-btn {
    min-height: 44px;
    padding: 8px 24px;
    font-size: 14px;
  }

  .l-nav {
    width: 100%;
    flex: none;
    order: 3;
    border-top: 1px solid var(--border);
  }

  .l-nav__list {
    padding: 8px 0 4px;
    gap: 16px;
    justify-content: flex-start;
  }

  .p-fv__img--sp {
    display: none;
  }

  .p-fv__img--pc {
    display: block;
  }

  .p-fv__copy {
    padding: 96px 24px 80px;
  }

  .p-fv__title {
    font-size: 40px;
  }

  .p-reserve__row {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .p-about {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .p-section__title {
    font-size: 36px;
  }

  .p-worry__list,
  .p-cases__grid {
    grid-template-columns: 1fr 1fr;
  }

  .p-reason__list,
  .p-relief__list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .p-feature__grid {
    grid-template-columns: 1fr;
  }

  .p-feature__card {
    grid-template-columns: 240px 1fr;
    align-items: center;
    padding: 24px;
  }

  .p-feature__visual {
    min-height: 160px;
  }

  .p-items__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .p-flow__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .l-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .p-form__card {
    padding: 48px 40px;
  }

  .p-fixed {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    right: 16px;
    bottom: 24px;
    left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    z-index: 30;
  }
}

@media (max-width: 767px) {
  .l-header__bar,
  .l-nav,
  .l-header__hours,
  .l-header__contact .c-btn {
    display: none;
  }

  .l-header__inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .p-fv__copy {
    padding: 48px 16px 80px;
  }

  .l-inner,
  .l-header__inner,
  .l-nav__list {
    padding-left: 16px;
    padding-right: 16px;
  }

  .p-concept {
    padding: 48px 0 40px;
  }

  .p-concept__lead {
    font-size: 24px;
  }

  .p-section {
    padding: 56px 0;
  }

  .p-section__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .p-reserve {
    padding: 32px 0;
  }

  .p-fixed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 8px;
    background: var(--white);
    border-top: 4px solid var(--yellow);
    z-index: 20;
  }

  .p-fixed .c-btn {
    width: 100%;
    min-height: 48px;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
  }
}
