@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500;800&family=Noto+Sans+JP:wght@400;500;700&display=swap");

/* =========================
BASE
========================= */
:root {
  --blue: #249ee7;
  --blue-mid: #4b9ed0;
  --blue-soft: #72bce8;
  --blue-line: #53b0eb;
  --pale: #eaf6fc;
  --pale2: #eaf2f9;
  --navy: #42515a;
  --muted: #6b7a84;
  --pink: #f06d95;
  --bg: #fafbfc;
  --footer: #c5d9e7;
  --header-h: 64px;
  --round: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Noto Sans JP", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--navy);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
}

h1, h2, h3, p, ul, ol, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.sp-only {
  display: none;
}

.inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.inner.narrow {
  max-width: 720px;
}

.section {
  padding: 80px 0;
}

.sec-title {
  font-family: var(--round);
  font-weight: 800;
  color: var(--blue);
  font-size: 40px;
  line-height: 1.35;
  letter-spacing: .03em;
  text-align: center;
  margin-bottom: 40px;
}

.sec-title small {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .2em;
  color: #8cc7e9;
}

/* =========================
HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #edf1f4;
}

.header-inner {
  height: var(--header-h);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}

.brand img {
  width: 52px;
  height: 52px;
}

.nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  font-size: 14px;
  white-space: nowrap;
}

.nav a {
  color: #555;
  transition: color .2s;
}

.nav a:hover {
  color: var(--blue);
}

.menu-btn {
  display: none;
}

/* =========================
HERO
========================= */
.hero {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.hero img {
  width: 100%;
}

.hero-btn {
  position: absolute;
  left: 66%;
  top: 76%;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: .7em 2.6em;
  border-radius: 999px;
  background: #e9f5ff;
  color: var(--blue);
  font-size: clamp(13px, 1.1vw, 18px);
  letter-spacing: .15em;
  box-shadow: 0 4px 14px rgba(74, 168, 223, .25);
  transition: background .2s;
}

.hero-btn:hover {
  background: #d8eeff;
}

.hero-btn span,
.round-btn span {
  width: 24px;
  height: 6px;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: skewX(45deg);
}

/* =========================
ABOUT
========================= */
.about {
  background: var(--bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-title {
  position: relative;
  width: fit-content;
  margin-bottom: 28px;
  padding: 16px 0 10px;
  border-top: 1px solid #3aa4e8;
  border-bottom: 1px solid #3aa4e8;
  font-family: var(--round);
  font-weight: 800;
  color: var(--blue);
  font-size: 44px;
  line-height: 1.3;
}

.small-title {
  position: absolute;
  top: -.85em;
  left: 0;
  padding-right: 10px;
  background: var(--bg);
  color: #777;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

.about-copy p + p {
  margin-top: 1.4em;
}

/* =========================
SALARY
========================= */
.salary-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.badge {
  flex: 0 0 140px;
  width: 140px;
}

.salary-heading h2 {
  font-family: var(--round);
  font-weight: 800;
  color: var(--blue);
  font-size: 38px;
  line-height: 1.35;
}

.salary-heading p {
  margin-top: 10px;
  font-weight: 700;
  line-height: 1.7;
}

.salary-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: stretch;
}

.salary-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.salary-cards {
  display: grid;
  gap: 16px;
  align-content: start;
}

.salary-card {
  border: 1.5px solid var(--blue);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.salary-card h3 {
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 10px;
}

.salary-card .wrap {
  padding: 12px 18px 16px;
}

.salary-card .price {
  text-align: center;
  font-weight: 700;
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 2px dotted #9ed2f2;
  line-height: 1.3;
}

.salary-card strong {
  font-family: var(--round);
  font-weight: 800;
  font-size: 44px;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.salary-card em {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  color: var(--blue);
}

.salary-card .text {
  font-size: 14px;
  line-height: 1.75;
}

/* =========================
CTA
========================= */
.cta-band {
  background: var(--pale);
  padding: 64px 0;
}

.cta-title {
  font-family: var(--round);
  font-weight: 800;
  color: var(--blue);
  font-size: 40px;
  line-height: 1.3;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 2px dotted #b9dff5;
}

.cta-band p + p {
  margin-top: 1.2em;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 36px auto 0;
  max-width: 600px;
}

.btn {
  flex: 1;
  transition: opacity .2s, transform .2s;
}

.btn:hover {
  opacity: .85;
  transform: translateY(-2px);
}

.btn img {
  width: 100%;
}

.age-note {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* =========================
REASONS
========================= */
.reasons {
  background: var(--bg);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.reason-grid li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  max-width: 100%;
  padding: 14px 8px;
  border: 1.5px solid var(--blue-line);
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.reason-grid b {
  position: absolute;
  left: 10px;
  top: 2px;
  color: #65b5ea;
  font-family: var(--round);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.2;
}

.reason-grid img {
  width: 42%;
  margin-bottom: 8px;
}

.reason-grid p {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

/* =========================
TALENT
========================= */
.talent {
  text-align: center;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.talent-grid a {
  display: block;
}

.talent-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
  transition: opacity .2s;
}

.talent-grid a:hover img {
  opacity: .85;
}

.talent-grid span {
  display: block;
  margin-top: 10px;
  color: #559bc7;
  font-size: 17px;
  letter-spacing: .08em;
}

.round-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 54px;
  border-radius: 999px;
  background: #3aa4e8;
  color: #fff;
  letter-spacing: .15em;
  transition: opacity .2s;
}

.round-btn:hover {
  opacity: .85;
}

/* =========================
AREA
========================= */
.area {
  background: var(--pale);
}

.area-title {
  font-family: var(--round);
  font-weight: 800;
  color: var(--pink);
  font-size: 36px;
  line-height: 1.35;
  text-align: center;
}

.area-visual {
  margin: 36px auto;
  max-width: 760px;
}

.area-note {
  font-weight: 700;
  margin-bottom: 28px;
}

.area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.area-cards li {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 22px 16px 18px;
  text-align: center;
}

.area-cards b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #69b9e9;
  color: #fff;
  font-family: var(--round);
  font-size: 22px;
}

.area-cards strong {
  display: block;
  margin: 14px 0;
  color: #3c95cc;
  font-family: var(--round);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.45;
}

.area-cards span {
  display: block;
  width: 100%;
  padding-top: 14px;
  border-top: 2px dotted #9ed2f2;
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
}

/* =========================
FLOW
========================= */
.flow-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.flow-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
}

.flow-list li + li {
  margin-top: 22px;
}

.flow-list li > b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: #fff;
  font-size: 14px;
}

.flow-list h3 {
  color: var(--blue-mid);
  font-family: var(--round);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.flow-list p {
  font-size: 14px;
  line-height: 1.75;
}

/* =========================
MESSAGE / FINAL CTA
========================= */
.final-cta {
  background-color: var(--pale2);
  background-image: url(../img/foryou.webp);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  padding: 80px 0;
}

.message p {
  font-size: 14px;
  line-height: 1.9;
}

.message p + p {
  margin-top: 1.2em;
}

.message .message-strong {
  margin-top: 1.4em;
  font-family: var(--round);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.45;
  color: #168ed1;
}

/* =========================
FOOTER
========================= */
.footer {
  background: var(--footer);
  color: #5b6d79;
  text-align: center;
  padding: 28px 20px calc(24px + env(safe-area-inset-bottom, 0px));
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--blue);
}

.copyright {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: .05em;
}

/* =========================
TABLET
========================= */
@media (max-width: 1100px) {
  .nav {
    gap: 14px;
    font-size: 13px;
  }
}

@media (max-width: 960px) {
  .reason-grid p {
    font-size: 12px;
  }

  .salary-card strong {
    font-size: 36px;
  }
}

/* =========================
SP
========================= */
@media (max-width: 767px) {
  :root {
    --header-h: 56px;
  }

  body {
    font-size: 14px;
    line-height: 1.85;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }

  .inner {
    padding: 0 18px;
  }

  .section {
    padding: 56px 0;
  }

  .sec-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  /* header / menu */
  .header-inner {
    padding: 0 12px 0 16px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .menu-btn {
    display: grid;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    width: 48px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #eef6fb;
    cursor: pointer;
  }

  .menu-btn i {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #58a8d8;
    transition: transform .3s, opacity .3s;
  }

  .menu-btn[aria-expanded="true"] i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-btn[aria-expanded="true"] i:nth-child(2) {
    opacity: 0;
  }

  .menu-btn[aria-expanded="true"] i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px 24px 24px;
    background: #fff;
    border-bottom: 1px solid #e3edf3;
    box-shadow: 0 12px 24px rgba(66, 81, 90, .12);
    font-size: 15px;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s, transform .25s, visibility .25s;
  }

  .nav a {
    padding: 14px 4px;
    border-bottom: 1px solid #eef3f6;
  }

  .nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  /* 画面幅が狭い時はヒーローのボタンを隠す（カンプ準拠） */
  .hero-btn {
    display: none;
  }

  /* about */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-title {
    margin: 0 auto 24px;
    font-size: 30px;
  }

  .small-title {
    font-size: 15px;
  }

  /* salary */
  .salary-heading {
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }

  .badge {
    flex-basis: 96px;
    width: 96px;
  }

  .salary-heading > div {
    flex: 1;
    min-width: 0;
  }

  .salary-heading h2 {
    font-size: 26px;
  }

  .salary-heading p {
    font-size: 13px;
  }

  .salary-grid {
    grid-template-columns: 1fr;
  }

  .salary-photo {
    display: none;
  }

  .salary-card h3 {
    font-size: 17px;
  }

  .salary-card strong {
    font-size: 38px;
  }

  .salary-card .text {
    font-size: 13px;
  }

  /* cta */
  .cta-band {
    padding: 48px 0;
  }

  .cta-title {
    font-size: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    max-width: 320px;
    gap: 10px;
  }

  /* reasons */
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .reason-grid b {
    font-size: 32px;
    left: 8px;
  }

  .reason-grid p {
    font-size: 12px;
  }

  /* talent */
  .talent-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 12px;
  }

  .talent-grid span {
    font-size: 15px;
    margin-top: 6px;
  }

  /* area */
  .area-title {
    font-size: 26px;
  }

  .area-visual {
    margin: 24px auto;
  }

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

  .area-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  /* flow */
  .flow-wrap {
    grid-template-columns: 1fr;
  }

  .flow-gallery {
    display: none;
  }

  .flow-list {
    position: relative;
  }

  .flow-list::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/flow-sp.webp) center / cover no-repeat;
    opacity: .18;
    z-index: -1;
  }

  .flow {
    position: relative;
    z-index: 0;
  }

  .flow-list h3 {
    font-size: 18px;
  }

  .flow-list p {
    font-size: 13px;
  }

  /* message */
  .final-cta {
    background-image: url(../img/foryou-sp.webp);
    background-position: top right;
    background-size: 60% auto;
    padding: 56px 0;
  }

  .message p {
    font-size: 13px;
  }

  .message .message-strong {
    font-size: 20px;
  }

  .footer-nav {
    font-size: 13px;
    gap: 4px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
