@charset "UTF-8";
/* ==================================================

<目次>
 1.汎用クラス
 2.パーツ
 3.ヘッダー・フッター
 4.トップページ
 5.下層ページ

=================================================== */
/* ==================================================

 1.汎用クラス

 ================================================== */
/* margin-top */
.mt0 {
  margin-top: 0 !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mt32 {
  margin-top: 32px !important;
}

.mt64 {
  margin-top: 64px !important;
}

.mt80 {
  margin-top: 80px !important;
}

/* margin-bottom */
.mb0 {
  margin-bottom: 0 !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mb16 {
  margin-bottom: 16px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.mb32 {
  margin-bottom: 32px !important;
}

.mb64 {
  margin-bottom: 64px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

/* padding */
.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.u-gap8 {
  gap: 8px !important;
}

/* 表示切り替え */
.is_pc {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .is_pc {
    display: block;
  }
}

.is_sp {
  display: block;
}
@media print, screen and (min-width: 1024px) {
  .is_sp {
    display: none;
  }
}

/* flex */
.flex_block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex_align_center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_justify_center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-img_circle img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.u-link_decoration_unset a {
  text-decoration: none !important;
}
.u-link_decoration_unset a:hover {
  opacity: 0.8;
}

/* ==================================================

 2.パーツ

================================================== */
/* ボタン
---------------------------------------- */
.wp-block-snow-monkey-blocks-btn .smb-btn:hover, .wp-block-snow-monkey-blocks-btn .wp-block-button__link:hover, .wp-block-buttons .smb-btn:hover, .wp-block-buttons .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--sm-sub-accent);
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
.wp-block-snow-monkey-blocks-btn.is-style-ghost .smb-btn:hover, .wp-block-buttons.is-style-ghost .smb-btn:hover {
  color: #fff;
  border-color: var(--wp--preset--color--sm-sub-accent);
}

/* セクション
---------------------------------------- */
.c-section_bg_machinami_light-blue,
.c-section_bg_machinami_blue {
  background-repeat: repeat-x;
  background-position: bottom center;
}

.c-section_bg_machinami_light-blue {
  background-image: url(../img/bg_machinami_light-blue.png);
}

.c-section_bg_machinami_blue {
  background-image: url(../img/bg_machinami_blue.png);
}

.c-section_bg_top_machinami_light-blue::before,
.c-section_bg_top_machinami_blue::before {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  background-repeat: repeat-x;
  background-position: top center;
  position: absolute;
  top: 0;
  z-index: 2;
}

.c-section_bg_top_machinami_light-blue::before {
  background-image: url(../img/bg_machinami_light-blue.jpg);
}

.c-section_bg_top_machinami_blue::before {
  background-image: url(../img/bg_machinami_blue.jpg);
}

@media screen and (max-width: 639px) {
  .c-section_bg_machinami_light-blue,
  .c-section_bg_machinami_blue {
    background-size: 150%;
  }
}
/* 見出し
---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3 !important;
}

/*h1*/
body:not(.home) .l-container .c-page-header {
  color: var(--wp--preset--color--sm-sub-accent);
  background-color: #E8F3FF;
  margin-inline: auto;
}

/*h2*/
body:not(.home) h2:not(.is-style-plain):not(.is-style-snow-monkey-143826):not(.p-related-posts__title.c-entry-aside__title):not(.smb-section__title):not(.c-entry-summary__title) {
  color: var(--wp--preset--color--sm-accent);
  border-bottom: 1px solid var(--wp--preset--color--sm-accent);
  border-top: 1px solid var(--wp--preset--color--sm-accent);
  padding: 0.8em 0.5em;
}

/*h3*/
body:not(.home) h3:not(.is-style-plain):not(.is-style-snow-monkey-143826):not(.c-entry-summary__title) {
  color: var(--wp--preset--color--sm-sub-accent);
  border-left: 4px solid var(--wp--preset--color--sm-sub-accent);
  padding: 0.5em;
  background-color: #edf6ff;
}

/*h4*/
body:not(.home) h4:not(.is-style-plain) {
  color: var(--wp--preset--color--sm-sub-accent);
  border-left: 4px double var(--wp--preset--color--sm-sub-accent);
  padding: 0.25em 0.5em;
}

/* アイコン
---------------------------------------- */
.c-icon_link_recruit > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-icon_link_recruit > a::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url("../img/icon_recruit.svg") no-repeat center center/contain;
}

.c-icon_link_arrow_right > a {
  position: relative;
}
.c-icon_link_arrow_right > a::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 45px;
  height: 4px;
  border-radius: 9999px;
  background-color: #000000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - 2px) 50%;
          transform-origin: calc(100% - 2px) 50%;
}
.c-icon_link_arrow_right > a::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 100px;
  height: 4px;
}

/* テーブル
---------------------------------------- */
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}

/* テーブル_左見出し */
.table_rows th {
  background-color: #f3f6f8 !important;
  color: #333 !important;
  width: 30%;
}
@media print, screen and (min-width: 1200px) {
  .table_rows th {
    width: 300px;
  }
}
.table_rows td {
  vertical-align: top;
}
.table_rows td:first-child {
  font-weight: 700;
  background-color: #f3f6f8;
  color: #333 !important;
}
@media print, screen and (min-width: 1200px) {
  .table_rows td:first-child {
    width: 300px;
  }
}
@media print, screen and (max-width: 639px) {
  .table_rows {
    display: block;
  }
  .table_rows tbody {
    display: block;
    width: 100%;
  }
  .table_rows tr {
    display: block;
    width: 100%;
  }
  .table_rows tr:first-child th, .table_rows tr:first-child td {
    border-bottom: 0;
  }
  .table_rows th, .table_rows td {
    display: block;
    width: 100%;
  }
}

/* Contact Form 7
---------------------------------------- */
.p-contactform {
  max-width: 100%;
}
@media print, screen and (max-width: 639px) {
  .p-contactform {
    padding-left: 0;
  }
}
.p-contactform input[type=text].full, .p-contactform input[type=tel], .p-contactform input[type=email] {
  width: 100%;
  max-width: 100%;
}
.p-contactform input[type=text], .p-contactform input[type=tel], .p-contactform input[type=email] {
  padding: 3px 5px;
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.p-contactform input[type=text]:focus, .p-contactform input[type=tel]:focus, .p-contactform input[type=email]:focus {
  background-color: #EEE;
}
.p-contactform input[type=text].wpcf7-not-valid, .p-contactform input[type=tel].wpcf7-not-valid, .p-contactform input[type=email].wpcf7-not-valid {
  border: 1px solid #E00;
}
.p-contactform textarea {
  width: 100%;
  padding: 3px 5px;
  border: 1px solid #CCC;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.p-contactform textarea:focus {
  background-color: #EEE;
}
.p-contactform textarea.wpcf7-not-valid {
  border: 1px solid #E00;
}
.p-contactform select {
  padding: 8px;
  border-color: #CCC;
}
.p-contactform .wpcf7-list-item {
  margin: 0 1em 0 0;
  margin-bottom: 8px !important;
}
@media print, screen and (max-width: 639px) {
  .p-contactform .wpcf7-list-item {
    margin-bottom: 0.8rem;
    display: block !important;
  }
}
.p-contactform span.wpcf7-not-valid-tip {
  margin-top: 2px;
  color: #E00;
}
.p-contactform p {
  margin-bottom: 0;
}

@media screen and (max-width: 639px) {
  input[type=text] {
    width: 100%;
  }
}
input::-webkit-input-placeholder {
  color: #999;
}
input::-moz-placeholder {
  color: #999;
}
input:-ms-input-placeholder {
  color: #999;
}
input::-ms-input-placeholder {
  color: #999;
}
input::placeholder {
  color: #999;
}

.p-required_mark::after {
  content: "必須";
  color: #ED1C24;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: normal;
  border: 1px solid #ED1C24;
  border-radius: 5px;
  padding: 0 4px;
  margin-left: 0.3rem;
}

.wpcf7-submit {
  font-weight: bold;
  margin-left: 72px;
}
.wpcf7-submit:hover {
  background-color: var(--wp--preset--color--sm-sub-accent);
  -webkit-filter: brightness(110%) !important;
          filter: brightness(110%) !important;
}

.p-contactform_math-captcha {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px !important;
}

.p-contactform_consent {
  text-align: center;
  background-color: #f3f6f8;
  padding: 16px;
}

/* 採用：タイムライン
---------------------------------------- */
.c-timeline_table td {
  padding: 8px;
}

.c-timeline_table td:first-child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.c-timeline_table td:first-child:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #2979cf;
  margin-right: 16px;
}

.c-timeline_table td:first-child::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: #2979cf;
  position: absolute;
  left: 15px;
}

/* ==================================================

 3.ヘッダー・フッター

 ================================================== */
/* ヘッダー
---------------------------------------- */
@media (min-width: 1024px) {
  .l-1row-header__branding, .l-1row-header__content {
    padding-bottom: var(--_padding-1);
    padding-top: var(--_padding-1);
  }
}
@media not all and (min-width: 1024px) {
  .l-header--sticky-sm {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}
/* グロナビ
---------------------------------------- */
.l-1row-header .p-global-nav .c-navbar__item {
  border-radius: 10px;
}
.l-1row-header .p-global-nav .c-navbar__item > a {
  padding: var(--_padding-2) var(--_padding-1);
}
.l-1row-header .p-global-nav .c-navbar__item.sm-nav-menu-item-highlight {
  background-color: var(--wp--preset--color--sm-sub-accent);
}
.l-1row-header .p-global-nav .c-navbar__item.sm-nav-menu-item-highlight > a:hover {
  color: #fff800;
}

.l-header .c-hamburger-btn__bar {
  background-color: var(--wp--preset--color--sm-accent);
}
.l-header .c-hamburger-btn__label {
  display: none;
}

.p-drop-nav .sm-nav-menu-item-highlight {
  background-color: var(--wp--preset--color--sm-sub-accent) !important;
}

.c-drawer {
  background-color: rgba(28, 80, 136, 0.8705882353);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.c-drawer .c-hamburger-btn__label {
  display: none;
}
.c-drawer .c-drawer__inner {
  height: 100% !important;
}
.c-drawer .c-drawer__inner .c-drawer__menu > .menu-item:not(:last-child):not(:nth-last-child(2)) {
  border-bottom: 1px solid #2979CF;
}
.c-drawer .c-drawer__inner .menu-item a {
  font-weight: bold;
  font-size: 1rem;
}

/* フッター
---------------------------------------- */
.l-footer {
  background-color: #E8F3FF;
  border-top: none;
}
.l-footer .l-footer-widget-area__item {
  margin-bottom: 0 !important;
}
.l-footer .c-copyright--inverse {
  background-color: var(--wp--preset--color--sm-accent);
}

/* フッターナビ
---------------------------------------- */
.widget_nav_menu a:hover {
  opacity: 0.8;
  text-decoration: none;
}

#menu-sns_navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
#menu-sns_navi .menu-item {
  margin-top: 0;
}
#menu-sns_navi .menu-item a {
  font-size: 2rem;
}

.p-footer_navi {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-footer_navi .widget_nav_menu .menu > .menu-item a {
  line-height: 1.6;
  padding-left: 8px;
  display: block;
}
.p-footer_navi .widget_nav_menu .menu > .menu-item > a {
  color: var(--wp--preset--color--sm-sub-accent);
  font-weight: bold;
  font-size: 1rem;
  padding-bottom: 0.5em;
}
.p-footer_navi .widget_nav_menu .children-expander {
  display: none;
}
.p-footer_navi .widget_nav_menu .sub-menu {
  display: block;
  border-top: 0;
  border-bottom: 0;
  margin-top: 0;
  margin-left: 16px;
}
.p-footer_navi .widget_nav_menu .sub-menu li + li {
  margin-top: 8px;
}
.p-footer_navi .widget_nav_menu .sub-menu a::before {
  content: "-";
  margin-right: 4px;
}
.p-footer_navi .widget_nav_menu #menu-footer_other > li + li {
  margin-top: var(--_margin1);
}

/* ==================================================

 4.トップページ

================================================== */
.home .smb-section__subtitle, .home .smb-section__title {
  color: #2A79CF;
  line-height: 1;
}
.home .smb-section__subtitle {
  font-size: 4.25rem;
}
.home .smb-section__title {
  font-size: 1.75rem;
}

.p-home_service_inner figure {
  position: relative;
}
.p-home_service_inner a {
  display: block;
  border-radius: 11px;
  overflow: hidden;
  background-color: var(--wp--preset--color--sm-accent);
}
.p-home_service_inner a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-home_service_inner a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.7;
}
.p-home_service_inner figcaption {
  color: var(--wp--preset--color--sm-sub-accent);
  font-size: 1.25rem;
  font-weight: bold;
  width: 100%;
  min-height: 4.5em;
  padding: 16px;
  margin: 0;
  position: absolute;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 0 0 10px 10px;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}
.p-home_service_inner figcaption::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 16px;
  width: 16px;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--wp--preset--color--sm-sub-accent);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - 2px) 50%;
          transform-origin: calc(100% - 2px) 50%;
}
.p-home_service_inner figcaption::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 32px;
  height: 2px;
  background-color: var(--wp--preset--color--sm-sub-accent);
}

.p-home_news_list .c-entries {
  border-top: none;
}
.p-home_news_list .c-entries__item {
  border-bottom: none;
}
.p-home_news_list .c-entries__item > a {
  padding: calc(var(--entries--gap) * 0.8) !important;
}
.p-home_news_list .c-entries__item > a:hover {
  background-color: #E8F3FF;
  color: var(--wp--preset--color--sm-accent);
}
.p-home_news_list .c-entry-summary__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.p-home_news_list .c-entry-summary__header {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.p-home_news_list .c-entry-summary__meta {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  margin-top: 0;
}
.p-home_news_list .c-entry-summary__meta .c-meta {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.p-home_news_list .c-entry-summary__meta .c-meta__item--published {
  font-size: 1rem;
  font-weight: bold;
  color: var(--wp--preset--color--sm-sub-accent);
  margin-right: 1em;
}
.p-home_news_list .c-entry-summary__meta .c-entry-summary__term {
  color: var(--wp--preset--color--sm-sub-accent);
  text-align: center;
  background-color: #fff;
  border: 1px solid var(--wp--preset--color--sm-sub-accent);
  border-radius: 10px;
  min-width: 8em;
  padding-top: 2px;
  padding-bottom: 2px;
}

@media screen and (max-width: 950px) and (min-width: 640px) {
  .p-home_service_inner figcaption::before {
    top: calc(80% - 1px);
  }
  .p-home_service_inner figcaption::after {
    top: 80%;
  }
}
@media screen and (max-width: 950px) {
  .p-home_service_inner {
    gap: 8px !important;
  }
  .p-home_service_inner figure a {
    max-height: 500px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-home_service_inner figure img {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .home .smb-section__subtitle {
    font-size: 2.5rem;
  }
  .home .smb-section__title {
    font-size: 1.5rem;
  }
  .p-home_mv .p-home_mv_copy {
    max-width: 270px;
  }
  .p-home_message_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-home_news_list .c-entry-summary__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5em;
  }
}
/* ==================================================

 5.下層ページ

 ================================================== */
/* 投稿者と更新日時を非表示 */
.c-meta__item--author {
  display: none !important;
}

body:not(.home) .c-page-header {
  background-color: #eee;
}

.p-service_details_list .smb-items__item {
  border-radius: 10px;
  height: 100%;
  position: relative;
}
.p-service_details_list .smb-items__item:hover {
  background-color: #F3F8F3 !important;
}
.p-service_details_list .smb-items__item::after {
  content: "";
  display: block;
  width: 12px;
  height: 20px;
  background: url(../img/icon_chevron_right.svg) no-repeat center;
  position: absolute;
  right: 24px;
  bottom: 24px;
}
.p-service_details_list .smb-items__item__figure img {
  border-radius: 10px 10px 0 0;
}

@media screen and (max-width: 639px) {
  .c-achievements_list .wp-block-button {
    width: calc(50% - 8px);
  }
}
/* ==================================================

 6.採用

 ================================================== */
.p-recruit_point .p-recruit_point_list li {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-recruit_point .p-recruit_point_list li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 3px solid var(--wp--preset--color--sm-accent);
  border-radius: 50%;
}

.p-recruit_numerical {
  position: relative;
  border-bottom: 30px solid var(--wp--preset--color--sm-sub-accent);
}
.p-recruit_numerical .smb-section__header {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background-color: #0078CE;
  padding-bottom: 0;
  padding-top: 24px;
  min-height: 96px;
}
.p-recruit_numerical .smb-section__header .c-container {
  max-width: 1080px !important;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.p-recruit_numerical .smb-section__header .smb-section__subtitle, .p-recruit_numerical .smb-section__header .smb-section__title {
  color: #fff;
  line-height: 1;
  margin-top: 8px;
}
.p-recruit_numerical .smb-section__header .smb-section__subtitle {
  font-size: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-recruit_numerical .smb-section__header .smb-section__subtitle::after {
  content: "";
  width: 80px;
  height: 2px;
  display: block;
  background-color: #fff;
}
.p-recruit_numerical .smb-section__body {
  margin-top: 0;
}

.p-recruit_faq .smb-section__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
}
.p-recruit_faq .smb-section__header::before {
  content: "";
  width: 100%;
  height: 2px;
  display: block !important;
  background-color: var(--wp--preset--color--sm-sub-accent);
}
.p-recruit_faq .smb-section__header::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block !important;
  background-color: var(--wp--preset--color--sm-sub-accent);
}
.p-recruit_faq .smb-section__body {
  margin-top: 0;
}
.p-recruit_faq .smb-faq {
  border-top: none;
}
.p-recruit_faq .smb-faq__item {
  border-bottom: none;
  padding-bottom: 0;
}
.p-recruit_faq .smb-faq__item__answer__label, .p-recruit_faq .smb-faq__item__question__label {
  min-width: 1.25em;
  margin-right: 16px;
}
.p-recruit_faq .smb-faq__item__question, .p-recruit_faq .smb-faq__item__answer {
  padding: 32px 16px 16px;
}
.p-recruit_faq .smb-faq__item__question {
  background: #E8F3FF;
  border-bottom: 5px solid #ceecdd;
  margin-bottom: 0;
}

.p-benefits_list .smb-items__item {
  height: 100%;
}
.p-benefits_list .smb-items__item .smb-items__item__body {
  height: 100%;
}
.p-benefits_list .smb-items__item .smb-items__item__body .smb-box {
  height: 100%;
}
.p-benefits_list .smb-items__item .smb-items__item__body .smb-box p {
  line-height: 1.3;
}

@media screen and (max-width: 639px) {
  .p-recruit_point .smb-section__title {
    font-size: 2rem;
  }
  .p-recruit_point .p-recruit_point_list li {
    font-size: 1.125rem;
  }
  .p-recruit_know .wp-block-heading {
    font-size: 2rem;
  }
  .p-recruit_benefit .wp-block-heading {
    font-size: 2rem;
  }
}
@media screen and (min-width: 640px) {
  .p-recruit_point .smb-section__title {
    font-size: 3.375rem;
  }
  .p-recruit_point .p-recruit_point_list li {
    font-size: 1.5rem;
  }
  .p-recruit_know .wp-block-heading {
    font-size: 4.5rem;
  }
  .p-recruit_numerical .smb-section__header {
    padding-top: 56px;
  }
  .p-recruit_numerical .smb-section__header .smb-section__subtitle {
    font-size: 2.5rem;
  }
  .p-recruit_numerical .smb-section__header .smb-section__subtitle::after {
    width: 240px;
  }
  .p-recruit_numerical .smb-section__header .smb-section__title {
    font-size: 5rem;
  }
  .p-recruit_benefit .wp-block-heading {
    font-size: 2.5rem;
  }
  .p-recruit_faq .smb-section__title {
    font-size: 4.5rem;
  }
  .p-recruit_faq .smb-faq__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
/* 20260122　横並びステップで3カラムをきれいに表示させる,スマホ矢印を縦に */

.step3column .smb-step__body {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

@media screen and (max-width: 567px) {
:root :where(.smb-step.is-style-snow-monkey-143920) > .smb-step__body > .smb-step__item:not(:last-child) > .smb-step__item__title::after {
    transform: rotate(90deg);
}
  }
 
  /*20260122 メディアとテキストスマホ版不具合  */

  .smb-media-text>.c-row {
    flex-wrap: nowrap;
  }