@charset "UTF-8";
/* ===========================
   Foundation（基礎）
=========================== */
/* ===========================
   Variables（変数）
=========================== */
/* Color */
/* Font */
/* Breakpoints */
/* Spacing */
/* ===========================
   Mixins
=========================== */
/* SP（スマホ）用 */
/* Flex センター配置 */
body, html, main {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .page-sub .l-container,
  .page-sub .l-inner:not(.l-header__inner) {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
}
/* ===========================
   Layout（共通レイアウト）
=========================== */
/* ===========================
   Header（スマホファースト）
=========================== */
.l-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* ===========================
   共通レイアウト
=========================== */
.l-header__inner {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 12px;
}

/* ===========================
   ロゴ
=========================== */
.l-header__logo {
  margin: 0;
  flex: 0 0 auto;
}

.l-header__logo img {
  width: 70px;
  height: auto;
  display: block;
}

.l-header__logo p {
  font-size: 10px;
  margin: 0 0 4px;
}

/* ===========================
   右エリア
=========================== */
.l-header__right {
  flex: 1;
  min-width: 0;
}

/* ===========================
   電話（SPでは非表示）
=========================== */
.l-header__top {
  display: none;
}

/* ===========================
   PCナビ（SPでは非表示）
=========================== */
.p-header-nav {
  display: none;
}

/* ===========================
   ボタン
=========================== */
.l-header__btn-group {
  flex: 0 0 auto;
  background: #d84315;
  height: auto;
  width: 130px;
  color: #fff;
  border-radius: 7px;
  margin-right: 68px;
}

.l-header__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 10px;
  border-radius: 6px;
  background: #d84315;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.l-header__btn {
  background: #d84315;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.l-header__btn .c-btn__icon {
  flex-direction: column;
  justify-content: center;
}

.c-btn__icon img {
  width: 14px;
}

/* ===========================
   SPナビ
=========================== */
.p-sp-nav {
  display: none;
  /* JSで開閉 */
}

/* ===========================
   PC（769px以上）
=========================== */
@media screen and (min-width: 769px) {
  .l-header__logo img {
    width: 90px;
    height: auto;
    display: block;
  }
  .l-header__logo p {
    font-size: 12px;
    margin: 0 0 4px;
  }
  .l-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0 15px 15px;
    gap: 20px;
  }
  .l-header__btn .c-btn__text {
    position: relative;
    z-index: 2;
    font-weight: 600;
  }
  .l-header__btn-group {
    background: #d84315;
    height: auto;
    padding: 0;
    color: #fff;
    border-radius: 7px;
    margin-right: 24px;
  }
  /* 電話表示 */
  .l-header__top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    margin-bottom: 4px;
  }
  .l-header__tel-icon svg {
    width: 24px;
    height: 24px;
  }
  .l-header__tel-time {
    font-size: 12px;
    color: #666;
    margin-left: 10px;
  }
  /* ナビ表示 */
  .p-header-nav {
    display: block;
  }
  .p-header-nav__list {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    overflow: visible;
  }
  .p-header-nav__list > li {
    position: relative;
    z-index: 10;
  }
  .p-header-nav__list > li:hover .p-nav__sub-list {
    display: block;
  }
  .p-header-nav a {
    text-decoration: none;
    color: #404047;
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
  }
  /* 下線 */
  .p-header-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ce5548;
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }
  .p-header-nav a:hover::after {
    width: 100%;
  }
  /* 右エリアを縦構造に */
  .l-header__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.4em;
  }
  /* SPナビ非表示維持 */
  .p-sp-nav {
    display: none !important;
  }
  .p-nav__item {
    position: relative;
  }
  /* ボタンサイズUP */
  .l-header__btn {
    font-size: 13px;
    padding: 0 20px;
  }
  /* 親 */
  .p-nav__item {
    position: relative;
  }
  /* 子（サブメニュー） */
  .p-nav__sub-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    z-index: 999; /* ←これ重要 */
  }
  /* ホバーで出す */
  .p-nav__item:hover .p-nav__sub-list {
    display: block;
  }
  .l-header__btn {
    position: relative;
    overflow: hidden;
  }
  .l-header__btn::before {
    z-index: 0;
  }
  .c-btn.c-btn--primary.l-header__btn {
    padding: 12px 26px;
  }
  .l-header__btn .c-btn__icon,
  .l-header__btn .c-btn__text {
    position: relative;
    z-index: 2;
  }
  .l-header__btn:hover .c-btn__mail {
    content: url("../img/mail_icon_red@2x.png");
  }
  .l-header__btn:hover .c-btn__pen {
    content: url("../img/pen_icon_red@2x.png");
  }
  .c-btn::before {
    display: block;
  }
}
.l-footer {
  background-color: #ce5548;
  color: #fff;
  padding: 40px 20px;
  font-size: 13px;
  line-height: 30px;
}
.l-footer__inner {
  max-width: 375px;
  margin: 0 auto;
}
.l-footer__nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.l-footer__col {
  width: 48%;
}
.l-footer__col ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.l-footer__col li {
  margin-bottom: 10px;
  font-weight: 500;
}
.l-footer__col .sub {
  padding-left: 15px;
  font-weight: 400;
  position: relative;
}
.l-footer__col .sub::before {
  content: "└";
  position: absolute;
  left: 0;
}
.l-footer__line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 30px 0;
}
.l-footer__links {
  text-align: center;
  margin-bottom: 20px;
}
.l-footer__links a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
}
.l-footer__sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.l-footer__sns img {
  width: 28px;
  filter: brightness(0) invert(1);
}
.l-footer__logo {
  text-align: center;
  margin-bottom: 20px;
}
.l-footer__logo img {
  width: 160px;
}
.l-footer__company-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.l-footer__company {
  text-align: center;
  line-height: 0.8;
  margin-bottom: 0;
  width: 100%;
}
.l-footer__copy {
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
}

.l-footer__company-logo {
  width: 33%;
  max-width: 120px;
}
.l-footer__company-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.l-footer__cert-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.l-footer__cert-badge {
  display: block;
  line-height: 0;
  background: #fff;
  border-radius: 4px;
  padding: 4px 6px;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}
.l-footer__cert-badge:hover {
  opacity: 1;
}
.l-footer__cert-badge img {
  display: block;
  width: auto;
  height: 90px;
  max-width: 92px;
  object-fit: contain;
}
.l-footer a {
  color: #fff;
  text-decoration: none;
}

.l-footer__link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-left: 28px;
}

.l-footer__link::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.l-footer__link::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid #d84315;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.c-breadcrumb {
  background-color: #ffffff;
  padding: 50px 15px 10px;
}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-breadcrumb__list li {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #666;
}

.c-breadcrumb__list li:not(:last-child)::after {
  content: ">";
  margin: 0 6px;
  color: #999;
}

.c-breadcrumb__icon {
  width: 16px;
  height: 16px;
  fill: #ce5548;
}

.c-breadcrumb a {
  color: #666;
  text-decoration: none;
}

.l-footer__sub a {
  position: relative;
  padding-left: 20px;
}

.l-footer__sub a::before {
  content: "└";
  position: absolute;
  left: 0;
  top: 0;
}

.l-footer__sub {
  margin-left: 20px;
}

.l-footer__links {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #fff;
}

.l-footer__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.l-footer__contact img {
  width: 14px;
}

.l-footer__company-logo {
  filter: brightness(0) invert(1);
}

.l-footer li::before {
  content: none !important;
}

.l-footer ul {
  list-style: none;
  padding-left: 0;
}

/* スマホではSPナビを表示 */
.l-footer__nav--sp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* スマホではPCナビは消す */
.l-footer__nav--pc {
  display: none;
}

@media screen and (max-width: 768px) {
  /* スマホ */
  .l-footer__nav--pc {
    display: none;
  }
  .l-footer__nav--sp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
  }
  .l-footer {
    padding: 40px 16px 40px 16px;
  }
  .l-footer__nav {
    display: none;
    grid-template-columns: 1fr 1fr;
  }
  /* colの順番を指定 */
  .l-footer__col:nth-child(1) {
    order: 1;
  } /* サービス */
  .l-footer__col:nth-child(2) {
    order: 3;
  } /* 事例・FAQ */
  .l-footer__col:nth-child(3) {
    order: 2;
  } /* 企業 */
  .l-footer__col:nth-child(4) {
    order: 4;
  } /* 会社 */
  .l-footer__col:nth-child(2) li {
    margin-bottom: 8px;
  }
  .l-footer__nav li {
    min-width: 0;
  }
  .l-footer__nav a {
    word-break: break-word;
  }
  /* 親リンク（サービス紹介とか） */
  .l-footer__link {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 20px;
    width: 148px;
  }
  /* サブリスト全体 */
  .l-footer__sub {
    margin-top: 4px;
    padding-left: 4px;
  }
  /* サブの各項目 */
  .l-footer__sub li {
    margin-bottom: 4px; /* ← ここが行間の正体 */
  }
  .l-footer__sub li a {
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0;
  }
  .l-footer__sub a {
    padding-left: 16px;
    white-space: nowrap;
  }
}
@media (min-width: 769px) {
  .l-footer {
    padding: 40px 160px;
    line-height: 20px;
    font-size: 14px;
  }
  /* ===== inner広げる ===== */
  .l-footer__inner {
    max-width: 1200px;
  }
  /* ===== ナビ4カラム ===== */
  .l-footer__nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-bottom: solid 1px;
  }
  .l-footer__col {
    width: auto; /* ←これ重要（48%解除） */
  }
  /* ===== 下部（リンク＋SNS） ===== */
  .l-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 130px; 
  }
  .l-footer__links {
    display: flex;
    gap: 30px;
    text-align: left;
    border-top: none; /* ←SPの線消す */
    margin-bottom: 40px;
    padding-top: 0;
  }
  .l-footer__links a {
    margin-bottom: 14px;
  }
  .l-footer__sns {
    justify-content: flex-end;
    margin-bottom: 0;
  }
  /* ===== 会社情報 ===== */
  .l-footer__company-wrap {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .l-footer__company {
    display: flex;
    justify-content: center;
    width: auto;
  }
  .l-footer__company-layout {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .l-footer__cert-badges {
    flex-shrink: 0;
    margin-left: 8px;
  }
  .l-footer__company-logo {
    width: 150px;
    max-width: none;
  }
  .l-footer__cert-badge img {
    height: 100px;
    max-width: 110px;
  }
  .l-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -40px;
  }
  .l-footer__col {
    width: auto; /* ←これ絶対必要 */
  }
  .l-footer__company-text {
    display: flex;
    flex-direction: column;
    line-height: 0.6;
    text-align: left;
  }
  .l-footer__company-text p {
    margin-bottom: 1px;
  }
  .l-footer__link::before {
    width: 12px;
    height: 12px;
  }
  .l-footer__link::after {
    width: 2px;
    height: 0px;
    left: 4px;
  }
  .l-footer__link {
    margin-bottom: 10px;
  }
  .l-footer__nav--sp {
    display: none;
  }
  .l-footer__nav--pc {
    display: grid;
  }
}
/* ===========================
   Component（再利用パーツ）
=========================== */
.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 600;
}

a:not(.c-btn):not(.c-banner-wrap__inner):not(.p-header-nav a):hover {
  opacity: 0.7;
}

.c-fv-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.c-fv-btn span {
  color: #fff;
  font-size: 16px;
}
.c-fv-btn__line {
  width: 165px;
  height: 3px;
  background-color: #fff;
  margin-top: 5px;
}

.l-services__btn {
  margin-top: 30px;
  text-align: center;
}
.l-services__btn .c-btn--primary {
  display: inline-block;
  width: 300px;
  border-radius: 7px;
  background-color: #d84315;
  color: #fff;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.l-about__btn {
  margin-top: 30px;
}

.c-btn--outline {
  display: inline-block;
  width: 300px;
  border-radius: 7px;
  background-color: #ffffff;
  color: #ce5548;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin: 20px auto 0;
}

.l-about__btn .c-btn--primary {
  display: inline-block;
  width: 300px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #fff;
  color: #ce5548;
  border: 2px solid #ce5548; /* ←追加 */
  border-radius: 7px;
  text-decoration: none;
  font-size: 16px;
}

.l-news__btn {
  margin-top: 25px;
  text-align: center;
}

.c-btn--news {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 30px;
  border: 1px solid #ce5548;
  border-radius: 999px; /* ← 両端まる */
  background: transparent;
  color: #ce5548;
  font-size: 13px;
  text-decoration: none;
}

/* タップ時 */
.c-btn--news:active {
  transform: translateY(1px);
  opacity: 0.7;
}

/* スタッフ登録の色 */
.c-btn--contact {
  background: #cc3811;
  color: #fff;
  font-size: 14px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 1行ずつ */
.c-btn__row {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}

/* アイコン */
.c-btn__icon {
  width: 14px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 5px;
  margin-bottom: -4px;
}

.c-btn__icon img {
  width: 14px;
  height: auto;
  display: block;
}

.u-pc {
  display: none;
}

.u-sp {
  display: inline;
}

@media screen and (max-width: 768px) {
  .c-fixed-circle {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .c-fv-btn {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    text-align: center;
  }
  /* ふわっと浮く */
  .c-fv-btn:hover {
    transform: translateY(-3px); /* ← 少し控えめ */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06); /* ← 柔らかい影 */
  }
  .c-fv-btn .c-fv-btn__line {
    width: 200px;
    height: 3px;
    background-color: #fff;
    margin-top: 5px;
  }
  .c-fv-btn span {
    font-weight: 400;
  }
  /* お問い合わせボタン */
  .c-btn--contact {
    height: auto;
    padding: 10px 14px;
    font-size: 14px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: nowrap;
  }
  .u-pc {
    display: inline;
  }
  .u-sp {
    display: none;
  }
  .l-fv__buttons {
    flex-direction: row;
    justify-content: flex-end;
    gap: 40px;
    margin-left: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  /* ちょい右にずらす（微調整） */
  .l-fv__buttons {
    right: 0px;
  }
  /* ボタンサイズUP */
  .c-fv-btn {
    font-size: 20px;
  }
  .c-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
  }
  .c-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: left 0.3s ease;
  }
  .c-btn--primary {
    border: 2px solid #ce5548;
    background-color: #ce5548;
  }
  .c-btn--primary::before {
    background-color: #fff;
  }
  .c-btn--primary:hover::before {
    left: 0;
  }
  .c-btn--primary:hover {
    color: #ce5548;
  }
  .c-btn--outline::before {
    background-color: #ce5548;
  }
  .c-btn--outline:hover::before {
    left: 0;
  }
  .c-btn--outline:hover {
    color: #fff;
    border: 2px solid #fff;
  }
  .c-btn--news {
    margin-bottom: 100px;
  }
  .l-about__btn .c-btn {
    position: relative;
    z-index: 1;
  }
  .l-about__btn .c-btn--primary {
    width: auto;
    height: auto;
    padding: 15px 40px;
  }
  .c-banner-wrap__inner {
    display: block;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .c-banner-wrap__inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }
  .c-banner-wrap__inner:hover::after {
    opacity: 1;
    transform: scale(1);
  }
  .c-fixed-circle {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50px);
    transition: transform 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9999;
  }
  /* スクロール後（中央） */
  .c-fixed-circle.is-center {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
  .c-fixed-circle__btn {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    /* 外枠 */
    border: 4px solid rgba(255, 255, 255, 0.5);
    /* 影 */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  }
  /* 色 */
  .c-fixed-circle__btn.is-job {
    background: #f4b400; /* 黄色 */
  }
  .c-fixed-circle__btn.is-company {
    background: #2aa7a1; /* 緑 */
  }
  /* ホバー */
  .c-fixed-circle__btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
}
.p-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px 16px 4px;
}

@media screen and (min-width: 769px) {
  .p-card {
    transition: all 0.3s ease;
  }
  .p-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
}
.p-card__img {
  width: 100%;
  height: 120px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.p-card__img img {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  text-align: center;
}

.p-card__sales {
  width: 56%;
}

.p-card__sales--sales,
.p-card__sales--recruit {
  width: 56%;
}

.p-card__sales--medical {
  width: 62%;
}

.p-card__sales--it {
  width: 38%;
}

.p-card__sales--global {
  width: 43%;
}

.page-service .p-card__img img {
  width: auto;
  max-width: 50%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.page-service .p-card:nth-child(1) .p-card__img img {
  max-width: 54%;
}

.page-service .p-card:nth-child(2) .p-card__img img {
  max-width: 48%;
}
.page-service .p-card:nth-child(2) {
  padding-left: 15px;
  padding-right: 15px;
}
.page-service .p-card:nth-child(2) .p-card__box {
  padding-left: 10px;
  padding-right: 10px;
}
.page-service .p-card:nth-child(2) .p-card__box ul {
  padding-left: 14px;
}
@media screen and (max-width: 768px) {
  .page-service .p-card:nth-child(2) {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-service .p-card:nth-child(2) .p-card__box {
    padding-left: 8px;
    padding-right: 8px;
  }
  .page-service .p-card:nth-child(2) .p-card__box ul {
    padding-left: 24px;
  }
  .page-case .p-case-card__text {
    font-size: 14px !important;
  }
}

.p-card__title {
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
  font-size: 18px;
  line-height: 1.2em;
}

.p-card__box {
  background: #f3e8e8;
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 12px;
}

.p-card__box--sales {
  background-color: #e1f9d5;
}

.p-card__box--recruit {
  background-color: #eee5f2;
}

.p-card__box--medical {
  background-color: #dbf1fa;
}

.p-card__box--it {
  background-color: #f7f7ce;
}

.p-card__box--global {
  background-color: #f7e4b1;
}

.p-card__box-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}

.p-card__textsercle {
  color: #ce5548;
}

.p-card__sub {
  font-size: 14px;
}

.p-card__box ul {
  list-style: none;
  font-size: 13px;
  padding-left: 10px;
}

.p-card__box li {
  margin-bottom: 4px;
  font-size: 14px;
}

/* ===========================
   Project（ページ固有）
=========================== */
/* FV全体 */
.l-section-header__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-block;
  transform: translateX(2px);
}

.l-fv {
  position: relative;
  width: 100%;
  height: 88vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* 初期（スマホ表示） */
.l-fv__video--pc {
  display: none;
}

.l-fv__video--sp {
  display: block;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-fv__video--sp {
    display: none;
  }
  .l-fv__video--pc {
    display: block;
  }
}
.l-fv__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.l-fv__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(106, 106, 106, 0.4), rgba(0, 0, 0, 0));
  z-index: 2;
}

.l-fv__buttons {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 3;
}

.l-fv__buttons {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 3;
}

/* =========================
   サービス一覧セクション
   ========================= */
.l-services {
  background-color: #f3e8e8;
  padding: 60px 0px;
}
.l-services__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* 見出しセット */
.l-section-header {
  margin-bottom: 40px;
  text-align: center;
}
.l-section-header__sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: #404047;
  margin-bottom: 5px;
}
.l-section-header__title {
  font-family: "小塚ゴシック Pr6N R", sans-serif;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 15px;
  margin: 0 0 10px 0;
  color: #404047;
}
.l-section-header__line {
  margin: 0 auto 15px auto;
  width: 105px;
  height: 3px;
  background-color: #ce5548;
}
.l-section-header__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: #404047;
  text-align: left;
  max-width: 700px;
  padding: 0 25px;
  margin: 0 auto;
}

.c-services-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.c-services-slider__track {
  display: flex;
  gap: 15px;
  position: relative;
}

.c-services-slider__card {
  flex: 0 0 70%;
  max-width: 300px;
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: #404047;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.c-services-slider__card a {
  text-decoration: none;
}

.c-services-slider__card img {
  width: 100%;
  display: block;
}

.c-services-slider__card p {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 25px 0;
}

/* ドットナビ */
.c-services-slider__dots {
  display: flex !important;
  flex-wrap: nowrap !important; /* 横1列固定 */
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.c-services-slider__dots button {
  width: 12px;
  height: 12px;
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 50%;
  border: none;
  background-color: #ce5548;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease;
}

.c-services-slider__dots button.active {
  opacity: 1;
  transform: scale(1.3);
}

/* 無限右スクロールアニメーション */
@keyframes slideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* トラック幅の半分だけスライド */
  }
}
/* 詳しく見るボタン */
/* =========================
   サポートセクション
========================= */
.l-support {
  background-color: #fff;
  padding: 60px 20px;
}
.l-support__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.l-support__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

/* カード */
.c-support-card {
  text-align: center;
}
.c-support-card img {
  width: 120px;
  margin-bottom: 15px;
}
.c-support-card h3 {
  color: #d84315;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.c-support-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #404047;
}

.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 1s ease;
}

.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   ABOUTセクション
========================= */
.l-about {
  background-image: url("../img/bg_about.png");
  background-repeat: repeat;
  background-size: 250px;
  padding: 60px 0px 120px;
}
.l-about .l-section-header__sub,
.l-about .l-section-header__title,
.l-about .l-section-header__text {
  color: #fff;
}
.l-about .l-section-header__line {
  background-color: #fff;
}
.l-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.l-about .l-about__inner {
  max-width: 1000px;
}
.l-about .l-about__youtube-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.l-about .l-about__youtube-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.l-about .l-about__movie-content {
  text-align: center;
  margin-top: 20px;
}
.l-about .l-about__movie-title {
  margin: 15px 0 50px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.l-about .l-about__movie-text {
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .l-about .l-about__youtube-wrapper {
    width: 50%;
    margin: 0 auto;
  }
}
.l-about .l-about__movie-title {
  margin: 15px 0;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

/* =========================
   画像スライダー（ゆっくり流れる）
========================= */
.c-about-slider {
  overflow: hidden;
  margin-top: 80px;
}
.c-about-slider__track {
  display: flex;
  gap: 0px;
  animation: slideLoop 40s linear infinite;
}
.c-about-slider__track img {
  width: 300px;
  border-radius: 0px;
}

/* 無限ループアニメーション */
@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1080px);
  }
}
/* =========================
   NEWS（重なりデザイン）
========================= */
.l-news {
  margin-top: -80px; /* ← ここが重なりのキモ */
  position: relative;
  z-index: 5;
}

/* 全体ラップ */
.c-news-wrap {
  position: relative;
  width: 325px;
  margin: 0 auto;
}

/* 後ろ：斜線 */
.c-news-wrap__bg {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* ▼ ここがポイント */
  background-color: #f3cfbe;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4) 2px, transparent 1px, transparent 4px);
}

/* 前：白カード（全部入る） */
.c-news-wrap__inner {
  position: relative;
  background-color: #fff;
  border: 1px solid #f3cfbe;
  padding: 30px 20px;
  z-index: 2;
}

.c-news-list {
  margin-top: 20px;
}

/* 1記事 */
.c-news-item {
  display: block;
  text-decoration: none;
  padding: 5px 0;
  color: inherit;
  border-bottom: 1px solid #ce5548; /* ← 赤ライン */
}

/* 最後だけ線消す */
.c-news-item:last-child {
  border-bottom: none;
}

/* 日付 */
.c-news-item__date {
  font-size: 14px;
  color: #888;
  margin-bottom: 5px;
}

/* タイトル */
.c-news-item__title {
  font-size: 16px;
  font-weight: 600;
  color: #404047;
  line-height: 1.6;
}

/* =========================
   企業向けバナー
========================= */
.l-company-banner {
  margin-top: 30px;
}

/* ラップ（NEWSと同じ幅） */
.c-banner-wrap {
  position: relative;
  width: 325px;
  margin: 0 auto;
}

/* 後ろの斜線 */
.c-banner-wrap__bg {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #f3cfbe;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4) 2px, transparent 1px, transparent 4px);
}

/* 前の画像 */
.c-banner-wrap__inner {
  position: relative;
  display: block;
  z-index: 2;
  border: 1px solid #f3cfbe;
  overflow: hidden;
}

.c-banner-wrap__inner img {
  width: 100%;
  display: block;
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px 10px;
}

.u-pc-br {
  display: none;
}

.u-sp-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-sp-br {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .l-fv {
    height: 92svh; /* または 100vh */
  }
  .l-fv__buttons {
    bottom: 60px;
  }
  .l-services__inner {
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
  }
  .c-services-slider {
    margin: 0 auto;
  }
  .l-services__inner {
    margin: o auto;
  }
  /* スライダー解除 */
  .c-services-slider {
    overflow: visible;
  }
  .c-services-slider__track {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
  }
  /* カード */
  .c-services-slider__card {
    width: 280px;
    transition: all 0.3s ease;
  }
  .c-services-slider__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  .c-services-slider__card p {
    font-size: 18px;
  }
  /* ドットは非表示 */
  .c-services-slider__dots {
    display: none;
  }
  .c-services-slider__card {
    border-radius: 14px;
  }
  .l-section-header {
    position: relative;
    z-index: 1;
  }
  .l-section-header::before {
    content: "SERVICE";
    position: absolute;
    top: -65px;
    right: -100px;
    font-size: 90px;
    font-weight: bold;
    letter-spacing: 40px;
    color: var(--bg-text-color); /* ←ここ変更 */
    white-space: nowrap;
    z-index: -1;
  }
  .l-section-header__title {
    font-size: 48px;
    letter-spacing: 35px;
  }
  .l-section-header__sub {
    font-size: 16px;
    margin-top: 50px;
  }
  .l-section-header__text {
    margin-top: 50px;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 500;
  }
  .l-section-header__line {
    margin-bottom: 70px;
  }
  .l-section-header::before {
    content: attr(data-bg-text); /* ←ここがポイント */
  }
  .l-services {
    --bg-text-color: rgb(255, 255, 255,0.7); /* 白背景用 */
    padding: 120px 20px 180px;
  }
  .l-support {
    --bg-text-color: rgba(252, 238, 238, 0.7); /* 白背景用 */
    padding: 120px 20px 180px;
  }
  .l-about {
    --bg-text-color: rgba(255, 255, 255, 0.08); /* 濃背景用 */
  }
  .l-company {
    --bg-text-color: rgba(0, 0, 0, 0.03);
  }
  .l-support__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ←2列 */
    gap: 40px 32px; /* 行間 / 列間 */
  }
  .l-support__list {
    max-width: 900px;
    margin: 0 auto;
  }
  .c-support-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left; /* ←左揃えに変更 */
    gap: 20px;
  }
  /* テキスト側 */
  .c-support-card h3,
  .c-support-card p {
    text-align: left;
  }
  /* 画像 */
  .c-support-card img {
    width: 140px;
    height: auto;
  }
  .u-pc-br {
    display: block;
  }
  .l-about {
    padding: 80px 0 180px;
  }
  .l-about__movie {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .l-about__youtube-wrapper {
    order: 2;
    width: 55%;
  }
  .l-about__movie-content {
    order: 1;
    width: 45%;
    text-align: left;
    margin-top: 0;
  }
  .l-about__movie-text {
    color: #fff;
  }
  .c-news-wrap {
    width: 1000px;
  }
  .c-news-wrap__inner {
    padding: 30px 90px;
  }
  .c-about-slider__track {
    margin-bottom: 30px;
  }
  .c-about-slider__track img {
    width: 250px;
  }
  .l-news {
    margin-top: -140px;
  }
  .c-banner-wrap {
    width: 1000px;
  }
  .l-company-banner {
    margin: 50px auto;
  }
  .c-news-wrap__inner {
    border: 1px solid #ce5548;
  }
  .js-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  .js-fade.is-show {
    opacity: 1;
    transform: translateY(0);
  }
  .c-support-card:nth-child(1) {
    transition-delay: 0s;
  }
  .c-support-card:nth-child(2) {
    transition-delay: 0.2s;
  }
  .c-support-card:nth-child(3) {
    transition-delay: 0s;
  }
  .c-support-card:nth-child(4) {
    transition-delay: 0.2s;
  }
  .l-section-header__title {
    display: inline-block;
    transform: translateX(18px);
  }
}
.page-company .p-company-message,
.page-company .p-company-philosophy,
.page-company .p-company-business,
.page-company .p-company-profile,
.page-company .p-company-history,
.page-company .p-company-access {
  padding: 40px 26px 50px;
  background: #f3e8e8;
}
.page-company .p-company-profile,
.page-company .p-company-access {
  background: #fff;
}
.page-company .p-company-box .p-company-box__section h3 {
  text-align: center;
  margin-bottom: 10px;
}
.page-company .p-company-history {
  background: #f3f2f2;
}
.page-company .p-company-message {
  background: linear-gradient(to bottom, #f3e8e8 0 24%, #fff 15% 100%);
  padding-top: 380px;
  padding-bottom: 50px;
  margin-top: -320px;
}
.page-company .p-company-message > .l-container {
  position: relative;
  margin-top: -140px;
}
.page-company .p-company-section__sub {
  margin: 0 0 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: #555;
}
.page-company .p-company-section__title {
  margin: 0;
  text-align: center;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: #404047;
}
.page-company .p-company-section__line {
  width: 92px;
  height: 2px;
  margin: 12px auto 28px;
  background: #ce5548;
}
.page-company .p-company-message__profile {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 0;
  padding: 0;
  background: #f5f5f5;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}
.page-company .p-company-message__content {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.page-company .p-company-message__photo {
  align-self: stretch;
}
.page-company .p-company-message__photo picture {
  display: block;
  height: 100%;
}
.page-company .p-company-message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-company .p-company-message__name-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 34px 24px 0;
}
.page-company .p-company-message__headline-ja {
  margin: 0 0 6px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #2e2f35;
  word-break: keep-all;
}
.page-company .p-company-message__headline-en {
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #333;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
}
.page-company .p-company-message__role {
  margin: 0 0 10px;
  text-align: left;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}
.page-company .p-company-message__name {
  margin: 0;
  text-align: left;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #404047;
  font-family: "HGP行書体", "HG行書体", "Yuji Syuku", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.page-company .p-company-message__body p,
.page-company .p-company-business__item p,
.page-company .p-company-philosophy__lead,
.page-company .p-company-box p,
.page-company .p-company-access__body p {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  text-align: left;
  color: #404047;
}
.page-company .p-company-message__body {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  padding: 28px 34px 34px;
  background: #fff;
}
.page-company .p-company-message__accent {
  color: #ce5548;
}
.page-company .p-company-philosophy__lead {
  text-align: center;
  font-weight: 600;
  margin-bottom: 24px;
}
.page-company .p-company-philosophy__pyramid {
  position: relative;
  width: min(100%, 320px);
  margin: 60px auto 28px;
  text-align: center;
}
.page-company .p-company-philosophy__pyramid-image {
  display: block;
  width: 100%;
  height: auto;
}
.page-company .p-company-philosophy__layer {
  position: absolute;
  left: 90%;
  width: 76%;
  transform: translateX(-50%);
  margin: 0;
  text-align: left;
}
.page-company .p-company-philosophy__layer--mission {
  top: 3%;
}
.page-company .p-company-philosophy__layer--vision {
  top: 22%;
}
.page-company .p-company-philosophy__layer--value {
  top: 42%;
}
@media screen and (max-width: 768px) {
  .page-company {
    overflow-x: hidden;
  }
  .page-company .p-company-philosophy__pyramid {
    overflow: hidden;
  }
  .page-company .p-company-philosophy__keywords {
    overflow: visible;
    width: min(100%, 300px);
    min-height: 220px;
    margin-top: 20px;
  }
  .page-company .p-company-philosophy__keywords-image {
    margin-top: -10px;
  }
  .page-company .p-company-philosophy__layer {
    left: 46%;
    width: 58%;
  }
  .page-company .p-company-philosophy__keyword {
    width: 32%;
  }
  .page-company .p-company-philosophy__keyword--question,
  .page-company .p-company-philosophy__keyword--quick {
    left: 34%;
  }
  .page-company .p-company-philosophy__keyword--quality {
    left: 1%;
  }
  .page-company .p-company-philosophy__keyword--quest {
    right: 1%;
  }
  .page-company .p-company-access__map iframe {
    display: block;
    width: 100%;
    max-width: 100%;
  }
}
.page-company .p-company-philosophy__layer h3,
.page-company .p-company-philosophy__keyword h3,
.page-company .p-company-box h3,
.page-company .p-company-business__item h3 {
  margin: 0 0 0px;
  color: #ce5548;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: left;
}
.page-company .p-company-access__body h3 {
  text-align: center;
  font-size: 20px;
  color: #404047;
  padding-bottom: 20px;
}
.page-company .p-company-business__item p.p-company-business__item_lisence {
  font-size: 12px;
  font-weight: 300;
}
.page-company .p-company-business__item p.p-company-business__item_group {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 14px;
  background-color: #ce5548;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.page-company .p-company-box {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-weight: 700;
}
.page-company .p-company-business-area {
  background-color: #fff;
  text-align: center;
}
.page-company .p-company-business__margin-link {
  margin: 12px 0 0;
  text-align: left;
}
.page-company .p-company-business__margin-link a {
  color: #404047;
  font-weight: 700;
  text-decoration: none;
}
.page-company .p-company-business__margin-link a:hover {
  text-decoration: underline;
}
.page-company .p-company-philosophy__layer p,
.page-company .p-company-philosophy__layer span,
.page-company .p-company-philosophy__keyword p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
  color: #404047;
}
.page-company .p-company-message__red {
  color: #ce5548;
  font-size: 20px;
}
.page-company .p-company-philosophy__keywords {
  position: relative;
  width: min(100%, 320px);
  margin: 0 auto 28px;
  min-height: 250px;
  text-align: center;
}
.page-company .p-company-philosophy__pyramid.js-fade,
.page-company .p-company-philosophy__keywords.js-fade {
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.page-company .p-company-philosophy__keywords--delay {
  transition-delay: 0.18s;
}
.page-company .p-company-philosophy__keywords-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -130px;
}
.page-company .p-company-philosophy__keyword {
  position: absolute;
  width: 38%;
}
.page-company .p-company-philosophy__keyword--question {
  top: 0;
  left: 31%;
}
.page-company .p-company-philosophy__keyword--quality {
  top: 30%;
  left: 0;
}
.page-company .p-company-philosophy__keyword--quest {
  top: 30%;
  right: 0;
}
.page-company .p-company-philosophy__keyword--quick {
  top: 56%;
  left: 31%;
}
.page-company .p-4q_sub_text {
  font-size: 16px;
}
.page-company .p-company-philosophy__keyword h3,
.page-company .p-company-philosophy__keyword p {
  text-align: center;
}
.page-company .p-company-philosophy__keyword h3 {
  margin-bottom: 2px;
  line-height: 1em;
}
.page-company .p-company-philosophy__keyword p {
  margin-bottom: 28px;
  line-height: 1.6;
}
.page-company .p-company-box {
  padding: 48px 18px;
  margin-bottom: 18px;
  background: #fff;
  border: 3px solid transparent;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #f7edd0 0%, #d8b15d 45%, #f4e7bf 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.page-company .p-company-box.js-fade {
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.page-company .p-company-box--delay {
  transition-delay: 0.24s;
}
.page-company .p-company-box__section + .p-company-box__section {
  margin-top: 48px;
}
.page-company .p-company-box ul,
.page-company .p-company-business__item ul {
  margin: 0;
  padding-left: 0;
  font-size: 14px;
  line-height: 2;
  color: #404047;
  list-style: none;
}
.page-company .p-company-box p,
.page-company .p-company-box li {
  font-weight: 700;
}
.page-company .p-company-box li::marker,
.page-company .p-company-business__item li::marker {
  content: "";
}
.page-company .p-company-business__item {
  margin: 52px auto;
}
.page-company .p-company-business__item:last-child {
  margin-bottom: 0;
}
.page-company .p-company-table,
.page-company .p-company-history__list {
  border-top: 1px solid #ddd;
}
.page-company .p-company-table__row,
.page-company .p-company-history__row {
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
}
.page-company .p-company-table dt,
.page-company .p-company-history__row dt {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #666;
}
.page-company .p-company-table dd,
.page-company .p-company-history__row dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #404047;
}
.page-company .p-company-access__body {
  margin-bottom: 20px;
  line-height: 0.6em;
}
.page-company .p-company-access__map img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.page-company .p-company-access__body p {
  line-height: 1.8em;
}

@media screen and (min-width: 769px) {
  .page-company .p-lead {
    font-size: 17px;
  }
  .page-company .p-company-message,
  .page-company .p-company-philosophy,
  .page-company .p-company-business,
  .page-company .p-company-profile,
  .page-company .p-company-history,
  .page-company .p-company-access {
    padding: 110px 0 120px;
    position: relative;
    overflow: hidden;
  }
  .page-company .p-company-message {
    margin-top: 0;
    padding-top: 130px;
    background: #f3e8e8;
  }
  .page-company .p-company-message__content {
    border-radius: 12px;
  }
  .page-company .p-company-message__profile {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 12px 12px 0 0;
  }
  .page-company .p-company-message__photo {
    max-height: 420px;
  }
  .page-company .p-company-message__name-wrap {
    padding: 18px 20px 22px;
  }
  .page-company .p-company-message__headline-ja {
    font-size: 23px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .page-company .p-company-message__headline-en {
    margin-bottom: 18px;
    font-size: 20px;
  }
  .page-company .p-company-message__name {
    font-size: 30px;
    letter-spacing: 0.1em;
  }
  .page-company .p-company-message__body {
    padding: 20px 20px 24px;
  }
  .page-company .p-company-message > .l-container,
  .page-company .p-company-philosophy > .l-container,
  .page-company .p-company-business > .l-container,
  .page-company .p-company-profile > .l-container,
  .page-company .p-company-history > .l-container,
  .page-company .p-company-access > .l-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
  }
  .page-company .p-company-message > .l-container {
    margin-top: 0;
  }
  .page-company .p-company-message > .l-container::before,
  .page-company .p-company-philosophy > .l-container::before,
  .page-company .p-company-business > .l-container::before,
  .page-company .p-company-profile > .l-container::before,
  .page-company .p-company-history > .l-container::before,
  .page-company .p-company-access > .l-container::before {
    position: absolute;
    left: auto;
    right: 18px;
    transform: none;
    top: -56px;
    font-size: 84px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
  }
  .page-company .p-company-message > .l-container::before {
    content: "MESSAGE";
    color: rgba(255, 255, 255, 0.7);
  }
  .page-company .p-company-philosophy > .l-container::before {
    content: "PHILOSOPHY";
    color: rgba(255, 255, 255, 0.62);
  }
  .page-company .p-company-business > .l-container::before {
    content: "BUSINESS";
    color: rgba(255, 255, 255, 0.62);
  }
  .page-company .p-company-profile > .l-container::before {
    content: "PROFILE";
    color: rgba(243, 232, 232, 0.65);
  }
  .page-company .p-company-history > .l-container::before {
    content: "HISTORY";
    color: rgba(255, 255, 255, 0.7);
  }
  .page-company .p-company-access > .l-container::before {
    content: "ACCESS";
    color: rgba(243, 232, 232, 0.65);
  }
  .page-company .p-company-section__sub,
  .page-company .p-company-section__title,
  .page-company .p-company-section__line,
  .page-company .p-company-message__profile,
  .page-company .p-company-message__body,
  .page-company .p-company-philosophy__lead,
  .page-company .p-company-philosophy__content,
  .page-company .p-company-philosophy__cards,
  .page-company .p-company-business__list,
  .page-company .p-company-table,
  .page-company .p-company-history__list,
  .page-company .p-company-access__body,
  .page-company .p-company-access__map {
    position: relative;
    z-index: 1;
  }
  .page-company .p-company-section__sub {
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 0.28em;
  }
  .page-company .p-company-section__title {
    font-size: 36px;
    letter-spacing: 0.22em;
  }
  .page-company .p-company-section__line {
    width: 92px;
    margin: 12px auto 56px;
  }
  .page-company .p-company-message__content {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 50px;
    align-items: start;
    padding: 48px 46px 48px;
    background: #fff;
    border-radius: 10px;
  }
  .page-company .p-company-message__profile {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
  .page-company .p-company-message__photo {
    align-self: start;
  }
  .page-company .p-company-message__photo img {
    border-radius: 0;
    width: 100%;
  }
  .page-company .p-company-message__name-wrap {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .page-company .p-company-message__role {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
  }
  .page-company .p-company-message__name {
    margin: 0;
    font-size: 28px;
  }
  .page-company .p-company-message__body {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
  .page-company .p-company-message__body p {
    font-size: 16px;
    line-height: 2.1;
    margin-bottom: 18px;
  }
  .page-company .p-company-philosophy__lead {
    max-width: 580px;
    margin: 0 auto 54px;
    font-size: 15px;
    line-height: 1.9;
    text-align: center;
  }
  .page-company .p-company-philosophy__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto -30px;
  }
  .page-company .p-company-philosophy__pyramid {
    width: 440px;
    margin: 0 auto;
  }
  .page-company .p-company-philosophy__keywords {
    width: 440px;
    min-height: 440px;
    margin: 24px auto 0;
  }
  .page-company .p-company-philosophy__keywords-image {
    margin-top: 0;
  }
  .page-company .p-company-philosophy__keyword {
    width: 40%;
  }
  .page-company .p-company-philosophy__keyword--question {
    top: 8%;
    left: 30%;
  }
  .page-company .p-company-philosophy__keyword--quality {
    top: 34%;
    left: 2%;
  }
  .page-company .p-company-philosophy__keyword--quest {
    top: 34%;
    right: 2%;
  }
  .page-company .p-company-philosophy__keyword--quick {
    top: 63%;
    left: 30%;
  }
  .page-company .p-company-philosophy__keyword h3 {
    font-size: 26px;
  }
  .page-company .p-company-philosophy__layer h3 {
    font-size: 26px;
  }
  .page-company .p-company-philosophy__keyword p,
  .page-company .p-company-philosophy__layer p {
    font-size: 13px;
    line-height: 1.7;
  }
  .page-company .p-company-philosophy__cards {
    max-width: 1000px;
    margin: 0 auto;
  }
  .page-company .p-company-box {
    padding: 34px 42px 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 38px;
    height: 440px;
    box-shadow: #404047;
  }
  .page-company .p-company-message__profile {
    justify-self: end;
  }
  .page-company .p-company-box__section {
    flex: 1;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  .page-company .p-company-box__section + .p-company-box__section {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .page-company .p-company-box h3 {
    margin-bottom: 0;
    text-align: left;
    margin-left: 30px;
  }
  .page-company .p-company-box__section p {
    margin-left: 30px;
    font-size: 22px;
  }
  .page-company .p-company-box p,
  .page-company .p-company-box li {
    font-size: 20px;
    line-height: 2.6;
    text-align: left;
  }
  .page-company .p-company-box ul {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
  .page-company .p-company-business__list {
    max-width: 760px;
    margin: 0 auto;
  }
  .page-company .p-company-business__item {
    margin: 0 0 44px;
  }
  .page-company .p-company-business__item:last-child {
    margin-bottom: 0;
  }
  .page-company .p-company-business__item h3 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .page-company .p-company-business__item p {
    font-size: 14px;
    line-height: 2;
  }
  .page-company .p-company-business__item p.p-company-business__item_lisence {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .page-company .p-company-business__item p.p-company-business__item_group {
    margin-bottom: 12px;
    padding: 8px 16px;
    font-size: 14px;
  }
  .page-company .p-company-business-area {
    margin: 18px 0 8px;
    font-size: 16px;
  }
  .page-company .p-company-profile,
  .page-company .p-company-access {
    padding-top: 120px;
  }
  .page-company .p-company-table,
  .page-company .p-company-history__list {
    max-width: 860px;
    margin: 0 auto;
  }
  .page-company .p-company-table__row,
  .page-company .p-company-history__row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    padding: 22px 0;
    align-items: start;
  }
  .page-company .p-company-table dt,
  .page-company .p-company-history__row dt {
    margin-bottom: 0;
    font-size: 15px;
  }
  .page-company .p-company-table dd,
  .page-company .p-company-history__row dd {
    font-size: 15px;
    line-height: 2;
  }
  .page-company .p-company-history {
    padding-bottom: 140px;
  }
  .page-company .p-company-access__body {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 12px 28px;
    max-width: 760px;
    margin: 0 auto 44px;
    line-height: 1.8;
  }
  .page-company .p-company-access__body h3 {
    grid-column: 1/-1;
    padding-bottom: 26px;
    font-size: 24px;
  }
  .page-company .p-company-access__body p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 2;
  }
  .page-company .p-company-access__map {
    max-width: 760px;
    margin: 0 auto;
  }
  .page-company .p-company-access__map iframe {
    width: 100%;
    height: 360px;
    display: block;
  }
  .page-company .p-company-business-area {
    font-size: 12px;
    letter-spacing: 0.4em;
  }
  .page-company .p-company-philosophy__keyword--question {
    top: 0%;
    left: 30%;
  }
  .page-company .p-company-philosophy__keyword--quality {
    top: 25%;
    left: 2%;
  }
  .page-company .p-company-philosophy__keyword--quest {
    top: 25%;
    right: 2%;
  }
  .page-company .p-company-philosophy__keyword--quick {
    top: 53%;
    left: 30%;
  }
  .page-company .page-company .p-company-box p,
  .page-company .page-company .p-company-box li {
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
  }
  .page-company .p-company-philosophy__lead .u-pc {
    font-size: 16px;
  }
  .page-company .p-company-box__section h3 {
    font-size: 26px;
  }
  .page-company .p-company-box__section li {
    font-size: 20px;
  }
}
.page-department.page-career-change .p-department,
.page-department.page-career-change .p-department-genre,
.page-department.page-career-change .p-department-case,
.page-department.page-career-change .p-department-flow,
.page-department.page-career-change .p-department-faq {
  position: relative;
  overflow: hidden;
}
.page-department.page-career-change .p-department > .l-container,
.page-department.page-career-change .p-department-genre > *,
.page-department.page-career-change .p-department-case > *,
.page-department.page-career-change .p-department-flow > *,
.page-department.page-career-change .p-department-faq > * {
  position: relative;
  z-index: 1;
}
.page-department.page-career-change .p-department::before,
.page-department.page-career-change .p-department-genre::before,
.page-department.page-career-change .p-department-case::before,
.page-department.page-career-change .p-department-flow::before,
.page-department.page-career-change .p-department-faq::before {
  content: none;
  position: absolute;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  pointer-events: none;
  z-index: 0;
}
.page-department.page-career-change .p-department-faq {
  padding-top: 40px;
}
.page-department.page-career-change .p-department-section__eyebrow {
  margin-top: 40px;
}
.page-department.page-career-change .p-department-faq .p-department-section__eyebrow {
  margin-top: 0;
}
@media screen and (min-width: 769px) {
  .page-department.page-career-change .p-department::before,
  .page-department.page-career-change .p-department-genre::before,
  .page-department.page-career-change .p-department-case::before,
  .page-department.page-career-change .p-department-flow::before,
  .page-department.page-career-change .p-department-faq::before {
    content: "";
    font-size: 86px;
    letter-spacing: 0.18em;
  }
  .page-department.page-career-change .p-department::before {
    content: "CAREER CHANGE";
    top: -16px;
    right: 40px;
    font-size: 88px;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
  }
  .page-department.page-career-change .p-department-case::before {
    content: "CASE";
    top: 18px;
    right: 92px;
    font-size: 78px;
    color: rgba(255, 255, 255, 0.55);
  }
  .page-department.page-career-change .p-department-genre::before {
    content: "GENRE";
    top: 18px;
    right: 70px;
    font-size: 78px;
    color: rgba(255, 255, 255, 0.55);
  }
  .page-department.page-career-change .p-department-flow::before {
    content: "FLOW";
    top: 16px;
    right: 58px;
    font-size: 78px;
    color: rgba(243, 232, 232, 0.95);
  }
  .page-department.page-career-change .p-department-faq::before {
    content: "FAQ";
    top: 16px;
    right: 360px;
    font-size: 78px;
    color: rgba(243, 232, 232, 0.95);
  }
  .page-department.page-career-change .p-department-faq {
    padding-top: 62px;
  }
  .page-department.page-career-change .p-department-section__eyebrow {
    margin-top: 40px;
  }
  .page-department.page-career-change .p-department-faq .p-department-section__eyebrow {
    margin-top: 0;
  }
}

.page-career-change .p-department-feature__heading {
  font-size: 15px;
}
.page-career-change .p-department-section__title--plain,
.page-career-change .p-department-case__intro {
  text-align: center;
}
.page-career-change .p-department-genre {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 10px;
  width: min(100%, 830px);
  margin: 0 auto;
}
.page-career-change .p-department-genre > .p-department-section__eyebrow,
.page-career-change .p-department-genre > .p-department-section__title--plain,
.page-career-change .p-department-genre > .p-department-case__intro {
  grid-column: 1/-1;
}
.page-career-change .p-department-genre__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 88px;
  padding: 10px 10px;
  border: 1px solid #ce5548;
  border-radius: 7px;
  background: #ce5548;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  box-sizing: border-box;
}
.page-career-change .p-department-genre__list::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}
.page-career-change .p-department-genre__list:nth-of-type(2)::before {
  background-image: url("../img/career-change-genre-energy.svg");
}
.page-career-change .p-department-genre__list:nth-of-type(3)::before {
  background-image: url("../img/career-change-genre-railway.svg");
}
.page-career-change .p-department-genre__list:nth-of-type(4)::before {
  background-image: url("../img/career-change-genre-trading.svg");
}
.page-career-change .p-department-genre__list:nth-of-type(5)::before {
  background-image: url("../img/career-change-genre-manufacturing.svg");
}
.page-career-change .p-department-genre__list:nth-of-type(6)::before {
  background-image: url("../img/career-change-genre-media.svg");
}
.page-career-change .p-department-genre__list:nth-of-type(7)::before {
  background-image: url("../img/career-change-genre-venture.svg");
}
.page-career-change .p-department-genre__list:nth-of-type(8)::before {
  background-image: url("../img/career-change-genre-distribution.svg");
}
.page-career-change .p-department-genre__list:nth-of-type(9)::before {
  background-image: url("../img/career-change-genre-education.svg");
}
.page-career-change .p-department-genre__list:nth-of-type(10)::before {
  background-image: url("../img/career-change-genre-food-service.svg");
}
.page-career-change .p-department-genre__list:nth-of-type(11)::before {
  background-image: url("../img/career-change-genre-it-communications.svg");
}
.page-career-change .p-department-genre__list:nth-of-type(12)::before {
  background-image: url("../img/career-change-genre-finance.svg");
}
.page-career-change .p-department-genre__list:nth-of-type(13)::before {
  background-image: url("../img/career-change-genre-construction-real-estate.svg");
}
.page-career-change .p-department-case {
  width: min(100%, 820px);
  margin: 0 auto;
  text-align: center;
}
.page-career-change .p-department-case__intro {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #404047;
}
.page-career-change .p-department-case__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.page-career-change .p-department-case__item {
  position: relative;
  padding-top: 10px;
  text-align: left;
}
.page-career-change .p-department-case__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.page-career-change .p-department-case__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  margin-bottom: 0;
  border-radius: 50%;
  background: #d16354;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.page-career-change .p-department-case__title-group {
  min-width: 0;
  flex: 1;
}
.page-career-change .p-department-case__meta {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #404047;
}
.page-career-change .p-department-case__heading {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: #d16354;
}
.page-career-change .p-department-case__block {
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
.page-career-change .p-department-case__block:last-child {
  margin-bottom: 0;
}
.page-career-change .p-department-case__label {
  padding: 6px 12px;
  background: #d16354;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.page-career-change .p-department-case__text,
.page-career-change .p-department-case__list-text li {
  font-size: 14px;
  line-height: 2;
  color: #404047;
}
.page-career-change .p-department-case__text {
  margin: 0;
  padding: 12px;
}
.page-career-change .p-department-case__list-text {
  margin: 0;
  padding: 12px 12px 12px 28px;
  list-style: disc;
}
.page-career-change .p-department-case__list-text li {
  margin-bottom: 4px;
}
.page-career-change .p-department-case__list-text li:last-child {
  margin-bottom: 0;
}
.page-career-change .p-department-case__more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.page-career-change .p-department-case__more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  min-height: 40px;
  padding: 12px 20px;
  border: 2px solid #4d4d55;
  border-radius: 8px;
  background: #4d4d55;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
.page-career-change .p-department-case__more-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: left 0.3s ease;
}
.page-career-change .p-department-feature__item:nth-child(1) .p-department-feature__image img {
  max-width: 168px;
}
.page-career-change .p-department-feature__item:nth-child(2) .p-department-feature__image img {
  max-width: 176px;
}
.page-career-change .p-department-feature__item:nth-child(3) .p-department-feature__image img {
  max-width: 180px;
}
.page-career-change .p-department-flow__item:nth-child(1) .p-department-flow__image img {
  max-width: 78px;
}
.page-career-change .p-department-flow__item:nth-child(1) .p-department-flow__card {
  grid-template-columns: minmax(0, 1fr) 78px;
  align-items: center;
}
.page-career-change .p-department-flow__item:nth-child(1) .p-department-flow__cta {
  margin-top: 4px;
}
.page-career-change .p-department-flow__item:nth-child(2) .p-department-flow__card,
.page-career-change .p-department-flow__item:nth-child(3) .p-department-flow__card,
.page-career-change .p-department-flow__item:nth-child(4) .p-department-flow__card,
.page-career-change .p-department-flow__item:nth-child(5) .p-department-flow__card {
  grid-template-columns: 1fr;
}
.page-career-change .p-department-flow__item:nth-child(2) .p-department-flow__image,
.page-career-change .p-department-flow__item:nth-child(3) .p-department-flow__image,
.page-career-change .p-department-flow__item:nth-child(4) .p-department-flow__image,
.page-career-change .p-department-flow__item:nth-child(5) .p-department-flow__image {
  justify-self: center;
  align-self: start;
  margin-top: 4px;
}
.page-career-change .p-department-flow__item:nth-child(2) .p-department-flow__image img {
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}
.page-career-change .p-department-flow__item:nth-child(3) .p-department-flow__image img {
  max-width: 120px;
  margin-left: auto;
  margin-right: auto;
}
.page-career-change .p-department-flow__item:nth-child(4) .p-department-flow__image img {
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
.page-career-change .p-department-flow__item:nth-child(5) .p-department-flow__image img {
  max-width: 120px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .page-career-change .p-department-genre {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 12px;
  }
  .page-career-change .p-department-genre__list {
    gap: 10px;
    min-height: 108px;
    font-size: 14px;
    line-height: 1.5;
    padding: 14px 12px;
  }
  .page-career-change .p-department-genre__list::before {
    width: 34px;
    height: 34px;
  }
  .page-career-change .p-department-case__list {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .page-career-change .p-department-case {
    width: min(100%, 830px);
  }
  .page-career-change .p-department-case__more-button:hover::before {
    left: 0;
  }
  .page-career-change .p-department-case__more-button:hover {
    color: #4d4d55;
  }
  .page-career-change .p-department-flow__item:nth-child(1) .p-department-flow__card {
    grid-template-columns: minmax(0, 1fr) 110px;
    min-height: auto;
    padding: 12px 180px 14px;
    align-items: center;
  }
  .page-career-change .p-department-flow__item:nth-child(1) .p-department-flow__body {
    display: flex;
    align-items: center;
    min-height: 72px;
  }
  .page-career-change .p-department-flow__item:nth-child(1) .p-department-flow__text {
    max-width: 420px;
  }
  .page-career-change .p-department-flow__item:nth-child(1) .p-department-flow__image img {
    max-width: 78px;
    margin-left: auto;
  }
  .page-career-change .p-department-flow__item:nth-child(1) .p-department-flow__cta {
    justify-content: flex-start;
    margin-top: 8px;
  }
  .page-career-change .p-department-flow__item:nth-child(1) .p-department-cta__button {
    width: 480px;
    min-height: 36px;
    font-size: 14px;
    line-height: 1.4;
  }
  .page-career-change .p-department-flow__item:nth-child(n+2) .p-department-flow__card {
    padding: 10px 10px 12px;
  }
  .page-career-change .p-department-flow__item:nth-child(2) .p-department-flow__image img {
    max-width: 162px;
  }
  .page-career-change .p-department-flow__item:nth-child(3) .p-department-flow__image img {
    max-width: 100px;
  }
  .page-career-change .p-department-flow__item:nth-child(4) .p-department-flow__image img {
    max-width: 130px;
  }
  .page-career-change .p-department-flow__item:nth-child(5) .p-department-flow__image img {
    max-width: 96px;
  }
}

.page-business .l-container {
  padding-left: 20px;
  padding-right: 20px;
}
.page-business .p-lead {
  margin-bottom: 30px;
  text-align: left;
  font-size: 15px;
}
.page-business .p-business-intro,
.page-business .p-business-services,
.page-business .p-business-strengths,
.page-business .p-business-contact {
  padding: 0 0 46px;
  background: #f3e8e8;
}
.page-business .p-business-intro__issues {
  max-width: 320px;
  margin: 0 auto;
  padding: 20px 22px;
  background: #fff;
  border: 2px solid #a46d5b;
}
.page-business .p-business-intro__issues h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #a46d5b;
}
.page-business .p-business-intro__issues ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-business .p-business-intro__issues li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #404047;
}
.page-business .p-business-intro__issues li:last-child {
  margin-bottom: 0;
}
.page-business .p-business-intro__issues li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ce5548;
  font-weight: 700;
}
.page-business .p-business-service {
  margin-bottom: 34px;
}
.page-business .p-business-service:last-child {
  margin-bottom: 0;
}
.page-business .p-business-service h2 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  color: #404047;
}
.page-business .p-business-service__dot {
  color: #ce5548;
  margin-right: 6px;
}
.page-business .l-container .p-business-service__license {
  margin: 0 0 12px;
  font-size: 12px;
  color: #7d7d7d;
}
.page-business .p-business-service p.p-business-service__group {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 14px;
  background-color: #ce5548;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.page-business .p-business-service p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 2;
  color: #404047;
}
.page-business .p-business-service__area h3 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: #7d7d7d;
  background: #fff;
}
.page-business .p-business-service__margin-link {
  margin: 12px 0 0;
  text-align: left;
}
.page-business .p-business-service__margin-link a {
  color: #404047;
  font-weight: 700;
  text-decoration: none;
}
.page-business .p-business-service__margin-link a:hover {
  text-decoration: underline;
}
.page-business .p-business-strengths__sub,
.page-business .p-business-contact__sub {
  margin: 0 0 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #404047;
}
.page-business .p-business-strengths__title,
.page-business .p-business-contact__title {
  margin: 0;
  text-align: center;
  font-size: 32px;
  letter-spacing: 0.16em;
  line-height: 1;
  color: #404047;
}
.page-business .p-business-strengths__line,
.page-business .p-business-contact__line {
  width: 124px;
  height: 3px;
  margin: 12px auto 28px;
  background: #ce5548;
}
.page-business .p-business-strength-card {
  position: relative;
  padding: 34px 18px 22px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 14px;
}
.page-business .p-business-strength-card:last-child {
  margin-bottom: 0;
}
.page-business .p-business-strengths__list {
  margin: 30px auto;
}
.page-business .p-business-strength-card__number {
  position: absolute;
  top: -14px;
  left: 14px;
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: rgba(206, 85, 72, 0.5);
}
.page-business .p-business-strength-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #ce5548;
}
.page-business .p-business-strength-card p:not(.p-business-strength-card__number) {
  margin: 0;
  position: relative;
  font-size: 14px;
  line-height: 2;
  color: #404047;
}
.page-business .p-business-contact {
  background: #fff;
  padding-top: 36px;
}
.page-business .p-business-contact__lead {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 2;
  color: #404047;
}
.page-business .p-business-contact__lead a {
  color: inherit;
  text-decoration: underline;
}
.page-business .p-business-form__field {
  margin-bottom: 18px;
}
.page-business .p-business-form__field--prefecture {
  margin-top: 20px;
}
.page-business .p-business-form__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #404047;
}
.page-business .p-business-form__field label span {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f34d4d;
  font-size: 11px;
  color: #fff;
  vertical-align: middle;
}
.page-business .p-business-form input,
.page-business .p-business-form select,
.page-business .p-business-form textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #e2c1b5;
  background: #fde8e0;
  font-size: 14px;
  color: #404047;
  box-sizing: border-box;
  border-radius: 0;
}
.page-business .p-business-form textarea {
  resize: vertical;
  min-height: 160px;
}
.page-business .p-business-form select {
  min-height: 52px;
  padding-top: 14px;
  padding-bottom: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.page-business .p-business-form__grid--zip {
  display: grid;
  gap: 18px;
}
.page-business .p-business-form__grid--zip {
  grid-template-columns: minmax(0, 1fr) 132px;
  align-items: start;
}
.page-business .p-business-form__grid--zip .p-business-form__field {
  margin-bottom: 0;
}
.page-business .p-business-form__grid--zip .p-business-form__action {
  padding-top: 30px;
}
.page-business .p-business-form__grid--zip input,
.page-business .p-business-form__zip-button {
  height: 48px;
}
.page-business .p-business-form__action {
  display: flex;
  align-items: stretch;
}
.page-business .p-business-form__zip-button {
  width: 100%;
  padding: 13px 18px;
  border: none;
  box-sizing: border-box;
  border-radius: 999px;
  background: #5f5f68;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.page-business .p-business-form__agreement {
  margin-top: 10px;
}
.page-business .p-business-form__agreement p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #404047;
}
.page-business .p-business-form__agreement a {
  color: #404047;
  text-decoration: underline;
}
.page-business .p-business-form__check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #404047;
}
.page-business .p-business-form__check input {
  width: auto;
  padding: 0;
  margin: 0;
}
.page-business .p-business-form__submit {
  display: block;
  width: min(100%, 280px);
  margin: 28px auto 0;
  padding: 15px 20px;
  border: 2px solid #67a7d8;
  border-radius: 6px;
  background: #67a7d8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  cursor: pointer;
}
.page-business .p-business-form__submit:disabled {
  border-color: #a8c7de;
  background: #a8c7de;
  color: #eef6fb;
  cursor: not-allowed;
}
.page-business .p-business-form__submit:disabled::before {
  display: none;
}
.page-business .p-business-form__submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: left 0.3s ease;
}
@media screen and (min-width: 769px) {
  .page-business .l-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-business .p-lead {
    max-width: 760px;
    margin: 0 auto 42px;
    font-size: 17px;
    line-height: 2;
    text-align: center;
  }
  .page-business .p-business-intro,
  .page-business .p-business-services,
  .page-business .p-business-strengths,
  .page-business .p-business-contact {
    padding-bottom: 90px;
  }
  .page-business .p-business-intro .l-container,
  .page-business .p-business-services .l-container {
    max-width: 860px;
  }
  .page-business .p-business-intro__issues {
    max-width: 540px;
    margin: 0 auto;
    padding: 24px 40px;
  }
  .page-business .p-business-intro__issues h2 {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .page-business .p-business-intro__issues ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 28px;
         column-gap: 28px;
    row-gap: 16px;
    max-width: 450px;
    margin: 0 auto;
  }
  .page-business .p-business-intro__issues li {
    margin-bottom: 0;
    font-size: 16px;
  }
  .page-business .p-business-service {
    margin-bottom: 44px;
  }
  .page-business .p-business-service h2 {
    font-size: 18px;
    line-height: 1.7;
  }
  .page-business .l-container .p-business-service__license {
    margin-bottom: 14px;
    font-size: 11px;
  }
  .page-business .p-business-service p {
    font-size: 15px;
    line-height: 1.95;
  }
  .page-business .p-business-service__area h3 {
    font-size: 14px;
    text-align: center;
  }
  .page-business .p-business-service__area p {
    font-size: 15px;
  }
  .page-business .p-business-strengths__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 840px;
    margin: 34px auto 0;
  }
  .page-business .p-business-strengths__sub,
  .page-business .p-business-contact__sub {
    font-size: 15px;
  }
  .page-business .p-business-strengths__title,
  .page-business .p-business-contact__title {
    font-size: 42px;
    letter-spacing: 0.18em;
  }
  .page-business .p-business-strengths__line,
  .page-business .p-business-contact__line {
    margin-bottom: 34px;
  }
  .page-business .p-business-strength-card {
    min-height: 100px;
    padding: 26px 22px 22px;
    margin-bottom: 0;
    height: 50%;
  }
  .page-business .p-business-strength-card__number {
    top: -16px;
    left: 16px;
    font-size: 34px;
  }
  .page-business .p-business-strength-card h3 {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.6;
  }
  .page-business .p-business-strength-card p:not(.p-business-strength-card__number) {
    font-size: 15px;
    line-height: 1.9;
  }
  .page-business .p-business-contact .l-container {
    max-width: 760px;
  }
  .page-business .p-business-contact__lead {
    max-width: 670px;
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 2;
    text-align: center;
  }
  .page-business .p-business-form__grid--name {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .page-business .p-business-form__grid--zip {
    grid-template-columns: minmax(0, 1fr) 180px;
    align-items: end;
  }
  .page-business .p-business-form__field {
    margin-bottom: 16px;
  }
  .page-business .p-business-form__field label {
    margin-bottom: 8px;
    font-size: 15px;
  }
  .page-business .p-business-form input,
  .page-business .p-business-form select,
  .page-business .p-business-form textarea {
    font-size: 14px;
  }
  .page-business .p-business-form select {
    background-position: calc(100% - 23px) calc(50% - 2px), calc(100% - 16px) calc(50% - 2px);
    background-size: 7px 7px, 7px 7px;
  }
  .page-business .p-business-form textarea {
    min-height: 190px;
  }
  .page-business .p-business-form__agreement {
    margin-top: 18px;
    text-align: center;
  }
  .page-business .p-business-form__agreement p {
    font-size: 13px;
  }
  .page-business .p-business-form__submit {
    width: 300px;
    margin-top: 32px;
    padding: 14px 20px;
    font-size: 14px;
  }
  .page-business .p-business-form__submit:not(:disabled):hover::before {
    left: 0;
  }
  .page-business .p-business-form__submit:not(:disabled):hover {
    color: #67a7d8;
  }
}

@media screen and (min-width: 769px) {
  .page-business .p-business-strengths,
  .page-business .p-business-contact {
    position: relative;
    overflow: hidden;
  }
  .page-business .p-business-strengths__sub,
  .page-business .p-business-strengths__title,
  .page-business .p-business-strengths__line,
  .page-business .p-business-contact__sub,
  .page-business .p-business-contact__title,
  .page-business .p-business-contact__line {
    position: relative;
    z-index: 1;
  }
  .page-business .p-business-strengths::before,
  .page-business .p-business-contact::before {
    position: absolute;
    right: 62px;
    font-size: 96px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
  }
  .page-business .p-business-strengths::before {
    content: "KEY STRENGTHS";
    top: 18px;
    color: rgba(255, 255, 255, 0.5);
  }
  .page-business .p-business-contact::before {
    content: "CONTACT US";
    top: 16px;
    color: #f7f0f0;
  }
}
.page-case .l-container {
  padding-left: 20px;
  padding-right: 20px;
}
.page-case .p-case {
  padding: 0 0 56px;
  background: #f3e8e8;
}
.page-case .p-case__lead {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  color: #404047;
}
.page-case .p-case__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.page-case .p-case-card {
  background: #fff;
  border: 1px solid #eadada;
}
.page-case .p-case-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 12px;
}
.page-case .p-case-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #d36456;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.page-case .p-case-card__category {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #404047;
}
.page-case .p-case-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #404047;
}
.page-case .p-case-card__section {
  margin: 16px;
  border-top: 1px solid #eadada;
}
.page-case .p-case-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  background: #d36456;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.page-case .p-case-card__text {
  margin: 0;
  padding: 12px 14px 14px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.9;
  color: #404047;
}
.page-case .p-case-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-case .p-case-card__list li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 6px;
}
.page-case .p-case-card__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #ce5548;
}
.page-case .p-case-card__list li:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  .page-case .p-case-card__text {
    font-size: 14px;
  }
  .page-case .p-case__lead {
    font-size: 17px;
    text-align: center;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 769px) {
  .page-case .p-case {
    position: relative;
    overflow: hidden;
  }
  .page-case .p-case::before {
    content: "CASE";
    position: absolute;
    top: 34px;
    right: 42px;
    font-size: 108px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.52);
    pointer-events: none;
    z-index: 0;
  }
  .page-case .p-case .l-container {
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 769px) {
  .page-case .p-case::before {
    top: 8px;
    right: 46px;
  }
  .page-business .p-business-strengths::before {
    top: -8px;
    right: 66px;
    font-size: 82px;
  }
  .page-business .p-business-contact::before {
    top: 2px;
    right: 66px;
    font-size: 82px;
  }
}
.page-contact .l-container {
  padding-left: 20px;
  padding-right: 20px;
}
.page-contact .p-contact {
  padding: 0 0 56px;
  background: #f3e8e8;
}
.page-contact .p-contact__lead {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 2;
  color: #404047;
}
.page-contact .p-contact__lead a {
  color: inherit;
  text-decoration: underline;
}
.page-contact .p-contact-form__field {
  margin-bottom: 18px;
}
.page-contact .p-contact-form__service-extra[hidden] {
  display: none;
}
.page-contact .p-contact-form__field--prefecture {
  margin-top: 20px;
}
.page-contact .p-contact-form__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #404047;
}
.page-contact .p-contact-form__field label span {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f34d4d;
  font-size: 11px;
  color: #fff;
  vertical-align: middle;
}
.page-contact .p-contact-form input,
.page-contact .p-contact-form select,
.page-contact .p-contact-form textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #e2c1b5;
  background: #fff;
  font-size: 14px;
  color: #404047;
  box-sizing: border-box;
  border-radius: 0;
}
.page-contact .p-contact-form textarea {
  resize: vertical;
  min-height: 160px;
}
.page-contact .p-contact-form select {
  min-height: 52px;
  padding-top: 14px;
  padding-bottom: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.page-contact .p-contact-form__grid--zip {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 132px;
  align-items: start;
}
.page-contact .p-contact-form__grid--zip .p-contact-form__field {
  margin-bottom: 0;
}
.page-contact .p-contact-form__grid--zip .p-contact-form__action {
  padding-top: 30px;
}
.page-contact .p-contact-form__grid--zip input,
.page-contact .p-contact-form__zip-button {
  height: 48px;
}
.page-contact .p-contact-form__action {
  display: flex;
  align-items: stretch;
}
.page-contact .p-contact-form__zip-button {
  width: 100%;
  padding: 13px 18px;
  border: none;
  box-sizing: border-box;
  border-radius: 999px;
  background: #5f5f68;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.page-contact .p-contact-form__agreement {
  margin-top: 10px;
}
.page-contact .p-contact-form__agreement p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #404047;
}
.page-contact .p-contact-form__agreement a {
  color: #404047;
  text-decoration: underline;
}
.page-contact .p-contact-form__check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #404047;
}
.page-contact .p-contact-form__check input {
  width: auto;
  padding: 0;
  margin: 0;
}
.page-contact .p-contact-form__submit {
  display: block;
  width: min(100%, 280px);
  margin: 28px auto 0;
  padding: 15px 20px;
  border: 2px solid #67a7d8;
  border-radius: 6px;
  background: #67a7d8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  cursor: pointer;
}
.page-contact .p-contact-form__submit:disabled {
  border-color: #a8c7de;
  background: #a8c7de;
  color: #eef6fb;
  cursor: not-allowed;
}
.page-contact .p-contact-form__submit:disabled::before {
  display: none;
}
.page-contact .p-contact-form__submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: left 0.3s ease;
}
@media screen and (min-width: 769px) {
  .page-contact .p-contact-form__grid--name {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .page-contact .p-contact-form__grid--name .p-contact-form__field {
    margin-bottom: 18px;
  }
  .page-contact .p-contact-form__agreement p {
    text-align: center;
  }
  .page-contact .p-contact-form__submit:not(:disabled):hover::before {
    left: 0;
  }
  .page-contact .p-contact-form__submit:not(:disabled):hover {
    color: #67a7d8;
  }
}

.page-form-flow .p-form-flow {
  background: #fff;
  padding: 24px 0 56px;
}

.page-form-flow .p-form-flow__card {
  background: #fff;
  border: 1px solid #eadada;
  border-radius: 16px;
  padding: 24px 18px 28px;
}

.page-form-flow .p-form-flow__heading {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.page-form-flow .p-form-flow__lead {
  margin: 0 0 24px;
  color: #555;
  font-size: 14px;
  line-height: 1.9;
  text-align: center;
}

.page-form-flow .p-form-flow__list {
  border-top: 1px solid #e6e6e6;
}

.page-form-flow .p-form-flow__row {
  display: block;
  border-bottom: 1px solid #e6e6e6;
  padding: 14px 0;
}

.page-form-flow .p-form-flow__row.is-hidden {
  display: none;
}

.page-form-flow .p-form-flow__label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.page-form-flow .p-form-flow__value {
  color: #222;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  white-space: pre-wrap;
  word-break: break-word;
}

.page-form-flow .p-form-flow__actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.page-form-flow .p-form-flow__button,
.page-form-flow .p-form-flow__button:link,
.page-form-flow .p-form-flow__button:visited {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #4d4d55;
  background: #4d4d55;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.page-form-flow .p-form-flow__button:hover {
  opacity: 0.9;
}

.page-form-flow .p-form-flow__button--secondary,
.page-form-flow .p-form-flow__button--secondary:link,
.page-form-flow .p-form-flow__button--secondary:visited {
  background: #fff;
  color: #4d4d55;
}

.page-form-flow .p-form-flow__thanks-heading {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.page-form-flow .p-form-flow__thanks-text {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 2;
  text-align: center;
}

.page-form-flow .p-form-flow__actions--single {
  display: flex;
  justify-content: center;
}

.page-form-flow .p-form-flow__actions--single .p-form-flow__button,
.page-form-flow .p-form-flow__actions--single .p-form-flow__button:link,
.page-form-flow .p-form-flow__actions--single .p-form-flow__button:visited {
  width: min(100%, 280px);
}

@media screen and (min-width: 769px) {
  .page-form-flow .p-form-flow {
    padding: 56px 0 88px;
  }
  .page-form-flow .p-form-flow__card {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 48px 48px;
  }
  .page-form-flow .p-form-flow__heading {
    margin-bottom: 16px;
    font-size: 34px;
  }
  .page-form-flow .p-form-flow__lead {
    margin-bottom: 32px;
    font-size: 15px;
  }
  .page-form-flow .p-form-flow__row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 18px 0;
  }
  .page-form-flow .p-form-flow__label {
    margin-bottom: 0;
    font-size: 14px;
  }
  .page-form-flow .p-form-flow__value {
    font-size: 16px;
  }
  .page-form-flow .p-form-flow__actions {
    grid-template-columns: repeat(2, minmax(0, 280px));
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
  }
  .page-form-flow .p-form-flow__button,
  .page-form-flow .p-form-flow__button:link,
  .page-form-flow .p-form-flow__button:visited {
    min-height: 56px;
    font-size: 16px;
  }
  .page-form-flow .p-form-flow__thanks-heading {
    margin-bottom: 20px;
    font-size: 38px;
  }
  .page-form-flow .p-form-flow__thanks-text {
    font-size: 16px;
  }
}
.page-faq .l-container {
  padding-left: 20px;
  padding-right: 20px;
}
.page-faq .p-faq-page {
  padding: 0 0 56px;
  background: #f3e8e8;
}
.page-faq .p-faq-page__search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  margin-bottom: 18px;
}
.page-faq .p-faq-page__search-input {
  width: 100%;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid #a88888;
  border-right: none;
  border-radius: 0;
  background: #fff;
  color: #404047;
  font-size: 12px;
  box-sizing: border-box;
}
.page-faq .p-faq-page__search-input::-moz-placeholder {
  color: #9d9da5;
}
.page-faq .p-faq-page__search-input::placeholder {
  color: #9d9da5;
}
.page-faq .p-faq-page__search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #4d4d55;
  cursor: pointer;
}
.page-faq .p-faq-page__search-icon {
  position: relative;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
}
.page-faq .p-faq-page__search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 6px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
  transform-origin: center;
}
.page-faq .p-faq-page__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-faq .p-faq-item__question {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 43px;
  padding: 12px 12px;
  border: none;
  background: #d16354;
  color: #fff;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: border-radius 0.25s ease;
}
.page-faq .p-faq-item__question[aria-expanded=true] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.page-faq .p-faq-item__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: #d16354;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}
.page-faq .p-faq-item__mark--answer {
  background: #d16354;
  color: #fff;
}
.page-faq .p-faq-item__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.page-faq .p-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-faq .p-faq-item__question[aria-expanded=true] + .p-faq-item__answer {
  max-height: 320px;
}
.page-faq .p-faq-item__answer-inner {
  display: flex;
  gap: 10px;
  margin-top: 2px;
  padding: 12px;
  border: 1px solid #eadada;
  background: #fff;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.34s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-faq .p-faq-item__question[aria-expanded=true] + .p-faq-item__answer .p-faq-item__answer-inner {
  opacity: 1;
  transform: translateY(0);
}
.page-faq .p-faq-item__answer-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #404047;
}

.page-inquiry .l-container {
  padding-left: 20px;
  padding-right: 20px;
}
.page-inquiry .p-inquiry-hub {
  padding: 0 0 56px;
  background: #f3e8e8;
}
.page-inquiry .p-inquiry-hub__section {
  padding: 0 0 48px;
}
.page-inquiry .p-inquiry-hub__section:last-child {
  padding-bottom: 0;
}
.page-inquiry .p-inquiry-hub__heading {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.45;
  font-weight: 700;
  color: #ce5548;
}
.page-inquiry .p-inquiry-hub__text {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 2;
  color: #404047;
}
.page-inquiry .p-inquiry-hub__note {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  text-decoration: none;
  color: #404047;
}
.page-inquiry .p-inquiry-hub__links {
  display: grid;
  gap: 22px;
}
.page-inquiry .p-inquiry-hub__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  background: #5f5f68;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  box-sizing: border-box;
  border-radius: 7px;
  border: 2px solid #5f5f68;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
.page-inquiry .p-inquiry-hub__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: left 0.3s ease;
}
.page-inquiry .p-inquiry-hub__button--secondary {
  min-height: 50px;
}
@media screen and (min-width: 769px) {
  .page-inquiry .p-inquiry-hub__button:hover::before {
    left: 0;
  }
  .page-inquiry .p-inquiry-hub__button:hover {
    color: #3c3c3f;
  }
}

.page-news .l-container {
  padding-left: 20px;
  padding-right: 20px;
}
.page-news .p-news {
  padding: 0 0 54px;
  background: #f3e8e8;
}
.page-news .p-news__list {
  display: flex;
  flex-direction: column;
}
.page-news .p-news__item {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #8e8e95;
}
.page-news .p-news__date {
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: #404047;
}
.page-news .p-news__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  color: #4c79a8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-news .p-news__more {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.page-news .p-news__more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-width: 94px;
  min-height: 34px;
  padding: 7px 18px;
  border: 1px solid #b4a4a4;
  border-radius: 999px;
  background: #fff;
  color: #404047;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.page-news-detail .l-container {
  padding-left: 12px;
  padding-right: 12px;
}
.page-news-detail .p-news-detail {
  padding: 0 0 56px;
  background: #f3e8e8;
}
.page-news-detail .p-news-detail__article {
  padding: 22px 14px 28px;
  background: #fff;
  border-radius: 7px;
}
.page-news-detail .p-news-detail__date {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: #404047;
}
.page-news-detail .p-news-detail__title {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: #404047;
}
.page-news-detail .p-news-detail__body {
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
  color: #404047;
}
.page-news-detail .p-news-detail__body p {
  margin: 0 0 18px;
}
.page-news-detail .p-news-detail__body p:last-child {
  margin-bottom: 0;
}
.page-news-detail .p-news-detail__pager {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 26px 0;
}
.page-news-detail .p-news-detail__pager-link {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  color: #4c79a8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-news-detail .p-news-detail__pager-date {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: #7a7a82;
}

.page-department .l-container {
  padding-left: 20px;
  padding-right: 20px;
}
.page-department .p-department {
  padding: 0 0 -4px;
  background: #f3e8e8;
}
.page-department .p-department__lead {
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #404047;
}
.page-department .p-department-section {
  margin-bottom: 28px;
}
.page-department .p-department-section:last-child {
  margin-bottom: 0;
}
.page-department .p-department-section__eyebrow {
  margin-bottom: -16px;
  margin-top: 50px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.28em;
  text-align: center;
  color: #9a7c7a;
}
.page-department .p-department-section__title-accent {
  margin: 0 0 16px;
  padding: 11px 13px;
  border-radius: 999px;
  background: #d16354;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  position: relative;
  width: 270px;
  margin-left: auto;
  margin-right: auto;
}
.page-department .p-department-section__title--plain {
  position: relative;
  padding: 0;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.4em;
  border-radius: 0;
  background: none;
  color: #404047;
  text-indent: 10px;
  text-align: center;
}
.page-department .p-department-section__title--plain::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 100px;
  height: 2px;
  background: #d16354;
  transform: translateX(-50%);
}
.page-department .p-department-feature__list {
  display: flex;
  flex-direction: column;
  gap: 38px;
  width: min(100%, 820px);
  margin: -40px auto 0;
  padding: 78px 20px 70px;
  box-sizing: border-box;
  border-radius: 12px;
  background: #fff;
}
.page-department .p-department-feature__item {
  text-align: center;
}
.page-department .p-department-feature__image {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.page-department .p-department-feature__image img {
  width: 100%;
  max-width: 140px;
  height: auto;
}
.page-department .p-department-feature__heading {
  position: relative;
  margin: 18px 0 10px;
  padding-left: 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
  color: #404047;
}
.page-department .p-department-feature__heading::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d16354;
  font-weight: 700;
}
.page-department .p-department-feature__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  text-align: left;
  color: #404047;
}
.page-department .p-department-job {
  text-align: center;
}
.page-department .p-department-job__intro {
  margin: 20px 0 18px;
  font-size: 16px;
  line-height: 1.9;
  text-align: left;
  color: #404047;
}
.page-department .p-department-job__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
}
.page-department .p-department-job__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 12px 15px 24px;
  border-radius: 7px;
}
.page-department .p-department-job__image {
  width: 100%;
  max-width: 118px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
}
.page-department .p-department-job__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-department .p-department-job__label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  color: #404047;
}
.page-department .p-department-job__attention {
  font-size: 10px;
  text-align: right;
}
.page-department .p-department-flow {
  text-align: center;
  background-color: #fff;
  border-radius: 7px;
  padding: 10px 20px 30px;
  margin-top: 70px;
}
.page-department .p-department-flow__intro {
  margin: 20px 0 18px;
  font-size: 16px;
  line-height: 1.9;
  color: #404047;
}
.page-department .p-department-flow__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-department .p-department-flow__item {
  text-align: left;
  position: relative;
}
.page-department .p-department-flow__item:not(:last-child) {
  padding-bottom: 12px;
}
.page-department .p-department-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 14px solid #eadada;
}
.page-department .p-department-flow__head {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #d16354;
  padding: 10px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.page-department .p-department-flow__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  color: #d16354;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}
.page-department .p-department-flow__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 12px;
  padding: 12px 12px 10px;
  background: #eadada;
  align-items: center;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
.page-department .p-department-flow__body {
  min-width: 0;
}
.page-department .p-department-flow__heading {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: #fff;
}
.page-department .p-department-flow__text {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.9;
  color: #404047;
}
.page-department .p-department-flow__cta {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  grid-column: 1/-1;
}
.page-department .p-department-flow__image {
  align-self: end;
}
.page-department .p-department-flow__image img {
  width: 100%;
  height: auto;
}
.page-department .p-department-faq {
  text-align: center;
  background: #fff;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 calc(50vw - 50% + 20px) 0;
}
.page-department .p-department-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-department .p-department-faq__question {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background: #d16354;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-radius 0.25s ease;
}
.page-department .p-department-faq__question[aria-expanded=true] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.page-department .p-department-faq__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: #d16354;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.page-department .p-department-faq__mark--answer {
  background: #d16354;
  color: #fff;
}
.page-department .p-department-faq__question-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.page-department .p-department-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-department .p-department-faq__question[aria-expanded=true] + .p-department-faq__answer {
  max-height: 240px;
}
.page-department .p-department-faq__answer-inner {
  display: flex;
  gap: 10px;
  margin-top: 2px;
  padding: 12px;
  border: 1px solid #eadada;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: #fff;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.34s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-department .p-department-faq__question[aria-expanded=true] + .p-department-faq__answer .p-department-faq__answer-inner {
  opacity: 1;
  transform: translateY(0);
}
.page-department .p-department-faq__answer-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
  text-align: left;
  color: #404047;
}
.page-department .p-department-cta {
  display: flex;
  justify-content: center;
  margin-top: -30px;
  background: #fff;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 68px calc(50vw - 50% + 20px) 68px;
}
.page-department .p-department-cta__free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  margin-right: 8px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  color: #4d4d55;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
  flex-shrink: 0;
}
.page-department .p-department-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 300px);
  min-height: 52px;
  padding: 12px 20px;
  border: 2px solid #4d4d55;
  border-radius: 8px;
  background: #4d4d55;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
.page-department .p-department-cta__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: left 0.3s ease;
}
@media screen and (min-width: 769px) {
  .page-department .l-container {
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-department .p-department {
    padding: 0 0 -4px;
  }
  .page-department .page-department .p-department__lead {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.9;
    text-align: center;
  }
  .page-department .p-department__lead {
    font-size: 17px;
    text-align: center;
    margin: 0 0 80px;
  }
  .page-department .p-department-section {
    margin-bottom: 84px;
  }
  .page-department .p-department-section__eyebrow {
    margin-top: 0;
    margin-bottom: -34px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }
  .page-department .p-department-section__title--plain {
    margin-bottom: 34px;
    font-size: 34px;
    letter-spacing: 0.26em;
    text-indent: 6px;
  }
  .page-department .p-department-section__title--plain::after {
    bottom: -12px;
    width: 110px;
  }
  .page-department .p-department-section__title-accent {
    width: 240px;
    margin-bottom: 0;
    padding: 8px 16px;
    font-size: 16px;
  }
  .page-department .p-department-feature__list {
    width: min(100%, 830px);
    margin: -16px auto 0;
    padding: 54px 72px 48px 100px;
    gap: 30px;
    border-radius: 10px;
  }
  .page-department .p-department-feature__item {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    grid-template-areas: "image heading" "image text";
    align-items: center;
    gap: 12px;
    text-align: left;
    max-width: 650px;
  }
  .page-department .p-department-feature__image {
    grid-area: image;
    margin-bottom: 0;
  }
  .page-department .p-department-feature__image img {
    max-width: 96px;
  }
  .page-department .p-department-feature__heading {
    grid-area: heading;
    align-self: end;
    margin: 0 0 -8px;
    font-size: 16px;
    line-height: 1.7;
  }
  .page-department .p-department-feature__text {
    grid-area: text;
    align-self: start;
    margin: 0 0 0 20px;
    font-size: 14px;
    line-height: 1.85;
  }
  .page-department .p-department-job__intro {
    max-width: 1000px;
    margin: 0 auto 28px;
    font-size: 14px;
    line-height: 1.9;
    text-align: center;
  }
  .page-department .p-department-job__grid {
    max-width: 820px;
    margin: 0 auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  .page-department .p-department-job__item {
    padding: 30px 14px;
    border-radius: 10px;
  }
  .page-department .p-department-job__image {
    max-width: 108px;
  }
  .page-department .p-department-job__label {
    font-size: 14px;
    line-height: 1.7;
  }
  .page-department .p-department-job__attention {
    max-width: 820px;
    margin: 10px auto 0;
    font-size: 12px;
  }
  .page-department .p-department-job__item {
    gap: 14px;
  }
  .page-department .p-department-flow {
    max-width: 860px;
    margin: 0 auto 88px;
    padding: 34px 34px 38px;
    border-radius: 10px;
  }
  .page-department .p-department-flow__intro {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.8;
  }
  .page-department .p-department-flow__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
  }
  .page-department .p-department-flow__item {
    min-width: 0;
  }
  .page-department .p-department-flow__item:nth-child(1) {
    grid-column: 1/-1;
    margin-bottom: 4px;
  }
  .page-department .p-department-flow__item:nth-child(n+2) {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .page-department .p-department-flow__item:not(:last-child) {
    padding-bottom: 0;
  }
  .page-department .p-department-flow__item::after {
    display: none;
  }
  .page-department .p-department-flow__item:nth-child(n+2):not(:last-child)::after {
    display: block;
    left: auto;
    right: -10px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 10px solid #f1b9b2;
    border-right: 0;
  }
  .page-department .p-department-flow__head {
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 7px 10px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
  .page-department .p-department-flow__step {
    min-width: 52px;
    min-height: 20px;
    padding: 0 8px;
    font-size: 12px;
  }
  .page-department .p-department-flow__heading {
    font-size: 14px;
    line-height: 1.5;
  }
  .page-department .p-department-flow__card {
    min-height: 188px;
    padding: 12px 12px 14px;
    gap: 10px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    align-items: start;
  }
  .page-department .p-department-flow__item:nth-child(n+2) .p-department-flow__card {
    flex: 1;
  }
  .page-department .p-department-flow__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.85;
  }
  .page-department .p-department-flow__cta {
    margin-top: 10px;
  }
  .page-department .p-department-flow__image {
    align-self: center;
    justify-self: center;
  }
  .page-department .p-department-faq {
    padding-top: 62px;
    background: #fff;
    margin: 0 calc(50% - 50vw);
    padding-left: calc(60vw - 50%);
    padding-right: calc(60vw - 50%);
    padding-bottom: 62px;
  }
  .page-department .p-department-faq__list {
    max-width: 1080px;
    margin: 0 auto;
    gap: 14px;
  }
  .page-department .p-department-faq__question {
    min-height: 44px;
    padding: 5px 12px;
    border-radius: 9px;
  }
  .page-department .p-department-faq__mark {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
  .page-department .p-department-faq__question-text {
    font-size: 14px;
    line-height: 1.5;
  }
  .page-department .p-department-faq__answer-inner {
    min-height: 52px;
    padding: 9px 12px;
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
  }
  .page-department .p-department-faq__answer-text {
    font-size: 14px;
    line-height: 1.9;
  }
  .page-department .p-department-cta {
    margin-top: 0;
    padding: 32px calc(50vw - 50% + 20px) 100px;
  }
  .page-department .p-department-cta__free {
    min-width: 42px;
    height: 42px;
    margin-right: 10px;
    font-size: 12px;
  }
  .page-department .p-department-cta__button {
    width: min(100%, 420px);
    min-height: 48px;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.5;
  }
  .page-department .p-department-cta__button:hover::before {
    left: 0;
  }
  .page-department .p-department-cta__button:hover {
    color: #4d4d55;
  }
  .page-department .p-department-cta__button:hover .p-department-cta__free {
    background: #4d4d55;
    color: #fff;
  }
}
@media (hover: none) and (max-width: 768px) {
  .page-department .p-department-cta__button {
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
  .page-department .p-department-cta__button::before {
    content: none !important;
    display: none !important;
  }
  .page-department .p-department-cta__button:hover {
    color: #fff !important;
  }
  .page-department .p-department-cta__button:hover .p-department-cta__free {
    background: #fff !important;
    color: #4d4d55 !important;
  }
}

.page-person .l-container {
  padding-left: 20px;
  padding-right: 20px;
}
.page-person .p-person {
  padding: 0 0 56px;
  background: #f3e8e8;
}
.page-person .p-person__lead {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #404047;
  text-align: left;
}
.page-person .p-person__note {
  text-align: center;
}
.page-person .p-person__lead {
  margin-bottom: 24px;
  font-weight: 600;
}
.page-person .p-person__filter {
  margin: 0 -20px 24px;
  padding: 18px 34px;
  background: #ce5548;
}
.page-person .p-person__filter select {
  width: 100%;
  height: 32px;
  padding: 0 42px 0 18px;
  border: none;
  border-radius: 0;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 46%, #fff 46%, #fff 58%, transparent 58%), linear-gradient(135deg, transparent 46%, #fff 46%, #fff 58%, transparent 58%), linear-gradient(#404047, #404047);
  background-position: calc(100% - 18px) calc(50% - 1px), calc(100% - 12px) calc(50% - 1px), 100% 0;
  background-size: 7px 7px, 7px 7px, 34px 100%;
  background-repeat: no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 14px;
  color: #404047;
  box-sizing: border-box;
}
.page-person .p-person__list {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}
.page-person .p-person-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.page-person .p-person-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 14px 14px 0 0;
  background: #7b7b7b;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.page-person .p-person-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 0 0 14px 14px;
  background: #fff;
}
.page-person .p-person-card__text {
  min-width: 0;
}
.page-person .p-person-card__category,
.page-person .p-person-card__role {
  margin: 0;
  color: #404047;
}
.page-person .p-person-card__category {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.page-person .p-person-card__role {
  font-size: 12px;
  line-height: 1.6;
}
.page-person .p-person-card__arrow {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ce5548;
}
.page-person .p-person-card__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.page-person .p-person__note {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .page-person .p-person {
    padding-bottom: 0;
  }
  .page-person .p-person .l-container {
    max-width: 920px;
  }
  .page-person .p-person__lead {
    max-width: 760px;
    margin: 0 auto 42px;
    font-size: 17px;
    line-height: 2;
    text-align: center;
  }
  .page-person .p-person__filter {
    width: auto;
    margin: 0 -9999px 34px;
    padding: 12px 9999px;
    border-radius: 0;
    background: #ce5548;
  }
  .page-person .p-person__filter select {
    max-width: 360px;
    margin: 0 auto;
    display: block;
  }
  .page-person .p-person__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 20px;
    margin-bottom: 0;
  }
  .page-person .p-person-card__image {
    aspect-ratio: 1/0.82;
    font-size: 16px;
  }
  .page-person .p-person-card__body {
    padding: 10px 12px 9px;
  }
  .page-person .p-person-card__category {
    font-size: 14px;
    line-height: 1.5;
  }
  .page-person .p-person-card__role {
    font-size: 12px;
    line-height: 1.5;
  }
  .page-person .p-person-card__arrow {
    flex-basis: 14px;
    width: 14px;
    height: 14px;
  }
  .page-person .p-person-card__arrow::before {
    width: 4px;
    height: 4px;
  }
  .page-person .p-person__note {
    margin: 78px -9999px 0;
    padding: 62px 9999px 54px;
    background: #fff;
    font-size: 17px;
    line-height: 2;
    text-align: center;
  }
  .page-person .p-person-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(64, 64, 71, 0.14);
  }
}

.page-person .p-person-card__image {
  overflow: hidden;
}

.page-person .p-person-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 769px) {
  .page-person .p-person-card__image {
    aspect-ratio: 280/230;
  }
}
.page-person .p-person-card {
  border-radius: 14px;
  overflow: hidden;
}

.page-person-detail .l-container {
  padding-left: 20px;
  padding-right: 20px;
}
.page-person-detail .p-title {
  padding-bottom: 26px;
}
.page-person-detail .p-person-detail {
  padding: 0 0 56px;
  background: #fff;
}
.page-person-detail .p-person-detail__hero-image,
.page-person-detail .p-person-detail__image,
.page-person-detail .p-person-detail__related-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b9b6b8;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.page-person-detail .p-person-detail__hero-image,
.page-person-detail .p-person-detail__image,
.page-person-detail .p-person-detail__related-image {
  overflow: hidden;
}
.page-person-detail .p-person-detail__hero-image img,
.page-person-detail .p-person-detail__image img,
.page-person-detail .p-person-detail__related-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-person-detail .p-person-detail__profile {
  padding: 18px 20px 22px;
  text-align: center;
  color: #404047;
}
.page-person-detail .p-person-detail__department,
.page-person-detail .p-person-detail__role,
.page-person-detail .p-person-detail__name {
  margin: 0;
}
.page-person-detail .p-person-detail__department,
.page-person-detail .p-person-detail__role {
  font-size: 15px;
  line-height: 1.7;
}
.page-person-detail .p-person-detail__name {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.7;
}
.page-person-detail .p-person-detail__headline {
  margin-bottom: 28px;
  padding: 18px 0;
  background: #ce5548;
}
.page-person-detail .p-person-detail__headline h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-person-detail .p-person-detail__headline h2 .u-sp {
    display: block;
  }
}
.page-person-detail .p-person-detail__video {
  margin-bottom: 28px;
}
.page-person-detail .p-person-detail__video-frame {
  aspect-ratio: 1/0.74;
  background: #efefef;
}
.page-person-detail .p-person-detail__video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.page-person-detail .p-person-detail__section {
  margin-bottom: 32px;
}
.page-person-detail .p-person-detail__section:last-of-type {
  margin-bottom: 0;
}
.page-person-detail .p-person-detail__section h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  color: #ce5548;
}
@media screen and (max-width: 768px) {
  .page-person-detail .p-person-detail__section h3 .u-sp {
    display: block;
  }
}
.page-person-detail .p-person-detail__section p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #404047;
}
.page-person-detail .p-person-detail__image {
  margin-bottom: 14px;
  aspect-ratio: 1/0.73;
  font-size: 18px;
}
.page-person-detail .p-person-detail__related {
  margin-top: 36px;
}
.page-person-detail .p-person-detail__related-head {
  padding: 22px 0;
  background: #ce5548;
}
.page-person-detail .p-person-detail__related-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}
.page-person-detail .p-person-detail__related-body {
  padding: 26px 20px 24px;
  background: #f3e8e8;
}
.page-person-detail .p-person-detail__related-viewport {
  overflow: hidden;
}
.page-person-detail .p-person-detail__related-track {
  display: flex;
  gap: 18px;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 18px;
}
.page-person-detail .p-person-detail__related-card {
  display: flex;
  align-items: center;
  gap: 18px;
  width: calc(100vw - 90px);
  max-width: 340px;
  padding: 20px 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 10px 10px 10px rgba(64, 64, 71, 0.08);
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .page-person-detail .p-person-detail__related-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .page-person-detail .p-person-detail__related-viewport::-webkit-scrollbar {
    display: none;
  }
  .page-person-detail .p-person-detail__related-card {
    scroll-snap-align: start;
  }
  .page-person-detail .p-person-detail__related-role {
    font-size: 12px;
    letter-spacing: -0.02em;
  }
}
.page-person-detail .p-person-detail__related-image {
  flex: 0 0 120px;
  width: 120px;
  aspect-ratio: 1/1;
  font-size: 16px;
}
.page-person-detail .p-person-detail__related-text {
  flex: 1;
  min-width: 0;
}
.page-person-detail .p-person-detail__related-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
  color: #404047;
}
.page-person-detail .p-person-detail__dots {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.page-person-detail .p-person-detail__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #f1a3ab;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.page-person-detail .p-person-detail__dot.is-active {
  background: #d84f1c;
}
.page-person-detail .p-person-detail__back {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  margin-top: 40px;
  border-radius: 7px;
  border: 2px solid #4a4a55;
  background: #4a4a55;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
.page-person-detail .p-person-detail__back::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: left 0.3s ease;
}
@media screen and (min-width: 769px) {
  .page-person-detail .p-person-detail {
    padding-bottom: 70px;
  }
  .page-person-detail .p-person-detail__hero-image {
    width: min(100%, 760px);
    margin: 0 auto;
    aspect-ratio: 530/214;
    font-size: 18px;
  }
  .page-person-detail .p-person-detail__profile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 16px 20px 18px;
  }
  .page-person-detail .p-person-detail__department,
  .page-person-detail .p-person-detail__role,
  .page-person-detail .p-person-detail__name {
    font-size: 15px;
    line-height: 1.8;
  }
  .page-person-detail .p-person-detail__name {
    margin-top: 0;
  }
  .page-person-detail .p-person-detail__headline {
    margin-bottom: 40px;
    padding: 14px 0;
  }
  .page-person-detail .p-person-detail__headline h2 {
    font-size: 17px;
    line-height: 2;
    letter-spacing: 0.04em;
  }
  .page-person-detail .p-person-detail__headline h2 .u-sp {
    display: none;
  }
  .page-person-detail .p-person-detail__headline h2 .u-pc {
    display: block;
  }
  .page-person-detail .p-person-detail > .l-container:has(.p-person-detail__video) {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 860px);
    justify-content: center;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 0;
    align-items: start;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .page-person-detail .p-person-detail > .l-container:has(.p-person-detail__video) > .p-person-detail__section + .p-person-detail__section {
    margin-top: calc(15px * 2.1 * 2);
  }
  .page-person-detail .p-person-detail__video {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 860px;
    justify-self: center;
    margin-bottom: 40px;
  }
  .page-person-detail .p-person-detail__video-frame {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .page-person-detail .p-person-detail__section:first-of-type {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 860px;
    justify-self: center;
    margin-bottom: 0;
  }
  .page-person-detail .p-person-detail__section:not(:first-of-type) {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    -moz-column-gap: 52px;
         column-gap: 52px;
    row-gap: 0;
    align-items: start;
    margin-bottom: 0;
  }
  .page-person-detail .p-person-detail__section:not(:first-of-type) .p-person-detail__image {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    align-self: start;
    aspect-ratio: 1/0.68;
  }
  .page-person-detail .p-person-detail__section:not(:first-of-type) .p-person-detail__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }
  .page-person-detail .p-person-detail__section:not(:first-of-type) .p-person-detail__content h3 {
    margin: 0 0 0.6em;
  }
  .page-person-detail .p-person-detail__section:not(:first-of-type) .p-person-detail__content p {
    margin: 0;
  }
  .page-person-detail .p-person-detail__section:nth-of-type(odd):not(:first-of-type) {
    align-items: stretch;
  }
  .page-person-detail .p-person-detail__section:nth-of-type(odd):not(:first-of-type) .p-person-detail__image {
    grid-column: 2;
  }
  .page-person-detail .p-person-detail__section:nth-of-type(odd):not(:first-of-type) .p-person-detail__content {
    grid-column: 1;
    align-self: stretch;
    min-height: 100%;
  }
  .page-person-detail .p-person-detail__section:nth-of-type(odd):not(:first-of-type) .p-person-detail__content h3 {
    margin-top: auto;
    margin-bottom: 0.6em;
  }
  .page-person-detail .p-person-detail__section h3 {
    margin: 0 0 0.6em;
    padding: 0;
    font-size: 17px;
    line-height: 1.8;
  }
  .page-person-detail .p-person-detail__section p {
    margin: 0;
    font-size: 15px;
    line-height: 2.1;
    align-self: start;
  }
  .page-person-detail .p-person-detail__section h3 .u-sp {
    display: none;
  }
  .page-person-detail .p-person-detail__section h3 .u-pc {
    display: block;
  }
  .page-person-detail .p-person-detail__related {
    margin-top: 48px;
  }
  .page-person-detail .p-person-detail__related-head {
    padding: 11px 0;
  }
  .page-person-detail .p-person-detail__related-head h2 {
    font-size: 17px;
    line-height: 1.8;
  }
  .page-person-detail .p-person-detail__related-body {
    padding: 18px 0 20px;
  }
  .page-person-detail .p-person-detail__related-viewport {
    max-width: 860px;
    margin: 0 auto;
    overflow: visible;
  }
  .page-person-detail .p-person-detail__related-track {
    width: auto;
    justify-content: center;
    gap: 16px;
    margin-bottom: 0;
    transform: none !important;
  }
  .page-person-detail .p-person-detail__related-card {
    width: 236px;
    max-width: none;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 4px;
    box-shadow: none;
    scroll-snap-align: none;
  }
  .page-person-detail .p-person-detail__related-image {
    flex: 0 0 64px;
    width: 64px;
    font-size: 12px;
  }
  .page-person-detail .p-person-detail__related-text p {
    font-size: 12px;
    line-height: 1.75;
    letter-spacing: -0.02em;
  }
  .page-person-detail .p-person-detail__dots {
    display: none;
  }
  .page-person-detail .p-person-detail__related-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }
  .page-person-detail .p-person-detail__related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(64, 64, 71, 0.14);
  }
  .page-person-detail .p-person-detail__back {
    width: 300px;
    min-height: 48px;
    margin: 28px auto 0;
    padding: 8px 20px;
    font-size: 15px;
    border-radius: 6px;
  }
  .page-person-detail .p-person-detail__back:hover::before {
    left: 0;
  }
  .page-person-detail .p-person-detail__back:hover {
    color: #4a4a55;
  }
}

.page-privacy .l-container {
  padding-left: 20px;
  padding-right: 20px;
}
.page-privacy .p-privacy {
  padding: 0 0 56px;
  background: #f3e8e8;
}
.page-privacy .p-privacy__body {
  color: #404047;
}
.page-privacy .p-privacy__section {
  margin-bottom: 34px;
}
.page-privacy .p-privacy__section:last-of-type {
  margin-bottom: 0;
}
.page-privacy .p-privacy__section h2,
.page-privacy .p-privacy__subheading,
.page-privacy .p-privacy__section p,
.page-privacy .p-privacy__list li,
.page-privacy .p-privacy__number-list li,
.page-privacy .p-privacy__signature p {
  font-size: 14px;
  line-height: 2;
}
.page-privacy .p-privacy__section h2 {
  margin: 0 0 8px;
  font-weight: 700;
}
.page-privacy .p-privacy__subheading {
  margin: 18px 0 6px;
  font-weight: 700;
}
.page-privacy .p-privacy__section p {
  margin: 0 0 12px;
}
.page-privacy .p-privacy__section p:last-child {
  margin-bottom: 0;
}
.page-privacy .p-privacy__list,
.page-privacy .p-privacy__number-list {
  margin: 0 0 12px;
  padding: 0;
}
.page-privacy .p-privacy__list {
  list-style: none;
}
.page-privacy .p-privacy__list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 1em;
}
.page-privacy .p-privacy__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.page-privacy .p-privacy__number-list {
  padding-left: 1.4em;
}
.page-privacy .p-privacy__number-list li {
  margin-bottom: 8px;
}
.page-privacy .p-privacy__safety-box {
  margin-top: 16px;
  border: 1px solid #8b8b8b;
}
.page-privacy .p-privacy__safety-item {
  border-bottom: 1px solid #8b8b8b;
}
.page-privacy .p-privacy__safety-item:last-child {
  border-bottom: none;
}
.page-privacy .p-privacy__safety-item h3 {
  margin: 0;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  border-bottom: 1px solid #8b8b8b;
}
.page-privacy .p-privacy__safety-item .p-privacy__list {
  margin: 0;
  padding: 12px;
}
.page-privacy .p-privacy__safety-item .p-privacy__list li {
  padding-left: 0.8em;
}
.page-privacy .p-privacy__signature {
  margin-top: 24px;
}
.page-privacy .p-privacy__signature p {
  margin: 0;
}

.page-privacy-policy .l-container {
  padding-left: 20px;
  padding-right: 20px;
}
.page-privacy-policy .p-privacy-policy {
  padding: 0 0 56px;
  background: #f3e8e8;
}
.page-privacy-policy .p-privacy-policy__body {
  color: #404047;
}
.page-privacy-policy .p-privacy-policy__lead,
.page-privacy-policy .p-privacy-policy__list li,
.page-privacy-policy .p-privacy-policy__section p,
.page-privacy-policy .p-privacy-policy__meta p,
.page-privacy-policy .p-privacy-policy__signature p {
  font-size: 14px;
  line-height: 2;
}
.page-privacy-policy .p-privacy-policy__lead {
  margin: 0 0 20px;
  font-weight: 500;
}
.page-privacy-policy .p-privacy-policy__list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: privacy-policy-item;
}
.page-privacy-policy .p-privacy-policy__list li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 1.6em;
}
.page-privacy-policy .p-privacy-policy__list li::before {
  content: counter(privacy-policy-item) "．";
  counter-increment: privacy-policy-item;
  position: absolute;
  left: 0;
  top: 0;
}
.page-privacy-policy .p-privacy-policy__list li:last-child {
  margin-bottom: 0;
}
.page-privacy-policy .p-privacy-policy__section {
  margin-top: 28px;
}
.page-privacy-policy .p-privacy-policy__section h2 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  color: #404047;
}
.page-privacy-policy .p-privacy-policy__section p {
  margin: 0;
}
.page-privacy-policy .p-privacy-policy__group {
  margin-bottom: 10px;
}
.page-privacy-policy .p-privacy-policy__group:last-child {
  margin-bottom: 0;
}
.page-privacy-policy .p-privacy-policy__label {
  font-weight: 700;
}
.page-privacy-policy .p-privacy-policy__meta {
  margin-top: 30px;
}
.page-privacy-policy .p-privacy-policy__meta p,
.page-privacy-policy .p-privacy-policy__signature p {
  margin: 0;
}
.page-privacy-policy .p-privacy-policy__signature {
  margin-top: 26px;
}

.page-sales-promotion .p-department,
.page-sales-promotion .p-department-job,
.page-sales-promotion .p-department-flow,
.page-sales-promotion .p-department-faq {
  position: relative;
  overflow: hidden;
}
.page-sales-promotion .p-department > .l-container,
.page-sales-promotion .p-department-job > *,
.page-sales-promotion .p-department-flow > *,
.page-sales-promotion .p-department-faq > * {
  position: relative;
  z-index: 1;
}
.page-sales-promotion .p-department::before,
.page-sales-promotion .p-department-job::before,
.page-sales-promotion .p-department-flow::before,
.page-sales-promotion .p-department-faq::before {
  content: none;
  position: absolute;
  color: rgba(255, 255, 255, 0.45);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  pointer-events: none;
  z-index: 0;
}
.page-sales-promotion .p-department-flow__item:nth-child(1) .p-department-flow__card {
  grid-template-columns: minmax(0, 1fr) 78px;
  align-items: center;
}
.page-sales-promotion .p-department-flow__item:nth-child(1) .p-department-flow__cta {
  margin-top: 4px;
}
.page-sales-promotion .p-department-flow__item:nth-child(2) .p-department-flow__card,
.page-sales-promotion .p-department-flow__item:nth-child(3) .p-department-flow__card,
.page-sales-promotion .p-department-flow__item:nth-child(4) .p-department-flow__card,
.page-sales-promotion .p-department-flow__item:nth-child(5) .p-department-flow__card {
  grid-template-columns: 1fr;
}
.page-sales-promotion .p-department-flow__item:nth-child(2) .p-department-flow__image,
.page-sales-promotion .p-department-flow__item:nth-child(3) .p-department-flow__image,
.page-sales-promotion .p-department-flow__item:nth-child(4) .p-department-flow__image,
.page-sales-promotion .p-department-flow__item:nth-child(5) .p-department-flow__image {
  justify-self: center;
  align-self: start;
  margin-top: 4px;
}
.page-sales-promotion .p-department-feature__item:nth-child(2) .p-department-feature__image img {
  max-width: 126px;
}
.page-sales-promotion .p-department-feature__item:nth-child(3) .p-department-feature__image img {
  max-width: 132px;
}
.page-sales-promotion .p-department-flow__item:nth-child(1) .p-department-flow__image img {
  max-width: 78px;
  margin-left: auto;
}
.page-sales-promotion .p-department-flow__item:nth-child(2) .p-department-flow__image img {
  max-width: 220px;
  margin-left: auto;
}
.page-sales-promotion .p-department-flow__item:nth-child(3) .p-department-flow__image img {
  max-width: 120px;
  margin-left: auto;
}
.page-sales-promotion .p-department-flow__item:nth-child(4) .p-department-flow__image img {
  max-width: 180px;
  margin-left: auto;
}
.page-sales-promotion .p-department-flow__item:nth-child(5) .p-department-flow__image img {
  max-width: 180px;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .page-sales-promotion .p-department::before,
  .page-sales-promotion .p-department-job::before,
  .page-sales-promotion .p-department-flow::before,
  .page-sales-promotion .p-department-faq::before {
    content: "";
    font-size: 86px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.18em;
  }
  .page-sales-promotion .p-department::before {
    content: "SALES PROMOTION";
    top: -16px;
    right: 36px;
    font-size: 92px;
    white-space: nowrap;
  }
  .page-sales-promotion .p-department-job::before {
    content: "JOB";
    top: -6px;
    right: 154px;
    font-size: 78px;
  }
  .page-sales-promotion .p-department-flow::before {
    content: "FLOW";
    top: 16px;
    right: 58px;
    font-size: 78px;
    color: rgba(243, 232, 232, 0.95);
  }
  .page-sales-promotion .p-department-faq::before {
    content: "FAQ";
    top: 16px;
    right: 360px;
    font-size: 78px;
    color: rgba(243, 232, 232, 0.95);
  }
  .page-sales-promotion .p-department-feature__item {
    grid-template-columns: 130px minmax(0, 1fr);
  }
  .page-sales-promotion .p-department-feature__item:nth-child(1) .p-department-feature__image img {
    max-width: 154px;
    margin-right: 30px;
  }
  .page-sales-promotion .p-department-feature__item:nth-child(2) .p-department-feature__image img {
    max-width: 120px;
    margin-right: 30px;
  }
  .page-sales-promotion .p-department-feature__item:nth-child(3) .p-department-feature__image img {
    max-width: 132px;
    margin-right: 30px;
  }
  .page-sales-promotion .p-department-flow__item:nth-child(1) .p-department-flow__card {
    grid-template-columns: minmax(0, 1fr) 110px;
    min-height: auto;
    padding: 12px 180px 14px;
    align-items: center;
  }
  .page-sales-promotion .p-department-flow__item:nth-child(1) .p-department-flow__body {
    display: flex;
    align-items: center;
    min-height: 72px;
  }
  .page-sales-promotion .p-department-flow__item:nth-child(1) .p-department-flow__text {
    max-width: 420px;
  }
  .page-sales-promotion .p-department-flow__item:nth-child(1) .p-department-flow__image img {
    max-width: 78px;
    margin-left: auto;
  }
  .page-sales-promotion .p-department-flow__item:nth-child(1) .p-department-flow__cta {
    justify-content: flex-start;
    margin-top: 8px;
  }
  .page-sales-promotion .p-department-flow__item:nth-child(1) .p-department-cta__button {
    width: 480px;
    min-height: 36px;
    font-size: 12px;
    line-height: 1.4;
  }
  .page-sales-promotion .p-department-flow__item:nth-child(n+2) .p-department-flow__card {
    padding: 10px 10px 12px;
  }
  .page-sales-promotion .p-department-flow__item:nth-child(2) .p-department-flow__image img {
    max-width: 162px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-sales-promotion .p-department-flow__item:nth-child(3) .p-department-flow__image img {
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-sales-promotion .p-department-flow__item:nth-child(4) .p-department-flow__image img {
    max-width: 130px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-sales-promotion .p-department-flow__item:nth-child(5) .p-department-flow__image img {
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== Header ===== */
/* ===== Divider ===== */
.p-divider {
  position: relative;
  z-index: 2;
  height: 115px;
  display: flex;
  justify-content: center;
}

.p-divider span {
  width: 1px;
  height: 100px;
  background: #6a6a6a;
}

/* ===== Lead ===== */
.p-lead {
  position: relative;
  z-index: 2;
  padding: 20px 35px 30px;
  text-align: left;
  font-size: 16px;
  margin-bottom: 40px;
}

.p-lead strong {
  font-weight: 700;
}

/* ===== Services ===== */
.p-services {
  position: relative;
  z-index: 0;
  margin-top: -340px;
  /* ←ライン半分かぶせる */
  padding-top: 230px;
  padding-bottom: 50px;
  background: #f3e8e8;
}

.p-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 80px auto 20px;
  /* ←これ重要 */
  width: 100%;
  /* ←これも */
  max-width: 320px;
  /* ←スマホ用の幅制限 */
}

/* ===== Bottom ===== */
.p-bottom {
  background: #fff;
  padding: 20px 16px;
  text-align: center;
  line-height: 30px;
}

.p-bottom p {
  font-size: 16px;
  white-space: pre-line;
  font-weight: 700;
}

.p-faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 50px;
  width: 320px;
  max-width: 100%;
  height: 55px;
  background: #d84315;
  color: #fff;
  border: 2px solid #d84315;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.p-faq-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: left 0.3s ease;
}

/* ===== Footer ===== */
@media screen and (min-width: 769px) {
  .p-services::before {
    content: "SERVICE";
    position: absolute;
    top: -10px;
    right: 0px;
    font-size: 100px;
    font-weight: 600;
    letter-spacing: 30px;
    color: rgba(255, 255, 255, 0.58);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
  }
  .p-services__grid,
  .p-lead,
  .p-divider,
  .p-title {
    position: relative;
    z-index: 1;
  }
  .p-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-services {
    margin-top: -210px;
  }
  .p-bottom p {
    line-height: 1.2em;
  }
  .p-faq-btn:hover::before {
    left: 0;
  }
  .p-faq-btn:hover {
    color: #d84315;
  }
}
.p-hamburger {
  width: 64px;
  height: 64px;
  border: none;
  background: #f3cfbe;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  cursor: pointer;
  /* ★ここ重要 */
  margin-left: auto; /* 右端に寄せる */
  position: fixed;
  top: 15px;
  right: 10px; /* ハンバーガー位置 */
  z-index: 10000; /* navより前面 */
}

/* バー */
.p-hamburger span {
  display: block;
  width: 60%;
  height: 4px;
  background: #d84315;
  border-radius: 2px;
  transition: 0.3s;
  transform-origin: center;
}

/* 開閉アニメーション */
.p-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.p-hamburger.is-open span:nth-child(2) {
  transform: translateY(-7px) rotate(-45deg);
}

/* サブメニューの初期状態 */
.p-sp-nav__sub-list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

/* アコーディオン開いた状態 */
.js-accordion.is-open > .p-sp-nav__sub-list {
  max-height: 500px; /* 高さは十分に大きく */
  opacity: 1;
  transform: translateY(0);
}

/* 矢印回転 */
.js-accordion > .js-accordion-trigger::after {
  transition: transform 0.3s ease;
  transform: rotate(45deg); /* デフォルト右上向き */
}

.js-accordion.is-open > .js-accordion-trigger::after {
  transform: rotate(135deg); /* 開いたら右下向き */
}

@media screen and (min-width: 769px) {
  /* ハンバーガー消す */
  .p-hamburger {
    display: none;
  }
}
.p-sp-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 92svh;
  background: rgba(219, 93, 79, 0.9);
  color: #fff;
  padding: 12px 15px 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  z-index: 9999;
  /* 開いた時 */
}
.p-sp-nav.is-open {
  right: 0;
}
.p-sp-nav__top {
  position: relative;
  height: 50px;
  margin-bottom: 20px;
}
.p-sp-nav .c-btn {
  position: absolute;
  right: 68px;
  top: 55%;
  transform: translateY(-50%);
}
.p-sp-nav__list {
  flex: 1;
  overflow-y: auto;
  list-style: none;
  padding: 96px 10px 10px;
  margin: 0;
}
.p-sp-nav__list > li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}
.p-sp-nav__list a {
  position: relative;
  display: block;
  padding: 15px 0;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}
.p-sp-nav__sub-list {
  padding-left: 10px;
}
.p-sp-nav__sub-list li {
  border-bottom: none;
  list-style: none;
}
.p-sp-nav__sub-list a {
  font-size: 16px;
}
.p-sp-nav__sub-list.is-open {
  display: block;
}
.p-sp-nav .js-accordion.is-open > .js-accordion-trigger::after {
  transform: rotate(135deg);
}
.p-sp-nav__tel {
  margin-top: 20px;
  text-align: center;
}
.p-sp-nav__tel a {
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  font-weight: bold;
}
.p-sp-nav__logo {
  margin-top: 15px;
  text-align: center;
}
.p-sp-nav__logo img {
  width: 120px;
}

.js-accordion.is-open > .p-sp-nav__sub-list {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .p-sp-nav__list a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
  }
  .p-header-nav {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .p-sp-nav {
    position: static;
    right: 0;
    width: auto;
    height: auto;
    padding: 0px;
    background: none;
    display: block;
    font-weight: 400;
    overflow: visible;
  }
  .p-sp-nav__list a:hover {
    opacity: 1;
  }
  .p-sp-nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0;
  }
  .p-sp-nav__list a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #404047;
    font-size: 14px;
    padding: 5px 0;
    transition: transform 0.25s ease;
  }
  /* マウスホバーエフェクト*/
  .p-sp-nav__list a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background-color: #ce5548;
    transform: translateX(-50%);
    transition: width 0.5s ease;
  }
  .p-sp-nav__list a:hover {
    transform: translateY(-2px);
  }
  .p-sp-nav__list a:hover::after {
    width: 100%;
  }
  .p-sp-nav__list > li {
    border: none;
    position: relative;
  }
  /* ===== サブメニュー（PC） ===== */
  .p-sp-nav__sub-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 200px;
    padding: 10px;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px); /* ← 少し上に置く */
    transition: all 0.25s ease;
    pointer-events: none; /* ← ホバー誤爆防止 */
  }
  .p-sp-nav__sub-list li a {
    color: #404047;
    font-size: 14px;
    padding: 5px 0;
  }
  /* ホバーで表示 */
  .p-sp-nav__list > li:hover .p-sp-nav__sub-list {
    opacity: 1;
    transform: translateY(0); /* ← 元の位置に */
    pointer-events: auto;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
  }
  .p-sp-nav__tel, .p-sp-nav__logo {
    display: none;
  }
  .p-header-nav {
    display: block;
  }
  .p-header-nav a {
    position: relative;
    text-decoration: none;
  }
  .p-sp-nav {
    display: none;
  }
  .p-header-nav a:hover {
    opacity: 1;
  }
  /* 共通ナビリンク */
  .p-nav a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #404047;
    font-size: 16px;
    padding: 10px 0;
    transition: transform 0.25s ease;
  }
  .p-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background-color: #ce5548;
    transform: translateX(-50%);
    transition: width 0.5s ease;
  }
  .p-nav a:hover {
    transform: translateY(-2px);
  }
  .p-nav a:hover::after {
    width: 100%;
  }
  .p-header-nav a:hover {
    opacity: 1 !important;
  }
  .p-nav__sub-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
  }
  .p-nav__sub-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: #fff;
    z-index: 10;
    padding: 15px 20px;
    border-radius: 8px;
    /* ▼ 初期状態（隠す） */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px); /* 少し下から出る */
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .p-nav__sub-list li a {
    display: block;
    padding: 8px 15px;
    color: #404047;
    text-decoration: none;
  }
  .p-nav__sub-list li a:hover {
    background: #f5f5f5;
  }
  /* 親liにhoverしたら表示 */
  .p-nav__item:hover .p-nav__sub-list {
    opacity: 0.8;
    visibility: visible;
    transform: translateY(0);
  }
}
.page-medical .p-department,
.page-medical .p-department-specialties,
.page-medical .p-department-flow,
.page-medical .p-department-faq {
  position: relative;
  overflow: hidden;
}
.page-medical .p-department > .l-container,
.page-medical .p-department-specialties > *,
.page-medical .p-department-flow > *,
.page-medical .p-department-faq > * {
  position: relative;
  z-index: 1;
}
.page-medical .p-department::before,
.page-medical .p-department-specialties::before,
.page-medical .p-department-flow::before,
.page-medical .p-department-faq::before {
  content: none;
  position: absolute;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  pointer-events: none;
  z-index: 0;
}
.page-medical .p-department__lead strong {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
}
.page-medical .p-department-feature__item:nth-child(1) .p-department-feature__image img {
  max-width: 222px;
}
.page-medical .p-department-feature__item:nth-child(2) .p-department-feature__image img {
  max-width: 150px;
}
.page-medical .p-department-feature__item:nth-child(3) .p-department-feature__image img {
  max-width: 160px;
}
.page-medical .p-department-specialties {
  width: min(100%, 830px);
  margin: 0 auto;
  text-align: center;
}
.page-medical .p-department-specialties__intro {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  color: #404047;
}
.page-medical .p-department-specialties__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 0;
  text-align: left;
}
.page-medical .p-department-specialties__head {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 210px;
  padding: 8px 16px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  background: #d16354;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.page-medical .p-department-specialties__body {
  display: block;
  padding: 28px 16px 18px;
  border-radius: 0 7px 7px 7px;
  background: #fff;
}
.page-medical .p-department-specialties__text {
  font-size: 15px;
  line-height: 1.95;
  color: #404047;
}
.page-medical .p-department-specialties__item:nth-child(2) .p-department-specialties__text {
  padding-top: 18px;
}
.page-medical .p-department-specialties__item:nth-child(3) .p-department-specialties__text {
  padding-top: 14px;
}
.page-medical .p-department-specialties__image {
  float: right;
  margin: 0 0 8px 16px;
}
.page-medical .p-department-specialties__image img {
  display: block;
  width: 100%;
  max-width: 116px;
  height: auto;
  margin-left: auto;
  margin-top: 10px;
  border-radius: 50%;
}
.page-medical .p-department-specialties__body::after {
  content: "";
  display: block;
  clear: both;
}
.page-medical .p-department-medical-support {
  margin-top: 0;
  padding: 8px 16px 24px;
  border-radius: 0 0 7px 7px;
  background: #fff;
  text-align: center;
}
.page-medical .p-department-specialties__item:last-child .p-department-specialties__body {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-bottom: 8px;
}
.page-medical .p-department-medical-support__title {
  margin: 28px 0 18px;
  color: #d16354;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.page-medical .p-department-medical-support__lead,
.page-medical .p-department-medical-support__note {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #404047;
  text-align: left;
}
.page-medical .p-medical-support__text {
  margin-top: 40px;
}
.page-medical .p-department-medical-support__lead span {
  color: #d16354;
  font-weight: 700;
}
.page-medical .p-department-medical-support__image {
  margin: 24px auto 20px;
  max-width: 290px;
}
.page-medical .p-department-medical-support__image img {
  display: block;
  width: 100%;
  height: auto;
}
.page-medical .p-department-flow__item:nth-child(1) .p-department-flow__image img {
  max-width: 78px;
}
.page-medical .p-department-flow__item:nth-child(1) .p-department-flow__card {
  grid-template-columns: minmax(0, 1fr) 78px;
  align-items: center;
}
.page-medical .p-department-flow__item:nth-child(1) .p-department-flow__cta {
  margin-top: 4px;
}
.page-medical .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-tel {
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}
.page-medical .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-tel a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-medical .p-department-flow__item:nth-child(2) .p-department-flow__card,
.page-medical .p-department-flow__item:nth-child(3) .p-department-flow__card,
.page-medical .p-department-flow__item:nth-child(4) .p-department-flow__card,
.page-medical .p-department-flow__item:nth-child(5) .p-department-flow__card {
  grid-template-columns: 1fr;
}
.page-medical .p-department-flow__item:nth-child(2) .p-department-flow__image,
.page-medical .p-department-flow__item:nth-child(3) .p-department-flow__image,
.page-medical .p-department-flow__item:nth-child(4) .p-department-flow__image,
.page-medical .p-department-flow__item:nth-child(5) .p-department-flow__image {
  justify-self: center;
  align-self: start;
  margin-top: 4px;
}
.page-medical .p-department-flow__item:nth-child(2) .p-department-flow__image img {
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}
.page-medical .p-department-flow__item:nth-child(3) .p-department-flow__image img {
  max-width: 120px;
  margin-left: auto;
  margin-right: auto;
}
.page-medical .p-department-flow__item:nth-child(4) .p-department-flow__image img {
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
.page-medical .p-department-flow__item:nth-child(5) .p-department-flow__image img {
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 769px) {
  .page-medical .p-department::before,
  .page-medical .p-department-specialties::before,
  .page-medical .p-department-flow::before,
  .page-medical .p-department-faq::before {
    content: "";
    font-size: 86px;
    letter-spacing: 0.18em;
  }
  .page-medical .p-department::before {
    content: "MEDICAL STAFF";
    top: -16px;
    right: 90px;
    font-size: 92px;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
  }
  .page-medical .p-department-specialties::before {
    content: "SPECIALTIES";
    top: 16px;
    right: 42px;
    font-size: 72px;
    color: rgba(255, 255, 255, 0.55);
  }
  .page-medical .p-department-flow::before {
    content: "FLOW";
    top: 16px;
    right: 58px;
    font-size: 78px;
    color: rgba(243, 232, 232, 0.95);
  }
  .page-medical .p-department-faq::before {
    content: "FAQ";
    top: 16px;
    right: 360px;
    font-size: 78px;
    color: rgba(243, 232, 232, 0.95);
  }
  .page-medical .p-department-flow__item:nth-child(1) .p-department-flow__card {
    grid-template-columns: minmax(0, 1fr) 110px;
    min-height: auto;
    padding: 12px 180px 14px;
    align-items: center;
  }
  .page-medical .p-department-flow__item:nth-child(1) .p-department-flow__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 72px;
  }
  .page-medical .p-department-flow__item:nth-child(1) .p-department-flow__text {
    max-width: 420px;
  }
  .page-medical .p-department-flow__item:nth-child(1) .p-department-flow__image img {
    max-width: 78px;
    margin-left: auto;
  }
  .page-medical .p-department-flow__item:nth-child(1) .p-department-flow__cta {
    justify-content: flex-start;
    margin-top: 8px;
  }
  .page-medical .p-department-flow__item:nth-child(1) .p-department-cta__button {
    width: 480px;
    min-height: 36px;
    font-size: 14px;
    line-height: 1.4;
  }
  .page-medical .p-department-specialties__body {
    padding: 28px 76px 28px;
  }
  .page-medical .p-department-medical-support {
    padding: 8px 76px 48px;
  }
  .page-medical .p-department-medical-support__image {
    margin: 50px auto 20px;
  }
  .page-medical .p-medical-support__text {
  margin-top: 40px;
}
  .page-medical .p-department-flow__item:nth-child(1) .p-department-cta__button {
    width: 480px;
    min-height: 36px;
    font-size: 14px;
    line-height: 1.4;
  }
  .page-medical .p-department-flow__item:nth-child(n+2) .p-department-flow__card {
    padding: 10px 10px 12px;
  }
  .page-medical .p-department-flow__item:nth-child(2) .p-department-flow__image img {
    max-width: 162px;
  }
  .page-medical .p-department-flow__item:nth-child(3) .p-department-flow__image img {
    max-width: 100px;
  }
  .page-medical .p-department-flow__item:nth-child(4) .p-department-flow__image img {
    max-width: 130px;
  }
}
/* ===== Split Wrapper ===== */
.p-split {
  position: relative;
  background: linear-gradient(to bottom, #fff 0, #fff 230px, #f3e8e8 230px, #f3e8e8 100%);
}

/* ===== Title ===== */
.p-title {
  text-align: center;
  padding: 60px 16px 30px;
  background: #fff;
}

.p-title__ja {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-title__en {
  font-size: 12px;
  color: #777;
  margin-top: 6px;
  letter-spacing: 0.5em;
}

.p-lead {
  line-height: 2em;
  font-weight: 600;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .p-split {
    background: linear-gradient(to bottom, #fff 0, #fff 257px, #f3e8e8 257px, #f3e8e8 100%);
  }
  .p-title {
    text-align: left;
    padding: 50px 100px;
  }
  .p-title__ja {
    font-size: 30px;
    font-weight: 400;
  }
  .p-title__en {
    letter-spacing: 0.6em;
  }
  .p-lead {
    text-align: center;
    line-height: 2;
  }
}
.page-dispatch .p-department__lead strong {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
}
.page-dispatch .p-department,
.page-dispatch .p-department-structure,
.page-dispatch .p-department-flow,
.page-dispatch .p-department-faq {
  position: relative;
  overflow: hidden;
}
.page-dispatch .p-department > *,
.page-dispatch .p-department-structure > *,
.page-dispatch .p-department-flow > *,
.page-dispatch .p-department-faq > * {
  position: relative;
  z-index: 1;
}
.page-dispatch .p-department-feature__item:nth-child(1) .p-department-feature__image img {
  max-width: 120px;
}
.page-dispatch .p-department-feature__item:nth-child(2) .p-department-feature__image img {
  max-width: 140px;
}
.page-dispatch .p-department-feature__item:nth-child(3) .p-department-feature__image img {
  max-width: 150px;
}
.page-dispatch .p-department-mechanism {
  text-align: center;
}
.page-dispatch .p-department-mechanism__intro {
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: #404047;
  text-align: left;
}
.page-dispatch .p-department-mechanism__image {
  max-width: 320px;
  margin: 0 auto;
}
.page-dispatch .p-department-mechanism__image img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 60px;
}
.page-dispatch .p-department-flow__item--dispatch-entry .p-department-flow__card {
  display: block;
  padding: 18px 14px 18px;
}
.page-dispatch .p-department-flow__dispatch-block + .p-department-flow__dispatch-block {
  margin-top: 18px;
}
.page-dispatch .p-department-flow__dispatch-label {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: #404047;
}
.page-dispatch .p-department-flow__dispatch-tel {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: #404047;
}
.page-dispatch .p-department-flow__dispatch-block--consult .p-department-flow__body {
  padding-left: 8px;
}
.page-dispatch .p-department-flow__dispatch-block--consult .p-department-flow__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}
.page-dispatch .p-department-flow__dispatch-block--consult .p-department-flow__dispatch-tel {
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}
.page-dispatch .p-department-flow__dispatch-tel-note {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
.page-dispatch .p-department-flow__dispatch-block--consult .p-department-flow__dispatch-tel-note {
  font-size: 14px;
}
.page-dispatch .p-department-flow__dispatch-tel a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-dispatch .p-department-flow__dispatch-button-wrap {
  margin-top: 14px;
}
.page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-button,
.page-dispatch .p-department-flow__item:nth-child(1) .p-department-cta__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 260px);
  max-width: 260px;
  min-height: 52px;
  padding: 12px 20px;
  border: 2px solid #4d4d55;
  border-radius: 7px;
  background: #4d4d55;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  overflow: hidden;
}
.page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-button::before,
.page-dispatch .p-department-flow__item:nth-child(1) .p-department-cta__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: left 0.3s ease;
  z-index: -1;
}
.page-dispatch .p-department-appeal {
  position: relative;
  margin-top: 38px;
}
.page-dispatch .p-department-appeal__intro {
  margin: 18px auto 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  text-align: center;
  color: #404047;
}
.page-dispatch .p-department-appeal__card {
  margin-top: 24px;
  padding: 26px 18px 24px;
  background: #fff;
  border-radius: 7px;
}
.page-dispatch .p-department-appeal__stats {
  display: grid;
  gap: 14px;
}
.page-dispatch .p-department-appeal__stat {
  padding: 5px 16px 14px;
  border: 1px solid #eadada;
  border-radius: 12px;
  background: #fffaf9;
  text-align: center;
}
.page-dispatch .p-department-appeal__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin: 0 auto 4px;
}
.page-dispatch .p-department-appeal__icon img {
  display: block;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-dispatch .p-department-appeal__label {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #404047;
}
.page-dispatch .p-department-appeal__value {
  color: #ce5548;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}
.page-dispatch .p-department-appeal__value span {
  font-size: 18px;
}
.page-dispatch .p-department-appeal__support {
  margin-top: 18px;
  padding: 20px 16px 0;
  border-top: 1px solid #eadada;
}
.page-dispatch .p-department-appeal__support-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  color: #404047;
}
.page-dispatch .p-department-appeal__support-text {
  margin: 0 0 2px;
  font-size: 14px;
  line-height: 1.9;
  color: #404047;
}
@media (hover: hover) {
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-button:hover,
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-cta__button:hover {
    color: #4d4d55;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-button:hover::before,
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-cta__button:hover::before {
    left: 0;
  }
}
@media (hover: none) {
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-button::before,
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-cta__button::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-button,
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-cta__button {
    width: min(100%, 420px) !important;
    max-width: 420px !important;
    min-height: 52px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-button-wrap,
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__cta {
    display: flex;
    justify-content: center;
    margin-top: 12px;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-button::before,
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-cta__button::before {
    content: none !important;
    display: none !important;
    background: transparent !important;
    width: 0 !important;
    height: 0 !important;
    left: auto !important;
  }
}
@media screen and (min-width: 769px) {
  .page-dispatch .p-department::before,
  .page-dispatch .p-department-structure::before,
  .page-dispatch .p-department-flow::before,
  .page-dispatch .p-department-faq::before {
    position: absolute;
    z-index: 0;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    color: #f7f0f0;
    pointer-events: none;
  }
  .page-dispatch .p-department::before {
    content: "DISPATCH";
    top: -10px;
    right: 18px;
    font-size: 72px;
  }
  .page-dispatch .p-department-structure::before {
    content: "STRUCTURE";
    top: -14px;
    right: -28px;
    font-size: 76px;
  }
  .page-dispatch .p-department-flow::before {
    content: "FLOW";
    top: 16px;
    right: 58px;
    font-size: 78px;
  }
  .page-dispatch .p-department-faq::before {
    content: "FAQ";
    top: 16px;
    right: 360px;
    font-size: 78px;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-button,
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-cta__button {
    width: 300px;
    max-width: 300px;
    min-height: 52px;
  }
  .page-dispatch .p-department-appeal::before {
    content: "MERIT";
    position: absolute;
    top: -36px;
    right: 76px;
    color: #f7f0f0;
    font-size: 88px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    pointer-events: none;
  }
  .page-dispatch .p-department-appeal__intro {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.8;
  }
  .page-dispatch .p-department-appeal__card {
    max-width: 860px;
    margin: 26px auto 0;
    padding: 34px 34px 38px;
  }
  .page-dispatch .p-department-appeal__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .page-dispatch .p-department-appeal__stat {
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page-dispatch .p-department-appeal__icon {
    width: 25px;
    height: 25px;
    margin-bottom: 6px;
  }
  .page-dispatch .p-department-appeal__icon img {
    width: 25px;
    height: 25px;
  }
  .page-dispatch .p-department-appeal__label {
    font-size: 18px;
  }
  .page-dispatch .p-department-appeal__value {
    font-size: 42px;
  }
  .page-dispatch .p-department-appeal__value span {
    font-size: 22px;
  }
  .page-dispatch .p-department-appeal__support {
    margin-top: 24px;
    padding: 24px 18px 0;
    text-align: center;
  }
  .page-dispatch .p-department-appeal__support-title {
    font-size: 22px;
  }
  .page-dispatch .p-department-appeal__support-text {
    max-width: 700px;
    margin: 12px auto 0;
    font-size: 15px;
    line-height: 1.9;
  }
}
.page-dispatch .p-department-feature__item:nth-child(1) .p-department-feature__image img {
  max-width: 90px;
}
.page-dispatch .p-department-feature__item:nth-child(2) .p-department-feature__image img {
  max-width: 100px;
}
.page-dispatch .p-department-feature__item:nth-child(3) .p-department-feature__image img {
  max-width: 110px;
}
.page-dispatch .p-department-mechanism__intro {
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: #404047;
  text-align: center;
}

/* dispatch flow steps 2-5 restore */
.page-dispatch .p-department-flow__item:nth-child(2) .p-department-flow__card,
.page-dispatch .p-department-flow__item:nth-child(3) .p-department-flow__card,
.page-dispatch .p-department-flow__item:nth-child(4) .p-department-flow__card,
.page-dispatch .p-department-flow__item:nth-child(5) .p-department-flow__card {
  grid-template-columns: 1fr;
}
.page-dispatch .p-department-flow__item:nth-child(2) .p-department-flow__image,
.page-dispatch .p-department-flow__item:nth-child(3) .p-department-flow__image,
.page-dispatch .p-department-flow__item:nth-child(4) .p-department-flow__image,
.page-dispatch .p-department-flow__item:nth-child(5) .p-department-flow__image {
  justify-self: center;
  align-self: start;
  margin-top: 4px;
}
.page-dispatch .p-department-flow__item:nth-child(2) .p-department-flow__image img {
  max-width: 220px;
  margin: -20px auto 0;
}
.page-dispatch .p-department-flow__item:nth-child(3) .p-department-flow__image img {
  max-width: 70px;
  margin: -10px auto 0;
}
.page-dispatch .p-department-flow__item:nth-child(4) .p-department-flow__image img {
  max-width: 130px;
  margin-left: auto;
  margin-right: auto;
}
.page-dispatch .p-department-flow__item:nth-child(5) .p-department-flow__image img {
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .page-dispatch .p-department-flow__item:nth-child(n+2) .p-department-flow__card {
    padding: 10px 10px 12px;
  }
  .page-dispatch .p-department-flow__item:nth-child(2) .p-department-flow__image img {
    max-width: 162px;
  }
  .page-dispatch .p-department-flow__item:nth-child(3) .p-department-flow__image img {
    max-width: 70px;
    margin-top: -10px;
  }
  .page-dispatch .p-department-flow__item:nth-child(4) .p-department-flow__image img {
    max-width: 130px;
  }
  .page-dispatch .p-department-flow__item:nth-child(5) .p-department-flow__image img {
    max-width: 100px;
  }
}

/* dispatch flow step1 pc layout restore */
@media screen and (min-width: 769px) {
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__card {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    padding: 18px 40px 20px;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-block {
    width: 350px;
    max-width: 350px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-content: start;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-block + .p-department-flow__dispatch-block {
    margin-top: 0;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-label {
    min-height: 25px;
    margin: 0 auto 8px;
    width: 300px;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-block--consult > .p-department-flow__dispatch-label {
    margin: 0 0 8px;
    width: auto;
    text-align: left;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__text {
    width: 300px;
    max-width: 300px;
    min-height: 88px;
    margin: 0 auto;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-main {
    width: 100%;
    max-width: 350px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 88px;
    -moz-column-gap: 12px;
         column-gap: 12px;
    align-items: start;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-block--consult .p-department-flow__text,
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-block--consult .p-department-flow__dispatch-tel {
    width: auto;
    max-width: none;
    min-height: 0;
    margin: 0;
    text-align: left;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-block--consult .p-department-flow__text {
    font-size: 15px;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-block--consult .p-department-flow__dispatch-tel-note {
    font-size: 15px;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-block--consult .p-department-flow__dispatch-tel {
    margin-top: 10px;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-main .p-department-flow__body {
    display: block;
    min-width: 0;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__image {
    justify-self: end;
    align-self: start;
    margin-top: 0;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__image img {
    max-width: 78px;
    margin-left: auto;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-button-wrap,
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__cta {
    display: flex;
    justify-content: center;
    margin-top: 14px;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-button,
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-cta__button {
    width: 300px !important;
    max-width: 300px !important;
    min-height: 52px !important;
  }
}
/* dispatch mobile tweak */
@media screen and (max-width: 768px) {
  .page-dispatch .p-department-flow__step {
    font-size: 12px;
  }
  .page-dispatch .p-department-flow__item:nth-child(3) .p-department-flow__image img {
    margin-top: -30px;
  }
  .page-dispatch .p-department-flow__item:nth-child(4) .p-department-flow__image img {
    max-width: 130px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-dispatch .p-department-flow__item:nth-child(5) .p-department-flow__image img {
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* dispatch mobile step1 image size */
@media screen and (max-width: 768px) {
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__image img {
    max-width: 60px;
  }
}

/* dispatch step1 mobile like sales-promotion */
@media screen and (max-width: 768px) {
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 78px;
    align-items: center;
    -moz-column-gap: 12px;
         column-gap: 12px;
    max-width: 100%;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-main .p-department-flow__body {
    min-width: 0;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__image {
    justify-self: end;
    align-self: center;
    margin-top: 0;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__image img {
    max-width: 78px;
    margin-left: auto;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-block--consult .p-department-flow__text,
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-block--consult .p-department-flow__dispatch-tel {
    width: auto;
    max-width: none;
  }
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__cta {
    margin-top: 8px;
  }
}

/* dispatch consult label outside mobile row */
@media screen and (max-width: 768px) {
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-block--consult > .p-department-flow__dispatch-label {
    white-space: nowrap;
    margin-bottom: 8px;
  }
}

/* dispatch consult label nowrap mobile */
@media screen and (max-width: 768px) {
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-block--consult > .p-department-flow__dispatch-label {
    display: block;
    width: 100%;
    margin: 0 0 8px;
    text-align: left;
    white-space: nowrap !important;
    word-break: keep-all;
    overflow-wrap: normal;
    font-size: 15px;
    letter-spacing: 0;
  }
}

/* dispatch mobile consult text width tweak */
@media screen and (max-width: 768px) {
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-block--consult .p-department-flow__text,
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-block--consult .p-department-flow__dispatch-tel {
    max-width: none;
    text-align: left;
    word-break: keep-all;
  }
}

/* dispatch mobile consult gap tweak */
@media screen and (max-width: 768px) {
  .page-dispatch .p-department-flow__item:nth-child(1) .p-department-flow__dispatch-main {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}

/* home header offset */
/* page top button */
.c-page-top {
  display: none;
}

@media screen and (min-width: 769px) {
  .c-page-top {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border: 1px solid rgba(77, 77, 85, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #4d4d55;
    box-shadow: 0 10px 24px rgba(34, 34, 34, 0.08);
    backdrop-filter: blur(10px);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  }
  .c-page-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .c-page-top:hover {
    box-shadow: 0 14px 30px rgba(34, 34, 34, 0.14);
    transform: translateY(-2px);
  }
  .c-page-top__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #4d4d55;
    color: #fff;
    font-size: 12px;
    line-height: 1;
  }
  .c-page-top__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }
}
/* unified section lead text */
.page-company .p-company-philosophy__lead,
.page-career-change .p-department-case__intro,
.page-business .p-business-contact__lead,
.page-case .p-case__lead,
.page-contact .p-contact__lead,
.page-form-flow .p-form-flow__lead,
.page-person .p-person__lead,
.page-privacy-policy .p-privacy-policy__lead,
.page-department .p-department-job__intro,
.page-department .p-department-flow__intro,
.page-medical .p-department-specialties__intro,
.page-medical .p-department-medical-support__lead,
.page-dispatch .p-department-mechanism__intro,
.page-dispatch .p-department-appeal__intro {
  font-size: 16px;
  font-weight: 500;
}
/* pc header service submenu width */
@media screen and (min-width: 769px) {
  .p-header-nav .p-nav__sub-list {
    width: max-content;
    min-width: 320px;
  }
  .p-header-nav .p-nav__sub-list li a {
    white-space: nowrap;
  }
  .p-header-nav .p-nav__sub-note {
    margin-left: 0.55em;
    font-size: 12px;
    font-weight: 400;
  }
}
.p-sp-nav__sub-main {
  display: block;
  font-size: 14px;
  line-height: 1.5;
}

.p-sp-nav__sub-note {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.4;
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .page-dispatch .p-department-mechanism__intro,
  .page-dispatch .p-department-appeal__intro {
    text-align: left !important;
  }

  .page-dispatch .p-department-mechanism__intro .u-sp,
  .page-dispatch .p-department-appeal__intro .u-sp {
    display: block;
    text-align: left !important;
  }
}
@media screen and (max-width: 768px) {
  .page-medical .p-department-specialties__item:nth-child(2) .p-department-specialties__text,
  .page-medical .p-department-specialties__item:nth-child(3) .p-department-specialties__text {
    padding-top: 0 !important;
  }
}


@media screen and (min-width: 769px) {
  .page-medical .p-medical-support__text {
    text-align: center;
    margin-bottom: 40px;
  }
}














@media screen and (max-width: 768px) {
  .page-company .p-company-philosophy__layer--mission {
    top: 2%;
  }
  .page-company .p-company-philosophy__layer--vision {
    top: 28%;
  }
  .page-company .p-company-philosophy__layer--value {
    top: 56%;
  }
  .page-company .p-company-philosophy__keywords-image {
    margin-top: -10px !important;
  }
}





@media screen and (min-width: 769px) {
  .page-company .p-company-philosophy__layer {
    left: 55% !important;
  }
  .page-company .p-company-philosophy__layer--vision {
    top: 28% !important;
  }
  .page-company .p-company-philosophy__layer--value {
    top: 56% !important;
  }
}

/* it solutions */
.page-it .p-department__lead strong {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
}
.page-it .p-department,
.page-it .p-it-background,
.page-it .p-it-works,
.page-it .p-department-flow,
.page-it .p-department-faq {
  position: relative;
  overflow: hidden;
}
.page-it .p-department > *,
.page-it .p-it-background > *,
.page-it .p-it-works > *,
.page-it .p-department-flow > *,
.page-it .p-department-faq > * {
  position: relative;
  z-index: 1;
}
.page-it .p-department-feature__item:nth-child(1) .p-department-feature__image img {
  max-width: 180px;
}
.page-it .p-department-feature__item:nth-child(2) .p-department-feature__image img {
  max-width: 150px;
}
.page-it .p-department-feature__item:nth-child(3) .p-department-feature__image img {
  max-width: 140px;
}
.page-it .p-it-background__intro,
.page-it .p-it-works__intro {
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: #404047;
  text-align: left;
}
.page-it .p-it-background__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.page-it .p-it-background__item {
  padding: 18px 10px 16px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
}
.page-it .p-it-background__image {
  width: 100px;
  height: 100px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
}
.page-it .p-it-background__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-it .p-it-background__text {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  color: #404047;
}
.page-it .p-it-background__lead {
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: #404047;
  text-align: left;
}
.page-it .p-it-works__list {
  display: grid;
  gap: 16px;
}
.page-it .p-it-works__item {
  position: relative;
  padding: 26px 20px 22px;
  background: #fff;
}
.page-it .p-it-works__label {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 96px;
  padding: 7px 14px 7px 12px;
  background: #d16354;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.page-it .p-it-works__title {
  margin: 20px 0 10px;
  color: #ce5548;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
.page-it .p-it-works__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: #404047;
}
.page-it .p-department-flow__item:nth-child(1) .p-department-flow__image img {
  max-width: 78px;
}
.page-it .p-department-flow__item:nth-child(1) .p-department-flow__card {
  grid-template-columns: minmax(0, 1fr) 78px;
  align-items: center;
}
.page-it .p-department-flow__item:nth-child(1) .p-department-flow__cta {
  margin-top: 4px;
}
.page-it .p-department-flow__item:nth-child(2) .p-department-flow__card,
.page-it .p-department-flow__item:nth-child(3) .p-department-flow__card,
.page-it .p-department-flow__item:nth-child(4) .p-department-flow__card,
.page-it .p-department-flow__item:nth-child(5) .p-department-flow__card {
  grid-template-columns: 1fr;
}
.page-it .p-department-flow__item:nth-child(2) .p-department-flow__image,
.page-it .p-department-flow__item:nth-child(3) .p-department-flow__image,
.page-it .p-department-flow__item:nth-child(4) .p-department-flow__image,
.page-it .p-department-flow__item:nth-child(5) .p-department-flow__image {
  justify-self: center;
  align-self: start;
  margin-top: 4px;
}
.page-it .p-department-flow__item:nth-child(2) .p-department-flow__image img {
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}
.page-it .p-department-flow__item:nth-child(3) .p-department-flow__image img {
  max-width: 120px;
  margin-left: auto;
  margin-right: auto;
}
.page-it .p-department-flow__item:nth-child(4) .p-department-flow__image img {
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
.page-it .p-department-flow__item:nth-child(5) .p-department-flow__image img {
  max-width: 96px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .page-it .p-department::before,
  .page-it .p-it-background::before,
  .page-it .p-it-works::before,
  .page-it .p-department-flow::before,
  .page-it .p-department-faq::before {
    position: absolute;
    right: -6px;
    top: -24px;
    z-index: 0;
    color: rgba(255,255,255,0.55);
    font-size: 86px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
  }
  .page-it .p-department::before { content: 'IT SOLUTIONS'; top: -4px; }
  .page-it .p-it-background::before { content: 'BACKGROUND'; top: 6px; }
  .page-it .p-it-works::before { content: 'WORKS'; top: 6px; }
  .page-it .p-department-flow::before { content: 'FLOW'; color: rgba(243, 232, 232, 0.95); top: 16px; right: 58px; font-size: 78px; }
  .page-it .p-department-faq::before { content: 'FAQ'; color: rgba(243, 232, 232, 0.95); top: 16px; right: 360px; font-size: 78px; }
  .page-it .p-it-background__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  .page-it .p-it-works__list {
    gap: 20px;
  }
  .page-it .p-department-flow__item:nth-child(1) .p-department-flow__card {
    grid-template-columns: minmax(0, 1fr) 110px;
    min-height: auto;
    padding: 12px 180px 14px;
    align-items: center;
  }
  .page-it .p-department-flow__item:nth-child(1) .p-department-flow__body {
    display: flex;
    align-items: center;
    min-height: 72px;
  }
  .page-it .p-department-flow__item:nth-child(1) .p-department-flow__text {
    max-width: 420px;
  }
  .page-it .p-department-flow__item:nth-child(1) .p-department-flow__image img {
    max-width: 78px;
    margin-left: auto;
  }
  .page-it .p-department-flow__item:nth-child(1) .p-department-flow__cta {
    justify-content: flex-start;
    margin-top: 8px;
  }
  .page-it .p-department-flow__item:nth-child(1) .p-department-cta__button {
    width: 480px;
    min-height: 36px;
    font-size: 14px;
    line-height: 1.4;
  }
  .page-it .p-department-flow__item:nth-child(n+2) .p-department-flow__card {
    padding: 10px 10px 12px;
  }
  .page-it .p-department-flow__item:nth-child(2) .p-department-flow__image img {
    max-width: 162px;
  }
  .page-it .p-department-flow__item:nth-child(3) .p-department-flow__image img {
    max-width: 100px;
  }
  .page-it .p-department-flow__item:nth-child(4) .p-department-flow__image img {
    max-width: 130px;
  }
  .page-it .p-department-flow__item:nth-child(5) .p-department-flow__image img {
    max-width: 96px;
  }
}





@media screen and (max-width: 768px) {
  .page-it .p-department-faq__question {
    align-items: flex-start;
    min-height: 56px;
    padding: 10px 12px;
  }

  .page-it .p-department-faq__mark {
    flex-shrink: 0;
    margin-top: 2px;
  }

  .page-it .p-department-faq__question-text {
    display: block;
    line-height: 1.6;
  }
}

@media screen and (max-width: 768px) {
  .page-it .p-department-cta {
    margin-top: 0;
  }
}

.page-it .p-it-cta__label {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .page-it .p-department-cta__button {
    justify-content: flex-start;
    text-align: left;
  }

  .page-it .p-it-cta__label {
    display: block;
    line-height: 1.4;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .page-it .p-department-flow__item:nth-child(1) .p-department-cta__button {
    justify-content: flex-start;
    text-align: left;
    align-items: center;
    gap: 10px;
  }

  .page-it .p-department-flow__item:nth-child(1) .p-it-cta__label {
    display: block;
    line-height: 1.4;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .page-it .p-department-cta:last-of-type {
    padding: 32px 40px 100px;
  }

  .page-it .p-department-cta:last-of-type .p-department-cta__button {
    width: 100%;
    max-width: none;
  }
}

@media screen and (max-width: 768px) {
  .page-it .p-it-cta__label-sp {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: nowrap;
    row-gap: 0;
  }

  .page-it .p-it-cta__label-sp > span {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .page-it .p-department-feature__item:nth-child(2) .p-department-feature__image img {
    max-width: 120px;
  }

  .page-it .p-department-feature__item:nth-child(3) .p-department-feature__image img {
    max-width: 110px;
  }
}


@media screen and (min-width: 769px) {
  .page-department .p-department-flow__item:nth-child(n+2) .p-department-flow__head {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 4px;
    min-height: 74px;
    padding: 8px 10px 10px;
  }

  .page-department .p-department-flow__item:nth-child(n+2) .p-department-flow__step {
    min-width: 72px;
  }

  .page-department .p-department-flow__item:nth-child(n+2) .p-department-flow__heading {
    text-align: center;
    line-height: 1.45;
  }
}

@media screen and (min-width: 769px) {
  .page-it .p-it-background__intro,
  .page-it .p-it-background__lead,
  .page-it .p-it-works__intro {
    text-align: center;
  }
}

.p-inquiry-hub__button-note {
  font-size: 0.88em;
  font-weight: 400;
  margin-left: 0.2em;
}

.p-inquiry-hub__button-main,
.p-inquiry-hub__button-tail {
  display: inline;
}

@media screen and (max-width: 768px) {
  .page-inquiry .p-inquiry-hub__button--secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .p-inquiry-hub__button-main,
  .p-inquiry-hub__button-note,
  .p-inquiry-hub__button-tail {
    display: block;
    margin-left: 0;
  }

  .p-inquiry-hub__button-note {
    font-size: 0.82em;
    line-height: 1.35;
  }
}

.page-inquiry .p-inquiry-hub__button-main,
.page-inquiry .p-inquiry-hub__button-tail {
  display: inline;
}

@media screen and (max-width: 768px) {
  .page-inquiry .p-inquiry-hub__button--secondary {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    min-height: 76px;
    text-align: center;
    line-height: 1.35;
  }

  .page-inquiry .p-inquiry-hub__button-main,
  .page-inquiry .p-inquiry-hub__button-note,
  .page-inquiry .p-inquiry-hub__button-tail {
    display: block;
    width: 100%;
  }

  .page-inquiry .p-inquiry-hub__button-note {
    margin-left: 0;
    font-size: 0.84em;
    font-weight: 400;
  }
}

/* Company message visual override (2026-05) */
@media screen and (min-width: 769px) {
  .page-company .p-company-message__content {
    max-width: 980px;
    margin: 0 auto;
    padding: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: block;
  }

  .page-company .p-company-message__profile {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
  }

  .page-company .p-company-message__photo {
    max-height: none;
    width: 100%;
    margin: 0;
  }

  .page-company .p-company-message__photo picture {
    display: block;
  }

  .page-company .p-company-message__photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0;
  }

  .page-company .p-company-message__name-wrap {
    position: absolute;
    top: 50%;
    right: clamp(20px, 5.4vw, 56px);
    transform: translateY(-50%);
    width: clamp(320px, 40vw, 470px);
    padding: 0;
    margin: 0;
    align-items: flex-start;
    justify-content: center;
    color: #2e2f35;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
  }

  .page-company .p-company-message__headline-ja {
    margin: 0 0 8px;
    max-width: 100%;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
    font-size: 23px;
    line-height: 1.45;
    letter-spacing: 0.04em;
    font-weight: 600;
    word-break: keep-all;
  }

  .page-company .p-company-message__headline-en {
    margin: 0 0 24px;
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }

  .page-company .p-company-message__role {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1.7;
  }

  .page-company .p-company-message__name {
    margin: 0;
    font-size: clamp(34px, 2.4vw, 44px);
    letter-spacing: 0.12em;
  }

  .page-company .p-company-message__body {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    padding: 30px 68px 36px;
    background: #fff;
    border-radius: 0;
  }
}

@media screen and (max-width: 768px) {
  .page-company .p-company-message__content {
    display: block;
    max-width: 100%;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
  }

  .page-company .p-company-message__profile {
    display: grid;
    grid-template-columns: 52% minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border-radius: 12px 12px 0 0;
    padding: 16px 16px 0;
    background: #fff;
  }

  .page-company .p-company-message__photo {
    max-height: none;
    width: 100%;
    margin: 0;
  }

  .page-company .p-company-message__photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .page-company .p-company-message__name-wrap {
    position: static;
    transform: none;
    width: auto;
    padding: 0;
    margin: 0;
    background: transparent;
    text-shadow: none;
  }

  .page-company .p-company-message__headline-ja {
    display: none;
  }

  .page-company .p-company-message__headline-en {
    display: none;
  }

  .page-company .p-company-message__role {
    margin: 0 0 6px;
    font-size: 11px;
    line-height: 1.55;
  }

  .page-company .p-company-message__name {
    font-size: 24px;
    letter-spacing: 0.06em;
  }

  .page-company .p-company-message__body {
    padding: 20px 18px 24px;
    background: #fff;
  }

  .page-company .p-company-message__mobile-headline {
    margin: 0 0 14px;
  }

  .page-company .p-company-message__mobile-headline .u-sp {
    display: block;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #2e2f35;
  }

  .page-company .p-company-message__mobile-headline-en {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
  }
}

@media screen and (max-width: 768px) {
  .page-company .p-company-message__photo {
    overflow: hidden;
    border-radius: 12px;
  }

  .page-company .p-company-message__photo img {
    border-radius: 12px;
  }
}

@media screen and (min-width: 769px) {
  .page-company .p-company-message__mobile-headline {
    display: none;
  }
}
