:root {
  --blue: #1f9af0;
  --blue-dark: #1587dc;
  --blue-light: #c8e6ff;
  --pink: #ec6c9c;
  --pink-light: #ff73b5;
  --white: #fff;
  --text: #071a25;
  --header-h: 96px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 58px);
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(19, 137, 222, 0.74),
    rgba(19, 137, 222, 0)
  );
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}
.brand-mark img {
  width: 50px;
  height: auto;
  margin-top: 5px;
}
.brand-text {
  margin-top: 5px;
}
.brand-text small {
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.brand-text strong {
  display: block;
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.global-nav {
  display: flex;
  gap: clamp(22px, 3vw, 42px);
  font-weight: 900;
  font-size: 15px;
}
.global-nav a {
  position: relative;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: #fff;
  transition: 0.25s;
}
.global-nav a:hover::after {
  width: 100%;
}
.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  padding-top: var(--header-h);
  padding-bottom: 360px;
  overflow: visible;
  color: #fff;
  z-index: 1;
  background:
    radial-gradient(
      circle at 15% 35%,
      rgba(255, 255, 255, 0.16),
      transparent 22%
    ),
    linear-gradient(180deg, #1289de 0%, #30a5f5 62%, #eaf7ff 100%);
}

.hero-inner {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(40px, 12vw, 50px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(10px, 1vw, 95px);
  position: relative;
  z-index: 6;
}
@media (max-width: 960px) {
  .hero-inner {
    width: min(450px, calc(100% - 40px));
  }
}

.catch-bubble {
  position: relative;
  min-height: 100px;
  display: grid;
  place-items: center;
  animation: floaty 3s ease-in-out infinite;
}
@keyframes floaty {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-copy {
  max-width: 450px;
  font-size: clamp(18px, 1.6vw, 17px);
  font-weight: 300;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 95, 155, 0.18);
  transform: translateY(100px);
    text-shadow: 2px 2px 2px rgba(133, 133, 234, 0.5);
    font-feature-settings: "palt";
}
.hero-copy h1 {
  font-size: clamp(20px, 1.6vw, 25px);
  line-height: 1.3;
}
@media (max-width: 960px) {
  .hero-copy {
    max-width: 450px;
    font-size: clamp(17px, 1.2vw, 18px);
    font-weight: 300;
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0, 95, 155, 0.18);
    transform: translateY(-30px);
    font-feature-settings: "palt";
  }
}

.mountains {
  pointer-events: none;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.mountains-top {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 420px;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 94%),
    url("../img/mountains-hero.png");
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
  z-index: 5;
  pointer-events: none;
}

.top-links {
  position: relative;
  z-index: 7;
  margin-top: -220px;
  padding: 0 20px 0px;
}

.top-links-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  min-height: 420px;
}

/* 共通 */
.page-hero p,
.cases-hero p,
.company-hero p,
.mental-hero p {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.5;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(22, 76, 120, 0.28);
  font-feature-settings: "palt";
}

.top-card {
  position: absolute;
  display: block;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.top-card img {
  width: 100%;
  height: auto;
  display: block;
}

.top-card:hover {
  transform: translateY(-8px);
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.18));
}

/* ホバー画像切り替え */
.top-card .hover-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.top-card:hover .hover-img {
  opacity: 1;
}

/* 配置 */
.top-card-service {
  width: 34%;
  left: 5%;
  top: 0;
}

.top-card-mental {
  max-width: 250px;
  width: 19%;
  left: 0;
  top: 230px;
  z-index: 2;
}

.top-card-company {
  width: 31%;
  right: 3%;
  top: 0;
}

.top-card-results {
  width: 32%;
  left: 36%;
  top: 95px;
}

.top-card-blog {
  max-width: 280px;
  width: 27%;
  left: 50%;
  transform: translateX(-50%);
  top: 450px;
}

.top-card-blog:hover {
  transform: translateX(-50%) translateY(-8px);
}

/*ブレイクポイント調整900px*/
@media (max-width: 900px) {
  .top-card-mental {
    margin-top: -80px;
  }
}


/* タブレット */
@media (max-width: 700px) {
  .top-links-inner {
    min-height: 760px;
  }

  .top-card {
    position: relative;
    inset: auto;
    margin: 0 auto 0;
  }

  .top-card img {
  width: min(280px, 85%);
  height: auto;
  display: block;
  margin: auto;
}

  .top-card-service,
  .top-card-company,
  .top-card-results {
    width: min(420px, 90%);
  }

  .top-card-mental {
    width: min(180px, 48%);
    margin-top: -30px;
    margin-left: 10%;
  }

  .top-card-blog {
    width: min(300px, 72%);
    transform: none;
    margin-top: 60px;
  }

  .top-card-blog:hover {
    transform: translateY(-8px);
  }
}

/* スマホ */
@media (max-width: 420px) {
  .top-links {
    padding: 40px 14px 60px;
  }

  .top-links-inner {
    min-height: auto;
  }

  .top-card-service,
  .top-card-company,
  .top-card-results {
    width: 100%;
  }

  .top-card-mental {
    width: 52%;
  }

  .top-card-blog {
    width: 78%;
  }
}

.contact-section {
  position: relative;
  min-height: 620px;
  margin-top: -1px;
  padding: 130px 20px 190px;
  overflow: hidden;
  background: linear-gradient(180deg, #c6e4ff 0%, #a8d7ff 100%);
}
.contact-curve {
  position: absolute;
  left: 50%;
  top: -260px;
  width: 120%;
  height: 410px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 0 0 50% 50%;
}
.contact-section h2 {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #2b91ed;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: 0.22em;
  font-weight: 900;
}

.contact-section h2 span {
  display: block;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(52px, 4vw, 86px);
  letter-spacing: 0.3em;
  text-shadow: 0 3px 0 rgba(43, 145, 237, 0.12);
}
.contact-inner {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.mail-button {
  min-height: 118px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 22px;
  color: #fff;
  background: var(--pink);
  border: 2px solid rgba(255, 255, 255, 0.9);
  text-align: center;
  font-weight: 900;
}
.mail-button:hover {
  color: var(--pink);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--pink);
}

.mail-icon {
  width: 62px;
  height: 42px;
  margin-bottom: 8px;
  display: block;
  border: 4px solid currentColor;
  position: relative;
}
.mail-icon::before,
.mail-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 34px;
  height: 4px;
  background: currentColor;
  transform-origin: left center;
}
.mail-icon::before {
  left: 0;
  transform: rotate(31deg);
}
.mail-icon::after {
  right: -35px;
  transform: rotate(149deg);
}
address {
  font-style: normal;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.45;
}
address strong {
  font-size: clamp(18px, 1.9vw, 24px);
}
.mountains-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background-image:
    linear-gradient(
      180deg,
      rgba(174, 216, 255, 0),
      rgba(174, 216, 255, 0.24) 32%,
      rgba(174, 216, 255, 0.9) 100%
    ),
    url("../img/mountains-footer.png");
  opacity: 0.78;
}
.site-footer {
  position: relative;
  z-index: 3;
  margin-top: -54px;
  padding: 22px 20px;
  text-align: center;
  font-size: 13px;
}

/*サービスのページ*/

:root {
  --blue: #2d92df;
  --light: #b8daf4;
  --pink: #ea6f9d;
  --text: #10243b;
  --header-h: 60px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--text);
  background: #fff;
  letter-spacing: 0.08em;
}
.page-hero {
  position: relative;
  min-height: 100px;
  padding-top: var(--header-h);
  background: url("../img/serviceMV.jpg") center center / cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(34px, 1vw, 56px);
  letter-spacing: 0.12em;
  text-shadow: 0 4px 14px rgba(22, 76, 120, 0.32);
}

.category-nav {
  max-width: 1300px;
  margin: 60px auto 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(18px, 3vw, 54px);
}

.category-nav a {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 60px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
}
.category-nav a:hover {
  background: #fff;
  color: var(--pink);
  border: 1px solid var(--pink);
}
.category-nav a::after {
  content: "›";
  position: absolute;
  right: 18px;
  top: 50%;
  translate: 0 -50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--pink);
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 0.8;
}

.support {
  max-width: 980px;
  margin: 0 auto 70px;
  padding: 0 24px;
}
.support h2 {
  text-align: center;
  color: #478dc8;
  letter-spacing: 0.28em;
  font-size: 24px;
  margin: 0 0 20px;
}
.lead {
  font-size: 13px;
  line-height: 1.9;
  font-weight: 500;
  margin: 0 0 100px;
}
.content-section {
  margin: 0 0 100px;
}
.content-section h3 {
  width: min(600px, 90%);
  height: 40px;
  display: grid;
  place-items: center;
  margin: 0 auto 50px;
  border: 1px solid #ef9ab9;
  border-radius: 999px;
  color: #e778a4;
  font-size: 20px;
  letter-spacing: 0.13em;
  background: #fff;
  font-feature-settings: "palt";
}

.content-section h3 .section-label {
  font-size: 0.64em;
  margin-top: 10px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.service-item.narrow {
  justify-content: center;
}

.service-item picture {
  display: block;
  width: 100%;
}

.service-item picture img {
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .service-item picture img {
    width: 70%;
    margin: auto;
  }
}

.label {
  font-size: 7px;
  font-weight: 300;
  min-width: 120px;
  margin: 0;
}
.pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 2vw, 26px);
  flex: 1;
}
.narrow .pills {
  max-width: 560px;
  grid-template-columns: repeat(3, 1fr);
  flex: 0 1 560px;
}
.pills li {
  aspect-ratio: 1.75/1;
  border-radius: 50%;
  background: #b7d3ef;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  padding: 8px;
  color: #10243b;
}
.note {
  font-size: 12px;
  line-height: 1.8;
  font-weight: 700;
  margin: 14px 0 0 150px;
}
.service-item {
  max-width: 800px; /* 最大幅 */
  min-width: 240px; /* 最小幅 */
  margin: auto;
}
.service-item img {
  width: 100%;
}
.service-item-text {
  max-width: 1000px; /* 最大幅 */
  margin: auto;
  margin-top: 30px;
  padding: 15px;
  font-size: clamp(13px, 1.5vw, 20px);
}

.page-intro {
  max-width: 800px; /* 最大幅 */
  margin: auto;
  margin-top: 30px;
  padding: 5px;
  font-size: clamp(18px, 1vw, 22px);
  font-feature-settings: "palt";
}


/*マネジメントサポート*/

.manage-suppo {
  max-width: 1500px;
  margin: -50px auto 0px;
  padding: 60px 20px 80px;
}
.manage-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  align-items: center;
  gap: 48px;
}
.manage-image img {
  width: 100%;
  height: auto;
  display: block;
}
.manage-honbun p {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.9;
  font-feature-settings: "palt";
}
/* SP */
@media (max-width: 768px) {
  .manage-suppo {
    padding: 0px 20px 60px;
    margin: auto;
  }
  .manage-inner {
    grid-template-columns: 1fr;
    gap: 28px;

  }
  .manage-honbun p {
    font-size: 14px;
    line-height: 1.85;
  }
  .manage-inner {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .manage-image,
  .manage-honbun {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .manage-honbun p {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .management-btn {
    width: 100%;
    max-width: 360px;
    margin: 30px auto 0;
  }
}

/*財務・経理サポート*/
.offi-suppo {
  max-width: 1500px;
  margin: -50px auto 0px;
  padding: 60px 20px 80px;
}
.offi-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  align-items: center;
  gap: 48px;
}
.offi-image img {
  width: 100%;
  height: auto;
  display: block;
}
.offi-honbun p {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
/* SP */
@media (max-width: 768px) {
  .offi-suppo {
    padding: 40px 20px 60px;
  }
  .offi-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 28px;
  }
  .offi-honbun p {
    font-size: 14px;
    line-height: 1.85;
  }
}

/*メンタルサポート*/
.management-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 350px;
  height: 40px;

  margin-top: 30px;
  margin-left: auto;

  background: rgb(233, 121, 160);
  border-radius: 999px;

  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;

  transition: .3s;
  font-feature-settings: "palt";
}

.management-btn:hover {
  opacity: 0.8;
}

.management-btn span {
  margin-left: 15px;
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 860px) {
  .category-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 80%;
    padding-bottom: 50px;
  }
  .category-nav a {
    font-size: 16px;
  }
  .catenavi-haba {
    width: 100%;
    font-feature-settings: "palt";
  }
  .service-item {
    display: block;
  }
  .label {
    margin: 0 0 12px;
  }
  .pills {
    grid-template-columns: repeat(2, 1fr);
  }
  .narrow .pills {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
  .pills li {
    min-height: 86px;
    aspect-ratio: auto;
  }
  .note {
    margin-left: 0;
  }
  .contact-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

}
@media (max-width: 520px) {
  .page-hero {
    min-height: 320px;
    background-position: center top;
  }
  .page-hero h1 {
    font-size: 20px;
    margin-bottom: -10px;
  }
  .page-hero p {
    font-size: 17px;
  }
  
  .category-nav {
    grid-template-columns: 1fr;
    padding-inline: 24px;
    margin-block: 24px;
    width: 70%;
  }
    .catenavi-haba {
    width: 90%;
  }
  .support {
    padding-inline: 18px;
  }
  .support h2 {
    font-size: 20px;
  }
  .lead {
    font-size: 12px;
    margin-bottom: 36px;
  }
  .content-section {
    margin-bottom: 44px;
  }
  .kigyotitle-haba h3 {
    font-size: 16px;
    padding-top: 5px;
    line-height: 30px;
    font-feature-settings: "palt";
  }

  .pills {
    grid-template-columns: 1fr;
  }
  .narrow .pills {
    grid-template-columns: 1fr;
  }
  .page-intro {
    margin: 30px;
  }
}

/*実績のページ*/

.cases-hero {
  position: relative;
  min-height: 100px;
  padding-top: var(--header-h);
  background: url("../img/jissekiMV.jpg") center center / cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cases-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.cases-hero h1 {
  font-size: clamp(34px, 1vw, 56px);
  letter-spacing: 0.12em;
  text-shadow: 0 4px 14px rgba(22, 76, 120, 0.32);
}

.training-list {
  width: min(800px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.training-card {
  background: #dbe8fb;
  border-radius: 16px;
  padding: 28px 32px;

  display: grid;
  grid-template-columns: 170px 1px 1fr;
  align-items: center;
  gap: 28px;
}

.training-title {
  color: #1289de;
  text-align: center;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.training-divider {
  width: 1.5px;
  height: 100%;
  min-height: 50px;
  background: #fff;
}

.training-card ul {
  margin: 0;
  padding-left: 0.5em;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.training-card li {
  margin: 0;
}

.seminar-link {
  display: inline-block;
  padding: 2px 12px;
  border: 1.5px solid #ec6c9c;
  border-radius: 999px;
  color: #ec6c9c;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.seminar-link:hover {
  background: #ec6c9c;
  color: #fff;
}
.seminar-link::after {
  content: " ▶︎";
}

/* SP */
@media (max-width: 640px) {
  .training-list {
    width: 92%;
    gap: 18px;
  }
  .training-card {
    padding: 24px 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .training-title {
    font-size: 20px;
  }
  .training-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
  }
  .training-card ul {
    font-size: 17px;
    line-height: 1.8;
  }
}

/*実績２のページ*/
.job-support {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0px 0 80px;
  font-size: clamp(18px, 1vw, 22px);;
  color: #111;
}

.job-main-photo {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.job-lead {
  max-width: 1000px;
  margin: 0 auto 42px;
}

.job-lead p {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
}

.job-heading {
  width: max-content;
  margin: 0 auto 26px;
  color: #147cff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  border-bottom: 8px solid #cfe1ff;
}

.job-message {
  margin: 32px auto 0;
  color: #147cff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.career-points {
  max-width: 1300px;
  margin: 0 auto;
  padding: -60px 40px 80px;
}

.career-points-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 54px);
}

.career-point img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.career-point p {
  margin: 0;
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.03em;
}

/* タブレット */
@media (max-width: 900px) {
  .career-points-inner {
    gap: 28px;
  }

  .career-point p {
    font-size: 15px;
  }
}

/* SP */
@media (max-width: 768px) {
  .career-points {
    padding: -40px 20px 60px;
    width: 70%;
  }

  .career-points-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .career-point {
    max-width: 460px;
    margin: 0 auto;
  }

  .career-point img {
    margin-bottom: 16px;
  }

  .career-point p {
    font-size: 20px;
    line-height: 1.5;
  }
}



/* SP */


@media (max-width: 640px) {
  .job-support {
    width: 92%;
    padding: 32px 0 56px;
  }

  .job-lead p {
    font-size: 20px;
    margin: -20px 20px 0px;
  }

  .job-heading {
    font-size: 25px;
    text-align: center;
  }

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

  .job-main-photo {
  margin-top: -50px;
}

.job-main-photo {
  margin-bottom: 30px;
}

}

/*大学高校向け*/
.career-lecture {
  max-width: 1300px;
  width: 92%;
  margin: 0 auto;
  padding: 0px 0 80px;
  font-size: clamp(18px, 1vw, 22px);
  color: #111;
}

.lecture-photo {
  width: min(460px, 90%);
  height: auto;
  display: block;
  margin: 0 auto 28px;
}

.lecture-text {
  margin: 0 0 24px;
}

.lecture-text p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.power-block {
  max-width: 700px;
  margin: 18px auto 28px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 34px;
}

.power-block img {
  width: 150px;
  height: auto;
  display: block;
}


.power-text p,
.power-text ul {
  margin: 0;
  font-size: 20px;
  line-height: 1.75;
}

  

.power-text ul {
  list-style: none;
  padding: 0;
}

.power-text li::before {
  content: "●";
}


/* SP */
@media (max-width: 640px) {
  .career-lecture {
    width: 92%;
    padding: 32px 0 56px;
  }

  .lecture-photo {
    width: 100%;
    margin-top: -40px;
  }

  .lecture-text p {
    font-size: 13px;
    line-height: 1.8;
  }

  .power-block {
    max-width: 700px;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 18px auto 28px;
  }

  .power-block img {
    width: 120px;
    margin: 0 auto;
  }

.power-text p,
.power-text ul {
  margin: 0 20px;
  font-size: 20px;
  line-height: 1.75;
}

}

/*若手社員ビジネス塾*/

.business-training {
  max-width: 800px;
  width: 92%;
  margin: 0 auto;
  padding: 40px 0 80px;

  font-family: "Noto Sans JP", sans-serif;
  color: #111;
}
.training-photo {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 34px;
}
.training-text {
  max-width: 680px;
  margin: 0 auto;
}
.training-text h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
.training-text h3 {
  margin: 18px 0 2px;
  color: #147cff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}
.training-text p {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}
.circle-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}
.circle-list li::before {
  content: "●";
}
.training-icons {
  width: min(360px, 72%);
  height: auto;
  display: block;
  margin: 36px auto 0;
}
.highlight-heading {
  color: #1289de;
  line-height: 1;
}

/* SP */
@media (max-width: 640px) {
  .business-training {
    width: 92%;
    padding: 32px 0 56px;
  }
  .training-text {
    max-width: 100%;
  }
  .training-text h2 {
    font-size: 16px;
  }
  .training-text h3 {
    font-size: 15px;
  }
  .training-text p,
  .circle-list {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .training-icons {
    width: min(280px, 82%);
  }
}

/*中小企業向け 採用担当者セミナー*/
.recruit-seminar {
  max-width: 800px;
  width: 92%;
  margin: 0 auto;
  padding: 40px 0 90px;
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
}

.seminar-photo {
  width: min(460px, 90%);
  height: auto;
  display: block;
  margin: 0 auto 32px;
}

.seminar-lead {
  max-width: 700px;
  margin: 0 auto 40px;
}

.seminar-lead h2 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.seminar-lead p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.seminar-point {
  max-width: 420px;
  width: 100%;
}
.seminar-points {
  display: grid;
  grid-template-columns: repeat(2, 320px);
  justify-content: center;
  gap: 30px;
}

.seminar-point img {
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.seminar-point h3 {
  margin: 0 0 4px;
  color: #147cff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.seminar-point p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

/* SP */
@media (max-width: 640px) {
  .recruit-seminar {
    width: 92%;
    padding: 32px 0 60px;
  }

  .seminar-photo {
    width: 100%;
  }

  .seminar-lead h2 {
    font-size: 16px;
  }

  .seminar-lead p,
  .seminar-point p {
    font-size: 13px;
    line-height: 1.8;
  }

  .seminar-points {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .seminar-point img {
    width: min(220px, 70%);
  }

  .seminar-point h3 {
    font-size: 15px;
  }
}

/*会社案内のページ*/

.company-hero {
  position: relative;
  min-height: 100px;
  padding-top: var(--header-h);
  background: url("../img/companyMV.jpg") center center / cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.company-hero h1 {
  font-size: clamp(34px, 1vw, 56px);
  letter-spacing: 0.12em;
  text-shadow: 0 4px 14px rgba(22, 76, 120, 0.32);
}


.message-section {
  background:
    linear-gradient(to bottom, #ffffff 0, rgba(255, 255, 255, 0) 150px),
    url("../img/message_back.jpg") center bottom / cover no-repeat;
}
.message-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  max-width: 320px;
  margin: 0 auto 36px;
  padding: 10px;
  border: 1px solid #ff6ba7;
  border-radius: 999px;
  color: #ff4f9a;
  text-align: center;
  font-size: clamp(16px, 2.5vw, 20px);
  letter-spacing: 0.2em;
}

.message-block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.message-photo {
  width: min(260px, 80%);
  flex: 0 0 35%;
}

.message-photo img,
.vision-box img {
  width: 100%;
  height: auto;
  display: block;
}


.message-text p {
  margin: 0 0 18px;
  font-size: clamp(15px, 2vw, 22px);
  line-height: 1.7;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.message-text {
  flex: 1;
}

.message-title {
  font-size: clamp(22px, 4vw, 30px);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  margin: 0 0 18px;
  color: #0663a5;
  font-feature-settings: "palt";
}

.vision-box {
  width: min(700px, 100%);
  margin: 25px auto 0;
}

@media (max-width: 768px) {
  .message-block {
    flex-direction: column;
  }

  .message-photo {
    width: min(260px, 80%);
    margin: 0 auto;
  }
}

/* PC */
@media (min-width: 701px) {
  .message-section {
    padding: 28px 20px 90px;
  }

  .section-title {
    margin-bottom: 55px;
  }

  .message-block {
    flex-direction: row;
    align-items: flex-start;
    gap: 36px;
  }

  .message-photo {
    width: 260px;
    flex-shrink: 0;
  }

  .message-text {
    flex: 1;
  }

}

/* SP */
@media (max-width: 640px) {
  .message-block {
    width: 94%;
    padding: 32px 0 56px;
  }
  .message-text {
    margin: auto 30px;
  }
  .message-text p {
    font-size: 13px;
    line-height: 1.9;
  }
  .vision-box img {
    margin-top: -50px;
    width: 85%;
    margin: auto;
  }
}

/* SP */
@media (max-width: 640px) {
  .message-section {
    padding: 36px 0 56px;
  }
  .message-text p {
    font-size: 13px;
  }
  .message-photo {
    margin-top: -50px;
    margin-bottom: -30px;
  }
  .vision-box {
    margin-top: -50px;
    margin-bottom: 50px;
  }
}

/*概要*/
.company-profile {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #111;
}

.company-profile dl {
  display: grid;
  grid-template-columns: 100px 1.2fr;
  column-gap: 20px;
  row-gap: 15px;
}
.company-profile dt {
  color: #ec6c9c;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.company-profile dd {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .company-profile dl {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
  .company-profile dt {
    margin-top: 22px;
    font-size: 13px;
  }
  .company-profile dd {
    font-size: 16px;
  }
}

/*メンタルヘルスのページ*/
.mental-hero {
  position: relative;
  min-height: 100px;
  padding-top: var(--header-h);
  background: url("../img/mentalMV.jpg") center center / cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}


/*マップ*/
@media (max-width: 960px) {
  iframe {
    max-width: 80%;
    display: block;
    margin: auto;
  }
}

/*タブレット〜スマホ向け*/
@media (max-width: 960px) {
  :root {
    --header-h: 80px;
  }
  .site-header {
    background: rgba(20, 145, 231, 0.94);
  }
  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 29px;
    margin-left: 10px;
  }
  
  .brand-mark img {
    width: 45px;
    height: auto;
    margin-top: 5px;
  }
  .brand-text small {
    font-size: 11px;
  }
  .brand-text strong {
    font-size: 20px;
  }
  .menu-button {
    display: grid;
    gap: 6px;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }
  .menu-button span {
    width: 30px;
    height: 3px;
    background: currentColor;
    border-radius: 999px;
    transition: 0.25s;
  }
  .menu-button em {
    font-style: normal;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
  }
  .menu-button.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }
  .menu-button.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .global-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 24px 24px;
    background: rgba(20, 145, 231, 0.96);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
  }
  .global-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .global-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .hero {
    min-height: auto;
    padding-bottom: 180px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 58px;
    gap: 32px;
  }

  .catch-bubble {
    min-height: 250px;
    width: min(520px, 100%);
    margin: 0 auto;
  }
  .catch-bubble img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .hero-copy {
    max-width: 680px;
    margin: 0 auto;
    font-weight: 700;
    text-shadow: 2px 2px 2px rgba(133, 133, 234, 0.5);
    font-feature-settings: "palt";
  }

  .contact-section {
    padding-top: 110px;
  }
  .contact-section h2 span {
    padding-top: 10px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(560px, 100%);
  }
  address {
    text-align: center;
  }
}

/*スマホ向け*/
@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }
  .brand {
    gap: 10px;
  }
  .brand-text small {
    display: none;
  }
  .brand-text strong {
    font-size: 24px;
  }
  .catch-bubble {
    min-height: 220px;
  }
  .catch-bubble img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .catch-bubble::before {
    width: 32px;
    height: 32px;
    right: 6px;
    bottom: 22px;
  }
  .catch-bubble::after {
    right: -16px;
    bottom: 5px;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.5;
    width: 80%;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 2px rgba(133, 133, 234, 0.5);
    font-feature-settings: "palt";
  }
  .mountains-top {
    height: 170px;
  }
  .contact-section {
    min-height: 560px;
    padding: 98px 18px 160px;
  }
  .contact-section h2 span {
    font-size: 46px;
    letter-spacing: 0.16em;
  }
  .contact-section h2 span {
    margin-top: 50px;
}
  .mail-button {
    min-height: 104px;
    font-size: 13px;
  }
  .site-footer {
    font-size: 11px;
  }
}

/* =====================================================
   全ページ 本文サイズ統一
   PC: 18px前後 / SP: 15〜16px前後
   既存指定の後に読み込ませて、本文系だけを自然に統一
===================================================== */

/* 本文テキストの共通基準 */
.lead,
.service-item-text,
.page-intro,
.manage-honbun p,
.offi-honbun p,
.job-lead p,
.career-point p,
.lecture-text p,
.power-text p,
.power-text ul,
.training-text p,
.circle-list,
.seminar-lead p,
.seminar-point p,
.message-text p,
.company-profile dd,
address {
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.85;
}

/* 小さめに見せたい補足・ラベル系 */
.label,
.site-footer,
.brand-text small {
  font-size: clamp(11px, 1vw, 13px);
}

/* 見出しは本文より少し大きく、暴れない範囲に統一 */
.job-lead h2,
.training-text h2,
.seminar-lead h2 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}
.message-title {
  font-size: clamp(25px, 2vw, 30px);
}
.job-heading {
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.4;
}

.highlight-heading h2,
.training-text h3,
.seminar-point h3 {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

/* スマホ時の本文・余白調整 */
@media (max-width: 640px) {
  .lead,
  .service-item-text,
  .page-intro,
  .manage-honbun p,
  .offi-honbun p,
  .job-lead p,
  .career-point p,
  .lecture-text p,
  .power-text p,
  .power-text ul,
  .training-text p,
  .circle-list,
  .seminar-lead p,
  .seminar-point p,
  .message-text p,
  .company-profile dd,
  address {
    font-size: 16px;
    line-height: 1.6;
  }
.message-title {
  font-size: 20px;
  margin-top: -60px;
  margin-left: 20px;
}
  .page-intro {
    width: calc(100% - 40px);
    max-width: 90%;
    margin: 30px auto;
    padding: 0;
  }

  .page-intro p {
    font-size: 15px;
    line-height: 1.5;
    word-break: break-word;
    width: 90%;
    margin: auto;
  }

  .service-item-text {
    padding: 0 20px;
  }

  .job-lead {
    max-width: 100%;
    margin: 0 auto 36px;
  }

  .job-lead p {
    margin: -20px 20px 0;
    font-weight: 700;
  }

   .job-lead h2 {
    margin-bottom: 30px;
   }

  .job-heading {
    width: auto;
    max-width: calc(100% - 40px);
    margin: 0 auto 24px;
    font-size: 22px;
    text-align: center;
  }

  .job-message {
    font-size: 16px;
    line-height: 1.8;
  }

  .career-points {
    width: 92%;
    padding: 0 20px 60px;
  }

  .career-points-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .career-point {
    max-width: 460px;
    margin: 0 auto;
  }

  .career-lecture {
    width: 92%;
    padding: 32px 0 56px;
  }

  .lecture-photo {
    width: 100%;
  }

  .power-block {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .power-block img {
    width: 120px;
    margin: 0 auto;
  }

  .power-text p,
  .power-text ul {
    margin: 0 20px;
    font-weight: 700;
  }

  .training-text p,
  .circle-list {
    margin-bottom: 16px;
    font-weight: 700;
  }

  .seminar-points {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .seminar-point {
    width: 100%;
    max-width: 100%;
  }

  .seminar-point img {
    width: min(220px, 70%);
  }

  .seminar-point p {
    font-weight: 600;
  }

  .message-text {
    margin: auto 24px;
    font-feature-settings: "palt";
  }

  .company-profile dd {
    line-height: 1.6;
  }
}



/*spの各ページMV差替え*/

/*トップの山*/
@media (max-width: 960px) {
  .mountains-top {
    bottom: -1px;
    height: 250px;
    background-size: 180% auto;
    background-position: center top;
  }


}

/* サービス */
@media (max-width: 640px) {
  .page-hero {
    background-image: url("../img/sp_serviceMV.jpg");
  }
}

/* 会社案内 */
@media (max-width: 640px) {
  .company-hero {
    background-image: url("../img/sp_companyMV.jpg");
  }
    .company-hero h1 {
     font-size: 20px;
     margin-bottom: -10px;
  }
}
/* 導入事例 */
@media (max-width: 640px) {
  .cases-hero {
    background-image: url("../img/sp_jissekiMV.jpg");
  }
  .cases-hero h1 {
     font-size: 20px;
     margin-bottom: -10px;
  }
}
/* メンタルヘルス */
@media (max-width: 640px) {
  .mental-hero {
    background-image: url("../img/sp_mentalMV.jpg");
  }
  .mental-hero h1 {
     font-size: 20px;
     margin-bottom: -10px;
  }
}
@media (max-width: 640px) {

  .page-hero,
  .company-hero,
  .cases-hero,
  .mental-hero {
    background-position: center center;
    background-size: cover;
  }

}