@charset "UTF-8";
/* =========================
  SCSS（スマホ対応）
  画像背景：.sec--bgImage の --bg 変数で指定
  グラデーション背景：.sec--bgGrad の --grad 変数で指定
========================= */
/* =========================
  背景画像：PC/SP 切り替え対応版（更新点のみ）
  既存SCSSの「各セクションの背景指定」を置き換えてください
========================= */
a {
  text-decoration: none;
}

/* 各セクションの背景指定（PC/SP） */
.sec-thought {
  --bg-pc: url("/assets/img/bg.png");
  --bg-sp: url("/assets/img/bg_sp.png");
}

.sec-profile {
  --bg-pc: url("/assets/img/bg_profile.png");
  --bg-sp: url("/assets/img/bg_profile_sp.png");
}

.sec-support {
  --bg-pc: url("/assets/img/bg_support.png");
  --bg-sp: url("/assets/img/bg_support_sp.png");
}

.sec-connect {
  --bg-pc: url("/assets/img/bg_connect.png");
  --bg-sp: url("/assets/img/bg_connect_sp.png");
}

:root {
  --blue: #0b2a62;
  --orange: #f2a034;
  --line: rgba(11, 42, 98, 0.18);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.lp {
  color: #0c1630;
  background: #fff;
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.7;
}

.sec {
  position: relative;
  padding: 72px 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .sec {
    padding: 56px 16px;
  }
}
.sec__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sec__head {
  margin-bottom: 28px;
}
.sec__head--center {
  text-align: center;
}
.sec__title {
  margin: 0;
  font-size: 3rem;
  letter-spacing: 0.06em;
  color: var(--blue);
  display: inline-block;
  border-bottom: 5px solid var(--orange);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .sec__title {
    font-size: 26px;
  }
}
.sec__subtitle {
  margin: 10px 0 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
}

/* 背景：画像 */
.sec--bgImage {
  background: var(--bg-pc) center/cover no-repeat;
}

@media (max-width: 768px) {
  .sec--bgImage,
  .sec--sp_bgImage {
    background: var(--bg-sp) center/cover no-repeat;
    background-attachment: local !important;
  }
}
/* 背景：グラデーション */
.sec--bgGrad {
  background: var(--grad);
}

/* 各セクションの背景指定（ここだけ画像差し替え） */
.sec-thought {
  --bg: url("/assets/img/bg.png");
  background-attachment: fixed;
}

.sec-profile {
  --bg: url("/assets/img/bg_profile.png");
  background-attachment: fixed;
}

.sec-connect {
  --bg: url("/assets/img/bg_connect.png");
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .sec-connect {
    background-position-x: 60%;
  }
}

.sec-goal {
  --grad: linear-gradient(180deg, #FFFFFF, #FFFAD4);
}

.sec-data {
  --grad: linear-gradient(180deg, #FFFAD4, #FFFFFF);
  padding-bottom: 60px;
}

/* 共通：本文 */
.prose {
  max-width: 860px;
  margin: auto;
}
.prose p {
  font-size: 1.2rem;
  line-height: 32px;
}
.prose span {
  color: var(--orange);
}
.prose__em {
  margin-top: 18px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  border-top: 2px solid var(--orange);
  margin-top: 32px;
  padding-top: 48px;
}
.prose__em_title {
  font-size: 2rem !important;
  margin-top: 18px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
}

.siteHeader {
  padding: 16px;
  margin: auto;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 99;
}
.siteHeader__inner {
  max-width: 1200px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  gap: 12px;
}
.siteHeader__logo {
  max-height: 48px;
  display: block;
}
.siteHeader {
  /* JSなし：チェックボックスは見えないように */
}
.siteHeader__navToggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}
.siteHeader {
  /* ハンバーガーボタン（PCは非表示、SPで表示） */
}
.siteHeader__hamburger {
  display: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .siteHeader__hamburger {
    display: inline-flex;
  }
}
.siteHeader__hamburgerText {
  font-size: 12px;
  font-weight: 700;
  color: #0c1630;
  letter-spacing: 0.06em;
}
.siteHeader__hamburgerLines {
  width: 22px;
  height: 14px;
  position: relative;
  display: inline-block;
}
.siteHeader__hamburgerLines::before, .siteHeader__hamburgerLines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0c1630;
  border-radius: 999px;
  transition: transform 0.2s ease, top 0.2s ease;
}
.siteHeader__hamburgerLines::before {
  top: 2px;
}
.siteHeader__hamburgerLines::after {
  top: 10px;
}
.siteHeader {
  /* 背景のグレーアウト（SPのみ） */
}
.siteHeader__backdrop {
  display: none;
}
@media (max-width: 768px) {
  .siteHeader__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, visibility 0.18s ease;
  }
}
.siteHeader .siteNav__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.siteHeader .siteNav__item {
  padding-right: 15px;
}
.siteHeader .siteNav__item a {
  color: #0c1630;
  text-decoration: none;
}

/* =========================
  SPドロワー化（チェック状態で開く）
========================= */
@media (max-width: 768px) {
  .siteHeader .siteNav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 95;
    padding: 14px 16px 18px;
    border-top: 1px solid rgba(12, 22, 48, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }
  .siteHeader .siteNav__list {
    flex-direction: column;
    gap: 8px;
  }
  .siteHeader .siteNav__item {
    padding-right: 0;
  }
  .siteHeader .siteNav__item a {
    display: block;
    padding: 12px 12px;
    border: 1px solid rgba(12, 22, 48, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
  }
  .siteHeader {
    /* 開いた状態 */
  }
  .siteHeader__navToggle:checked ~ .siteNav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .siteHeader__navToggle:checked ~ .siteHeader__backdrop {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .siteHeader {
    /* ハンバーガーが「×」になる */
  }
  .siteHeader__navToggle:checked + .siteHeader__hamburger .siteHeader__hamburgerLines::before {
    top: 6px;
    transform: rotate(45deg);
  }
  .siteHeader__navToggle:checked + .siteHeader__hamburger .siteHeader__hamburgerLines::after {
    top: 6px;
    transform: rotate(-45deg);
  }
}
/* ついでに：固定ヘッダー分だけ上が隠れない対策（任意） */
html {
  scroll-padding-top: 88px;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.hero__section {
  padding: 0 !important;
  margin: auto;
}

.hero_top {
  padding-top: 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 768px) {
  .hero_top {
    width: 96%;
    flex-direction: column;
  }
}
.hero_top .hero_top__textarea {
  width: 45%;
  max-width: 650px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 40px;
}
@media (max-width: 768px) {
  .hero_top .hero_top__textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 40px;
  }
}
.hero_top .hero_top__textarea .copy_h2 {
  background-color: var(--orange);
  color: var(--blue);
  font-size: 1rem;
  height: 40px;
  width: 128px;
  border-radius: 20px;
  line-height: 40px;
}
.hero_top .hero_top__textarea h1 {
  font-size: 3rem;
  text-align: left;
  color: var(--blue);
  line-height: 3.5rem;
}
.hero_top .hero_top__textarea .hero__buttonarea {
  display: flex;
  gap: 26px;
}
.hero_top .hero_top__textarea .hero__buttonarea .hero__goal {
  width: auto;
  border-radius: 6px;
  background-color: var(--blue);
  color: #fff;
  padding: 16px 24px;
  line-height: 16px;
}
.hero_top .hero_top__textarea .hero__buttonarea .hero__profile {
  width: auto;
  border-radius: 6px;
  border: 1px solid var(--blue);
  background-color: #fff;
  padding: 16px 24px;
  line-height: 16px;
  color: var(--blue);
}
@media (max-width: 768px) {
  .hero_top .hero_top__textarea p {
    font-size: 0.8rem;
  }
  .hero_top .hero_top__textarea .hero__buttonarea {
    justify-content: center;
  }
}
.hero_top img {
  width: 45%;
}
@media (max-width: 768px) {
  .hero_top img {
    padding-top: 40px;
    width: 100%;
  }
}

/* 目指す春日部 */
.goal__wrap {
  position: relative;
  margin-top: 100px;
}

.goal__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .goal__cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.goalCard {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 25px;
  border-left: 5px solid var(--blue);
  min-height: 220px;
}
@media (max-width: 768px) {
  .goalCard {
    min-height: auto;
  }
}
.goalCard__title--blue {
  margin: 0 0 10px;
  font-size: 2rem;
  color: var(--blue);
  gap: 10px;
  align-items: center;
  text-align: center;
}
.goalCard__title--orange {
  margin: 0 0 10px;
  font-size: 2rem;
  color: var(--orange);
  gap: 10px;
  align-items: center;
  text-align: center;
}
.goalCard__badge--blue {
  width: 96px;
  height: 96px;
  border-radius: 50px;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: var(--blue);
  font-size: 60px;
  line-height: 60px;
  color: var(--orange);
  margin-bottom: 24px;
}
.goalCard__badge--orange {
  width: 96px;
  height: 96px;
  border-radius: 50px;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: var(--orange);
  font-size: 60px;
  line-height: 60px;
  color: var(--blue);
  margin-bottom: 24px;
}
.goalCard__text {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(12, 22, 48, 0.78);
}
.goalCard__sab_title {
  font-size: 1.8rem;
}
.goalCard__sab_title span {
  color: var(--blue);
}
.goalCard__sab_title--orange {
  font-size: 2rem;
  color: var(--orange);
}
.goalCard--orange {
  border-color: rgba(242, 160, 52, 0.35);
}
.goalCard--orange .goalCard__badge {
  background: var(--orange);
}
.goalCard__ul--blue {
  text-align: left;
}
.goalCard__ul--blue li span {
  font-size: 14px;
}
.goalCard__ul--blue li::marker {
  color: var(--blue);
}
.goalCard__ul--orange {
  text-align: left;
}
.goalCard__ul--orange li span {
  font-size: 14px;
}
.goalCard__ul--orange li::marker {
  color: var(--orange);
}

.goal__chara {
  position: absolute;
  right: 6%;
  top: -35px;
  width: 30%;
  pointer-events: none;
}
.goal__chara img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .goal__chara {
    position: static;
    width: 140px;
    margin: 18px auto 0;
  }
}

/* プロフィール */
.profile__wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .profile__wrap {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.profile__panel {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  margin: 130px 0px;
  max-width: 740px;
}
@media (max-width: 768px) {
  .profile__panel {
    margin: 40px 10px;
  }
}

.profile__dl {
  margin: 0;
}

.profile__row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(11, 42, 98, 0.18);
}
.profile__row:last-child {
  border-bottom: 0;
}
.profile__row dt {
  font-weight: 800;
  color: var(--blue);
  text-align: left;
}
.profile__row dd {
  margin: 0;
  color: rgba(12, 22, 48, 0.78);
  text-align: left;
}

.profile__chara {
  width: 100%;
  pointer-events: none;
}
.profile__chara img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .profile__chara {
    width: 160px;
    margin-left: auto;
  }
}

/* 数字で見る春日部 */
.data__lead {
  max-width: 800px;
  margin: 0 auto 70px;
  padding: 32px 32px 10px 32px;
  background: #FEF2F2;
  border-left: 4px solid #FB2C36;
  border-radius: 10px;
}
.data__lead p {
  margin: 0;
  color: #FB2C36;
  font-size: 0.9rem;
  text-align: left;
}

.data__note {
  margin: 0;
  display: flex;
  align-items: center;
}
.data__note p {
  font-size: 1.5rem;
  text-align: left;
  color: #FB2C36;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 768px) {
  .data__note p {
    font-size: 1.1rem;
  }
}
.data__note img {
  width: 32px;
  height: 32px;
  padding-right: 20px;
}

.data__graphs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--orange);
}
@media (max-width: 768px) {
  .data__graphs {
    grid-template-columns: 1fr;
  }
}

.graph {
  margin: 0;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px;
}
.graph img {
  width: 100%;
  height: auto;
  display: block;
}

.data__cta {
  text-align: center;
  margin-top: 22px;
}

.data__ctaText {
  font-size: 2rem;
  margin: 40px 0 40px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.06em;
}

/* 応援するには（すべて画像） */
.sec-support {
  padding: 64px 16px;
}
@media (max-width: 768px) {
  .sec-support {
    padding: 52px 16px;
  }
}

.support__img {
  max-width: 920px;
  margin: 100px auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.1));
}
.support__img img {
  width: 100%;
  height: auto;
  display: block;
}

.support__chara {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 190px;
  pointer-events: none;
}
.support__chara img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .support__chara {
    position: static;
    transform: none;
    width: 150px;
    margin: 14px 0 0 auto;
  }
}

/* つながる */
.connect__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 680px;
  margin: 0 auto;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--orange);
}
@media (max-width: 768px) {
  .connect__grid {
    grid-template-columns: 1fr;
  }
}

.snsCard {
  display: grid;
  align-items: center;
  box-shadow: var(--shadow);
}
.snsCard img {
  width: 100%;
}
.snsCard__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}
.snsCard__text {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.connect__mail, .connecttel {
  width: 30%;
}
@media (max-width: 768px) {
  .connect__mail, .connecttel {
    width: 100%;
  }
}
.connect__contact {
  margin: 22px auto 0;
  max-width: 680px;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .connect__contact {
    flex-direction: column;
    align-items: center;
  }
}

.connect__snstitle,
.connect__contactTitle {
  margin: 64px 12px;
  color: var(--blue);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  margin: 6px;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
}
.btn--ghost {
  color: var(--blue);
}

.p-footer p {
  color: var(--blue);
}
.p-footer img {
  width: 100%;
}
.p-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 16px 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.2fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) {
  .p-footer__inner {
    padding: 34px 16px 24px;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}
.p-footer {
  /* 左 */
}
.p-footer__name {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.06em;
}
.p-footer__role {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.p-footer__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(11, 42, 98, 0.85);
}
.p-footer {
  /* 中 */
}
.p-footer__heading {
  margin: 0 0 12px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (max-width: 768px) {
  .p-footer__heading {
    text-align: left;
  }
}
.p-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  justify-items: center;
}
@media (max-width: 768px) {
  .p-footer__links {
    justify-items: start;
  }
}
.p-footer__links a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 14px;
}
.p-footer__links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-footer__links a:focus-visible {
  outline: 2px solid rgba(11, 42, 98, 0.35);
  outline-offset: 3px;
  border-radius: 6px;
}
.p-footer {
  /* 右：バッジ */
}
.p-footer__badge {
  margin-left: auto;
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .p-footer__badge {
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.p-footer__badgeCatch {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
.p-footer__badgeLogo {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .p-footer__badgeLogo {
    width: 160px;
  }
}
.p-footer__badgeSlogan {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--orange);
}
.p-footer__badgeCopy {
  margin: 0;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: rgba(11, 42, 98, 0.9);
}
.p-footer {
  /* 下部帯 */
}
.p-footer__bottom {
  border-top: 1px solid var(--blue);
  padding: 18px 16px 22px;
}
.p-footer__bottomInner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.p-footer__copy {
  margin: 0 0 6px;
  font-size: 12px;
  color: rgba(11, 42, 98, 0.85);
}
.p-footer__note {
  margin: 0;
  font-size: 12px;
  color: rgba(11, 42, 98, 0.75);
}
.p-footer {
  /* SPでの並び微調整（必要なら） */
}
@media (max-width: 768px) {
  .p-footer__col--right {
    order: 3;
    grid-column: 1/-1;
  }
}/*# sourceMappingURL=style.css.map */