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

body {
  font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  color: #333;
  word-wrap: break-word;
  line-height: 1;
  font-feature-settings: "palt";
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
p {
  margin: 0;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  background: 0 0;
  text-decoration: none;
  transition: all .2s ease
}

a:hover {
  transform: translateY(2px)
}

ul {
  list-style: none
}

:root {
  --color-main: #00B2B3;
  --color-main-dark: #0D8180;
  --color-main-light: #EDF8F9;
  --color-accent: #F8EE10;
  --color-white: #ffffff;
  --color-text: #333333;
}

/* ヘッダー */
.header {
  background: var(--color-white);
  padding: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header img {
  height: 48px;
}

/* 共通 */
.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 16px;
  }
}

/* =========================
   FV
========================= */
.fv {
  background: url("../images/mv_pc.webp") no-repeat center center / cover;
  overflow: hidden;
  position: relative;
}

.fv .inner {
  max-width: 1800px;
}

.fv-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 440px;
  padding: 40px 24px;
}

/* 左テキスト */
.fv-text {
  color: var(--color-white);
  max-width: 664px;
  margin-right: 16px;
}

/* コピー */
.fv-copy {
  font-size: 36px;
  line-height: 140%;
  font-weight: bold;
  color:var(--color-white);
  text-shadow: 0 1px 8px rgba(21, 21, 21, 0.10);
  letter-spacing: 1.8px;
  margin-bottom: 24px;
}

.fv-copy span {
  color: var(--color-accent);
}

/* タイトル */
.fv-title {
  color: var(--color-main);
  font-size: 64px;
  font-style: normal;
  font-weight: bold;
  line-height: 140%;
  letter-spacing: 3.2px;
  background: var(--color-white);
  display: inline-block;
  padding: 4px 24px;
  margin-bottom: 32px;
}

/* 説明 */
.fv-desc {
  border-top: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  padding: 10px 2px;
  width: 460px;
}

.fv-desc p {
  font-size: 20px;
  font-weight: bold;
  line-height: 140%;
  letter-spacing: 1px;
}

.highlight-1 {
  background: var(--color-accent);
  color: var(--color-main-dark);
  font-weight: bold;
  padding: 2px 3px;
  margin-right: 2px;
  margin-left: 1px;
}

/* 右画像 */
.fv-image {
  position: relative;
  flex-shrink: 0;
}

.fv-image img {
  width: 340px;
  max-width: none;
  transform: translateY(76px);
}

/* タブレット */
@media screen and (min-width: 769px) and (max-width: 1080px) {
  .fv-copy {
    font-size: 32px;
  }

  .fv-title {
    font-size: 44px;
    padding: 4px 16px;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  /* ヘッダー */
  .header {
    padding: 12px 0;
  }

  .header img {
    height: 40px;
  }

  /* FV全体 */
  .fv {
    background: url("../images/mv_sp.webp") no-repeat center center / cover;
  }

  .fv-flex {
    flex-direction: column;
    height: 276px;
    padding: 32px 20px;
    justify-content: end;
  }

  /* テキスト全体 */
  .fv-text {
    max-width: none;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-right: 0;
  }

  /* コピー */
  .fv-copy {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  /* タイトル */
  .fv-title {
    font-size: 32px;
    letter-spacing: 1.6px;
    padding: 4px 8px;
    margin-bottom: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  /* 画像 */
  .fv-image {
    position: absolute;
    right: -26px;
    top: -90px;
    width: 62%;
    z-index: 1;
  }

  .fv-image img {
    width: 100%;
    height: auto;
  }

  /* 説明ブロック */
  .fv-desc-area {
    background: var(--color-main-light);
  }
  .fv-desc-area-inner {
    padding: 24px 16px;
  }

  .fv-desc {
    border-top: 2px solid var(--color-main-dark);
    border-bottom: 2px solid var(--color-main-dark);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
  }

  .fv-desc p {
    font-size: 16px;
    letter-spacing: 0.8px;
    color: var(--color-main-dark);
  }
}

/* =========================
   PC/SP表示切り替え
========================= */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/* =========================
   おすすめ
========================= */
.recommend {
  background: var(--color-white);
  padding: 70px 20px 80px 20px;
  text-align: center;
}

.recommend .inner {
  padding: 0 ;
}

/* タイトル */
.recommend h2 {
  font-size: 28px;
  font-weight: bold;
  line-height: 140%;
  letter-spacing: 1.4px;
  margin-bottom: 24px;
}

.recommend h2::after {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  background: rgba(0, 178, 179, 0.40);
  margin: 16px auto 0;
}

/* リスト全体 */
.recommend ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 16px 0;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}

.recommend li .text {
  display: block;
}

/* 各項目 */
.recommend li {
  width: calc(50% - 40px);
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  line-height: 140%;
  letter-spacing: 0.9px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

/* チェックアイコン */
.recommend li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url("../images/check.svg") no-repeat center / contain;
}

/* ハイライト */
.highlight-2 {
  background: linear-gradient(transparent 70%, var(--color-accent) 70%);
  color: var(--color-main);
  white-space: nowrap;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  margin-right: 0;
  margin-left: 0;
}

/* タブレット */
@media screen and (min-width: 870px) and (max-width: 1080px) {
  .recommend h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .recommend li {
    font-size: 16px;
  }
}

@media screen and (min-width: 769px) and (max-width: 869px) {
  .recommend h2 {
    font-size: 24px;
  }

  .recommend ul {
    display: block;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
  }

  .recommend li {
    width: 100%;
    margin-bottom: 12px;
    font-size: 16px;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .recommend {
    padding: 50px 16px;
  }
  
  .recommend h2 {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  
  .recommend h2::after {
    margin: 12px auto 0;
  }

  .recommend ul {
    display: block;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
  }

  .recommend li {
    width: 100%;
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  
}

/* ===============================
   CTAセクション
=============================== */
.cta {
  background: var(--color-main-light);
  padding: 80px 20px;
  text-align: center;
}

.cta .inner {
  position: relative;
}

/* 画像（PC） */
.cta .inner .pc-only {
  display: flex;
}

.cta .inner .sp-only {
  display: none;
}

.cta-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.cta-visual img:first-child {
  position: absolute;
  left: 5%;
  top: 0;
  width: 94px;
  height: auto;
}

.cta-visual img:last-child {
  position: absolute;
  right: 5%;
  top: 0;
  width: 98px;
  height: auto;
}

/* リード文 */
.cta-lead-1 {
  color: var(--color-main);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1.2px;
}

.cta-lead-2 {
  color: var(--color-main);
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1.6px;
}

/* CTAボタン */
.cta-btn {
  display: flex;
  width: 560px;
  margin: 16px auto 32px;
  padding: 24px 0;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(90deg, #FE9B3C 0%, #F87803 100%);
  color: var(--color-white);
  font-size: 24px;
  font-weight: bold;
  line-height: 140%;
  letter-spacing: 1.2px;
  position: relative;
}

.cta-btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(-45deg);
}

/* 説明文 */
.cta-text {
  color: var(--color-text);
  text-align: center;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.36px;
}

/* タブレット */
@media screen and (min-width: 769px) and (max-width: 1050px) {  
  .cta-visual img:first-child {
    position: absolute;
    left: 5%;
    top: 0;
    width: 68px;
    height: auto;
  }
  
  .cta-visual img:last-child {
    position: absolute;
    right: 5%;
    top: 0;
    width: 70px;
    height: auto;
  }

  .cta-btn {
    width: 500px;
  }
}

/* SP */
@media (max-width: 768px) {
  /* 画像切り替え */
  .cta .inner .pc-only {
    display: none;
  }

  .cta .inner .sp-only {
    display: block;
  }

  .cta {
    padding: 40px 0 50px 0;
  }
  
  .cta-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
  }
  
  /* 画像（SP） */
  .cta-visual-sp {
    text-align: center;
    margin-bottom: 24px;
  }
  
  .cta-visual-sp img {
    width: 122px;
    max-width: 100%;
    height: auto;
  }
  
  /* リード文 */
  .cta-lead-1 {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  
  .cta-lead-2 {
    font-size: 24px;
    letter-spacing: 1.2px;
  }
  
  /* CTAボタン */
  .cta-btn {
    width: 100%;
    margin: 12px auto 16px;
    padding: 20px 0;
    font-size: 18px;
    letter-spacing: 0.9px;
  }
  
  .cta-btn::after {
    width: 8px;
    height: 8px;
  }
  
  /* 説明文 */
  .cta-text {
    font-size: 16px;
    letter-spacing: 0.32px;
    text-align: left;
  }
}

/* ===============================
   ご紹介実績企業例
=============================== */
.company-example {
  margin: 0 auto;
  padding: 20px 10px 0 10px;
  max-width: 1000px;
}
.corporateLogo {
  max-width: 1000px;
  margin-top: 45px;
  padding: 0 0 18px;
  border-top: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
}

@media(max-width: 750px) {
  .corporateLogo + .detail_btn {
    margin: 20px 30px 45px;
  } 
}
.corporateLogo + .detail_btn {
  margin-bottom: 45px;
}

.corporateLogo > h2 {
  position: relative;
  top: -0.5em;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: var(--color-main);
}

.corporateLogo > h2 span {
  padding: 0 16px;
  background-color: #fff;
}

.corporateLogo__list {
  overflow: hidden;
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}

.corporateLogo__item:first-child {
  animation: slideMain 150s -75s linear infinite;
}

.corporateLogo__item:last-child {
  animation: slideSub 150s linear infinite;
}

.corporateLogo__inList {
  display: flex;
}

.corporateLogo__inItem img {
  width: 140px;
  height: auto;
  object-fit: cover;
  max-width: 140px;
  border: none;
  vertical-align: bottom;
}

@keyframes slideMain {
  0% {
    transform: translateX(100%)
  }

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

@keyframes slideSub {
  0% {
    transform: translateX(0)
  }

  to {
    transform: translateX(-200%)
  }
}

/* ===============================
   人気の求人例
=============================== */
.job-section {
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  color: var(--color-text);
  font-size: 28px;
  font-weight: bold;
  line-height: 140%;
  letter-spacing: 1.4px;
  position: relative;
  margin-bottom: 24px;
}

.section-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  background: rgba(0, 178, 179, 0.40);
  margin: 16px auto 0;
}

.slider {
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.card {
  width: calc((99% - 48px) / 3);
  flex-shrink: 0;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E9E9E9;
  box-shadow: var(--sds-size-depth-0) var(--sds-size-depth-025) var(--sds-size-depth-100) var(--sds-size-depth-0) rgba(27, 27, 27, 0.10);
  text-align: left;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 24px 16px 40px 16px;
}

.card h3 {
  color: var(--color-text);
  font-size: 22px;
  font-weight: bold;
  line-height: 150%;
  letter-spacing: 0.88px;
  margin-bottom: 16px;
}

.meta {
  color: var(--color-text);
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.72px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.work {
  margin-bottom: 8px;
}

.salary {
  margin-bottom: 16px;
}

.work::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url("../images/work.svg") no-repeat center / contain;
}

.salary::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url("../images/currency_yen.svg") no-repeat center / contain;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  border-radius: 4px;
  border: 1px solid var(--color-main);
  background: var(--color-white);
  display: inline-block;
  color: var(--color-main);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.56px;
  padding: 4px 8px;
}

/* ドット */
.dots {
  margin-top: 24px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #aaa;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background: var(--color-main);
}

/* SP */
@media (max-width: 768px) {
  .job-section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 20px;
    letter-spacing: 1px;
  }
  
  .section-title::after {
    margin: 12px auto 0;
  }
  
  .card h3 {
    font-size: 20px;
  }
  
  .meta {
    font-size: 16px;
    letter-spacing: 0.64px;
  }

  .slider {
    overflow: hidden;
    padding: 0;
  }

  .slider-track {
    display: flex;
    gap: 20px;
  }

  .card {
    flex: 0 0 80%;
  }
}

/* ===============================
   エントリー導入
=============================== */
.entry-intro {
  background: var(--color-main-light);
  text-align: center;
  padding: 60px 20px;
}

.entry-intro__lead-sm {
  color: var(--color-text);
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 150%;
  letter-spacing: 1.2px;
}

.entry-intro__lead {
  color: var(--color-main);
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 150%;
  letter-spacing: 1.6px;
}

/* ===============================
   エントリー
=============================== */
.entry-title__inner {
  background: var(--color-main);
  position: relative;
  padding: 40px 20px;
  text-align: center;
  overflow: visible;
}

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

.entry-title {
  color: var(--color-white);
  font-size: 28px;
  font-weight: bold;
  line-height: 140%;
  letter-spacing: 1.4px;
  position: relative;
  z-index: 1;
}

.entry-title__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(60% + 64px);
  transform: translate(-16px, -50%);
  width: 210px;
  height: 92px;
  background: url("../images/ENTRY.svg") no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}

/* SP */
@media (max-width: 768px) {
  .entry-intro {
    padding: 40px 16px;
  }
  
  .entry-intro__lead-sm {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  
  .entry-intro__lead {
    font-size: 22px;
    letter-spacing: 1.1px;
  }

  .entry-title__inner {
    padding: 24px 16px;
  }
  
  .entry-title {
    font-size: 20px;
    letter-spacing: 1px;
  }
  
  .entry-title__inner::before {
    top: 50%;
    left: 0;
    transform: translate(-16px, -50%);
    width: 210px;
    height: 70px;
  }
}

.entry-header__steps {
  display: none;
}

.entry-header__top {
  display: none;
}

.entry-header__notice {
  display: none;
}

/* ===============================
   footer
=============================== */
.footer {
  background: var(--color-main);
  color: var(--color-white);
  text-align: center;
  padding: 24px;
  font-size: 11px;
}