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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  background-color: #fefefe;
  color: #1a1a2e;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: #4db6ac;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #80cbc4;
}

ol {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: inline;
  }
}

.anim-target {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e6e6ef;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header__logo-mark {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #4db6ac;
}
.site-header__logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
}
.site-header__tagline {
  font-size: 0.78rem;
  color: #8c8ca1;
  letter-spacing: 0.06em;
}

.hero {
  position: relative;
  padding: 120px 0 100px;
  background: url("../images/hero.png") center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero__lead {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.6;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero__body {
  font-size: 1.05rem;
  color: #4a4a68;
  line-height: 2;
}
.hero__line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #4db6ac, #26a69a);
  margin: 40px auto 0;
  border-radius: 2px;
}
.hero__bg-shape {
  display: none;
}

.services {
  padding: 80px 0;
  background: #ffffff;
}
.services__heading {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #4db6ac;
  text-align: center;
  margin-bottom: 48px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 767px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 360px;
    margin: 0 auto;
  }
}
.services__card {
  text-align: center;
  padding: 25px 24px 25px;
  border-radius: 16px;
  background: #fefefe;
  border: 1px solid #e6e6ef;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s;
}
.services__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(77, 182, 172, 0.1), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(77, 182, 172, 0.2);
}
.services__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: #4db6ac;
  background: linear-gradient(135deg, rgba(77, 182, 172, 0.08), rgba(38, 166, 154, 0.06));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: transform 0.35s;
}
.services__card:hover .services__icon {
  transform: scale(1.1);
}
.services__icon svg {
  width: 100%;
  height: 100%;
}
.services__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.5;
}
.services__desc {
  font-size: 0.85rem;
  color: #8c8ca1;
  line-height: 1.7;
}

.cta-section {
  padding: 64px 0;
  background: #f4f4f8;
}
.cta-section .cta-layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.cta-section .cta-layout .company-info h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #1a1a2e;
  letter-spacing: 0.04em;
  position: relative;
}
.cta-section .cta-layout .company-info h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 8px;
  background: linear-gradient(90deg, #4db6ac, #26a69a);
  border-radius: 2px;
}
.cta-section .cta-layout .company-info .site-footer__logo {
  color: #1a1a2e;
}
.cta-section .cta-layout .company-info .site-footer__name {
  color: #1a1a2e;
}
.cta-section .cta-layout .company-info .site-footer__subtitle {
  color: #4a4a68;
}
.cta-section .cta-layout .company-info .site-footer__label {
  color: #8c8ca1;
}
.cta-section .cta-layout .company-info .site-footer__contact,
.cta-section .cta-layout .company-info .site-footer__address {
  color: #1a1a2e;
}
.cta-section .cta-layout .hachioji h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #1a1a2e;
  letter-spacing: 0.04em;
  position: relative;
}
.cta-section .cta-layout .hachioji h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 8px;
  background: linear-gradient(90deg, #4db6ac, #26a69a);
  border-radius: 2px;
}
.cta-section .cta-layout .hachioji .google_maps iframe {
  width: 100%;
  max-width: 100%;
}
.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 56px;
  background: linear-gradient(135deg, #00897b 0%, #4db6ac 60%, #80cbc4 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.cta-section__inner::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -100px;
  right: -60px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .cta-section__inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }
}
.cta-section__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.cta-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 32px;
  background: #ffffff;
  color: #4db6ac;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 60px;
  letter-spacing: 0.04em;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-section__btn:hover {
  color: #4db6ac;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.flow-section {
  padding: 80px 0 96px;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 56px;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: 0.04em;
}
.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #4db6ac, #26a69a);
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #4db6ac, #26a69a, transparent);
  border-radius: 1px;
}
@media (max-width: 767px) {
  .timeline::before {
    left: 19px;
  }
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
}
.step-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 767px) {
  .step-card {
    gap: 16px;
    padding: 20px 0;
  }
}
.step-card__marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #4db6ac;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}
.step-card__marker span {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #4db6ac;
  transition: color 0.3s;
}
@media (max-width: 767px) {
  .step-card__marker {
    width: 40px;
    height: 40px;
  }
  .step-card__marker span {
    font-size: 1rem;
  }
}
.step-card:hover .step-card__marker {
  background: #4db6ac;
  border-color: #4db6ac;
}
.step-card:hover .step-card__marker span {
  color: #ffffff;
}
.step-card__body {
  flex: 1;
  padding: 20px 28px;
  background: #fefefe;
  border: 1px solid #e6e6ef;
  border-radius: 12px;
  transition: box-shadow 0.35s, border-color 0.35s;
}
@media (max-width: 767px) {
  .step-card__body {
    padding: 16px 20px;
  }
}
.step-card:hover .step-card__body {
  box-shadow: 0 8px 32px rgba(77, 182, 172, 0.08);
  border-color: rgba(77, 182, 172, 0.15);
}
.step-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .step-card__title {
    font-size: 1rem;
  }
}
.step-card__desc {
  font-size: 0.93rem;
  color: #4a4a68;
  line-height: 1.85;
}
.step-card__note {
  font-size: 0.82rem;
  color: #8c8ca1;
  margin-top: 6px;
}

.site-footer {
  background: #4db6ac;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
}
.site-footer__logo {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 4px;
}
.site-footer__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}
.site-footer__subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer__label {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}
.site-footer__contact, .site-footer__address {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}
.site-footer__contact a, .site-footer__address a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}
.site-footer__contact a:hover, .site-footer__address a:hover {
  color: #ffffff;
}
.site-footer__copy {
  text-align: center;
  font-size: 0.75rem;
  color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .hero {
    padding: 80px 0 64px;
  }
  .hero__lead {
    font-size: 1.25rem;
  }
  .hero__body {
    font-size: 0.95rem;
  }
  .services {
    padding: 56px 0;
  }
  .cta-section {
    padding: 48px 0;
  }
  .flow-section {
    padding: 56px 0 72px;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .site-header__inner {
    flex-direction: column;
    gap: 4px;
  }
}/*# sourceMappingURL=style.css.map */