/* =========================================================
   スキット高卒ナビ LP C案
   - 添付カンプをHTML/CSSで再構成
   - 画像は必要箇所だけトリミングして asset/image に配置
   ========================================================= */
:root {
  --brand: #17b8d6;
  --brand-dark: #008fba;
  --navy: #071a38;
  --text: #14233b;
  --muted: #61738b;
  --line: #d9eef7;
  --soft: #eefaff;
  --soft-2: #f7fcff;
  --red: #f24f67;
  --yellow: #ffd94d;
  --green: #73d996;
  --shadow: 0 12px 30px rgba(0, 83, 130, 0.10);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
    url("../../img/lp/bg.webp") repeat;
  background-size: contain;
  background-position: center;
}

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

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

.page {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  padding: 9px 17px;
  border-bottom: 1px solid #edf5fa;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  height: 32px;
  width: auto;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 7px;
  color: #ffffff;
  font-size: 11px;
  background: linear-gradient(135deg, #42cdf1, #168ed7);
}

.header-nav {
  display: none;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.is-current {
  color: var(--brand-dark);
}

.header-cta {
  margin-left: auto;
  padding: 8px 13px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #00bdd5, #1187d5);
  box-shadow: 0 8px 18px rgba(17, 135, 213, 0.22);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 24px rgba(17, 135, 213, 0.4);
  filter: brightness(1.06);
}

.header-cta:active {
  transform: translateY(-1px) scale(1.02);
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

.l-footer {
  margin-top: auto;
  background: #3fc7de;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding-bottom: 72px;
  }
}

.l-footer__logo img {
  filter: brightness(0) invert(1);
  width: 150px;
}

.l-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 48px 24px 32px;
  text-align: center;
}

.l-footer__navList {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .l-footer__navList {
    flex-direction: column;
  }
}

.l-footer__navItem {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: -0.15px;
  font-weight: 700;
  color: #fff;
}

.l-footer__copyright {
  padding: 8px 16px;
  border-top: 1px solid #fff;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: normal;
  letter-spacing: normal;
  font-weight: 400;
}



/* ---------------------------------------------------------
   Common layout
   --------------------------------------------------------- */
.section-shell,
.section,
.panel,
.panel-large,
.bottom-cta {
  position: relative;
  padding-right: 22px;
  padding-left: 22px;
}

.section {
  padding-top: 38px;
  padding-bottom: 38px;
}

.panel {
  margin: 0 16px;
  padding-top: 28px;
  padding-bottom: 28px;
  border-radius: 21px;
  background: linear-gradient(180deg, #f2fbff 0%, #eaf8ff 100%);
}

.panel-large {
  margin: 0 14px 20px;
  padding: 35px 22px;
  border: 1px solid #e4f4fb;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.soft-bg {
  background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

.center-heading,
.section-head h2 {
  margin: 0 0 36px;
  color: #111111;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.03em;
}

.center-heading span,
.section-head h2 span {
  color: var(--brand-dark);
}

.section-head.center {
  text-align: center;
}

.section-head p {
  margin: -10px 0 40px;
  color: #36475b;
  font-size: 16px;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   Decorative elements
   --------------------------------------------------------- */
.deco-ring {
  position: absolute;
  z-index: 0;
  width: 125px;
  height: 125px;
  border: 26px solid currentColor;
  border-radius: 50%;
  opacity: 0.45;
  pointer-events: none;
}

.ring-green {
  top: 45px;
  right: 0;
  color: #8de2be;
}

.ring-red {
  top: 215px;
  right: 0;
  color: #f57078;
}

.ring-yellow {
  left: 208px;
  bottom: -50px;
  color: #ffd84a;
}

.dot {
  position: absolute;
  width: 82px;
  height: 82px;
  opacity: 0.28;
  background-image: radial-gradient(#19abd2 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  pointer-events: none;
}

.dot-a {
  top: 61px;
  right: 129px;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  padding-top: 38px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy{
  max-width: 600px;
  width: 100%;
  order: 2;
  text-align: center;
}

/* 画像はテキストの下に通常フローで配置し、テキストとの重なりを防止 */
.hero-visual {
  width: min(340px, 92%);
  margin: 26px auto 0;
  order: 1;
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  margin: 0 0 24px;
  padding: 6px 16px;
  border: 1px solid var(--brand-dark);
  border-radius: 999px;
  color: #078bb8;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: #ffffff;
}

.hero h1 {
  margin: 0 0 17px;
  color: #080808;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0.035em;
}

.hero h1 .hero-text {
  display: inline-block;
  color: #159fda;
  line-height: 1.25;
}

.lead {
  margin: 0 0 23px;
  color: #17263c;
  font-size: 14px;
  font-weight: 700;
  line-height: 2.05;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.06);
}

.btn:active {
  transform: translateY(-1px) scale(1.01);
}

.btn-primary {
  min-width: 155px;
  color: #ffffff;
  background: linear-gradient(135deg, #22b7df, #058bd3);
  box-shadow: 0 11px 21px rgba(8, 154, 207, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 18px 32px rgba(8, 154, 207, 0.42);
}

.btn-red {
  min-width: 195px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff445c, #e81744);
  box-shadow: 0 10px 20px rgba(232, 23, 68, 0.25);
}

.btn-red:hover {
  box-shadow: 0 18px 32px rgba(232, 23, 68, 0.42);
}


/* ---------------------------------------------------------
   Needs
   --------------------------------------------------------- */
.needs h2 {
  margin: 0 0 36px;
  color: #111111;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
}

.needs h2 span {
  color: #169bd2;
}

.needs-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.need-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 125px;
  padding: 18px 8px 14px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 91, 141, 0.10);
}

.need-card p {
  margin: 12px 0 0;
  color: #151515;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.65;
  text-align: center;
}

.need-icon {
  position: relative;
  width: 49px;
  height: 49px;
}

.need-icon::before,
.need-icon::after {
  content: "";
  position: absolute;
  border-color: #073d6c;
  border-style: solid;
}

.people::before,
.worker::before {
  left: 7px;
  top: 7px;
  width: 13px;
  height: 13px;
  border-width: 2px;
  border-radius: 50%;
}

.people::after {
  right: 7px;
  top: 7px;
  width: 13px;
  height: 13px;
  border-width: 2px;
  border-radius: 50%;
}

.office::before {
  left: 13px;
  top: 5px;
  width: 23px;
  height: 36px;
  border-width: 2px;
  border-radius: 2px;
}

.office::after {
  left: 21px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-width: 1.5px;
  box-shadow: 10px 0 0 -1px #073d6c, 0 10px 0 -1px #073d6c, 10px 10px 0 -1px #073d6c;
}

.worker::after {
  right: 3px;
  top: 14px;
  width: 17px;
  height: 25px;
  border-width: 2px;
  border-radius: 2px;
  transform: rotate(4deg);
}

.image::before {
  left: 11px;
  top: 8px;
  width: 30px;
  height: 25px;
  border-width: 2px;
  border-radius: 4px;
}

.image::after {
  left: 19px;
  top: 17px;
  width: 12px;
  height: 9px;
  border-width: 0 0 2px 2px;
  transform: rotate(-32deg);
}

/* ---------------------------------------------------------
   Service
   --------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.plan-card {
  overflow: hidden;
  border: 1px solid #e4eef5;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 91, 141, 0.08);
}

.service-card {
  padding: 20px 20px 34px;
}

.service-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  margin: 0 0 15px;
  color: #058fc1;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.service-card h3 .note {
  color: #ffa700;
  font-size: 14px;
}

.service-card img {
  width: 100%;
  height: 110px;
  border-radius: 8px;
  object-fit: cover;
}

.service-card p {
  margin: 22px 0 0;
  color: #2a3a4d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.mini-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.mini-icon.phone {
  width: 10px;
  height: 15px;
  border-radius: 3px;
}

.mini-icon.book {
  width: 15px;
  height: 12px;
  border-radius: 1px;
}

.youtube {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 12px;
  border-radius: 3px;
  color: #ffffff;
  font-size: 7px;
  background: #ff1d1d;
}

.service-card h3 .service-icon {
  display: inline-block;
  width: 17px;
  height: 17px;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   Points
   --------------------------------------------------------- */
.point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* テキスト列と画像列をグリッドで分離し、文字と画像の重なりを防止 */
.point-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(64px, 34%, 125px);
  grid-template-rows: auto auto 1fr;
  column-gap: 20px;
  align-items: start;
  min-height: 155px;
  padding: 20px 24px 14px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 91, 141, 0.09);
}

.point-number {
  grid-column: 1;
  margin: 0 0 6px;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.point-number.blue {
  color: #098bd4;
}

.point-number.green {
  color: #47c7a9;
}

.point-number.red {
  color: #f36b76;
}

.point-card h3 {
  grid-column: 1;
  margin: 0 0 10px;
  color: #111111;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.point-card p {
  grid-column: 1;
  margin: 0;
  color: #334257;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.point-card img {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  justify-self: end;
  width: 100%;
  border-radius: 11px;
}

.media-diagram {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: end;
  justify-self: end;
  width: 82px;
  height: 78px;
}

.circle {
  position: absolute;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 7px;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
}

.youtube-circle {
  top: 0;
  left: 21px;
  background: #e62a2a;
}

.web-circle {
  left: 0;
  bottom: 0;
  background: #5ab6e8;
}

.book-circle {
  right: 0;
  bottom: 0;
  background: #67d7b1;
}

/* ---------------------------------------------------------
   Staff
   --------------------------------------------------------- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.staff-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 92px 1fr;
  grid-template-rows: auto 1fr;
  border: 1px solid #e3f0f6;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 7px 16px rgba(0, 91, 141, 0.08);
}

.staff-card img {
  grid-row: 1 / 3;
  width: 92px;
  height: 100%;
  object-fit: cover;
  align-self: stretch;
}

.staff-card h3 {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 16px 15px 10px;
  color: #0790cc;
  font-size: 14px;
  font-weight: 900;
}

.staff-card p {
  margin: 0 15px 12px;
  color: #2d4153;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
  align-self: start;
}

.circle-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 11px;
  background: var(--brand);
}

/* ---------------------------------------------------------
   Flow
   --------------------------------------------------------- */
.flow{
  text-align: center;
}

.flow-simple {
  padding: 22px 16px 30px;
  border: 1px solid #e4eef5;
  border-radius: var(--radius);
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow);
}

.flow-label {
  display: inline-block;
  margin: 0 0 40px;
  padding: 8px 20px;
  border-radius: 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, #22b7df, #058bd3);
}

.flow-steps {
  display: grid;
  grid-template-columns: 1fr 14px 1fr 14px 1fr;
  gap: 10px;
  align-items: center;
}

.flow-step {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 76px;
  padding: 12px 6px;
  border: 1px solid #dbeef6;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 7px 13px rgba(0, 91, 141, 0.05);
}

.flow-step img {
  width: 30px;
  height: 30px;
}

.flow-step span {
  color: #102238;
  font-size: 16px;
  font-weight: 900;
}

.flow-steps i {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 21px solid var(--brand-dark);
}

.flow-lead {
  margin: 40px 0 20px;
  color: #102238;
  font-size: 16px;
  font-weight: 900;
}

.flow-lead span {
  margin: 0 2px;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

.notice {
  margin: 30px auto 0;
  padding: 8px 18px;
  border-radius: 999px;
  color: #386074;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background: #eefaff;
  display: inline-block;
}

/* ---------------------------------------------------------
   Plan
   --------------------------------------------------------- */
.plan {
  background: linear-gradient(180deg, #eaf9ff 0%, #f5fcff 100%);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.plan-card {
  padding: 20px 24px 14px;
  text-align: center;
}

.plan-card h3 {
  margin: 0 0 15px;
  color: #08a6d4;
  font-size: 14px;
  font-weight: 900;
}

.plan-card h3 span {
  color: #ffa700;
}

.plan-card img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.plan-card p {
  margin: 22px 0 0;
  color: #293b4e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
}

.plan-cta {
  display: flex;
  width: min(270px, 100%);
  margin: 50px auto 0;
}

/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */
.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  border: 1px solid #e4eef5;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(0, 91, 141, 0.05);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 44px 11px 18px;
  color: #102238;
  font-size: 13px;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] {
  border-radius: 14px;
}

.faq-list details[open] summary::after {
  content: "−";
  right: 0.4em;
  top: 1em;
}

.faq-list summary span {
  color: #119ed0;
  font-size: 17px;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 16px 46px;
  color: #465b6c;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

/* ---------------------------------------------------------
   Companies
   --------------------------------------------------------- */
.companies .center-heading{
  margin-bottom: 0;
}

.companies-marquee {
  display: flex;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 10px 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.companies-list {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 34px;
  padding: 0 34px 0 0;
  margin: 0;
  list-style: none;
  /* 2026/07/03: 掲載社数が18→63に増えたため、体感スクロール速度を維持する目的で
     40s → 140s に延長（社数比 約3.5倍に比例させた値）。 */
  animation: companies-scroll 140s linear infinite;
}


@keyframes companies-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.companies-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 132px;
  height: 38px;
}

.companies-list img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.companies-note {
  margin: 14px 0 0;
  color: #61738b;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}
.companies-note.top {
  text-align: center;
  margin-bottom: 70px;
}

/* ---------------------------------------------------------
   Bottom CTA / Footer
   --------------------------------------------------------- */
.bottom-cta {
  margin: 10px 16px 100px;
  padding-top: 52px;
  padding-bottom: 50px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #e7f8ff 0%, #d7f3ff 100%);
  text-align: center;
}

.bottom-cta h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: #111111;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

.bottom-cta h2 span {
  color: #0b99d3;
}

.bottom-cta p {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  color: #324c61;
  font-size: 16px;
  font-weight: 800;
}

.bottom-cta .cta-row {
  margin-top: 40px;
}

.center-row {
  position: relative;
  z-index: 1;
  justify-content: center;
}

.cta-ring-left {
  left: -50px;
  bottom: -57px;
  color: #14c4d1;
}

.cta-ring-right {
  right: -54px;
  top: 14px;
  color: #f06a70;
}

/* ---------------------------------------------------------
   Wide screen adjustment
   ※ ブレイクポイントは本番CMS（style.css）に合わせて 768px
   --------------------------------------------------------- */
@media (min-width: 768px) {
  .site-header {
    padding: 13px 36px;
  }

  .site-logo {
    min-width: 230px;
    font-size: 32px;
  }

  .header-nav {
    display: flex;
  }

  .header-cta {
    margin-left: 10px;
    padding: 11px 21px;
    font-size: 16px;
  }

  .section-shell,
  .section,
  .panel,
  .panel-large,
  .bottom-cta {
    padding-right: 30px;
    padding-left: 30px;
  }

  /* テキストと画像を2カラムのグリッドで並べ、タブレット幅での重なりを防止 */
  .hero {
    display: flex;
    flex-direction: inherit;
    gap: 0;
    align-items: center;
    justify-content: center;
    min-height: 560px;
    padding-top: 56px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero-visual {
    max-width: 500px;
    width: 100%;
    margin: 0;
    order: 2;
  }
  .hero-copy{
    order: 1;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(32px, 4.2vw, 50px);
  }

  .hero h1 .hero-text{
    font-size: clamp(42px, 5.8vw, 58px);
  }

  .lead {
    max-width: 485px;
    font-size: 18px;
  }
  .btn {
    min-height: 56px;
    padding: 16px 28px;
    font-size: 17px;
  }

  .panel {
    margin: 0 30px;
    padding-top: 52px;
    padding-bottom: 52px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 85px;
  }

  .points{
    padding-top: 68px;
    padding-bottom: 100px;
  }
  .center-heading,
  .section-head h2 {
    font-size: 32px;
  }

  .center-heading{
    margin-bottom: 20px;
  }

  .needs h2 {
    font-size: 29px;
  }

  .need-card {
    min-height: 170px;
  }

  .need-card p,
  .service-card h3,
  .point-card h3,
  .staff-card h3,
  .plan-card h3 {
    font-size: 19px;
  }

  /* ポイントカードの見出しは画像列と並ぶため、幅に応じて可変にして折り返し崩れを防止 */
  .point-card h3 {
    font-size: clamp(14px, 2.75vw, 18px);
  }

  .service-card h3 .service-icon {
    width: 20px;
    height: 20px;
  }

  .point-card p,
  .staff-card p {
    font-size: 16px;
  }

  .service-card p {
    font-size: 16px;
  }

  .plan-card p {
    font-size: 16px;
  }

  .service-card img {
    height: 160px;
  }

  .point-card {
    min-height: 240px;
  }

  .panel-large {
    margin-right: 30px;
    margin-left: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .staff-card {
    grid-template-columns: 130px 1fr;
  }

  .staff-card img {
    width: 130px;
  }

  .flow-simple {
    padding: 40px 44px 60px;
  }

  .flow-label {
    padding: 10px 26px;
    font-size: 18px;
  }

  .flow-steps {
    grid-template-columns: 1fr 22px 1fr 22px 1fr;
    gap: 20px;
  }

  .flow-step {
    min-height: 112px;
  }

  .flow-step img {
    width: 90px;
    height: 90px;
  }

  .flow-step span {
    font-size: 18px;
  }

  .flow-lead {
    font-size: 16px;
    margin: 40px 0;
  }

  .flow-lead span {
    font-size: 30px;
  }

  .faq-list summary {
    padding: 14px 54px 14px 24px;
    font-size: 18px;
  }

  .bottom-cta h2 {
    font-size: 34px;
  }

  .companies-list {
    gap: 56px;
    padding-right: 56px;
  }
  .companies-list li {
    width: 220px;
    height: 70px;
  }

  .companies-note {
    font-size: 13px;
  }
}

/* ---------------------------------------------------------
   Narrow screen adjustment
   ※ ブレイクポイントは本番CMS（style.css）に合わせて 767px
   --------------------------------------------------------- */
@media (max-width: 767px) {
  .page {
    width: 100%;
    max-width: none;
  }

  .site-logo {
    min-width: auto;
    font-size: 20px;
  }

  .header-cta {
    padding: 8px 10px;
    font-size: 15px;
  }

  .hero {
    padding-top: 0;
    gap: 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero h1 span {
    font-size: 35px;
  }
  .needs-list,
  .service-grid,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .point-grid,
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-steps i {
    transform: rotate(90deg);
  }

  .bottom-cta .cta-row {
    flex-direction: column;
    margin-top: 20px;
  }
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 1em 2em 1em 1em;
}

/* デフォルトの矢印マーカーを消す */
.faq-list summary::-webkit-details-marker {
  display: none;
}

/* 開閉アイコン（＋→×など）*/
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0.5em;
  top: 0.9em;
  transition: transform 0.3s ease;
  font-size: 1.2em;
}

.pc_none{
  display: none;
}
.sp_none{
  display: block;
}
@media (max-width: 767px) {
  .site-header{
    padding: 11px 10px;
  }
  .site-logo img{
    height: 20px;
  }
  .hero-visual{
    width: auto;
  }
  .header-cta{
    padding: 8px 10px;
    font-size: 14px;
  }
  .hero-copy{
    margin: auto;
  }
  .panel{
    padding-right: 16px;
    padding-left: 16px;
  }
  .needs-list {
    gap: 14px;
  }
  .needs h2{
    margin: 0 0 22px;
  }
  .need-card p{
    font-size: 15px;
  }

  .service-card h3{
    font-size: 18px;
  }
  .service-grid{
    display: flex;
    flex-direction: column;
  }
  .service-card img{
    height: auto;
  }
  .plan-grid{
    display: flex;
    flex-direction: column;
  }
  .plan-card img{
    height: auto;
  }

.point-card h3{
  font-size: 18px;
}
.point-card p{
  font-size: 15px;
}
.staff-card h3{
  font-size: 18px;
}
.staff-card p{
  font-size: 15px;
}
.flow-step{
  padding: 22px 6px;
}
.flow-step img{
  width: 70px;
  height: 70px;
}
.plan-card{
  padding: 20px 24px;
}
.plan-card h3{
  font-size: 18px;
}
.plan-card p{
  font-size: 15px;
}
.plan-cta{
  margin: 0;
}
.cta-row{
  justify-self: center;
  justify-content: center;
}
.companies-note.top {
  margin-bottom: 50px;
}
.faq-list summary{
  font-size: 16px;
}
.faq-list p{
  padding: 0 20px 16px 36px;
  font-size: 15px;
}
.notice{
  border-radius: 6px;
  font-size: 14px;
  padding: 15px 18px;
}
.section-head p{
  font-size: 15px;
  margin: -10px 0 30px;
}

  .pc_none{
    display: block;
  }
  .sp_none{
    display: none;
  }
}

@media (min-width: 768px) {
  /* 背景の円 ふわふわアニメーション */
  .deco-ring.ring-green { animation: floatUpDown 3.2s ease-in-out infinite; }
  .deco-ring.ring-red   { animation: floatUpDown 3.6s ease-in-out infinite; animation-delay: 0.4s; }
  .deco-ring.ring-yellow{ animation: floatUpDown 4s ease-in-out infinite; animation-delay: 0.8s; }
  @keyframes floatUpDown {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-18px); }
    100% { transform: translateY(0); }
  }

  .hero-copy h1 {
    opacity: 0;
  }
  .hero-copy h1.is-ready {
    opacity: 1;
  }
  .hero-copy .cta-row{
    text-align: left;
  }
  .hero-copy .cta-row .plan-cta{
    margin: 0;
  }

  /* メインビジュアル 順次演出（画像→①→②→③→④） */
  .hero-copy .eyebrow.pill,
  .hero-copy .lead,
  .hero-copy .cta-row,
  .hero-visual {
    opacity: 0;
  }
  .hero-copy .eyebrow.pill.is-visible,
  .hero-copy .lead.is-visible,
  .hero-copy .cta-row.is-visible,
  .hero-visual.is-visible {
    animation: heroFadeIn 0.7s ease forwards;
  }
  @keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-copy h1 .char {
    opacity: 0;
    transition: opacity 0.15s linear;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
  }
  .hero-copy h1 .char.is-visible {
    opacity: 1;
  }

  /* 各セクション スクロールフェードイン */
  .fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  section.needs {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  section.needs.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}