@charset "UTF-8";

/* =========================================================
   WithCareer LP (standalone)
   - 旧テーマの WithCareer 専用SCSSを元に必要最小限へ再構成
   - 外部依存なし
========================================================= */

:root {
  --c-white: #fff;
  --c-black: #111;
  --c-main: #153962;
  --c-accent: #2fc7f9;
  --c-cta: #ff9b0d;
  --shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-black);
  background: var(--c-white);
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* =========================================================
   Header / Footer (LP)
========================================================= */

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.lp-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-header__logo {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--c-accent);
  line-height: 1;
  font-size: clamp(1.35rem, 1.1rem + 1.2vw, 1.75rem);
}
.lp-header__nav-list {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-header__nav-list a {
  display: inline-flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
}
.lp-header__nav-list a:hover {
  background: rgba(47, 199, 249, 0.12);
}
.lp-header__cta {
  background: var(--c-cta);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  aspect-ratio: 5.75 / 1;
  width: clamp(160px, 18vw, 210px);
  white-space: nowrap;
}
.lp-header__cta:hover {
  background: #ff8a00;
}

@media (max-width: 768px) {
  .lp-header__nav-list li:nth-child(-n+4) {
    display: none;
  }
  .lp-header__cta {
    width: 180px;
  }
}

.lp-footer {
  background: #0b2235;
  color: var(--c-white);
  padding: 28px 0;
}
.lp-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-footer__nav-list a {
  color: var(--c-white);
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0.9;
}
.lp-footer__nav-list a:hover {
  opacity: 1;
  text-decoration: underline;
}
.lp-footer__copyright {
  color: var(--c-white);
  font-weight: 700;
  opacity: 0.9;
  font-size: 0.85rem;
}

/* layout */
.inner-w,
.inner-n {
  width: 85%;
  margin: 0 auto;
}
.cta.inner-w {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .inner-w,
  .inner-n {
    width: 85%;
  }
}
@media (max-width: 768px) {
  .inner-w,
  .inner-n {
    width: 85%;
  }
}

/* =========================================================
   WithCareer blocks (minimal)
========================================================= */

.withcareer-ttl {
  font-size: clamp(1.5rem, 2.1vw, 2.3rem);
  color: var(--c-main);
  text-align: center;
  position: relative;
  margin: 0 auto 5%;
  width: fit-content;
}
.withcareer-ttl::before {
  width: 20%;
  border-radius: 5px;
  content: "";
  background-color: var(--c-accent);
  height: 5px;
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
}
.withcareer-ttl span {
  font-size: 1.2em;
}

.sub-ttl-career {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 5%;
  font-weight: 500;
}
.sub-ttl-career .break {
  display: inline-block;
}

.withcareer-btn {
  margin-right: auto;
  width: min(430px, 100%);
  margin: auto;
}
.withcareer-top-wrap__txt .withcareer-btn {
  margin-left: 0;
  margin-right: auto;
}
.withcareer-btn a {
  width: 100%;
  aspect-ratio: 5.75 / 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: 0.3s;
  background-color: var(--c-cta);
  border-radius: 9999px;
}
.withcareer-btn a p {
  margin: 0;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-white);
  line-height: 1;
  white-space: nowrap;
}
.withcareer-btn a img {
  width: 24px;
  height: auto;
  flex: 0 0 auto;
  transition: transform 0.3s;
}
.withcareer-btn a:hover img {
  transform: translateX(8px);
}

.withcareer-top-wrap {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-color: #44cdfa;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}
.withcareer-top-wrap__txt {
  width: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3vw;
}
.withcareer-top-wrap__txt h2 {
  color: var(--c-white);
  font-size: clamp(1.2rem, 1.9vw, 2rem);
  line-height: 1.5;
  margin: 0;
}
.withcareer-top-wrap__txt h1 {
  width: fit-content;
  background-color: var(--c-white);
  color: var(--c-accent);
  line-height: 1.5;
  padding: 0 20px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
}
.withcareer-top-wrap__txt h1 span {
  font-size: clamp(1.1rem, 2.3vw, 2.2rem);
  font-weight: 500;
}
.withcareer-top-wrap__txt p.sub {
  color: var(--c-white);
  font-weight: 500;
  font-size: clamp(0.8rem, 1.1vw, 1.3rem);
  margin: 0;
}

.withcareer-top-wrap__img {
  width: 40%;
  height: auto;
  z-index: 1;
}
.withcareer-top-wrap__img img:nth-of-type(2) {
  display: none;
}

.withcareer-top-wrap__rate {
  width: 100%;
  background-color: var(--c-main);
  display: flex;
  justify-content: center;
  padding: 12px 0;
}
.withcareer-top-wrap__rate ul {
  width: min(900px, 90%);
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: var(--c-white);
}
.withcareer-top-wrap__rate li {
  width: calc(100% / 3);
  text-align: center;
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  font-weight: 500;
}
.withcareer-top-wrap__rate li:not(:last-child) {
  border-right: solid 1px rgba(255, 255, 255, 0.6);
}
.withcareer-top-wrap__rate li span {
  font-weight: 800;
  margin-left: 10px;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
  letter-spacing: 0.05em;
}

.withcareer-msg {
  padding: 64px 0;
}

.withcareer-msg-wrap .ttl {
  text-align: center;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin: 0 0 24px;
  color: var(--c-main);
  font-weight: 800;
}
.withcareer-msg-wrap__con {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
}
.withcareer-msg-wrap__con__img {
  width: 40%;
}
.withcareer-msg-wrap__con__txt {
  width: 55%;
  color: var(--c-main);
}
.withcareer-msg-wrap__con__txt p {
  font-size: 1.05rem;
  line-height: 2;
  font-weight: 800;
  margin: 0;
}
.withcareer-msg-wrap__con__txt p span {
  color: var(--c-accent);
}
.withcareer-msg-wrap__con__txt h3 {
  margin: 20px 0 0;
  font-size: 1.25rem;
}
.withcareer-msg-wrap__con__txt h3 span {
  color: var(--c-accent);
}

.withcareer-cta {
  background-color: var(--c-accent);
}
.withcareer-cta-wrap {
  margin-bottom: 0;
  padding: 40px 16px;
  text-align: center;
}
.withcareer-cta-wrap h2 {
  font-size: 1.2rem;
  color: var(--c-white);
  line-height: 1.75;
  margin: 0;
}

.withcareer-bg {
  background-image: url(./img/career-bg.png);
  background-position: 10%;
  background-size: cover;
}

.withcareer-feature {
  padding: 64px 0;
  width: 85%;
  margin: auto;
}

.withcareer-feature-wrap__con {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.withcareer-feature-wrap__con__block {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  gap: 26px;
  align-items: center;
}
.withcareer-feature-wrap__con__block__img {
  width: 250px;
  flex: 0 0 auto;
}
.withcareer-feature-wrap__con__block__txt h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--c-main);
}
.withcareer-feature-wrap__con__block__txt p {
  margin: 0 0 10px;
  font-weight: 500;
}
.withcareer-feature-wrap__con__block__txt p span {
  background: rgba(47, 199, 249, 0.14);
  padding: 0 4px;
}
.withcareer-feature-wrap__con__block__txt ul {
  padding-left: 0;
}
.withcareer-feature-wrap__con__block__txt li {
  font-weight: 500;
  line-height: 1.8;
}

.withcareer-type {
  padding-bottom: 64px;
}

.withcareer-type-wrap__con {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.withcareer-type-wrap__con__block {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.withcareer-type-wrap__con__block__txt {
  padding: 14px 14px 18px;
}
.withcareer-type-wrap__con__block__txt h3 {
  margin: 0 0 6px;
  color: var(--c-main);
  text-align: center;
}
.withcareer-type-wrap__con__block__txt h4 {
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.withcareer-type-wrap__con__block__txt ul li {
  line-height: 1.8;
  font-weight: 500;
}

.withcareer-type-wrap__con__block__img {
  display: flex;
  justify-content: center;
  padding: 18px 0 0;
}
.withcareer-type-wrap__con__block__img img {
  width: auto;
  max-width: 70%;
  margin: 0 auto;
}

.withcareer-banner-wrap__img {
  position: relative;
  overflow: hidden;
}
.withcareer-banner-wrap.inner-w {
  width: 100%;
}
.withcareer-banner-wrap__img img {
  display: block;
}
.withcareer-banner-wrap__img .withcareer-btn {
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  margin-right: 0;
}
.withcareer-banner-wrap__sp {
  display: none;
}
.withcareer-banner-wrap__sp .withcareer-btn {
  margin: 0 auto;
}

/* CTA (bottom) */
.cta.footer {
  background: var(--c-main);
  padding: 60px 0;
}
.cta .cta-wrap {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}
.cta .s-ttl {
  margin: 0 0 16px;
  line-height: 1.4;
  color: var(--c-white);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 800;
}
.cta.footer .withcareer-btn {
  margin: 0 auto;
}
.btn-set > span {
  color: var(--c-white);
  margin-bottom: 10px;
  display: block;
  font-weight: 800;
  font-size: 1rem;
}
.btn {
  margin: 0 auto;
  width: min(430px, 100%);
  background-color: var(--c-white);
  border-radius: 9999px;
}
.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  width: 100%;
  aspect-ratio: 5.75 / 1;
}
.btn a p {
  margin: 0;
  font-weight: 800;
  color: var(--c-cta);
  line-height: 1;
}
.btn a img {
  width: 24px;
  height: auto;
}

@media (max-width: 1024px) {
  .withcareer-top-wrap {
    padding-top: 48px;
  }
  .withcareer-top-wrap__txt,
  .withcareer-top-wrap__img {
    width: 48%;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .withcareer-type-wrap__con {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .withcareer-btn {
    width: min(300px, 82%);
  }
  .withcareer-btn a {
    gap: 10px;
  }
  .withcareer-btn a p {
    font-size: 1rem;
  }
  .withcareer-top-wrap {
    flex-direction: column;
    padding: 48px 0 0;
  }
  .withcareer-top-wrap__txt,
  .withcareer-top-wrap__img {
    width: 92%;
    padding: 0;
  }
  .withcareer-top-wrap__img img:first-of-type {
    display: none;
  }
  .withcareer-top-wrap__img img:nth-of-type(2) {
    display: block;
  }
  .withcareer-msg-wrap__con {
    flex-direction: column;
  }
  .withcareer-msg-wrap__con__img,
  .withcareer-msg-wrap__con__txt {
    width: 100%;
  }
  .withcareer-feature-wrap__con__block {
    flex-direction: column;
    gap: 14px;
  }
  .withcareer-feature-wrap__con__block__img {
    width: min(160px, 42vw);
    margin: 0 auto;
  }
  .withcareer-type-wrap__con__block__img {
    width: min(160px, 42vw);
    margin: 14px auto 0;
  }
  .withcareer-type-wrap__con__block__img img {
    width: 100%;
    max-width: 100%;
  }
  .withcareer-banner-wrap__img {
    display: none;
  }
  .withcareer-banner-wrap.inner-w {
    width: 100%;
  }
  .withcareer-banner-wrap__sp {
    text-align: center;
    width: 100%;
    background-color: var(--c-accent);
    border-radius: 0;
    min-height: 235px;
    display: block;
    padding: 40px 12px;
  }
  .withcareer-banner-wrap__sp h2 {
    margin: 0 0 14px;
    font-size: 1.3rem;
    color: var(--c-white);
  }
  .withcareer-banner-wrap__sp p {
    margin: 0 0 18px;
    font-weight: 500;
    font-size: clamp(0.72rem, 3.4vw, 0.9rem);
    color: var(--c-white);
    line-height: 1.7;
  }
  .withcareer-banner-wrap__sp .withcareer-btn {
    margin: 0 auto;
    width: min(300px, 85%);
  }
  .withcareer-msg {
    padding: 48px 0;
  }
  .withcareer-feature {
    padding: 48px 0;
  }
  .withcareer-type {
    padding-bottom: 48px;
  }
}

