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

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

=================================================== */
.dscf7-captcha-container {
  margin-right: auto;
  margin-left: auto;
  width: 300px;
  max-width: 100%;
}
.dscf7-captcha-container span.wpcf7-form-control-wrap input {
  height: 3em;
}

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

汎用クラス

================================================== */
/* 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;
}

/* 表示切り替え */
.is_pc {
  display: block !important;
}

.is_sp {
  display: none !important;
}

/* 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;
}

@media screen and (max-width: 640px) {
  .c-column_reverse_sp {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .is_pc {
    display: none !important;
  }
  .is_sp {
    display: block !important;
  }
}
.u-font_s {
  font-size: 0.8em !important;
}

.u-font_serif {
  font-family: serif !important;
}

.u-section_full {
  margin: 0 calc(50% - 50vw) !important;
  width: 100vw !important;
}

.u-filter_white {
  -webkit-filter: brightness(0) invert(1) !important;
  filter: brightness(0) invert(1) !important;
}

.u-drop_shadow {
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.u-drop_shadow a {
  display: block;
}

.u-hight_s {
  height: 10em !important;
}

/*HoneyPot用スタイル */
.u-hidden {
  position: absolute !important;
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.u-hidden::after {
  content: "" !important;
  display: none !important;
}

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

パーツ

================================================== */
/* ボタン
---------------------------------------- */
.c-btn_chevron_right a {
  position: relative;
}
.c-btn_chevron_right a::before, .c-btn_chevron_right a::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 1em;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: currentColor;
  -webkit-transform-origin: calc(100% - 0.5px) 50%;
          transform-origin: calc(100% - 0.5px) 50%;
}
.c-btn_chevron_right a::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-btn_chevron_right a::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-btn_arrow_right a {
  position: relative;
}
.c-btn_arrow_right a::after {
  content: "→";
  color: currentColor;
  display: inline-block;
  position: absolute;
  right: 1em;
}

.c-btn_chevron_down .smb-btn {
  position: relative;
}
.c-btn_chevron_down .smb-btn::before, .c-btn_chevron_down .smb-btn::after {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 1px;
  height: 10px;
  border-radius: 9999px;
  background-color: currentColor;
  -webkit-transform-origin: 50% calc(100% - 0.5px);
          transform-origin: 50% calc(100% - 0.5px);
}
.c-btn_chevron_down .smb-btn::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-btn_chevron_down .smb-btn::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-btn_entry {
  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;
}
.c-btn_entry a {
  color: #fff;
  background-color: #17b233;
  border-radius: 3em;
  padding: 0.75em 3em;
  min-width: 300px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

/* セクション
---------------------------------------- */
.c-section_radius .smb-section__fixed-background {
  border-radius: 20px;
}

.c-section_padding_inline_xl .c-container {
  padding-left: calc(var(--_container-margin-left) * 1.5);
  padding-right: calc(var(--_container-margin-right) * 1.5);
}

/* テーブル
---------------------------------------- */
/* テーブル_左見出し */
.table_rows tbody th {
  background-color: rgba(217, 246, 231, 0.231372549) !important;
  color: #333 !important;
  width: 30%;
}

.table_rows tbody td {
  vertical-align: top;
}

.table_rows tbody td:first-child {
  font-weight: 700;
  background-color: #e1e1e1;
  color: #333 !important;
}

@media print, screen and (min-width: 1200px) {
  .table_rows tbody th {
    width: 300px;
  }
  .table_rows tbody 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 tbody th, .table_rows tbody td {
    display: block;
    width: 100%;
  }
}
/* Contact Form 7
---------------------------------------- */
.p-contactform {
  max-width: 100%;
}

.p-contactform input[type=text].full {
  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;
}

.p-contactform span.wpcf7-not-valid-tip {
  margin-top: 2px;
  color: #e00;
}

.p-contactform p {
  margin-bottom: 0;
}

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 {
  display: inline-block;
  margin-left: 0.3rem;
  color: #ed1c24;
  content: "*";
}

.wpcf7-submit {
  font-weight: bold;
  margin-left: 72px;
}

@media print, screen and (max-width: 639px) {
  .p-contactform {
    padding-left: 0;
  }
  .p-contactform .wpcf7-list-item {
    margin-bottom: 0.8rem;
    display: block !important;
  }
}
/* スライダー
---------------------------------------- */
.slider-wrapper {
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
}

.slider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
  -webkit-animation: scroll 30s linear infinite;
          animation: scroll 30s linear infinite;
}

.slider img {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 16.66vw; /* PC時：6枚表示 */
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

/* PC: 6枚 */
.slider img {
  width: 16.66vw; /* 100 / 6 */
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

/* タブレット: 3枚 */
@media (max-width: 1024px) {
  .slider img {
    width: 33.33vw; /* 100 / 3 */
    aspect-ratio: 1/1;
  }
}
/* スマホ: 2枚 */
@media (max-width: 600px) {
  .slider img {
    width: 50vw; /* 100 / 2 */
    aspect-ratio: 1/1;
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* ==================================================

ヘッダー・フッター

================================================== */
/* ヘッダー
---------------------------------------- */
.l-1row-header .c-container {
  max-width: 1280px;
  position: relative;
}
.l-1row-header .c-container > .c-row .c-row__col {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 1050px) {
  .l-1row-header .c-container > .c-row {
    margin-top: 32px;
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
/* グロナビ
---------------------------------------- */
.l-header__content .p-global-nav {
  padding-bottom: var(--_padding-1);
}
.l-header__content .p-global-nav .c-navbar {
  gap: 8px;
}
.l-header__content .p-global-nav .c-navbar__item > a {
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3em;
  padding: 0.5em 1em;
  line-height: 1.3;
}

@media screen and (min-width: 1180px) {
  .l-header__content .p-global-nav .c-navbar__item > a > span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1179px) {
  .l-header__content .p-global-nav .c-navbar__item > a > span {
    font-size: 0.9em;
  }
}
@media (min-width: 1024px) {
  .l-header__content .u-invisible-lg-up {
    display: block !important;
  }
  .l-header__content .u-invisible-md-down {
    display: none !important;
  }
}
@media (min-width: 1050px) {
  .l-header__content .u-invisible-lg-up {
    display: none !important;
  }
  .l-header__content .u-invisible-md-down {
    display: block !important;
  }
}
/* サブナビ
---------------------------------------- */
.p-header-sub-nav a {
  font-size: 1rem;
  font-weight: bold;
}
.p-header-sub-nav a:hover {
  text-decoration: none !important;
}

.c-sub-nav .c-navbar__item a {
  line-height: 1.3;
}
.c-sub-nav .c-sub-nav_contact a {
  color: #fff;
  padding: 0.5em 1em;
  background-color: #00459B;
  border-radius: 3em;
}
.c-sub-nav .c-sub-nav_tel a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #00459B;
  font-size: 1.75em;
  letter-spacing: 0.2em;
}
.c-sub-nav .c-sub-nav_tel a .c-sub-nav_tel_time {
  font-size: 0.8rem;
}
.c-sub-nav .c-sub-nav_instagram {
  max-width: 40px;
  aspect-ratio: 1/1;
}

@media print, screen and (min-width: 1024px) {
  .u-invisible-md-down #menu-header_sub_nav {
    position: absolute;
    right: calc(var(--_container-margin) + env(safe-area-inset-right));
    top: 20px;
    gap: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
/* フッター
---------------------------------------- */
.l-footer {
  border-top: none;
}
.l-footer .l-footer-widget-area {
  padding-top: 0;
  padding-bottom: 24px !important;
}
.l-footer .l-footer-widget-area__item {
  margin-bottom: 0 !important;
}
.l-footer .l-footer__footer {
  background-color: #7AB9E5;
  text-align: center;
}
.l-footer .l-footer__footer .c-copyright {
  color: #fff;
}
.l-footer a:hover {
  opacity: 0.8;
}
.l-footer .p-footer_link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 639px) {
  .l-footer .smb-section__divider svg {
    max-height: 50px;
  }
  .l-footer .smb-buttons {
    gap: 1rem;
  }
  .l-footer .smb-buttons .smb-btn-wrapper {
    width: 100%;
  }
  .l-footer .smb-buttons .smb-btn-wrapper .smb-btn {
    width: 100%;
    line-height: 3;
  }
  .l-footer .c-footer_social_list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-footer .c-footer_social_list .c-bnr_line img {
    width: 100% !important;
  }
  .l-footer .c-footer_certification_list {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
/* フッターナビ
---------------------------------------- */
.widget_nav_menu a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.p-footer_nav .widget_nav_menu .menu > .menu-item a {
  line-height: 1.6;
  padding-left: 8px;
  display: block;
  font-size: 0.8rem;
}
.p-footer_nav .widget_nav_menu .menu > .menu-item > a {
  font-weight: bold;
  font-size: 1rem;
  padding-bottom: 0.5em;
}
.p-footer_nav .widget_nav_menu .children-expander {
  display: none;
}
.p-footer_nav .widget_nav_menu .sub-menu {
  display: block;
  border-top: 0;
  border-bottom: 0;
  margin-top: 0;
  padding-top: 0;
}
.p-footer_nav .widget_nav_menu .sub-menu li + li {
  margin-top: 8px;
}
.p-footer_nav .widget_nav_menu .sub-menu a:before {
  content: "- ";
}

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

下層ページ

================================================== */
/*下層ページのヘッダーh1背景色*/
.c-page-header {
  color: #fff;
  background-color: #7AB9E5;
  padding-bottom: calc(var(--_padding2) * 0.8);
  padding-top: calc(var(--_padding2) * 0.8);
}

/*見出しデザイン*/
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3 !important;
}

body:not(.home):not(.recruit) .p-entry-content h2:not(.p-related-posts__title.c-entry-aside__title, .c-entry-summary__title, .smb-section__title) {
  color: var(--wp--preset--color--sm-accent);
  padding: 1em 2em;
  position: relative;
}
body:not(.home):not(.recruit) .p-entry-content h2:not(.p-related-posts__title.c-entry-aside__title, .c-entry-summary__title, .smb-section__title)::before, body:not(.home):not(.recruit) .p-entry-content h2:not(.p-related-posts__title.c-entry-aside__title, .c-entry-summary__title, .smb-section__title)::after {
  position: absolute;
  width: 30px;
  height: 30px;
  content: "";
  display: block;
}
body:not(.home):not(.recruit) .p-entry-content h2:not(.p-related-posts__title.c-entry-aside__title, .c-entry-summary__title, .smb-section__title):before {
  border-left: solid 3px;
  border-top: solid 3px;
  top: 0;
  left: 0;
}
body:not(.home):not(.recruit) .p-entry-content h2:not(.p-related-posts__title.c-entry-aside__title, .c-entry-summary__title, .smb-section__title):after {
  border-right: solid 3px;
  border-bottom: solid 3px;
  bottom: 0;
  right: 0;
}
body:not(.home):not(.recruit) .p-entry-content .smb-section__header:has(h2) {
  color: var(--wp--preset--color--sm-accent);
  padding: 1em 2em;
  position: relative;
}
body:not(.home):not(.recruit) .p-entry-content .smb-section__header:has(h2)::before, body:not(.home):not(.recruit) .p-entry-content .smb-section__header:has(h2)::after {
  position: absolute;
  width: 40px;
  height: 40px;
  content: "";
  display: block;
}
body:not(.home):not(.recruit) .p-entry-content .smb-section__header:has(h2):before {
  border-left: solid 3px;
  border-top: solid 3px;
  top: 0;
  left: 0;
}
body:not(.home):not(.recruit) .p-entry-content .smb-section__header:has(h2):after {
  border-right: solid 3px;
  border-bottom: solid 3px;
  bottom: 0;
  right: 0;
}
body:not(.home):not(.recruit) .p-entry-content h3:not(.p-related-posts__title.c-entry-aside__title, .c-entry-summary__title) {
  color: var(--wp--preset--color--sm-accent);
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 1em;
}
body:not(.home):not(.recruit) .p-entry-content h4:not(.p-related-posts__title.c-entry-aside__title, .c-entry-summary__title) {
  color: var(--wp--preset--color--sm-accent);
  border-bottom: 1px solid #7AB9E5;
  padding: 0.75em;
}
body:not(.home):not(.recruit) .p-entry-content h5:not(.p-related-posts__title.c-entry-aside__title, .c-entry-summary__title) {
  color: #7AB9E5;
}

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

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

採用

================================================== */
.recruit .smb-section__title {
  color: #17B233;
  font-size: 1.6rem;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8em;
  border-bottom: 1px dashed #17B233;
}
.recruit .smb-section__title::before, .recruit .smb-section__title::after {
  content: "";
  display: inline-block;
  margin: 0;
}
.recruit .smb-section__title::before {
  width: 2.5em;
  height: 2.5em;
  background-image: url("../img/icon_cabbage.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.recruit .smb-section__title::after {
  width: 1.375em;
  height: 3em;
  background-image: url("../img/icon_sparkling.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: unset !important;
}
.recruit h3 {
  color: #17B233;
  border-left: 5px solid #17B233;
  padding-left: 0.5em;
}
.recruit a:hover {
  opacity: 0.8;
}
.recruit .p-recruit_mv .p-recruit_mv_video video {
  border-radius: 20px;
}
.recruit .p-recruit_number_wrap .p-recruit_number {
  line-height: 1.3;
}
.recruit .p-recruit_number_wrap .p-recruit_number strong {
  font-size: 1.75em !important;
}
.recruit .c-toggle_btn strong,
.recruit .c-toggle_btn_close strong,
.recruit .p-recruit_benefits_btn_more strong {
  cursor: pointer;
  color: #227412;
  border: 1px solid #227412;
  padding: 0.8em 4em;
  border-radius: 3em;
  position: relative;
  max-width: 100%;
}
.recruit .c-toggle_btn strong:hover,
.recruit .c-toggle_btn_close strong:hover,
.recruit .p-recruit_benefits_btn_more strong:hover {
  opacity: 0.8;
}
.recruit .c-toggle_btn strong::before, .recruit .c-toggle_btn strong::after,
.recruit .p-recruit_benefits_btn_more.close strong::before,
.recruit .p-recruit_benefits_btn_more.close strong::after {
  content: "";
  position: absolute;
  right: 1.5em;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 1px;
  height: 10px;
  border-radius: 9999px;
  background-color: currentColor;
  -webkit-transform-origin: 50% calc(100% - 0.5px);
          transform-origin: 50% calc(100% - 0.5px);
}
.recruit .c-toggle_btn strong::before,
.recruit .p-recruit_benefits_btn_more.close strong::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.recruit .c-toggle_btn strong::after,
.recruit .p-recruit_benefits_btn_more.close strong::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.recruit .c-toggle_btn_close strong::before, .recruit .c-toggle_btn_close strong::after,
.recruit .p-recruit_benefits_btn_more.open strong::before,
.recruit .p-recruit_benefits_btn_more.open strong::after {
  content: "";
  position: absolute;
  right: 1.5em;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 1px;
  height: 10px;
  border-radius: 9999px;
  background-color: currentColor;
  -webkit-transform-origin: 50% 0.5px;
          transform-origin: 50% 0.5px;
}
.recruit .c-toggle_btn_close strong::before,
.recruit .p-recruit_benefits_btn_more.open strong::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.recruit .c-toggle_btn_close strong::after,
.recruit .p-recruit_benefits_btn_more.open strong::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.recruit .c-toggle_details,
.recruit .c-toggle_gallery {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.recruit .c-toggle_details.open,
.recruit .c-toggle_gallery.open {
  opacity: 1;
}
.recruit .c-toggle_btn_close_container {
  display: none;
}
.recruit .p-recruit_benefits_list .p-recruit_benefits_item.hidden {
  display: none;
}
.recruit .p-recruit_faq_list {
  border-top: none;
}
.recruit .p-recruit_faq_list .smb-faq__item {
  border-bottom: none;
  padding: 14px 0;
}
.recruit .p-recruit_faq_list .smb-faq__item__answer,
.recruit .p-recruit_faq_list .smb-faq__item__question {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1em;
  padding-right: 1em;
  padding-left: 1em;
}
.recruit .p-recruit_faq_list .smb-faq__item__question {
  background-color: #ECFEDB;
  margin-bottom: 8px;
}
.recruit .p-recruit_faq_list .smb-faq__item__answer__label,
.recruit .p-recruit_faq_list .smb-faq__item__question__label {
  margin: 0;
  height: 100%;
}
.recruit .p-recruit_faq_list .smb-faq__item__answer__body,
.recruit .p-recruit_faq_list .smb-faq__item__question__body {
  height: 100%;
  padding: 8px 4px;
}
.recruit .p-recruit_btn_cv {
  position: fixed;
  z-index: 999;
  bottom: 0;
  width: 100%;
}
.recruit .p-recruit_btn_cv .wp-block-column:hover {
  opacity: 0.9;
}
.recruit .l-footer .smb-section svg path {
  fill: #FEF9F6;
}

@media screen and (max-width: 639px) {
  .recruit .smb-section__title {
    font-size: 1.25rem;
  }
  .recruit .smb-section__title::before {
    width: 2em;
    height: 2em;
  }
  .recruit .smb-section__title::after {
    width: 1em;
    height: 2.5em;
  }
  .recruit .p-recruit_mv {
    padding-top: var(--wp--preset--spacing--40) !important;
  }
  .recruit .c-toggle_btn strong,
  .recruit .c-toggle_btn_close strong,
  .recruit .p-recruit_benefits_btn_more strong {
    display: block;
    padding-left: 2em;
    padding-right: 2em;
    line-height: 1.3;
  }
}
.c-job_term_list {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
.c-job_term_list .c-job_term_item {
  list-style: none;
  margin: 0;
}
.c-job_term_list .c-job_term_item a {
  position: relative;
  display: block;
  text-align: center;
  padding: 0.5em 2.5em;
  background-color: #47B232;
  border-radius: 3em;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.c-job_term_list .c-job_term_item a::after {
  content: "→";
  position: absolute;
  right: 16px;
}

.c-place_term {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.c-place_term::before, .c-place_term::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.c-place_term::before {
  display: inline-block;
  left: 1em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 137.25 189"><path fill="%2317b233" d="M68.63,0C30.73,0,0,30.73,0,68.63s68.63,120.37,68.63,120.37c0,0,68.62-82.47,68.62-120.37S106.53,0,68.63,0ZM68.63,112.61c-24.03,0-43.51-19.48-43.51-43.51s19.48-43.51,43.51-43.51,43.51,19.48,43.51,43.51-19.48,43.51-43.51,43.51Z"/></svg>') no-repeat center/contain;
  width: 1em;
  height: 1.5em;
}
.c-place_term::after {
  top: calc(50% - 2px);
  right: 1.5em;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
          transform: translate(50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #177827;
  border-right: 1px solid #177827;
}
.c-place_term select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 380px;
  height: 3em;
  padding: 0.4em calc(2em + 30px);
  border: 2px solid #47B232;
  border-radius: 25px;
  background-color: #fff;
  color: #227412;
  font-size: 1em;
  cursor: pointer;
}
.c-place_term option {
  text-align: center;
}

@media screen and (max-width: 639px) {
  .c-job_term_list {
    grid-template-columns: 1fr;
  }
  .c-place_term {
    width: 100%;
  }
  .c-place_term select {
    width: 100%;
    min-width: unset;
  }
}
.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: #17B233;
  margin-right: 16px;
}
.c-timeline_table td:first-child::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: #17B233;
  position: absolute;
  left: 15px;
}

.post-type-archive-job .c-entry-summary__body, .tax-job_category .c-entry-summary__body, .tax-place_category .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;
}
.post-type-archive-job .c-entry-summary__header, .tax-job_category .c-entry-summary__header, .tax-place_category .c-entry-summary__header {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.post-type-archive-job .c-entry-summary__meta, .tax-job_category .c-entry-summary__meta, .tax-place_category .c-entry-summary__meta {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  margin-top: 0;
}
.post-type-archive-job .c-meta__item--published, .tax-job_category .c-meta__item--published, .tax-place_category .c-meta__item--published {
  display: none;
}
.post-type-archive-job .c-meta__item--categories, .tax-job_category .c-meta__item--categories, .tax-place_category .c-meta__item--categories {
  gap: 8px;
}
.post-type-archive-job .c-entry-summary__term, .tax-job_category .c-entry-summary__term, .tax-place_category .c-entry-summary__term {
  min-width: 13em;
  text-align: center;
}
.post-type-archive-job .c-entry-summary__term--employment_type_category, .tax-job_category .c-entry-summary__term--employment_type_category, .tax-place_category .c-entry-summary__term--employment_type_category {
  background-color: #fff;
  color: #00459B;
  outline: 1px solid #00459B;
  outline-offset: -1px;
}