.student-support-page {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  color: #333;
}

/* ===============================
   ヒーローセクション
=============================== */
.student-support-page .hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 140px 20px 120px;
  text-align: center;
  overflow: hidden;
}

.student-support-page .hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.6), rgba(0,0,50,0.3));
  z-index: 1;
  pointer-events: none;
}

.student-support-page .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.student-support-page .hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.student-support-page .hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.student-support-page .hero-cta {
  display: inline-block;
  background: #0071BB;
  color: white;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(0, 113, 187, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.student-support-page .hero-cta:hover {
  background: #005b9a;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 91, 154, 0.5);
}

/* ===============================
   課題セクション
=============================== */
.student-support-page .problem-section {
  position: relative;
  background-color: #f7f9fc;
  padding: 100px 20px;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
}

.student-support-page .problem-section .container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.student-support-page .problem-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 60px;
}

.problem-clouds {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

.problem-clouds li {
  background: #fff;
  border-radius: 32px;
  padding: 20px 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
  max-width: 260px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.problem-clouds li:nth-child(odd) {
  transform: rotate(-1.5deg);
}

.problem-clouds li:nth-child(even) {
  transform: rotate(1.2deg);
}

.problem-clouds li:hover {
  transform: scale(1.03);
  background: #dde9f5;
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media screen and (max-width: 768px) {
	.student-support-page .hero-title{font-size:2.1rem;}
	.student-support-page .problem-section .section-title{font-size:1.5rem}
  .student-support-page .problem-clouds {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: auto;
  }
  .student-support-page .problem-clouds li {
    position: static;
    max-width: 100%;
    animation: none;
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .student-support-page .problem-list li {
    flex-direction: column;
    gap: 12px;
  }
  .student-support-page .problem-list li::before {
    align-self: flex-start;
  }
}

.student-support-page .problem-transition {
  background: linear-gradient(to bottom right, #f7f9fc 0%, #e6effa 100%);
  padding: 100px 20px 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.student-support-page .problem-transition::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: inherit;
  transform: skewY(3deg);
  transform-origin: bottom left;
  z-index: 0;
}

.student-support-page .problem-transition .container {
  max-width: 960px;
  margin: 0 auto;
  text-align: right;
  position: relative;
  z-index: 1;
}

.student-support-page .transition-copy {
  font-size: 1.6rem;
  font-weight: 600;
  color: #003f75;
  line-height: 1.8;
  margin-right: 4%;
  max-width: 600px;
  text-align: left;
  display: inline-block;
  position: relative;
}

.student-support-page .transition-copy::before {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #0071BB;
  opacity: 0.3;
}

/* ===============================
   選択肢提示セクション（options-section）
=============================== */
/* ===============================
   options-section（選択肢：視覚的に訴えるプロ品質構成）
=============================== */
.student-support-page .options-section {
  background: linear-gradient(to top right, #eef3f8, #ffffff);
  padding: 100px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.student-support-page .options-section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: inherit;
  transform: skewY(-3deg);
  transform-origin: top left;
  z-index: 0;
}

.student-support-page .options-section .section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #003f75;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.student-support-page .option-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.student-support-page .option-item {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 30px 24px;
  flex: 1 1 calc(33% - 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.student-support-page .option-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.student-support-page .option-item .icon {
  width: 106px;
  height: 106px;
  margin-bottom: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.9;
	margin:0 auto;
}

.student-support-page .option-item:nth-child(1) .icon {
  background-image: url('img/club-team.png');
}
.student-support-page .option-item:nth-child(2) .icon {
  background-image: url('img/company-team.png');
}
.student-support-page .option-item:nth-child(3) .icon {
  background-image: url('img/friendly-company.png');
}

.student-support-page .option-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0071BB;
  margin-bottom: 12px;
}

.student-support-page .option-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

@media screen and (max-width: 768px) {
	.student-support-page .options-section .section-title{font-size:1.6rem;}
  .student-support-page .option-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


.student-support-page .why-us-section {
  position: relative;
  background: linear-gradient(145deg, #002b4a, #004a75);
 
  color: #ffffff;
  padding: 140px 20px;
  overflow: hidden;
  isolation: isolate;
}

.student-support-page .why-us-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.student-support-page .why-us-section .section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 100px;
  position: relative;
	color:#fff;
}

.student-support-page .why-us-flow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
  align-items: start;
}

.student-support-page .why-us-step {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  position: relative;
  transform: translateY(0);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.student-support-page .why-us-step:nth-child(2) {
  transform: translateY(-20px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.12);
}

.student-support-page .why-us-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.2);
}

.student-support-page .why-us-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ccc;
  margin-bottom: 24px;
  background-size: cover;
  background-position: center;
}

.student-support-page .why-us-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #aad8ff;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.student-support-page .why-us-step .step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.student-support-page .why-us-step .step-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e5f6ff;
  max-width: 280px;
}

/* 矢印ライン */
.student-support-page .why-us-line {
  position: absolute;
  top: 50%;
  left: 16.6%;
  width: 66.6%;
  height: 2px;
  background: linear-gradient(to right, #46b1ff, #9ddcff);
  z-index: 0;
}

.student-support-page .why-us-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: -6px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #9ddcff;
  border-right: 2px solid #9ddcff;
  transform: rotate(45deg);
}

/* スクロールアニメーション */
@media (prefers-reduced-motion: no-preference) {
  .student-support-page .why-us-step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
  }
  .student-support-page .why-us-step:nth-child(1) {
    animation-delay: 0.1s;
  }
  .student-support-page .why-us-step:nth-child(2) {
    animation-delay: 0.3s;
  }
  .student-support-page .why-us-step:nth-child(3) {
    animation-delay: 0.5s;
  }
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media screen and (max-width: 768px) {
	.student-support-page .why-us-section{padding-top:100px;}
	.student-support-page .why-us-section .section-title{font-size:1.5rem;padding-bottom:50px;}
  .student-support-page .why-us-flow {
    grid-template-columns: 1fr;
  }
  .student-support-page .why-us-step:nth-child(2) {
    transform: translateY(0);
  }
  .student-support-page .why-us-line {
    display: none;
  }
}
.student-support-page .support-section {
  background: #f5faff;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.student-support-page .support-section .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.student-support-page .support-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 100px;
  color: #00345e;
  position: relative;
}

.student-support-page .support-timeline {
  position: relative;
  margin-left: 30px;
  border-left: 3px solid #0071BB;
  padding-left: 30px;
}

.student-support-page .timeline-step {
  position: relative;
  margin-bottom: 60px;
  padding-left: 20px;
}

.student-support-page .step-marker {
  position: absolute;
  left: -45px;
  top: 0;
  width: 36px;
  height: 36px;
  background: #0071BB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 113, 187, 0.3);
}

.student-support-page .step-marker .step-number {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.student-support-page .step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #005B9A;
}

.student-support-page .step-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.student-support-page .support-section .section-title{font-size:1.7rem;}
  .student-support-page .support-timeline {
    border-left: 2px solid #0071BB;
    padding-left: 20px;
    margin-left: 20px;
  }
  .student-support-page .step-marker {
    left: -32px;
    width: 28px;
    height: 28px;
  }
  .student-support-page .step-marker .step-number {
    font-size: 0.85rem;
  }
  .student-support-page .step-content h3 {
    font-size: 1.1rem;
  }
  .student-support-page .step-content p {
    font-size: 0.95rem;
  }
}

.student-support-page .faq-section {
  background-color: #ffffff;
  padding: 100px 20px;
}

.student-support-page .faq-section .section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 60px;
}

.student-support-page .faq-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.student-support-page .faq-list li {
  background: #f9f9f9;
  border-left: 5px solid #0071BB;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 20px 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: background 0.3s ease;
}

.student-support-page .faq-list li:hover {
  background: #eef7fc;
}

.student-support-page .faq-list strong {
  color: #0071BB;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-section {
  background: linear-gradient(to bottom, #f7fbfe, #ffffff);
  padding: 100px 20px;
}

.form-section .section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.form-section .wpcf7 {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-section .wpcf7 input,
.form-section .wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}

.form-section .wpcf7 input[type=\"submit\"] {
  background-color: #0071BB;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.form-section .wpcf7 input[type=\"submit\"]:hover {
  background-color: #005b9a;
  transform: translateY(-2px);
}


.family-support-page .hero-section {
  position: relative;
  background-image: url('/assets/images/family-hero.jpg'); /* 後で差し替え可能 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 20px 140px;
  text-align: center;
  color: white;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  isolation: isolate;
  overflow: hidden;
}

.family-support-page .hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: 0;
}

.family-support-page .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.family-support-page .hero-title {
  font-size: clamp(1.3rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.family-support-page .hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}
.family-support-page .worries-section {
  background: linear-gradient(to bottom, #f4f7fa, #eef2f5);
  padding: 120px 20px;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  isolation: isolate;
}

.family-support-page .worries-section .container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.family-support-page .worries-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #003045;
  letter-spacing: 0.02em;
  margin-bottom: 80px;
  position: relative;
}

.family-support-page .worry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
}

.family-support-page .worry-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.family-support-page .worry-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.family-support-page .worry-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0071BB;
  background: #e3f1fc;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.family-support-page .worry-box p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.family-support-page .transition-section {
  background-color: #e9f0f7; /* 淡いグレイッシュブルー */
  padding: 100px 20px;
  text-align: center;
  position: relative;
  isolation: isolate;
}

.family-support-page .transition-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.family-support-page .transition-message {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
  color: #2a3e50;
  margin: 0 auto;
  position: relative;
  letter-spacing: 0.02em;
  text-align: center;
}

.family-support-page .transition-message::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #0071BB;
  opacity: 0.3;
  margin: 0 auto 30px;
}

@media screen and (max-width: 768px) {
  .family-support-page .transition-message {
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .family-support-page .transition-message::before {
    margin-bottom: 20px;
  }
  .family-support-page .transition-message br.sp-only {
    display: inline;
  }
}

.family-support-page .about-section {
  background-color: #f3f7fb;
  padding: 120px 20px;
  font-family: 'Noto Sans JP', sans-serif;
}

.family-support-page .about-box {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 60px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 8px solid #0071BB;
}

.family-support-page .about-box .section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #00324d;
  letter-spacing: 0.05em;
}

.family-support-page .about-lead p {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0071BB;
  line-height: 1.8;
  margin-bottom: 40px;
}

.family-support-page .about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
}

.family-support-page .support-path-section {
  background: linear-gradient(to bottom, #f7fafd, #ffffff);
  padding: 120px 20px 100px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.family-support-page .support-path-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 80px;
  color: #00345e;
}

.family-support-page .support-path-diagram {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 500px;
}

/* 共通ノード */
.family-support-page .node {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  width: 220px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 学生 */
.family-support-page .node-student {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #0071BB;
  color: #fff;
  font-weight: bold;
}

/* 支援機構 */
.family-support-page .node-organization {
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #0071BB;
  background: #f1f9ff;
}

/* 左・右の進路オプション */
.family-support-page .node-option {
  top: 360px;
  width: 260px;
  background: #ffffff;
  border: 1px solid #ddd;
}
.family-support-page .option-left {
  left: 12%;
}
.family-support-page .option-right {
  right: 12%;
}

.family-support-page .node-label {
  font-size: 1rem;
  font-weight: 700;
  margin: 12px 0 8px;
}

.family-support-page .node-desc {
  font-size: 0.9rem;
  color: #333;
}

.family-support-page .agency-note {
  display: block;
  font-size: 0.8rem;
  margin-top: 12px;
  color: #888;
  font-style: italic;
}

/* アイコン */
.family-support-page .node-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-student {
  background-image: url('/icons/student.svg');
}
.icon-organization {
  background-image: url('/icons/org.svg');
}
.icon-company-team {
  background-image: url('/icons/companyteam.svg');
}
.icon-club-plus-company {
  background-image: url('/icons/clubpluscompany.svg');
}

/* 矢印 */
.family-support-page .arrow {
  position: absolute;
  width: 2px;
  background: #0071BB;
}
.family-support-page .arrow-to-organization {
  top: 100px;
  left: 50%;
  height: 60px;
  transform: translateX(-50%);
}

.family-support-page .arrow-left-branch {
  position: absolute;
  top: 320px;
  left: calc(50% - 0px); /* 支援機構の左端から少し内側 */
  width: 160px;
  height: 2px;
  background: #0071BB;
  transform: rotate(-205deg);
  transform-origin: left center;
  z-index: 0;
}

/* 右側の分岐矢印：機構から右下へ */
.family-support-page .arrow-right-branch {
  position: absolute;
  top: 320px;
  left: calc(50% + 0px); /* 支援機構の右端から少し外側 */
  width: 160px;
  height: 2px;
  background: #0071BB;
  transform: rotate(25deg);
  transform-origin: left center;
  z-index: 0;
}

/* 下部説明 */
.family-support-page .support-path-summary {
  max-width: 700px;
  margin: 100px auto 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  border-top: 1px solid #dbe8f2;
  padding-top: 40px;
}

/* レスポンシブ調整 */
@media screen and (max-width: 768px) {
  .family-support-page .support-path-diagram {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .family-support-page .node,
  .family-support-page .node-option {
    position: static;
    transform: none;
    width: 90%;
  }
  .family-support-page .arrow {
    display: none;
  }
}




.family-support-page .support-flow-section {
  background: #fdfdfb;
  padding: 100px 20px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

.family-support-page .support-flow-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.family-support-page .support-flow-section .section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #00324d;
  letter-spacing: 0.02em;
}

.family-support-page .support-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.family-support-page .support-steps li {
  position: relative;
  padding-left: 60px;
  font-size: 1.05rem;
  line-height: 1.8;
  border-left: 3px solid #0071BB;
}

.family-support-page .support-steps li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: -10px;
  top: 0;
  background: #0071BB;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.family-support-page .faq-section {
  background: #ffffff;
  padding: 100px 20px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

.family-support-page .faq-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.family-support-page .faq-section .section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #00324d;
}

.family-support-page .faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.family-support-page .faq-list li {
  background: #f9fafa;
  padding: 24px 28px;
  border-left: 4px solid #0071BB;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  line-height: 1.8;
}

.family-support-page .faq-list li strong {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0071BB;
}

.form-section .wpcf7 .wpcf7-list-item {
  display: block;
  margin-bottom: 8px;
}

.form-section table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 20px;
}

.form-section th {
  text-align: left;
  width: 100%;
  padding-bottom: 4px;
  font-size: 1rem;
  font-weight: 600;
  color: #003f75;
	display:block;
}

.form-section td {
  width: 100%;
	display:block;
}

/* 送信ボタン配置 */
.form-section .submit {
  text-align: center;
  margin-top: 30px;
}

.form-section .wpcf7 input[type="submit"] {
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .form-section {
    padding: 60px 16px;
  }

  .form-section .wpcf7 {
    padding: 30px 20px;
  }

  .form-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .form-section th {
    font-size: 0.8rem;
	  display:block;
  }

  .form-section td {
    display: block;
  }

  .form-section .wpcf7 input,
  .form-section .wpcf7 textarea {
    font-size: 0.95rem;
    padding: 10px 14px;
  }
}

.form-section .wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-section .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #333;
}

.form-section .wpcf7-list-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
	position: relative;
  top: 8px;
  accent-color: #0071BB; /* モダンブラウザならチェック色変更可能 */
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .form-section .wpcf7-form-control.wpcf7-checkbox {
    gap: 14px;
  }

  .form-section .wpcf7-list-item {
    font-size: 0.95rem;
  }
}
.family-support-page .support-section {
  background: #f5faff;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.family-support-page .support-section .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.family-support-page .support-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 100px;
  color: #00345e;
  position: relative;
}

.family-support-page .support-timeline {
  position: relative;
  margin-left: 30px;
  border-left: 3px solid #0071BB;
  padding-left: 30px;
}

.family-support-page .timeline-step {
  position: relative;
  margin-bottom: 60px;
  padding-left: 20px;
}

.family-support-page .step-marker {
  position: absolute;
  left: -45px;
  top: 0;
  width: 36px;
  height: 36px;
  background: #0071BB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 113, 187, 0.3);
}

.family-support-page .step-marker .step-number {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.family-support-page .step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #005B9A;
}

.family-support-page .step-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .family-support-page .support-timeline {
    border-left: 2px solid #0071BB;
    padding-left: 20px;
    margin-left: 20px;
  }
  .family-support-page .step-marker {
    left: -32px;
    width: 28px;
    height: 28px;
  }
  .family-support-page .step-marker .step-number {
    font-size: 0.85rem;
  }
  .family-support-page .step-content h3 {
    font-size: 1.1rem;
  }
  .family-support-page .step-content p {
    font-size: 0.95rem;
  }
}
@media screen and (max-width: 768px) {
  .family-support-page .support-path-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 32px;
    position: static;
  }

  .family-support-page .node {
    position: static;
    width: 100%;
    max-width: 90%;
    transform: none;
    text-align: center;
  }

  .family-support-page .arrow {
    display: none;
  }
	.family-support-page .node{padding:5px;}
	.family-support-page .node-icon{display:none;}
  .family-support-page .support-path-diagram .node-student::after ,.family-support-page .support-path-diagram .node-organization::after{
    content: "▼";
    font-size: 1.5rem;
    color: #0071BB;
    margin: 8px 0;
	  position:relative;
	  bottom:-45px;
  }

  .family-support-page .option-left,
  .family-support-page .option-right {
    width: 100%;
    max-width: 90%;
  }

  .family-support-page .agency-note {
    display: block;
    font-size: 0.85rem;
    margin-top: 12px;
    color: #666;
  }
}