:root {
  --color-primary: #ff8ab3;
  --color-primary-dark: #e06090;
  --color-accent: #6cd2d4;
  --color-bg-blue: #c6f0f9;
  --color-bg-gray: #f8f9fa;
  --color-bg-white: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #666666;
  --color-text-sub: #333333;
  --color-border: #f0f4f8;
  --color-border-hover: #56e0ff;
  --color-border-blue: #d0e8f0;

  --font-body: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 100px;
  --space-3xl: 120px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.03);
  --shadow-pink: 0 4px 16px rgba(255, 138, 179, 0.3);
  --shadow-blue: 0 4px 16px rgba(66, 103, 223, 0.3);

  --container-max: 1040px;
  --header-height: 60px;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: var(--header-height);
}

ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.bg-blue {
  background-color: var(--color-bg-blue);
}
.bg-gray {
  background-color: var(--color-bg-gray);
}
.bg-white {
  background-color: var(--color-bg-white);
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  letter-spacing: 0.05em;
}

.cta-wrapper {
  text-align: center;
  margin: var(--space-xl);
}

.btn-pink {
  font-family: "Noto Sans JP", sans-serif;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 16px 100px;
  border: var(--color-primary) solid 2px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-pink);
  transition:
    background-color 0.3s ease-in-out,
    color 0.3s ease-in-out,
    box-shadow 0.3s ease;
}

.btn-pink:hover {
  background-color: white;
  color: var(--color-primary);
  border: var(--color-text-sub) solid 2px;
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn-pink:active {
  transform: translateY(0);
}

.btn-news-more {
  font-family: "Noto Sans JP", sans-serif;
  background: linear-gradient(to bottom, #85b5ff, #9cdfff);
  color: #ffffff;
  padding: 16px 100px;
  border-radius: var(--radius-full);
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  transition:
    background-color 0.3s ease-in-out,
    color 0.3s ease-in-out,
    box-shadow 0.3s ease;
}

.btn-news-more:hover {
  background: white;
  color: #85b5ff;
  border: var(--color-text-sub) solid 2px;
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn-news-more:active {
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}




/* ── グラデーションボタン：ピンク ── */
.btn-grad-pink {
  font-family: "Noto Sans JP", sans-serif;
  background: linear-gradient(135deg, #ff8ab3 0%, #ff6b9d 50%, #e06090 100%);
  position: relative;
  z-index: 0;
  overflow: hidden;
  color: #fff;
  padding: 16px 48px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.35);
  transition:
    box-shadow 0.5s ease,
    transform 0.3s ease;
}

.btn-grad-pink::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #e06090 0%, #d44f80 50%, #c04070 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: inherit;
}

.btn-grad-pink:hover::after {
  opacity: 1;
}

.btn-grad-pink:hover {
  box-shadow: 0 6px 24px rgba(224, 96, 144, 0.45);
  transform: translateY(-2px);
}

.btn-grad-pink:active {
  transform: translateY(0);
}

.btn-grad-pink--sm {
  padding: 10px 28px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

/* ピンク枠・白背景・ピンク文字 */
.btn-grad-pink--white {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 16px rgba(255, 138, 179, 0.15);
}

.btn-grad-pink--white:hover {
  background: #fff !important;
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 4px 20px rgba(255, 138, 179, 0.25);
}

.btn-grad-pink--white::after {
  display: none;
}

/* ── グラデーションボタン：水色 ── */
.btn-grad-blue {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  padding: 16px 48px;
  border:none;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(133, 181, 255, 0.35);
  background: linear-gradient(135deg, #7ec8f0 0%, #85b5ff 50%, #9cdfff 100%);
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition:
    box-shadow 0.5s ease,
    transform 0.3s ease;
}

.btn-grad-blue:hover {
  box-shadow: 0 6px 24px rgba(106, 154, 232, 0.45);
  transform: translateY(-2px);
}

.btn-grad-blue::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #5ba8d8 0%, #6a9ae8 50%, #7ec8f0 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: inherit;
}

.btn-grad-blue:hover::after {
  opacity: 1;
}

.btn-grad-blue:active {
  transform: translateY(0);
}

/* ボタン横幅統一 */
.btn-grad-pink,
.btn-grad-blue,
.btn-grad-pink--white {
  min-width: 220px;
  text-align: center;
  justify-content: center;
}


@media (max-width: 767px) {
	  /* ボタン横幅統一（SP） */
  .btn-grad-pink,
  .btn-grad-blue,
  .btn-grad-pink--white {
    width: 100%;
    max-width: 240px;
    min-width: 200px;
    padding: 12px 0;
    font-size: 14px;
  }

  .btn-grad-pink--sm {
    padding: 10px 24px;
    font-size: 13px;
    min-width: 160px;
    width: auto;
    max-width: none;
  }
	
}


/* ═══ フッターCTA ═══ */
.top-footer-cta {
  padding: clamp(72px, 10vw, 120px) 0;
  background: linear-gradient(135deg, #5ba8d8 0%, #7ec8f0 30%, #9cdfff 60%, #c6f0f9 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* レンズフレア光源（左上） */
.top-footer-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 70%;
  height: 180%;
  background:
    radial-gradient(
      ellipse 40% 35% at 40% 40%,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.2) 20%,
      rgba(255, 240, 250, 0.1) 35%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 50% at 40% 40%,
      rgba(255, 200, 220, 0.1) 0%,
      rgba(180, 220, 255, 0.06) 40%,
      transparent 65%
    );
  pointer-events: none;
  z-index: 0;
  animation: lensFlare 6s ease-in-out infinite;
}

/* レンズフレア光源（右下） */
.top-footer-cta::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 60%;
  height: 160%;
  background:
    radial-gradient(
      ellipse 35% 30% at 50% 50%,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.12) 20%,
      rgba(255, 180, 220, 0.06) 35%,
      transparent 55%
    );
  pointer-events: none;
  z-index: 0;
  animation: lensFlare 6s ease-in-out infinite 3s;
}

/* 光の筋（ストリーク） */
.top-footer-cta__text::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 40%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 20%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.4) 80%,
    transparent 100%
  );
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
  animation: lensStreak 6s ease-in-out infinite;
  transform: rotate(-8deg);
  transform-origin: center center;
}

.top-footer-cta__text {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: clamp(28px, 5vw, 48px);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.top-footer-cta__accent {
 color: #fff;
  position: relative;
  display: inline-block;
}

.top-footer-cta__accent::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), #fff, rgba(255, 255, 255, 0.2));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6), 0 0 24px rgba(255, 255, 255, 0.3);
  animation: accentGlow 3s ease-in-out infinite;
}

@keyframes accentGlow {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 8px rgba(255, 255, 255, 0.4); }
  50%      { opacity: 1;   box-shadow: 0 0 16px rgba(255, 255, 255, 0.7), 0 0 32px rgba(255, 255, 255, 0.3); }
}

.sp-br {
  display: none;
}
.top-footer-cta__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


@media (max-width: 767px) {
	
	
  .sp-br {
  display: block;
}


  /* フッターCTA */
  .top-footer-cta__btns {
    flex-direction: column;
    align-items: center;
  }

  .top-footer-cta__btns .btn-grad-pink {
    width: 100%;
    max-width: 280px;
  }
  
  .top-footer-cta__text {
line-height:2;
}
	
	
	
  :root {
    --header-height: 50px;
    --space-xl: 48px;
    --space-lg: 32px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section-title {
    font-size: 24px;
    margin-bottom: var(--space-xl);
  }

  .cta-wrapper {
    margin-top: var(--space-md);
  }

  .btn-pink {
    padding: 16px 0;
    width: 100%;
    max-width: 280px;
  }
  .btn-news-more {
    padding: 16px 0;
    width: 100%;
    max-width: 280px;
  }
}
