@charset "utf-8";

:root {
  --color-bg: #ffffff;
  --color-title: #0D766E;
  --color-sub: #DCC8A6;
  --color-text: #333333;
  --color-border: #e8e2d6;
  --color-accent: #0D766E;
  --color-accent-text: #ffffff;
  --container: 1200px;
  --header-height: 130px;
  --logo-height: 95px;
  --radius: 18px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
  margin-inline: auto;
}

.center {
  text-align: center;
}

main {
  padding-top: calc(var(--header-height) + 24px);
}

section {
  padding: 72px 0;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 16px;
  color: var(--color-title);
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.25;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.4;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.5;
  font-weight: 700;
}

 p {
  margin: 0 0 1.2em;
}

.section-head {
  margin-bottom: 32px;
  text-align: center;
}

.section-head p {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

div.narrow p{
  text-align: center;
}

.section-kicker {
  display: inline-block;
  text-align:center;
  margin-bottom: 10px;
  color: var(--color-sub);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 760px;
}

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #f1f1f1;
  backdrop-filter: blur(10px);
}

.lp-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lp-logo img {
  width: auto;
  height: var(--logo-height);
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.88;
}

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

.btn--secondary {
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-title);
}

.btn-report-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-accent-text);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn-report-link:hover {
  opacity: 0.88;
}

.btn-report-wrap {
margin-top:30px;
  text-align: center;
}

.lp-fv__grid,
.lp-story__grid,
.card-grid {
  display: grid;
  gap: 24px;
}

.lp-fv__grid {
  align-items: center;
}

.lp-fv__lead {
  font-size: 1.1rem;
}

.lp-fv__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.lp-fv__notes {
  margin: 20px 0 0;
  padding-left: 1.2em;
  color: #666;
}

.card {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.card h3{
text-align:center;
}

.card--amount h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.card--amount p{
text-align:center;
}

.lp-section--soft {
  background: #fcfbf8;
}

.lp-section--accent {
  background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
}

.lp-inline-link {
  margin-top: 24px;
}

.lp-inline-link a {
  color: var(--color-title);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  
}

.emphasis-text {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.7;
  font-weight: 700;
  color: var(--color-title);
}

.lp-cta-final {
  padding-bottom: 88px;
}

.lp-footer {
  border-top: 1px solid #efefef;
  background: #fff;
  padding: 48px 0 36px;
}

.lp-footer__inner {
  display: grid;
  gap: 20px;
  align-items: center;
}

.lp-footer__text {
  margin: 0;
  font-weight: 700;
  color: var(--color-title);
}

.lp-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-footer__nav li + li {
  margin-top: 8px;
}

.lp-footer__logo img {
  width: auto;
  max-height: 150px;
  object-fit: contain;
  margin:0 auto;
}

/* fade in */
.fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  :root {
    --header-height: 80px;
    --logo-height: 50px;
  }

  section {
    padding: 56px 0;
  }

  .lp-fv__actions .btn {
    width: 100%;
  }
  
.centerwordssp{
text-align:center;
}

#centerwordsspre{
text-align:center;
}

}

@media (min-width: 641px) and (max-width: 980px) {
  :root {
    --header-height: 80px;
    --logo-height: 60px;
  }

  .lp-fv__grid,
  .lp-story__grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
span.danrakusp{
display:none;
}

.centerwordssp{
text-align:center;
}

#centerwordsspre{
text-align:center;
}

}

@media (min-width: 981px) {
  .lp-fv__grid,
  .lp-story__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .card-grid--3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .card-grid--3 .card {
    width: min(320px, 100%);
  }
  
span.danrakusp{
display:none;
}

}


