@charset "UTF-8";
/* テーマAI */
main.theme-ai {
  --form-bg: var(--color-ai-blue-50);
  --form-border: var(--color-ai-blue-300);
  --form-text: var(--color-ai-blue-300);
}

/* テーマSmartHR */
main.theme-smarthr {
  --form-bg: var(--color-smarthr-50);
  --form-border: var(--color-smarthr-300);
  --form-text: var(--color-smarthr-300);
}

body {
  line-height: 1.7;
  color: var(--color-text-black);
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.25rem;
}

h2 {
  font-size: 2.56rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

h3 {
  font-size: 2.1333rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

h4 {
  font-size: 1.8286rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

p {
  font-size: 1.6rem;
  line-height: 3rem;
  letter-spacing: 0.09rem;
}

a {
  color: var(--color-blue300);
  text-decoration: underline;
  transition: 0.2s ease;
}
a:hover {
  color: var(--color-blue200);
  text-decoration: none;
}

ol li,
ul li {
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.07rem;
}

blockquote {
  font-size: 1.4222rem;
  color: var(--color-text-gray);
  line-height: 2.4rem;
  letter-spacing: 0.07rem;
}

table thead th {
  font-size: 1.4222rem;
  line-height: 2.1rem;
}
table tbody th {
  font-size: 1.4222rem;
}
table td {
  font-size: 1.4222rem;
}

/* ======================================
  CTA
====================================== */
.navigation__containerZero {
  position: relative;
  top: 0;
  left: 0;
  max-width: 120rem;
  height: 8rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 900px) {
  .navigation__containerZero {
    padding: 0rem 2rem;
  }
}

.sp-cta {
  display: flex;
  height: 100%;
}
@media (max-width: 900px) {
  .sp-cta {
    height: auto;
  }
}
.sp-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 4rem;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #fff;
  white-space: nowrap;
  font-weight: 500;
  text-decoration: none;
}
.sp-cta__btn:hover {
  color: #fff;
}
.sp-cta__btn--contact {
  background: var(--color-red300);
}
.sp-cta__btn--contact:hover {
  opacity: 0.9;
}
.sp-cta__btn--trial {
  background: #667095;
}
.sp-cta__btn--trial:hover {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .sp-cta {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    gap: 0;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  }
  .sp-cta__btn {
    flex: 1;
    border-radius: 0;
    padding: 1.6rem 0;
    font-size: 1.4rem;
    text-align: center;
  }
}
.sp-cta {
  padding-bottom: env(safe-area-inset-bottom);
}

/* ======================================
   労務関連サービステンプレート
====================================== */
.layout {
  display: grid;
  grid-template-columns: 30rem 1fr;
  gap: 4rem;
  max-width: 120rem;
  margin: 0 auto;
  padding: 10rem 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .layout {
    display: block;
    width: 100%;
    padding: 5rem 2rem;
  }
}

/* ------------------------------
   Hero
------------------------------ */
.heroPage__serviseInformation {
  display: grid;
  grid-template-columns: 30rem 1fr;
  gap: 4rem;
  align-items: anchor-center;
}
@media (max-width: 600px) {
  .heroPage__serviseInformation {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    align-items: center;
  }
}
.heroPage__icon {
  width: 85%;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 600px) {
  .heroPage__icon {
    width: 80%;
    margin: 0 auto;
  }
}
.heroPage__icon img {
  width: 100%;
  height: auto;
}
.heroPage__inner-title {
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .heroPage__inner-title {
    font-size: 2.56rem;
  }
}

.smartHR .heroPage__container {
  padding: 7rem 3rem;
}
.smartHR .articleContents img {
  margin: 2rem 0;
  border-radius: 0.4rem;
  box-shadow: none;
  width: 100%;
}

/* ------------------------------
   breadcrumb
------------------------------ */
.breadcrumb {
  color: #ffffff;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  padding: 2rem 0rem;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  /* 区切りの > */
}
.breadcrumb__item a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.breadcrumb__item a:hover {
  color: #ffffff;
  opacity: 1;
  text-decoration: underline;
}
.breadcrumb__item::after {
  content: "›";
  margin: 0 6px;
  opacity: 0.7;
}
.breadcrumb__item:last-child::after {
  display: none;
}
.breadcrumb__item.is-current {
  font-weight: 600;
  opacity: 1;
}

/* ------------------------------
   Sidebar
------------------------------ */
.sidebar {
  position: sticky;
  top: 120px;
}
@media (max-width: 900px) {
  .sidebar {
    display: none;
  }
}
.sidebar__card {
  background: #fafafa;
  border-radius: 1.6rem;
  overflow: hidden;
  margin-bottom: 24px;
  border: 0.8px solid #eeeeee;
}
.sidebar__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
}
.sidebar__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff3e8;
  display: grid;
  place-items: center;
}
.sidebar__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-romu300);
  stroke-width: 1.8;
}
.sidebar__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-romu300);
  margin-bottom: 0;
}
.sidebar__title--blue {
  color: var(--color-zeimu-bule);
}
.sidebar__list {
  border-top: 1px solid #eee;
}
.sidebar__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 14px;
  color: #111;
  text-decoration: none;
  border-top: 1px solid #eee;
  transition: background 0.2s ease;
}
.sidebar__item a:hover {
  background: #fff;
}
.sidebar__item:first-child a {
  border-top: none;
}
.sidebar__arrow {
  font-size: 18px;
  color: #bbb;
  flex-shrink: 0;
}

/* ------------------------------
   Content
------------------------------ */
.content__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.content__lead {
  margin-bottom: 32px;
  color: #666;
}
.content__subtitle {
  font-size: 20px;
  font-weight: 700;
  margin: 48px 0 16px;
}
.content__text {
  line-height: 1.8;
  color: #444;
}

/* インライン画像だけ例外処理 */
.articleContents img.wp-image-inline {
  display: inline;
  width: auto;
  margin: 0 0.25em;
  box-shadow: none; /* 必要なら */
  vertical-align: bottom;
}

/* ------------------------------
   Diagram
------------------------------ */
.diagram {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}
.diagram__box {
  padding: 16px 24px;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.diagram__box.is-blue {
  background: #1e88e5;
}
.diagram__box.is-cyan {
  background: #00b6b6;
}
.diagram__box.is-orange {
  background: #ff8a00;
}
.diagram__box.is-orange small {
  display: block;
  font-weight: 400;
  margin-top: 4px;
}
.diagram__arrow {
  font-size: 24px;
  font-weight: 700;
}
.diagram__bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

/* ------------------------------
   Note Box
------------------------------ */
.note-box {
  background: #f7f7f7;
  padding: 24px;
  border-radius: 6px;
  margin: 40px 0;
}
.note-box ul {
  list-style: disc;
  padding-left: 20px;
}
.note-box ul li {
  margin-bottom: 8px;
}

/* ------------------------------
   Trial
------------------------------ */
.trial {
  /* ===== Card ===== */
}
@media (max-width: 900px) {
  .trial {
    padding: 80px 0;
  }
}
.trial__label {
  text-align: center;
  color: #f39800;
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  position: relative;
}
@media (max-width: 900px) {
  .trial__label__label::before, .trial__label__label::after {
    display: none;
  }
}
.trial__label::before, .trial__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 160px;
  height: 1px;
  background: #f39800;
}
@media (max-width: 600px) {
  .trial__label::before, .trial__label::after {
    content: none;
  }
}
.trial__label::before {
  left: calc(50% - 240px);
}
.trial__label::after {
  right: calc(50% - 240px);
}
.trial__title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.2rem;
}
.trial__title span {
  display: block;
  font-size: 2.56rem;
  color: #f39800;
  margin-top: 0.8rem;
}
.trial__list {
  margin: 32px 0;
  padding: 24px 28px;
  background-color: #f7faf9;
  border-radius: 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trial__list li {
  position: relative;
  padding-left: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #222;
  font-weight: 600;
}
.trial__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--color-romu300);
  font-size: 1.2rem;
}
.trial__lead {
  text-align: center;
  font-size: 16px;
  margin-bottom: 64px;
}
.trial__cards {
  margin-bottom: 2rem;
}
.trial__cards h3 {
  margin-bottom: 1rem;
}
.trial__cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .trial__cards-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.trial__cards-row__notes {
  max-width: 640px;
  background: #fff;
  color: #000;
  padding: 24px 28px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.8;
}
.trial__cards-row__notes p + p {
  margin-top: 12px;
}
.trial__cards-row__notes-small {
  font-size: 12px;
  color: #555;
}
.trial .trial-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #f39800;
  border-radius: 0.4rem;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
.trial .trial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.18);
  color: #f39800;
}
.trial .trial-card:first-child {
  background: #f39800;
  color: #fff;
  box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, 0.1);
}
.trial .trial-card:first-child .trial-card__icon {
  background: #fff;
  color: #f39800;
}
.trial .trial-card:first-child:hover {
  background: rgb(255, 166.4716049383, 18.6);
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.18);
  color: #fff;
}
.trial .trial-card p {
  font-size: 1.4222rem;
  margin-bottom: 0;
}
.trial .trial-card--wide {
  margin-bottom: 3.2rem;
}
.trial .trial-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}
.trial .trial-card__icon {
  width: 32px;
  height: 32px;
  background: #f39800;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trial .trial-card__arrow {
  display: block;
}
.trial .trial-info {
  max-width: 66%;
  background: #fff;
  color: #000;
  padding: 1rem 0rem 3rem 0;
  border-radius: 0.8rem;
  font-size: 1.4222rem;
  line-height: 1.9;
}
.trial .trial-info__block:not(:last-child) {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
}
.trial .trial-info__title {
  font-weight: 700;
  font-size: 1.4222rem;
  margin-bottom: 0.6rem;
}
.trial .trial-info__text {
  margin: 0;
  color: #333;
}

/*# sourceMappingURL=serviceInformation.css.map */
