@charset "UTF-8";

/* ////////////////////////////////////////////////////////////////////
service
//////////////////////////////////////////////////////////////////// */


/* ==================================================
共通
================================================== */

.section-2col-t-i .inner,
.section-service .inner,
.section-cta .inner {
  width: min(var(--inner), calc(100% - 48px));
  margin: 0 auto;
}


/* ==================================================
hero-service
================================================== */

.hero-service {
  position: relative;

  width: 100%;
  height: clamp(520px, 52vw, 720px);

  overflow: hidden;

  background: #f4f4f4;
}


/* --------------------------
hero image
-------------------------- */

.hero-service-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;
}

.hero-service-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.86) 0%,
      rgba(255, 255, 255, 0.66) 32%,
      rgba(255, 255, 255, 0.12) 62%,
      rgba(255, 255, 255, 0) 100%);
}

.hero-service-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}


/* --------------------------
hero content
-------------------------- */

.hero-service-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;

  width: min(var(--inner), calc(100% - 48px));
  height: 100%;

  margin: 0 auto;
}

.hero-service-body {
  max-width: 650px;
}


/* --------------------------
hero title
-------------------------- */

.hero-service-title {
  margin: 0 0 28px;

  color: var(--color-main);

  /* シャドウ */
  text-shadow:
    0 0 4px rgba(255, 255, 255, 1),
    0 0 10px rgba(255, 255, 255, 0.9),
    0 0 18px rgba(255, 255, 255, 0.7);

  /* 袋文字 */
  /* -webkit-text-stroke: 1px rgba(255, 255, 255, 0.85);
  paint-order: stroke fill;
  text-shadow:
    0 1px 8px rgba(255, 255, 255, 0.65); */

  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.35;

  letter-spacing: 0.06em;
}


/* --------------------------
hero text
-------------------------- */

.hero-service-text {
  margin: 0;

  color: var(--color-text);

  /* シャドウ */
  text-shadow:
    0 0 4px rgba(255, 255, 255, 1),
    0 0 10px rgba(255, 255, 255, 0.9),
    0 0 18px rgba(255, 255, 255, 0.7);

  /* 袋文字 */
  /* -webkit-text-stroke: 1px rgba(255, 255, 255, 0.85);
  paint-order: stroke fill;
  text-shadow:
    0 1px 8px rgba(255, 255, 255, 0.65); */

  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;

  letter-spacing: 0.035em;
}


/* ==================================================
section-2col-t-i
顧問契約を結ぶメリット
================================================== */

.section-2col-t-i {
  padding: 80px 0;
}

.section-2col-t-i-content {
  display: flex;
  align-items: center;

  gap: 64px;

  padding: 48px;

  background: var(--color-white);

  border-radius: 16px;

  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.06);
}

.section-2col-t-i-body {
  width: 60%;
}

.section-2col-t-i-title {
  margin-bottom: 28px;

  color: var(--color-text);

  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.section-2col-t-i-text {
  margin-bottom: 20px;

  color: var(--color-text);

  font-size: 1rem;
  line-height: 2;
}

.section-2col-t-i-text:last-child {
  margin-bottom: 0;
}

.section-2col-t-i-image {
  width: 40%;

  overflow: hidden;

  border-radius: 14px;
}

.section-2col-t-i-image img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: cover;
}

/* --------------------------
強調テキスト
-------------------------- */

.section-2col-t-i-highlight {
  font-weight: 700;

  background:
    linear-gradient(
      transparent 72%,
      #DCE9E1 72%
    );
}


/* ==================================================
section-service
顧問業務・その他のサービス共通
================================================== */

.section-service {
  padding: 100px 0;
  background: var(--color-white);
}

/* .section-service+.section-service {
  padding-top: 40px;
} */

/* .section-service + .section-service {
  padding-top: 40px;
  padding-bottom: 60px;
} */

/* CTAの隙間解消 */
.section-service + .section-service {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-cta {
  padding-top: 40px;
}


/* ==================================================
section-service-heading
「顧問業務」「その他のサービス」
================================================== */

.section-service-heading {
  position: relative;

  margin-bottom: 64px;
  padding-bottom: 22px;

  color: var(--color-main);

  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;

  text-align: center;

  letter-spacing: 0.05em;
}

.section-service-heading::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  width: 56px;
  height: 3px;

  background: var(--color-main);

  transform: translateX(-50%);
}


/* ==================================================
service-block
01 労務相談
02 社保手続き代行
03 定期面談

01 給与計算代行
02 就業規則の作成・改定
================================================== */

.service-block {
  display: grid;

  grid-template-columns: 88px minmax(0, 1fr);

  gap: 40px;

  padding: 56px 0;

  border-top: 1px solid var(--color-line);
}

.service-block:last-child {
  border-bottom: 1px solid var(--color-line);
}


/* --------------------------
number
-------------------------- */

.service-block-number {
  color: var(--color-main);

  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}


/* --------------------------
body
-------------------------- */

.service-block-body {
  min-width: 0;
}


/* --------------------------
title
-------------------------- */

.service-block-title {
  margin-bottom: 28px;

  color: var(--color-text);

  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}


/* --------------------------
text
-------------------------- */

.service-block-text {
  margin-bottom: 16px;

  color: var(--color-text);

  font-size: 1rem;
  line-height: 2;
}

.service-block-text:last-child {
  margin-bottom: 0;
}


/* --------------------------
note
-------------------------- */

.service-block-note {
  margin-top: 20px;

  color: var(--color-text);

  font-size: 0.875rem;
  line-height: 1.8;
}


/* ==================================================
service-subtitle
開始にあたって
提供サービス内容
ご確認いただきたいこと
注記
================================================== */

.service-subtitle {
  position: relative;

  margin: 48px 0 24px;
  padding-left: 16px;

  color: var(--color-text);

  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;

  border-left: 4px solid var(--color-main);
}


/* ==================================================
service-card-grid
================================================== */

.service-card-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;

  margin-top: 36px;
}


/* 給与計算
毎月の業務・年間を通じた業務 */

.service-card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


/* ==================================================
service-card
================================================== */

/* 内側色なし */
/* .service-card {
  padding: 30px;

  background: var(--color-white);

  border: 1px solid var(--color-main);
  border-radius: 16px;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.04);
} */

/* 枠線なし */
.service-card {
  padding: 30px;

  background: rgba(103, 142, 124, 0.08);

  border: none;
  border-radius: 16px;

  box-shadow: none;
}

/* 枠線あり */
/* .service-card {
  padding: 30px;

  background: rgba(103, 142, 124, 0.07);

  border: 1px solid rgba(103, 142, 124, 0.12);
  border-radius: 16px;

  box-shadow: none;
} */


/* --------------------------
card title
-------------------------- */

.service-card-title {
  position: relative;

  margin-bottom: 20px;
  padding-bottom: 14px;

  color: var(--color-main);

  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.service-card-title::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 40px;
  height: 2px;

  background: var(--color-main);
}


/* --------------------------
card list
-------------------------- */

.service-card-list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.service-card-list li {
  position: relative;

  padding: 7px 0 7px 20px;

  color: var(--color-text);

  font-size: 0.9375rem;
  line-height: 1.8;
}

.service-card-list li::before {
  content: "";

  position: absolute;

  top: 1.05em;
  left: 2px;

  width: 6px;
  height: 6px;

  background: var(--color-main);

  border-radius: 50%;
}


/* --------------------------
card text
-------------------------- */

.service-card-text {
  margin-top: 20px;
  padding-top: 18px;

  color: var(--color-text);

  font-size: 0.9375rem;
  line-height: 1.8;

  border-top: 1px solid var(--color-line);
}


/* ==================================================
service-note-list（※のリスト）
================================================== */

.service-note-list {
  margin-top: 30px;
  padding: 0;

  list-style: none;
}

.service-note-list li {
  position: relative;

  margin-bottom: 10px;
  padding-left: 1.4em;

  color: var(--color-text);

  font-size: 0.875rem;
  line-height: 1.8;
}

.service-note-list li:last-child {
  margin-bottom: 0;
}

.service-note-list li::before {
  content: "※";

  position: absolute;

  top: 0;
  left: 0;

  color: var(--color-main);
}


/* ==================================================
通常の丸印リスト
================================================== */

.service-list {
  margin: 24px 0 0;
  padding-left: 1.4em;

  list-style-type: disc;
}

.service-list li {
  margin-bottom: 10px;

  color: var(--color-text);

  font-size: 1rem;
  line-height: 1.8;
}

.service-list li:last-child {
  margin-bottom: 0;
}


/* ==================================================
料金案内リンク
================================================== */

.service-note-list .link-marker {
  color: var(--color-main);

  font-weight: 700;

  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ####################################################################
responsive
#################################################################### */


/* ==================================================
1000px以下
================================================== */

@media screen and (max-width: 1000px) {

  /* --------------------------
  hero
  -------------------------- */

  .hero-service {
    height: 560px;
  }

  .hero-service-title {
    font-size: 3.25rem;
  }

  .hero-service-text {
    font-size: 1.125rem;
  }


  /* --------------------------
  顧問契約メリット
  -------------------------- */

  .section-2col-t-i {
    padding: 70px 0;
  }

  .section-2col-t-i-content {
    gap: 36px;

    padding: 36px;
  }


  /* --------------------------
  service
  -------------------------- */

  .section-service {
    padding: 80px 0;
  }

  .section-service+.section-service {
    padding-top: 30px;
  }

  .section-service-heading {
    margin-bottom: 48px;

    font-size: 2.125rem;
  }


  /* --------------------------
  block
  -------------------------- */

  .service-block {
    grid-template-columns: 68px minmax(0, 1fr);

    gap: 28px;

    padding: 48px 0;
  }

  .service-block-number {
    font-size: 2.125rem;
  }

}


/* ==================================================
777px以下
================================================== */

@media screen and (max-width: 777px) {

  /* --------------------------
  inner
  -------------------------- */

  .section-2col-t-i .inner,
  .section-service .inner,
  .section-cta .inner {
    width: min(var(--inner), calc(100% - 32px));
  }


  /* ==================================================
  hero
  ================================================== */

  .hero-service {
    height: auto;

    background: var(--color-white);
  }

  .hero-service-image {
    position: relative;

    width: 100%;
    height: 58vw;

    min-height: 280px;
    max-height: 420px;
  }

  .hero-service-image::after {
    background:
      linear-gradient(0deg,
        rgba(255, 255, 255, 0.30) 0%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(255, 255, 255, 0) 100%);
  }

  .hero-service-image img {
    object-position: center center;
  }

  .hero-service-content {
    width: calc(100% - 32px);
    height: auto;

    padding: 34px 0 44px;

    text-align: center;
  }

  .hero-service-body {
    max-width: 100%;
  }

  .hero-service-title {
    margin-bottom: 18px;

    font-size: 2.2rem;
    line-height: 1.45;
  }

  .hero-service-text {
    font-size: 0.9375rem;
    line-height: 1.9;
  }


  /* --------------------------
  顧問契約メリット
  -------------------------- */

  .section-2col-t-i {
    padding: 60px 0;
  }

  .section-2col-t-i-content {
    flex-direction: column;

    gap: 28px;

    padding: 28px 22px;
  }

  .section-2col-t-i-body {
    width: 100%;
  }

  .section-2col-t-i-image {
    width: 100%;
  }

  .section-2col-t-i-title {
    margin-bottom: 22px;

    font-size: 1.5rem;
  }

  .section-2col-t-i-text {
    margin-bottom: 16px;

    font-size: 0.9375rem;
    line-height: 1.9;
  }


  /* --------------------------
  section service
  -------------------------- */

  .section-service {
    padding: 64px 0;
  }

  .section-service+.section-service {
    padding-top: 20px;
  }

  .section-service-heading {
    margin-bottom: 34px;
    padding-bottom: 18px;

    font-size: 1.75rem;
  }

  .section-service-heading::after {
    width: 44px;
    height: 2px;
  }

  /* CTAの隙間解消 （スマホ版）*/
  .section-service + .section-service {
    padding-top: 20px;
    padding-bottom: 32px;
  }

  .section-cta {
    padding-top: 32px;
  }


  /* --------------------------
  service block
  -------------------------- */

  .service-block {
    display: block;

    padding: 38px 0;
  }

  .service-block-number {
    margin-bottom: 12px;

    font-size: 1.75rem;
  }

  .service-block-title {
    margin-bottom: 20px;

    font-size: 1.375rem;
  }

  .service-block-text {
    font-size: 0.9375rem;
    line-height: 1.9;
  }

  .service-block-note {
    font-size: 0.8125rem;
    line-height: 1.8;
  }


  /* --------------------------
  subtitle
  -------------------------- */

  .service-subtitle {
    margin: 38px 0 20px;

    font-size: 1.125rem;
  }


  /* --------------------------
  card
  -------------------------- */

  .service-card-grid,
  .service-card-grid-2 {
    grid-template-columns: 1fr;

    gap: 18px;

    margin-top: 28px;
  }

  .service-card {
    padding: 24px 20px;

    border-radius: 12px;
  }

  .service-card-title {
    margin-bottom: 16px;

    font-size: 1.125rem;
  }

  .service-card-list li {
    font-size: 0.9375rem;
  }

  .service-card-text {
    font-size: 0.9375rem;
  }


  /* --------------------------
  note list（※のリスト）
  -------------------------- */

  .service-note-list {
    margin-top: 24px;
  }

  .service-note-list li {
    font-size: 0.8125rem;
  }


  /* --------------------------
  通常の黒丸
  -------------------------- */

  .service-list li {
    font-size: 0.9375rem;
    line-height: 1.8;
  }

}