@charset "UTF-8";

:root {
  --main: #6f4bb2;
  --main-dark: #4d3185;
  --accent: #d7aa45;
  --accent-light: #fff4d8;
  --line: #06c755;
  --text: #332f3a;
  --muted: #6f6a78;
  --bg: #fbf8ff;
  --white: #ffffff;
  --pink: #f9eef6;
  --border: #e8dff2;
  --shadow: 0 16px 40px rgba(65, 38, 96, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.sp {
  display: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(111,75,178,0.12);
}

.header-inner {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo span {
  font-weight: 800;
  color: var(--main-dark);
  font-size: 20px;
}

.header-cta {
  background: var(--line);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(6,199,85,0.25);
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-line {
  color: #fff;
  background: linear-gradient(135deg, #06c755, #00a844);
  box-shadow: 0 14px 28px rgba(6,199,85,0.28);
}

.btn-large {
  min-width: 340px;
}

/* FV */
.fv {
  position: relative;
  overflow: hidden;
  padding: 76px 0 80px;
  background:
    radial-gradient(circle at 10% 20%, rgba(215,170,69,0.16), transparent 26%),
    radial-gradient(circle at 80% 10%, rgba(111,75,178,0.18), transparent 30%),
    linear-gradient(180deg, #fff, #fbf8ff);
}

.fv::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 520px;
  height: 520px;
  background: rgba(215,170,69,0.12);
  border-radius: 50%;
}

.fv-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow,
.sub {
  color: var(--accent);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.fv h1 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.34;
  color: var(--main-dark);
  letter-spacing: 0.02em;
}

.fv h1 span {
  color: var(--accent);
  background: linear-gradient(transparent 62%, rgba(255,226,143,0.7) 62%);
}

.lead {
  margin: 26px 0 0;
  font-size: 18px;
  color: var(--muted);
}

.fv-cta {
  margin-top: 34px;
}

.note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.fv-visual {
  position: relative;
}

.fv-visual img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: #eadff6;
}

.floating-card {
  position: absolute;
  left: -22px;
  bottom: 34px;
  width: 210px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow);
}

.floating-card span {
  display: inline-block;
  background: var(--accent-light);
  color: #9c6f13;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 800;
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  color: var(--main-dark);
}

.floating-card small {
  color: var(--muted);
}

/* Trust */
.trust-bar {
  background: var(--main-dark);
  color: #fff;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.trust-list div {
  padding: 18px 10px;
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,0.16);
}

.trust-list div:last-child {
  border-right: 0;
}

/* Common Section */
.section {
  padding: 86px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.section-title h2,
.solution-text h2,
.future-box h2,
.final-cta h2 {
  margin: 0;
  color: var(--main-dark);
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.45;
}

.section-title p:not(.sub) {
  color: var(--muted);
  margin: 16px 0 0;
}

/* Worry */
.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.worry-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(65,38,96,0.06);
}

.worry-card span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.worry-card h3 {
  margin: 8px 0 10px;
  font-size: 20px;
  color: var(--main-dark);
}

.worry-card p {
  margin: 0;
  color: var(--muted);
}

/* Solution */
.solution-section {
  background: #fff;
}

.solution-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
}

.solution-image img {
  border-radius: 32px;
  aspect-ratio: 4 / 3.6;
  object-fit: cover;
  background: #eadff6;
  box-shadow: var(--shadow);
}

.solution-text p:not(.sub) {
  color: var(--muted);
}

.solution-text .btn {
  margin-top: 16px;
}

/* Result */
.result-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.result-item {
  background: linear-gradient(180deg, #fff, #fffaf0);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(65,38,96,0.06);
}

.icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--main), var(--accent));
  font-weight: 900;
  font-size: 22px;
}

.result-item h3 {
  margin: 0 0 10px;
  color: var(--main-dark);
}

.result-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Future */
.future-section {
  background:
    linear-gradient(rgba(77,49,133,0.84), rgba(77,49,133,0.84)),
    url("../img/fortune.jpg") center/cover no-repeat;
}

.future-box {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255,255,255,0.96);
  border-radius: 34px;
  padding: 48px;
  box-shadow: var(--shadow);
  text-align: center;
}

.future-box p {
  color: var(--muted);
}

.future-box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 28px 0;
  text-align: left;
}

.future-box li {
  background: var(--pink);
  border-radius: 14px;
  padding: 12px 16px;
  color: var(--main-dark);
  font-weight: 700;
}

.future-box li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  margin-right: 8px;
}

/* Steps */
.steps-section {
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 22px;
}

.step span {
  display: inline-block;
  color: #fff;
  background: var(--main);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 800;
}

.step h3 {
  margin: 16px 0 10px;
  color: var(--main-dark);
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* Voice */
.voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.voice-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(65,38,96,0.06);
}

.voice-card img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  background: #eadff6;
  margin-bottom: 16px;
}

.voice-card h3 {
  margin: 0 0 10px;
  color: var(--main-dark);
  font-size: 18px;
}

.voice-card p {
  color: var(--muted);
  margin: 0 0 12px;
}

.voice-card span {
  color: var(--accent);
  font-weight: 800;
}

/* Service Info */
.service-info-section {
  background: #fff;
}

.info-table {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(65,38,96,0.06);
}

.info-table dl {
  display: grid;
  grid-template-columns: 250px 1fr;
  margin: 0;
  border-bottom: 1px solid var(--border);
}

.info-table dl:last-child {
  border-bottom: 0;
}

.info-table dt {
  background: #f4edfb;
  color: var(--main-dark);
  font-weight: 800;
  padding: 20px;
}

.info-table dd {
  margin: 0;
  padding: 20px;
  color: var(--muted);
}

/* FAQ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 24px;
  color: var(--main-dark);
  font-weight: 800;
  font-size: 17px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.faq-question span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 4px;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  background: var(--main);
  border-radius: 999px;
}

.faq-question span::before {
  width: 18px;
  height: 2px;
  top: 8px;
}

.faq-question span::after {
  width: 2px;
  height: 18px;
  left: 8px;
}

.faq-item.is-open .faq-question span::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  padding: 88px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(215,170,69,0.22), transparent 28%),
    linear-gradient(135deg, #fff7df, #f4edfb);
}

.final-cta-inner {
  text-align: center;
}

.final-cta-inner p:not(.sub):not(.note) {
  color: var(--muted);
  margin: 18px 0 30px;
}

/* Footer */
.site-footer {
  background: #2f2542;
  color: rgba(255,255,255,0.8);
  padding: 46px 0 100px;
  font-size: 13px;
}

.footer-inner {
  display: grid;
  gap: 20px;
}

.footer-info p {
  margin: 4px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  text-decoration: underline;
}

.disclaimer {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.copyright {
  color: rgba(255,255,255,0.55);
}

/* Fixed CTA */
.fixed-cta {
  display: none;
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .fv-inner,
  .solution-inner {
    grid-template-columns: 1fr;
  }

  .worry-grid,
  .voice-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .result-list,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .fv-visual {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .inner {
    width: min(100% - 28px, 1120px);
  }

  .sp {
    display: block;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    height: 62px;
  }

  .logo span {
    font-size: 17px;
  }

  .header-cta {
    display: none;
  }

  .fv {
    padding: 42px 0 54px;
  }

  .fv h1 {
    font-size: 31px;
  }

  .lead {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    font-size: 17px;
    padding: 14px 20px;
  }

  .btn-large {
    min-width: 0;
  }

  .floating-card {
    left: 12px;
    bottom: 14px;
    width: 190px;
  }

  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-list div {
    border-bottom: 1px solid rgba(255,255,255,0.16);
  }

  .section {
    padding: 62px 0;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .worry-grid,
  .result-list,
  .steps,
  .voice-list {
    grid-template-columns: 1fr;
  }

  .worry-card,
  .future-box,
  .voice-card {
    padding: 24px;
  }

  .future-box ul {
    grid-template-columns: 1fr;
  }

  .info-table dl {
    grid-template-columns: 1fr;
  }

  .info-table dt {
    padding: 16px 18px 8px;
  }

  .info-table dd {
    padding: 8px 18px 18px;
  }

  .final-cta {
    padding: 64px 0 84px;
  }

  .fixed-cta {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 200;
  }

  .fixed-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 999px;
    background: var(--line);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  }
}
