@charset "UTF-8";

/* #region ----- variables ----- */
:root {
  --height-header: 80px;
  --height-header-with-border: calc(var(--height-header) + 1px);
  --width-container-max: 850px;
  --color-black: #282828;
  --color-header-box-shadow: rgba(101, 102, 103, 0.9);
  --color-white: #FFFFFF;
  --color-navy: #061E65;
  --color-deep-navy: #272633;
  --color-accent: #3854AF;
  --color-footer: #3E3E3E;
  --color-text-accent-line: #FFE051;
  --color-form: #DCD9D1;
  --color-sp-nav-border: #E1E3EA;
  --color-contact-btn-yellow: #F0C83C;
}

/* #endregion */

/* #region ----- common ----- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--height-header-with-border);
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: .05rem;
  color: var(--color-black);
}

section {
  padding: 80px 50px;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.back_txt {
  display: block;
  margin-left: auto;
}

h1 {
  font-size: 342px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  width: fit-content;
  line-height: 1;
  margin: 7px auto;
}

h3,
h4 {
  font-size: 24px;
  font-weight: 500;
}

.pc {
  display: block;
}

.tab {
  display: none;
}

.sp {
  display: none;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.max-w-80 {
  max-width: 80%;
}

.blue-bold {
  color: var(--color-accent);
  font-weight: bold;
}

.black-bold {
  color: var(--color-black);
  font-weight: bold;
}

.white-title-back h2 {
  background: white;
  padding: 0 15px 3px;
}

.message-block {
  line-height: 1.5;
  text-align: left;
  margin: 50px;
}

.message-block .main-text {
  font-size: 30px;
}

.message-block .sub-text {
  font-size: 18px;
  color: var(--color-black);
  margin-top: 4px;
}

.message-block .dot-over {
  position: relative;
  display: inline-block;
}

/* #endregion */

/* #region ----- header ----- */
#top-head {
  width: 100%;
  height: 80px;
  padding: 0;
  top: 0;
  position: fixed;
  margin-top: 0;
  z-index: 10;
}

.fixed_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0px 4px 10px var(--color-header-box-shadow);
}

.fixed_header .header_right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;

}

.fixed_header .header_menu {
  display: flex;
  font-size: 12px;
  position: absolute;
  margin: 0;
  left: calc(50% - 14%);
  transform: translatex(-50%);
  align-items: center;
}

.fixed_header .header_menu li {
  margin: 10px;
  display: inline-block;
  text-align: center;
}

.fixed_header .header_menu li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  color: var(--color-black);
}

.fixed_header .header_menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background-color: var(--color-black);
  transition: width 0.3s ease;
}

.fixed_header .header_menu li a:hover::after {
  width: 100%;
}

.header_menu .sp-cta-btn-wrap {
  display: none;
}

.fixed_header .contact_tel {
  text-align: right;
}

.fixed_header .contact_tel p:nth-of-type(1) {
  font-weight: 500;
  font-size: 11px;
}

.fixed_header .contact_tel .tell-number {
  font-family: 'Noto Sans', sans-serif;
  color: var(--color-deep-navy);
  font-weight: bold;
  font-size: 21px;
}

.fixed_header .contact_tel p:nth-of-type(2) {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
}

.header_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header_logo {
  width: 180px;
  margin-left: 18px;
  z-index: 1000;
  position: fixed;
  top: 19px;
}

.header_right .contact_btn_header {
  border: 1px solid var(--color-black);
  display: flex;
  align-items: center;
  height: calc(var(--height-header) - 2px);
  padding: 0;
  min-width: 92px;
}

.header_right .contact_btn_header:hover {
  color: white;
  background-color: var(--color-deep-navy);
}

.header_right .contact_btn_header a {
  color: inherit;
  font-size: 12px;
  font-weight: bold;
  display: block;
  line-height: 1.5;
  padding: 15px 20px;
  box-sizing: border-box;
}

.contact_tel_sp {
  display: none;
}

.contact_tel_sp a {
  margin: auto;
}

/* #endregion */

/* #region ----- main ----- */
.main {
  text-align: center;
  margin-top: var(--height-header-with-border);
  display: flex;
  justify-content: center;
  width: 100%;
}

.main-contents {
  flex: 1;
  width: 72%;
}

/* #endregion */

/* #region ----- side ----- */
.side-contents {
  width: 28%;
  background-color: var(--color-form);
}

.side-contents .wrapp {
  position: sticky;
  top: var(--height-header-with-border);
}

.side-contents .wrapp section {
  padding: 0 10px 0 20px;
  height: calc(100dvh - var(--height-header-with-border));
  overflow-y: auto;
}

/* #endregion */

/* #region ----- form ----- */
.formbox {
  /* スクロールバーが表示されても幅が変わらないようにする（高さの調整に影響が出る為） */
  scrollbar-gutter: stable;
  max-width: 700px;
  background-color: var(--color-form);
}

.form-title {
  font-size: 20px;
  padding: 30px;
  margin: auto;
}

.formbox iframe {
  width: 100%;
  height: 1083px;
}

.form-sp {
  background-color: var(--color-form);
}

/* #endregion */

/* #region ----- footer ----- */
footer {
  text-align: left;
  font-size: 14px;
  margin: 0 auto;
  padding: 30px;
  position: relative;
  color: var(--color-white);
  background-color: var(--color-footer);
}

footer a {
  color: var(--color-white);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 70px;
  max-width: 1000px;
}

.footer-text {
  flex: 1;
  min-width: fit-content;
}

.footer-image {
  display: flex;
  gap: 30px;
}

.company-text {
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 5px;
}

.support-text {
  font-size: 12px;
}

.call-number {
  font-family: 'Noto Sans', sans-serif;
  display: flex;
  align-self: flex-start;
  gap: 10px;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}

.copylight {
  text-align: left;
  font-size: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

/* #endregion */

/* #region ----- First View ----- */
.key-visual {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.key-visual .kv-triangle-img {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40vh;
  width: 72vw;
  z-index: 1;
  min-width: 100%;
}

.key-visual .kv-text-1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-100%);
  z-index: 2;
  padding: 0 10px;
}

.key-visual .kv-text-2 {
  position: absolute;
  bottom: 20px;
  right: 50%;
  transform: translateX(103%);
  z-index: 2;
  text-align: left;
  padding: 0 10px;
}

.key-visual .kv-text-2 p {
  color: white;
  font-size: 28px;
}

/* #endregion */

/* #region ----- Brand ----- */
.brand {
  padding: 30px;
}

/* #endregion */

/* #region ----- Problem ----- */
.problem {
  background-color: #CBCED0;
  position: relative;
}

.problem-container {
  /* width: 65%; */
  margin: auto;
}

.arrow-cant-hire-image {
  position: absolute;
  max-width: 36%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(-106%, -60%);
}

.arrow-exhaustion-image {
  position: absolute;
  max-width: 32%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(126%, -45%);
}

.arrow-retirement-image {
  position: absolute;
  max-width: 36%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(83%, 88%);
}

.arrow-sales-decrease-image {
  position: absolute;
  max-width: 33%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(-117%, 71%);
}

.arrow-gray-circle-image {
  position: relative;
  margin-top: 10%;
}

.arrow-rotating-image {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

/*ぐるぐる（矢印回転）アニメーション*/
.arrow-rotating-image .rotate {
  animation: rotation 4s ease infinite;
}

/* アニメーション */
@keyframes rotation {
  0% {
    transform: rotate(0deg) scale(1.05);
  }

  25% {
    transform: rotate(90deg) scale(1.05);
  }

  50% {
    transform: rotate(180deg) scale(1.05);
  }

  75% {
    transform: rotate(270deg) scale(1.05);
  }

  100% {
    transform: rotate(360deg) scale(1.05);
  }
}

.problem-container .message-block {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 100px;
}

.problem-container .message-block .main-text {
  font-weight: bold;
  width: fit-content;
  margin: auto;
  text-decoration: underline;
  text-decoration-color: var(--color-text-accent-line);
  text-decoration-thickness: 12px;
  text-underline-offset: -1px;
}

/* #endregion */

/* #region ----- Merit ----- */
.merit {
  background-color: #E1E7FB;
}

.merit-container {
  max-width: var(--width-container-max);
  margin: auto;
}

.merit-container>div {
  margin-top: 80px;
}

.merit-container .section-titile img {
  margin: 0 0 5px 0;
}

.merit-sales-employee {
  font-size: 18px;
  display: flex;
  text-align: left;
  align-items: center;
}

.speech-bubble {
  position: relative;
  display: inline-block;
  padding: 2px 14px;
  border: 2px solid var(--color-navy);
  border-radius: 20px;
  background: white;
  color: var(--color-navy);
  font-weight: bold;
}

/* 下に三角 */
.speech-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: var(--color-navy) transparent transparent transparent;
}

/* 中を白く塗る（borderの中を埋める用） */
.speech-bubble::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  border-width: 13px 10px 0 10px;
  border-style: solid;
  border-color: white transparent transparent transparent;
  z-index: 1;
}

.merit-feature {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.feature-card {
  width: 245px;
}

.feature-card .icon {
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.2;
}

.feature-card p {
  display: inline-block;
  width: 210px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.merit-sales-employee .text-area {
  margin-left: 40px;
}

.merit-sales-employee .text-area .description {
  font-weight: 500;
}

.merit-sales-employee .text-area .description p {
  padding-top: 10px;
}

.compare-table {
  width: 100%;
}

.compare-table th,
.compare-table td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
  font-size: 18px;
  line-height: 1.4;
}

/* ヘッダー */
.compare-table thead th {
  align-content: end;
  font-weight: bold;
  font-weight: 500;
}

.compare-table thead th:first-child {
  font-size: 20px;
  color: var(--color-navy);
}

.compare-table thead th:nth-child(2) {
  background: white;
  border: 5px solid var(--color-accent);
  border-bottom-width: 1px;
  font-size: 26px;
  color: var(--color-accent);
  font-weight: bold;
}

.compare-table thead th:nth-child(3) {
  font-size: 26px;
}

/* td */
.compare-table tbody td {
  border-top: 1px solid var(--color-navy);
}

/* 左列（項目） */
.compare-table tbody td:first-child {
  background: #CDD2E0;
  color: var(--color-navy);
  font-size: 20px;
  font-weight: 500;
  width: 18%;
}

/* 2列目（販売正社員）を少し目立たせる */
.compare-table tbody td:nth-child(2) {
  background: white;
  border-left: 5px solid var(--color-accent);
  border-right: 5px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: bold;
  width: 40%;
}

.compare-table tbody tr:last-child td:nth-child(2) {
  border-bottom: 5px solid var(--color-accent);
}

/* 3列目（直接雇用） */
.compare-table tbody td:nth-child(3) {
  width: 40%;
}

.merit_metrics {
  color: var(--color-navy);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  text-align: center;
  gap: 3rem;
  justify-content: center;
}

.merit-operating_rate {
  transform: translate(-30px, 0);
}

.merit_metrics .label {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
}

.merit_metrics .value {
  font-size: 70px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.merit_metrics .value span {
  font-size: 32px;
  font-weight: bold;
  margin-top: 80px;
}

.merit_metrics .value img {
  transform: translate(30px, 10px);
}

/* #endregion */

/* #region ----- Reason ----- */
.reason {
  background-color: #FFDF88;
}

.reason-container {
  max-width: var(--width-container-max);
  margin: auto;
}

.reason-container .section-titile img {
  margin: 0 0 5px 0;
}

.reason-boxs {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 60px 0 30px 0;
}

.reason-box {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

.reason-box h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.2;
}

.reason-box p {
  font-size: 14px;
}

.icon-wrap {
  height: 140px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px;
}

.icon-wrap img {
  height: auto;
  max-height: 100%;
}

/* #endregion */

/* #region ----- Employee Introduction ----- */
.employee-introduction {
  padding: 80px 0px;
  background-color: #E9ECF4;
}

/* 自社社員紹介スライド */
.employee-introduction-card {
  justify-content: space-between;
  flex: 1;
  height: 100%;
  box-sizing: border-box;
}

.employee-career-year::before {
  display: inline-block;
}

.employee-career-year {
  display: block;
}

.employee-career-event {
  display: block;
  padding-left: 1rem;
}

/* #endregion */

/* #region ----- Procedure ----- */
.procedure {
  background-color: var(--color-white);
}

.procedure-container {
  padding-bottom: 50px;
}

.procedure .main-text {
  font-size: 30px;
}

.procedure .sub-text {
  font-size: 18px;
}

.flow-table {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.flow-agent-table,
.flow-dispatch-table {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-table .message-block {
  display: block;
  margin: 50px 0px;
  text-align: left;
}

.flow-table picture {
  max-width: 340px;
  height: auto;
  margin: 0 auto;
  margin-top: auto;
  align-self: flex-start;
}

.message-block .dot-over::before {
  /* ドット記号 */
  content: "●";
  /* 上に持ち上げる（調整可能） */
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translateX(-50%);
  /* ドットの大きさ */
  font-size: 8px;
  color: var(--color-accent);
  width: max-content;
}

/* #endregion */

/* #region ----- Charge ----- */
.charge {
  background-color: #E9ECF4;
}

.charge-introduction-container {
  padding-top: 50px;
}

.charge .message-block {
  margin: 0;
  padding: 20px 0px;
}

.charge .message-block .sub-text {
  margin: 0;
  font-size: 16px;
}

/* 担当者紹介スライド */
.charge-introduction-card {
  margin-bottom: 50px;
}

.charge-career tbody tr {
  display: flex;
  padding-bottom: 1rem;
}

.charge-joining {
  display: flex;
  align-items: baseline;
}

.charge-joining .charge-joining-title,
.charge-career th {
  flex: 35%;
  display: inline-flex;
}

.charge-career th {
  font-weight: normal;
}

.charge-joining .charge-joining-year,
.charge-career td {
  flex: 65%;
}

.charge .message-block p {
  text-align: center;
}

.charge-img {
  margin: 50px 0;
}

/* #endregion */

/* #region ----- 自社社員・担当者紹介スライド ----- */
.introduction-card {
  display: flex;
  align-items: flex-start;
  background-color: var(--color-white);
  padding: 55px 50px;
  gap: 50px;
}

.introduction-img {
  text-align: left;
  flex: 4.5;
}

.introduction-content {
  text-align: left;
  flex: 5.5;
}

.introduction-content h3 {
  margin-bottom: 0;
}

.introduction-name {
  font-size: 26px;
  font-weight: 500;
  margin: 0;
}

.introduction-position {
  font-weight: bold;
  color: var(--color-accent);
  margin-bottom: 10px !important;
  font-size: 16px;
}

.introduction-title {
  margin-top: 20px;
  font-weight: bold;
  font-size: 20px;
}

.career {
  list-style: none;
  padding: 0;
  margin: 0;
}

.career-year::before,
.career-previous-year::before {
  content: "-";
  width: 1rem;
}

.career-previous-year {
  display: inline-flex;
}

/* #endregion */

/* #region ----- Company-Overview ----- */
.company-overview {
  background-color: var(--color-white);
}

.company-overview-list {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin: 3rem auto;
  max-width: var(--width-container-max);
}

.company-overview-list .overview-item {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  border-bottom: 1px solid var(--color-accent);
  padding: 1.6rem 1rem;
}

.company-overview-list .overview-item .title {
  color: var(--color-accent);
  font-weight: bold;
  width: 120px;
  font-size: 18px;
  white-space: nowrap;
  margin: 0;
}

.company-overview-list .overview-item .text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* #endregion */

/* #region ----- thanks ----- */
#finish_body #top-head {
  background-color: var(--color-white);
  box-shadow: 0 1px 0 #cacaca;
}

#finish_body main {
  min-height: calc(100vh - 267px);
  background-color: #EEECE7;
  text-align: center;
  padding-top: 50px;
}

.completed-image {
  padding: 50px 0;
}

.thanks-text {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: revert-layer;
}

.finish_info {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 30px;
}

.info_mail {
  color: var(--color-black);
  font-weight: 600;
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
}

/* #endregion */

/* #region ----- cta ----- */
.sp-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  background: var(--color-form);
  color: #2F1D05;
  text-decoration: none;
  text-align: center;
  align-content: center;
  width: 100%;
  height: 185px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.sp-cta.show {
  opacity: 1;
  visibility: visible;
}

.sp-cta-content h4 {
  font-weight: 700;
}

.sp-cta .sp-cta-content p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.sp-cta-btn-wrap {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 85%;
  margin: 0 auto;
  font-weight: bold;
}

.sp-cta-btn {
  align-content: center;
  flex: 1;
  text-align: center;
  border: 1.5px solid;
  border-color: var(--color-deep-navy);
  height: 65px;
  border-radius: 5px;
  box-shadow: 4px 4px 0px 0px #0000001a;
}

.sp-cta-btn1 {
  color: var(--color-white);
  background: var(--color-deep-navy);
}

.sp-cta-btn2 {
  color: var(--color-deep-navy);
  background: var(--color-white);
}

.sp-cta-btn a {
  display: flex;
  flex-direction: column;
}

.sp-cta-btn img {
  height: auto;
}

/* #endregion */

/* #region ----- レスポンシブ ----- */

/* #region ----- max-width: 1380px ヘッダメニューが隣と被らないように途中から左位置固定 ----- */
/* ヘッダメニューが隣と被らないように途中から左位置固定 */
@media screen and (max-width: 1380px) {
  .fixed_header .header_menu {
    transform: none;
    margin-left: 0;
    justify-content: flex-start;
    left: 200px;
  }
}

/* #endregion */

/* #region ----- max-width: 1140px ヘッダメニューが隣と被らないようにロゴとTELを変更 ----- */
/* ヘッダメニューが隣と被らないようにロゴとTELを変更 */
@media screen and (max-width: 1140px) {

  /***************
  header
  ***************/
  .header_logo {
    width: 64px;
    top: 11px;
  }

  .fixed_header .header_menu {
    left: 80px;
  }

  .contact_tel {
    display: none;
  }

  .contact_tel_sp {
    min-width: 80px;
    min-height: 80px;
    display: flex;
    justify-content: center;
    background-color: var(--color-deep-navy);
  }

  .fixed_header .header_right {
    gap: unset;
  }
}

/* #endregion */

/* #region ----- max-width: 1000px ヘッダメニューが隣と被らないようにメニューをハンバーガーメニューに変更 ----- */
@media screen and (max-width: 1000px) {
  :root {
    --height-header: 64px;
  }

  #top-head {
    width: 100%;
    height: var(--height-header);
    padding: 0;
    top: 0;
    position: fixed;
    margin-top: 0;
  }

  #top-head .inner {
    width: 100%;
    padding: 0;
  }

  #top-head .logo {
    position: absolute;
    left: 13px;
    top: 13px;
    color: #333;
    font-size: 26px;
  }

  .header_logo {
    top: 0px;
    width: 64px;
  }

  #top-head.fixed {
    padding-top: 0;
    background: transparent;
  }

  #top-head.fixed .logo {
    position: absolute;
    left: 13px;
    top: 13px;
    color: #333;
    font-size: 26px;
  }

  #top-head.fixed #global-nav ul {
    display: block;
  }

  #top-head.fixed #global-nav ul li a {
    width: 100%;
    display: block;
    padding: 18px 0;
    font-size: 15px;
  }

  #mobile-head {
    background: var(--color-white);
    width: 100%;
    height: var(--height-header);
    z-index: 999;
    position: relative;
    box-shadow: 0px 2px 5px var(--color-header-box-shadow);
  }

  #mobile-head .contact_btn_header {
    position: absolute;
    width: 170px;
    right: 60px;
    margin-top: 15px;
  }

  #mobile-head .contact_btn_header a {
    font-size: 15px;
    font-weight: 700;
    display: block;
    padding: 0 20px 15px;
    color: #3b3b3b;
    background-color: var(--color-contact-btn-yellow);
    border-radius: 10px;
  }

  #mobile-head .contact_tel {
    display: block;
    position: absolute;
    top: -3px;
    left: 90px;
    text-align: left;
    padding: 11px 0;
    color: #3b3b3b;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
  }

  #mobile-head .contact_tel a {
    color: #004673;
  }

  #mobile-head .contact_tel_sp {
    position: absolute;
    right: 63px;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    padding: 17px;
  }

  #global-nav {
    position: absolute;
    display: none;
    top: -649px;
    background: var(--color-white);
    width: 100%;
    height: auto;
    text-align: center;
    transition: .5s ease-in-out;
    background-color: rgba(255, 255, 255, 0.9);
  }

  #global-nav ul {
    position: static;
    width: 100%;
    display: block;
    padding: 0 29px;
  }

  #global-nav ul li {
    position: static;
    display: block;
    border-bottom: solid 0.5px var(--color-sp-nav-border);
    text-align: left;
  }

  #global-nav ul li a {
    width: 100%;
    display: block;
    padding: 11px 0;
    font-size: 16px;
    font-weight: bold;
  }

  #global-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 1.5px;
    background-color: var(--color-black);
    transition: width 0.3s ease;
  }

  #global-nav ul li a:hover::after {
    width: 100%;
  }

  #global-nav ul li a br {
    display: none;
  }

  #global-nav ul .contact_btn_top a {
    font-weight: 700;
    color: #3b3b3b;
    height: 80px;
    line-height: 1.5;
    padding: 15px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: var(--color-contact-btn-yellow);
    position: inherit;
  }

  .header_menu .sp-cta-btn-wrap {
    display: flex;
    margin-top: 40px;
    width: auto;
  }

  .header_menu .sp-cta-btn-wrap a {
    display: flex;
    align-items: center;
  }

  .header_menu .sp-cta-btn-wrap a img {
    margin: auto 0 auto auto;
  }

  .header_menu .sp-cta-btn-wrap a span {
    margin: auto auto auto 3px;
    font-size: 15px;
  }

  #nav-toggle {
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 62px;
    height: -webkit-fill-available;
    cursor: pointer;
    z-index: 101;
    border: solid 1px;
  }

  #nav-toggle div {
    position: relative;
    left: 19px;
    display: block;
  }

  #nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 24px;
    background: var(--color-deep-navy);
    left: 0;
    transition: .35s ease-in-out;
  }

  #nav-toggle span:nth-child(1) {
    top: 17px;
  }

  #nav-toggle span:nth-child(2) {
    top: 29px;
  }

  #nav-toggle span:nth-child(3) {
    top: 40px;
  }

  .open .header_right {
    display: none;
  }

  .open #nav-toggle span:nth-child(1) {
    top: 29px;
    transform: rotate(315deg);
  }

  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 29px;
    transform: rotate(-315deg);
  }

  .open #global-nav {
    transform: translateY(713px);
    height: 2000px;
  }

  .header_menu {
    width: 100%;
    display: block;
  }

  .header_menu li {
    width: 100%;
    display: block;
  }

  .fixed_header .header_menu li {
    margin: 10px 0;
  }

  .fixed_header .header_menu li:last-child {
    margin: 0;
  }
}

/* #endregion */

/* #region ----- max-width: 768px SPレイアウトに変更 ----- */
@media (max-width: 768px) {

  /* #region ----- sp common ----- */
  .pc {
    display: none;
  }

  .tab {
    display: none;
  }

  .sp {
    display: block;
  }

  .key-visual .kv-triangle-img {
    height: 50vh;
    max-width: unset;
    width: auto;
  }

  section {
    padding: 70px 50px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  /* #endregion */

  /* #region ----- sp first view ----- */
  .kv-container {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .kv-text-1,
  .kv-text-2 {
    flex: 1 1 auto;
    min-width: 250px;
  }

  .key-visual .kv-text-1 {
    position: relative;
    text-align: center;
    left: unset;
    transform: unset;
    z-index: 2;
    padding: 0 25px;
    width: -webkit-fill-available;
  }

  .key-visual .kv-text-2 {
    position: relative;
    right: unset;
    transform: unset;
    text-align: center;
  }

  .key-visual .kv-text-2 div {
    width: 360px;
    margin: 0 auto;
  }

  .key-visual .kv-text-2 p {
    color: white;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
  }

  /* #endregion */

  /* #region ----- sp brand ----- */
  .brand {
    padding: unset;
  }

  .brand img {
    width: 100%;
  }

  /* #endregion */

  /* #region ----- sp problem ----- */
  .problem {
    padding-left: 0;
    padding-right: 0;
  }

  .problem-container {
    width: auto;
  }

  .problem-container .arrow-gray-circle-image {
    overflow: hidden;
    padding: 40% 0;
    margin-top: 5%;
  }

  .problem-container .message-block .main-text {
    text-decoration-thickness: 8px;
  }

  .arrow-gray-circle-image img {
    max-width: 100%;
  }

  .arrow-gray-circle-image picture {
    display: flex;
    justify-content: center;
  }

  .arrow-gray-circle-image>picture>img {
    width: 486px;
    min-width: 486px;
  }

  .arrow-rotating-image {
    top: 50%;
    min-width: 180px;
    max-width: 150px;
  }

  .arrow-rotating-image img {
    width: 183px;
    margin-bottom: 3px;
  }

  .arrow-cant-hire-image {
    transform: translate(-131%, -152%);
  }

  .arrow-cant-hire-image img {
    min-width: 170px;
  }

  .arrow-exhaustion-image {
    transform: translate(53%, -131%);
  }

  .arrow-exhaustion-image img {
    min-width: 156px;
  }

  .arrow-sales-decrease-image {
    transform: translate(-150%, 14%);
  }

  .arrow-sales-decrease-image img {
    min-width: 156px;
  }

  .arrow-retirement-image {
    transform: translate(23%, 58%);
  }

  .arrow-retirement-image img {
    min-width: 185px;
  }

  .problem .message-block {
    margin: 10px 0 50px;
  }

  .problem .message-block p:nth-of-type(2) {
    padding: 0 42px;
  }

  /* #endregion */

  /* #region ----- merit ----- */
  .merit {
    padding: 70px 25px;
  }

  .merit-sales-employee {
    text-align: center;
    flex-direction: column;
    font-size: 16px;
    gap: 40px;
  }

  .merit-sales-employee .text-area {
    margin: 0;
  }

  .merit-feature {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: auto;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 7px;
    vertical-align: top;
    font-size: 14px;
  }

  .compare-table thead th {
    align-content: end;
    font-weight: 500;
  }

  .compare-table thead th:nth-child(2) {
    font-size: 18px;
    font-weight: bold;
  }

  .compare-table thead th:nth-child(3) {
    font-size: 18px;
  }

  .compare-table tbody td:first-child {
    font-size: 14px;
  }

  .merit-operating_rate {
    transform: translate(0, 0);
  }

  .merit_metrics {
    flex-direction: column;
    gap: 5rem;
  }

  .merit_metrics .value {
    display: block;
  }

  .merit_metrics .value img {
    transform: translate(0, -40px);
  }

  /* #endregion */

  /* #region ----- sp reason ----- */
  .reason {
    padding: 70px 25px;
  }

  .reason-boxs {
    display: block;
  }

  .reason-box {
    margin: 0 auto;
    margin-top: 50px;
  }

  .reason-box .icon-wrap {
    height: auto;
  }

  .reason-box h3 {
    font-size: 22px;
  }

  .reason-box p {
    font-size: 14px;
  }

  /* #endregion */

  /* #region ----- sp procedure ----- */
  .procedure-container {
    padding-bottom: 0;
  }

  .flow-table {
    flex-direction: column;
    gap: 25px;
  }

  .procedure .message-block {
    width: fit-content;
    margin: 35px 0;
  }

  .procedure .main-text {
    font-size: 20px;
  }

  .procedure .sub-text {
    font-size: 12px;
  }

  /* #endregion */

  /* #region ----- sp company ----- */
  .company-overview-list {
    display: flex;
    flex-direction: column;
    margin: 0rem auto;
  }

  .company-overview-list .overview-item {
    flex-direction: column;
    gap: 1rem;
    padding: 2.6rem 1rem;
    line-height: 19px;
    letter-spacing: -0.5px;
  }

  .overview-item:last-child {
    border-bottom: none;
  }

  .company-overview-list .overview-item .title {
    width: auto;
  }

  /* #endregion */

  /* #region ----- sp introduction ----- */
  .introduction-card {
    flex-direction: column;
    padding: 55px 30px;
    font-size: 14px;
  }

  .introduction-content h3 {
    font-size: 18px;
  }

  .introduction-content h3.introduction-name {
    font-size: 24px;
    font-weight: 500;
  }

  .introduction-title {
    font-weight: bold;
  }

  .introduction-content .introduction-position {
    font-size: 14px;
  }

  .introduction-img {
    flex: 1;
  }

  .employee-introduction {
    padding: 70px 0px;
  }

  /* #endregion */

  /* #region ----- sp charge ----- */
  .charge {
    background-color: #E9ECF4;
    padding: 70px 35px;
  }

  .charge .message-block .sub-text {
    font-size: 12px;
  }

  .charge-joining .charge-joining-title,
  .charge-career th {
    flex: 45%;
  }

  .charge-joining .charge-joining-year,
  .charge-career td {
    flex: 55%;
  }

  /* #endregion */

  /* #region ----- sp form ----- */

  #form-sp {
    padding: 70px 20px;
  }

  /* #endregion */

  /* #region ----- sp footre ----- */
  .tell-number {
    font-size: 26.25px;
  }

  .call-number {
    margin: 0 auto;
  }

  .copylight {
    text-align: center;
  }

  .footer-text {
    text-align: left;
    position: relative;
  }

  .footer-image {
    margin: 0 auto;
    gap: 35px;
  }

  .space {
    margin-right: 90px;
  }

  .tell-image {
    width: 25px;
  }

  /* #endregion */

  /* #region ----- thanks ----- */
  #finish_body section {
    padding: 50px 35px;
  }

  .completed-image {
    padding: 0;
  }

  .thanks-text {
    font-size: 28px;
    margin: revert-layer;
  }

  .finish_info {
    font-size: 14px;
  }

  .info_mail {
    font-size: 16px;
  }

  /* #endregion */
}

/* #endregion */

/* #region ----- max-width: 486px よくある課題の位置調整 ----- */
@media (max-width: 486px) {
  .arrow-cant-hire-image {
    transform: unset;
    top: 65px;
    left: 10px;
  }

  .arrow-exhaustion-image {
    transform: unset;
    top: 109px;
    right: 37px;
    left: unset;
  }

  .arrow-sales-decrease-image {
    transform: unset;
    top: 425px;
    left: 0px;
  }

  .arrow-retirement-image {
    transform: unset;
    left: unset;
    top: 513px;
    right: 57px;
  }
}

/* #endregion */

/* #region ----- 各幅によりフォームの高さ調整 ----- */
@media (max-width: 2516px) {
  .formbox iframe {
    height: 1083px;
  }
}

@media (max-width: 1656px) {
  .formbox iframe {
    height: 1118px;
  }
}

@media (max-width: 1596px) {
  .formbox iframe {
    height: 1140px;
  }
}

@media (max-width: 1160px) {
  .formbox iframe {
    height: 1163px;
  }
}

@media (max-width: 1073px) {
  .formbox iframe {
    height: 1163px;
  }
}

@media (max-width: 1038px) {
  .formbox iframe {
    height: 1192px;
  }
}

@media (max-width: 1013px) {
  .formbox iframe {
    height: 1207px;
  }
}

@media (max-width: 1000px) {
  .formbox iframe {
    height: 1210px;
  }
}

@media (max-width: 966px) {
  .formbox iframe {
    height: 1255px;
  }
}

@media (max-width: 924px) {
  .formbox iframe {
    height: 1276px;
  }
}

@media (max-width: 819px) {
  .formbox iframe {
    height: 1305px;
  }
}

@media (max-width: 768px) {
  .formbox iframe {
    height: 1063px;
  }
}

@media (max-width: 704px) {
  .formbox iframe {
    height: 1083px;
  }
}

@media (max-width: 454px) {
  .formbox iframe {
    height: 1118px;
  }
}

@media (max-width: 437px) {
  .formbox iframe {
    height: 1140px;
  }
}

/* #endregion */

/* #endregion */