@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap");
.swiper-slide {
  /* 表示させる高さの調整 */
  position: relative;
  height: 95vh;
  overflow: hidden;
}
.swiper-slide .main-visual {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 9s ease;
}
.swiper-slide-active .main-visual {
  transform: scale(1);
}
.swiper-slide-active .hero__title {
  transform: translateX(-50%);
  opacity: 1;
}
.swiper-slide-active .hero__btn {
  transform: translateX(-50%);
  opacity: 1;
}

.hero {
  overflow: hidden;
}
.hero__title {
  position: absolute;
  top: 46%;
  left: 50%;
  color: #fff;
  text-align: center;
  width: 95vw;
  transform: translate(-50%, 20px);
  transition: opacity 1.2s ease 1.5s, transform 1.2s ease 1.5s;
  z-index: 10000;
}
.hero__title p {
  font-size: 3.5rem;
  letter-spacing: 0.1rem;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
  line-height: 2em;
  font-weight: 500;
  font-family: "Shippori Mincho B1", serif;
}
.hero__title span {
  display: block;
}
.hero__btn {
  position: absolute;
  bottom: 42%;
  left: 50%;
  text-align: center;
  color: #fff;
  transform: translate(-50%, 20px);
  transition: opacity 1.2s ease 2.5s, transform 1.2s ease 2.5s;
  opacity: 0;
  z-index: 1;
  width: 95vw;
}
.hero__btn p {
  font-size: 40px;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
  line-height: 2em;
  font-weight: 500;
  font-family: "Shippori Mincho B1", serif;
}

.swiper-slide .top-img {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.hero__title br {
  display: none;
}

.sub_title {
  font-size: 22px !important;
  letter-spacing: 0.15rem !important;
}

.top_img_first_sp {
  display: none;
}

.top_img_second_sp {
  display: none;
}

/* *****************************************************************

Stylesheet: ベーススタイル（全て）に適応

******************************************************************/
/* スタッフ詳細ページ年収箇所 */
.member_syo_nen_text {
  margin-top: 5px !important;
}

.member-template-default .c-breadcrumbs .c-breadcrumbs__item:last-of-type {
  display: none;
}

.point3 {
  background: linear-gradient(to right, #1d0c86, rgba(29, 12, 134, 0.9), rgba(26, 20, 142, 0.9), rgba(2, 75, 196, 0.9));
  color: #f3f3f3;
  padding-left: 1% !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

.point3_long {
  background: linear-gradient(to right, #1d0c86, rgba(29, 12, 134, 0.9), rgba(26, 20, 142, 0.9), rgba(2, 75, 196, 0.9));
  color: #f3f3f3;
}

/* ノーマルボタン */
.button a {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  text-decoration: none;
  display: block;
  max-width: 300px;
  background: #025b8f;
  padding: 10px 30px;
  font-family: "Noto Sans Japanese";
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
  text-decoration: none;
  outline: none;
  transition: ease 0.2s;
}

.button a span {
  position: relative;
  z-index: 3;
  color: #f3f3f3;
}

.button a:hover span {
  color: #fff;
}

.bgleft:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #333;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.button a:after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid #f3f3f3;
  border-right: 3px solid #f3f3f3;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.button a:hover:after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
  z-index: 10;
}

/* センターボタン */
.button_center a {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  text-decoration: none;
  display: block;
  max-width: 350px;
  background: #025b8f;
  padding: 10px 30px;
  font-family: "Noto Sans Japanese";
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
  text-decoration: none;
  outline: none;
  transition: ease 0.2s;
  margin: 0 auto;
}

.button_center a span {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 1.1rem;
}

.button_center a:hover span {
  color: #f3f3f3;
}

.button_center .bgleft:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #333;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.button_center .bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.button_center a:after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.button_center a:hover:after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid #f3f3f3;
  border-right: 3px solid #f3f3f3;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
  z-index: 10;
}

.hero__title_sp {
  display: none !important;
}

.menu-item a span {
  line-height: 1.4rem;
}

.pc_img {
  display: block;
}

.sp_img {
  display: none;
}

h3 {
  padding-left: 1% !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

a {
  text-decoration: none;
}

figure {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.c-entry__header {
  display: none;
}

.smb-section__background-text__text {
  letter-spacing: 0.2rem;
}

.wp-profile-box {
  display: none;
}

.back_color_section span {
  padding: 8px 12px;
}

.padding_top_section {
  padding-top: 0px;
}

header {
  opacity: 0.9 !important;
}

.sub_page_under_line {
  border-bottom: solid 1px #333;
  padding-bottom: 5px;
}

.c-drawer__item {
  border-bottom: solid 1px #f3f3f3;
}

.c-navbar__subitem {
  border-bottom: solid 1px #f3f3f3;
}

.c-navbar__submenu {
  min-width: 280px !important;
}

.c-page-header {
  height: 350px !important;
}

/* タイトルのデザイン*/
.greeting_title_text::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  margin-right: 8px;
  background-color: #000;
  transform: translateY(-5px);
}

/* カーテンアクション */
.animation-target {
  position: relative;
  overflow: hidden;
}

.animation-target > a,
.animation-target > img {
  opacity: 0;
}

@keyframes showElements {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
.animation-target.show > a,
.animation-target.show > img {
  animation: showElements 0.01s 0.9s forwards;
}

.animation-target::before {
  content: "";
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3 !important;
  width: 100%;
  height: 100%;
  background-color: #2a2828 !important;
  opacity: 1 !important;
  transform: translateX(-100%);
}

@keyframes showMask {
  0% {
    transform: translateX(-100%);
  }
  45%, 55% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
.animation-target.show::before {
  animation: showMask 1.8s forwards;
}

/* 下から出てくる動き */
.slide-bottom {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s 0s ease-out;
}

/* 左からフェードイン */
.slide-left {
  opacity: 0;
  transform: translate(-80px, 0);
  transition: all 1s ease-out;
}

/* 右からフェードイン */
.slide-right {
  opacity: 0;
  transform: translate(80px, 0);
  transition: all 1s ease-out;
}

.top_service .wp-block-snow-monkey-blocks-items-item-free {
  padding-left: 0px !important;
  padding-right: 0px !important;
  margin-bottom: 0px !important;
}

.top_service .c-container {
  margin: 0px !important;
  max-width: 100%;
  padding: 0px !important;
}

/* フッター */
.l-footer-widget-area {
  background-color: #08315c;
  text-align: center;
  transition: all 0.8s;
  padding-top: 0PX !important;
}

.l-footer-widget-area a {
  color: #fff;
  transition: all 0.8s;
}

.l-footer-widget-area img {
  text-align: left !important;
}

.c-copyright {
  background-color: #08315c !important;
}

.wp-block-page-list {
  padding-left: 0px;
}

.l-footer-widget-area .has-text-align-left {
  margin-top: 0px !important;
  padding-bottom: 20px;
}

.l-footer-widget-area .has-text-align-left span {
  padding-top: 20px !important;
}

.last_section_button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #08315c;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px !important;
  z-index: 100000 !important;
}

.footer_fidex_right img {
  width: 35px;
  height: auto;
  text-align: center;
}

.footer_fidex_right .smb-items__item__figure {
  margin: 0px !important;
}

.footer_fidex_right .smb-items__item__content {
  margin-top: 1px !important;
  color: #fff;
}

.footer_fidex_left img {
  width: 35px;
  height: auto;
  text-align: center;
}

.footer_fidex_left .smb-items__item__figure {
  margin: 0px !important;
}

.footer_fidex_left .smb-items__item__content {
  margin-top: 1px !important;
  color: #f3f3f3;
}

.footer_fidex_left {
  background-color: #06c755;
  color: #f3f3f3;
  padding-top: 2px !important;
}

.l-footer-widget-area p {
  color: #fff;
}

.footer_link {
  margin-top: 10px !important;
}

.c-row__col--lg-1-1 {
  padding: 0px !important;
}

footer .c-fluid-container {
  padding: 0px !important;
}

.footer_contact_section a:hover {
  color: #000000 !important;
}

.l-footer-widget-area__item {
  margin-bottom: 10px !important;
}

.footer_botom_section {
  padding-top: 45px;
}

footer .c-fluid-container .c-row--lg-margin-l {
  --_gap: var(--_margin0);
}

footer .c-row--margin {
  --_gap: var(--_margin0);
}

.footer_botom_section {
  padding-left: 20px;
}

.footer_entry_bu a {
  width: 350px !important;
}

/* 名前消し */
.c-meta__item--author {
  display: none !important;
}

/* 3つの理由 */
.top_first_title::before {
  position: absolute;
  background: #000;
  content: "";
  width: 50px;
  height: 3px;
  left: 0;
  top: -10px;
  margin: 0;
}

.top_first_title2 h2::before {
  position: absolute;
  background: #000;
  content: "";
  width: 50px;
  height: 3px;
  left: 48%;
  top: -10px;
  margin: 0;
}

.rec_page_banner .smb-items__banner__body {
  padding: 23px 15px;
}

.service_pege_section {
  padding: 0px !important;
}

.service_pege_section .c-container {
  margin: 0px !important;
  padding: 0px !important;
  max-width: 100% !important;
}

.top_first_title {
  margin-top: 1px !important;
}

.service_pege_section p {
  margin-top: 7px !important;
}

.service_page_img_section {
  padding: 0px !important;
}

.top_first_right {
  padding-left: 55px !important;
}

.top_first_left {
  padding-right: 55px !important;
}

/* 社員紹介関連 */
.member-template-default .l-header {
  background-color: #fff;
}

.member-template-default header a span {
  color: #000;
}

.member-template-default .p-breadcrumbs-wrapper {
  padding-top: 80px !important;
}

.member_section .c-entry-summary__figure:before {
  padding-top: 110% !important;
}

.post-type-archive-member .c-entry-summary__figure:before {
  padding-top: 110% !important;
}

.post-type-archive-member .c-entry-summary__title {
  display: none;
}

.post-type-archive-member .c-meta__item--published {
  display: none;
}

.page-id-207 .c-entry-summary__title {
  display: block !important;
}

.tax-member_cate .c-entry-summary__figure:before {
  padding-top: 110% !important;
}

.member_section .c-entry-summary__title {
  display: none;
}

.c-entry-summary__content {
  font-weight: 700;
  margin-top: 6px;
}

.c-entry-summary__header {
  margin-bottom: 0px !important;
}

.c-entry-summary__figure {
  margin-bottom: 9px !important;
}

/* カスタムフィールド関連 */
.member_section .property-info {
  display: none;
}

.post-type-archive-member .property-info {
  display: none;
}

.tax-member_cate .property-info {
  display: none;
}

.recruitment_informat-template-default .c-prev-next-nav {
  display: none;
}

/* トップページビジョン箇所 */
.top_vision_sub_title {
  margin-top: 10px !important;
}

.top_page_first_section p {
  margin-top: 10px !important;
}

/* 仕事を知るページ */
.job_left_banner .smb-items__banner__body {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

.job_left_banner .smb-items__banner__body:before {
  width: 11px;
  height: 11px;
  position: absolute;
  background: none;
  right: 32px;
  top: -3px;
  bottom: 0;
  margin: auto;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
  content: "";
  transform: rotate(45deg);
}

.job_center_banner .smb-items__banner__body {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

.job_center_banner .smb-items__banner__body:before {
  width: 11px;
  height: 11px;
  position: absolute;
  background: none;
  right: 32px;
  top: -3px;
  bottom: 0;
  margin: auto;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
  content: "";
  transform: rotate(45deg);
}

.point_h3 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  padding-left: 50px !important;
}

.job_first_title:before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  background: url(/wp-content/uploads/2025/01/jjd9f.jpg);
  top: 2px;
  left: 16px;
  bottom: 0;
  margin: auto;
  border: 4px solid #f7f7f7;
  border-radius: 50%;
}

.job_first_title:after {
  background: radial-gradient(#c20000 24%, transparent 0);
  background-size: 12px 12px;
  background-position: 0 2px;
  content: "";
  display: inline-block;
  height: 50%;
  width: 12px;
  position: absolute;
  left: 19px;
  bottom: 0;
}

.job_first_section_section {
  padding: 0px !important;
}

.job_first_section_section .c-container {
  padding: 0px !important;
}

.job_first_section_section::after {
  background: radial-gradient(#c20000 24%, transparent 0);
  background-size: 12px 12px;
  background-position: 0 2px;
  content: "";
  display: inline-block;
  height: 100%;
  width: 12px;
  position: absolute;
  left: 19px;
  top: 0;
  z-index: -1;
}

.job_first_section_first {
  padding-left: 50px !important;
}

.job_first_section_second {
  margin-left: 50px !important;
}

.job_second_title:before {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  background: url(/wp-content/uploads/2025/01/jjd9f.jpg);
  top: 2px;
  left: 16px;
  bottom: 0;
  margin: auto;
  border: 4px solid #f7f7f7;
  border-radius: 50%;
  z-index: 10;
}

.job_second_title:after {
  background: radial-gradient(#c20000 24%, transparent 0);
  background-size: 12px 12px;
  background-position: 0 2px;
  content: "";
  display: inline-block;
  height: 101%;
  width: 12px;
  position: absolute;
  left: 19px;
  bottom: 0;
}

.job_third_title:before {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  background: url(/wp-content/uploads/2025/01/jjd9f.jpg);
  top: 2px;
  left: 16px;
  bottom: 0;
  margin: auto;
  border: 4px solid #f7f7f7;
  border-radius: 50%;
  z-index: 10;
}

.job_third_title:after {
  background: radial-gradient(#c20000 24%, transparent 0);
  background-size: 12px 12px;
  background-position: 0 2px;
  content: "";
  display: inline-block;
  height: 101%;
  width: 12px;
  position: absolute;
  left: 19px;
  bottom: 0;
}

.job_forth_title:before {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  background: url(/wp-content/uploads/2025/01/jjd9f.jpg);
  top: 2px;
  left: 16px;
  bottom: 0;
  margin: auto;
  border: 4px solid #f7f7f7;
  border-radius: 50%;
  z-index: 10;
}

.job_forth_title:after {
  background: radial-gradient(#c20000 24%, transparent 0);
  background-size: 12px 12px;
  background-position: 0 2px;
  content: "";
  display: inline-block;
  height: 101%;
  width: 12px;
  position: absolute;
  left: 19px;
  bottom: 0;
}

.entry_padding_top_section {
  padding-top: 0px;
  padding-bottom: 0px;
}

.entry_first_section {
  padding-top: 20px;
}

/* ACF設定 */
.select_industry {
  display: flex;
  font-weight: 700;
}

.select_industry dt {
  font-weight: 400;
}

.jobs_selects {
  display: flex;
  font-weight: 700;
}

.jobs_selects dt {
  font-weight: 400;
}

.hourly_wage {
  display: flex;
  font-weight: 700;
}

.hourly_wage dt {
  font-weight: 400;
}

.employment_status {
  display: flex;
  font-weight: 700;
}

.employment_status dt {
  font-weight: 400;
}

.select_industry dt:first-of-type {
  width: 83%;
}

.jobs_selects dt:first-of-type {
  width: 83%;
}

.hourly_wage dt:first-of-type {
  width: 83%;
}

.select_industry {
  padding-bottom: 5px;
}

.jobs_selects {
  padding-bottom: 5px;
}

.property-content span {
  background-color: #333;
  color: #f3f3f3;
  padding: 1px 13px;
  margin-right: 5px;
  font-size: 0.9rem;
  width: 80px;
  text-align: center;
  margin-bottom: 1px;
}

/* 関連情報 */
.p-related-posts .c-entries--rich-media {
  --entries--item-width: 33.3%!important;
}

/* 福利厚生 */
.em_box .wp-block-columns {
  margin-top: 11px !important;
}

/* 数字で知る */
.know_panel_section p {
  margin-top: 10px !important;
}

.know_panel_section .smb-panels__item__body {
  padding-bottom: 15px !important;
}

.know_panel_section img {
  width: 110px !important;
}

.point_text_height {
  line-height: 2.3rem !important;
}

/* 事業内容ページ */
.page-id-125 .l-contents__inner {
  padding-bottom: 0px !important;
}

/* FAQページ */
.page-id-123 .smb-faq {
  --smb-faq--border-color: #00456d!important;
}

/* 採用一覧ページ */
.post-type-archive-recruitment_informat .c-entry-summary__term {
  display: none;
}

/* 固定ページ */
.rec_page_section .c-entry-summary {
  position: relative;
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-bottom: 25px !important;
  padding-top: 75px !important;
  background-color: #f7f7f7;
}

.rec_page_section .c-entry-summary__title {
  background: linear-gradient(to right, #1d0c86, rgba(29, 12, 134, 0.9), rgba(26, 20, 142, 0.9), rgba(2, 75, 196, 0.9));
  color: #f3f3f3;
  margin-bottom: 9px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
}

.rec_page_section .c-entries--simple .c-entries__item, .c-entries--text .c-entries__item, .c-entries--text2 .c-entries__item {
  border-bottom: solid 1px #333;
}

.rec_page_section .c-entries--simple, .c-entries--text, .c-entries--text2 {
  border-top: solid 1px #ffffff;
}

.rec_page_section .c-entry-summary__figure {
  width: 22% !important;
}

.rec_page_section .c-entry-summary__content {
  font-weight: 700;
  border: solid 1px #999;
  border-radius: 7px;
  padding: 20px;
}

.rec_page_section .smb-section__body {
  margin-top: 20px !important;
}

.rec_page_section .c-entry-summary__title {
  display: none;
}

/* 一覧ページ */
.post-type-archive-recruitment_informat .c-entry-summary {
  position: relative;
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-bottom: 25px !important;
  padding-top: 75px !important;
  background-color: #f7f7f7;
}

.post-type-archive-recruitment_informat .c-entry-summary__title {
  background: linear-gradient(to right, #1d0c86, rgba(29, 12, 134, 0.9), rgba(26, 20, 142, 0.9), rgba(2, 75, 196, 0.9));
  color: #f3f3f3;
  margin-bottom: 9px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
}

.post-type-archive-recruitment_informat .c-entries--simple .c-entries__item, .c-entries--text .c-entries__item, .c-entries--text2 .c-entries__item {
  border-bottom: solid 1px #333;
}

.post-type-archive-recruitment_informat .c-entries--simple, .c-entries--text, .c-entries--text2 {
  border-top: solid 1px #ffffff;
}

.post-type-archive-recruitment_informat .c-entry-summary__figure {
  width: 22% !important;
}

.post-type-archive-recruitment_informat .c-entry-summary__content {
  font-weight: 700;
  border: solid 1px #999;
  border-radius: 7px;
  padding: 20px;
}

.post-type-archive-recruitment_informat .smb-section__body {
  margin-top: 20px !important;
}

.post-type-archive-recruitment_informat .c-entry-summary__title {
  padding-left: 1% !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

/* カテゴリー一覧ページ */
.tax-recruitment_informations_cate .c-entry-summary {
  position: relative;
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-bottom: 25px !important;
  padding-top: 75px !important;
  background-color: #f7f7f7;
}

.tax-recruitment_informations_cate .c-entry-summary__title {
  background: linear-gradient(to right, #1d0c86, rgba(29, 12, 134, 0.9), rgba(26, 20, 142, 0.9), rgba(2, 75, 196, 0.9));
  color: #f3f3f3;
  margin-bottom: 9px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
}

.tax-recruitment_informations_cate .c-entries--simple .c-entries__item, .c-entries--text .c-entries__item, .c-entries--text2 .c-entries__item {
  border-bottom: solid 1px #333;
}

.tax-recruitment_informations_cate .c-entries--simple, .c-entries--text, .c-entries--text2 {
  border-top: solid 1px #ffffff;
}

.tax-recruitment_informations_cate .c-entry-summary__figure {
  width: 22% !important;
}

.tax-recruitment_informations_cate .c-entry-summary__content {
  font-weight: 700;
  border: solid 1px #999;
  border-radius: 7px;
  padding: 20px;
}

.tax-recruitment_informations_cate .smb-section__body {
  margin-top: 20px !important;
}

.tax-recruitment_informations_cate .c-entry-summary__title {
  padding-left: 1% !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

.tax-recruitment_informations_cate .c-meta {
  display: none !important;
}

.tax-recruitment_informations_cate .c-entry-summary__title {
  background: linear-gradient(to right, #1d0c86, rgba(29, 12, 134, 0.9), rgba(26, 20, 142, 0.9), rgba(2, 75, 196, 0.9));
  color: #f3f3f3;
  margin-bottom: 9px;
}

/* カテゴリーの帯 */
.post-type-archive-recruitment_informat .c-meta {
  display: none !important;
}

.post-type-archive-recruitment_informat .c-entry-summary__title {
  background: linear-gradient(to right, #1d0c86, rgba(29, 12, 134, 0.9), rgba(26, 20, 142, 0.9), rgba(2, 75, 196, 0.9));
  color: #f3f3f3;
  margin-bottom: 9px;
}

.tax-recruitment_informations_cate .c-entry-summary__title {
  background: linear-gradient(to right, #1d0c86, rgba(29, 12, 134, 0.9), rgba(26, 20, 142, 0.9), rgba(2, 75, 196, 0.9));
  color: #f3f3f3;
  margin-bottom: 9px;
}

.tax-recruitment_informations_cate .c-entry-summary__title {
  padding-left: 1% !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

.tax-recruitment_informations_cate .c-meta {
  display: none !important;
}

/* 関連ページ */
.p-related-posts .c-entry-summary {
  position: relative;
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-bottom: 25px !important;
  padding-top: 75px !important;
  background-color: #f7f7f7;
}

.p-related-posts .c-entry-summary__title {
  background: linear-gradient(to right, #1d0c86, rgba(29, 12, 134, 0.9), rgba(26, 20, 142, 0.9), rgba(2, 75, 196, 0.9));
  color: #f3f3f3;
  margin-bottom: 9px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
}

.p-related-posts .c-entries--simple .c-entries__item, .c-entries--text .c-entries__item, .c-entries--text2 .c-entries__item {
  border-bottom: solid 1px #333;
}

.p-related-posts .c-entries--simple, .c-entries--text, .c-entries--text2 {
  border-top: solid 1px #ffffff;
}

.p-related-posts .c-entry-summary__figure {
  width: 22% !important;
}

.p-related-posts .c-entry-summary__content {
  font-weight: 700;
  border: solid 1px #999;
  border-radius: 7px;
  padding: 20px;
}

.p-related-posts .smb-section__body {
  margin-top: 20px !important;
}

.p-related-posts .c-entry-summary__title {
  padding-left: 1% !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

.p-related-posts .c-meta__item {
  display: none;
}

.real_flow_section .smb-items__banner__figure__mask {
  background: linear-gradient(to right, #1d0c86, rgba(29, 12, 134, 0.9), rgba(26, 20, 142, 0.9), rgba(2, 75, 196, 0.9));
}

/* 社員紹介ページ */
.suke_col_section {
  position: relative;
}

.suke_col_section:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #f7f7f7;
  border: 4px solid #d02d2d;
  left: 85px;
  top: 0.42em;
  margin: 0;
  border-radius: 50%;
  z-index: 1;
}

.suke_col_section:after {
  width: 3px;
  background: #333;
  left: 91px;
  display: block;
  content: "";
  position: absolute;
  height: 193%;
  top: 10px;
}

.suke_col_section_last:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #f7f7f7;
  border: 4px solid #d02d2d;
  left: 85px;
  top: 0.42em;
  margin: 0;
  border-radius: 50%;
  z-index: 1;
}

/* 二川氏 */
.suke_point_point:after {
  height: 170% !important;
}

/* 大野氏 */
.suke_point_point3:after {
  height: 130% !important;
}

/* 関氏 */
.suke_point_point4:after {
  height: 155% !important;
}

/* 海斗氏 */
.suke_pojnt_point5:after {
  height: 155% !important;
}

/* 田村氏 */
.suke_point_point9:after {
  height: 155% !important;
}

/* 岡田氏 */
.suke_point_point7:after {
  height: 124% !important;
}

/* 福田氏 */
.suke_point_point8:after {
  height: 163% !important;
}

/* 井上氏 */
.suke_point_point10:after {
  height: 155% !important;
}

.other_text {
  display: block !important;
}

/* 絞り込み検索 */
.rec_page_section .vkfs__outer-wrap {
  display: flex;
  align-items: center;
}

.vkfs__label-name {
  padding: 10px 20px;
  background-color: #333;
  color: #f3f3f3;
  margin-right: 20px;
  width: 120px !important;
  text-align: center;
}

/* 検索結果 */
.search-results .c-entry-summary {
  position: relative;
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-bottom: 25px !important;
  padding-top: 75px !important;
  background-color: #f7f7f7;
}

.search-results .c-entry-summary__title {
  background: linear-gradient(to right, #1d0c86, rgba(29, 12, 134, 0.9), rgba(26, 20, 142, 0.9), rgba(2, 75, 196, 0.9));
  color: #f3f3f3;
  margin-bottom: 9px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
}

.search-results .c-meta {
  display: none !important;
}

.search-results .c-breadcrumbs li:nth-child(2) {
  display: none !important;
}

.c-entries--simple .c-entry-summary__content {
  display: block !important;
  padding: 14px !important;
  border: solid 1px #999;
  border-radius: 7px;
}

.search-results .c-entry-summary__title {
  padding-left: 1% !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

@media (max-width: 1023px) {
  /******************************************************************

  Stylesheet: 1023px以下（タブレット）で適用

  ******************************************************************/
}
@media (max-width: 639px) {
  /******************************************************************

  Stylesheet: 639px以下(スマホ)で適用

  ******************************************************************/
  .hero__title_sp {
    display: block !important;
  }
  .hero__title_pc {
    display: none !important;
  }
  .post-template .c-container {
    padding: 0px 18px !important;
  }
  .wp-block-heading {
    font-size: 1.2rem !important;
  }
  .smb-section__title {
    font-size: 1.6rem !important;
  }
  .c-site-branding__title {
    font-size: 1.3rem !important;
  }
  .l-contents__container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .page-template .c-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .swiper-slide {
    height: 70vh;
  }
  .pc_img {
    display: none;
  }
  .sp_img {
    display: block;
  }
  .hero__btn {
    bottom: 45%;
    width: 100vw;
  }
  .hero__btn p {
    font-size: 22px;
  }
  .hero__title p {
    font-size: 26px;
    letter-spacing: 0.2rem;
  }
  .hero__title_sp_title {
    line-height: 2.9rem !important;
  }
  .hero__title {
    top: 10% !important;
  }
  .sub_title {
    font-size: 16px !important;
  }
  .hero__title br {
    display: block;
  }
  .footer_left {
    text-align: center !important;
    padding-left: 0px !important;
  }
  footer .footer_logo {
    width: 70% !important;
    text-align: center;
  }
  .footer_botom_section {
    padding-top: 10px;
    padding-left: 0px;
  }
  .footer_c_section {
    padding: 0px 15px;
  }
  .top_page_first_section {
    padding-top: 20px !important;
  }
  .c-entry-summary__title {
    font-size: 1rem !important;
  }
  .footer_entry_bu a {
    width: 332px !important;
  }
  /* サービスページ */
  .top_page_service_section_left_title {
    padding-left: 10px;
  }
  .about_taisetu_section {
    position: relative !important;
  }
  .number_section {
    position: absolute !important;
    top: -272px;
    left: 0px;
  }
  .number_section span {
    color: #f3f3f3 !important;
    font-size: 3rem !important;
  }
  .top_first_right {
    padding-left: 13.5px !important;
  }
  /* トップページ会社を知る */
  .top_service .wp-block-cover {
    min-height: 220px !important;
  }
  /* トップページ社員 */
  .member_section .spider__arrow[data-direction=next]:before {
    border-right: 4px solid #fff;
    border-top: 4px solid #fff;
    bottom: calc(50% - var(--spider--arrow-size) / 2);
    right: calc(50% - var(--spider--arrow-size) / 2);
    transform: rotate(45deg);
  }
  .member_section .spider__arrow[data-direction=prev]:before {
    border-bottom: 4px solid #fff;
    border-left: 4px solid #fff;
    left: calc(50% - var(--spider--arrow-size) / 2);
    top: calc(50% - var(--spider--arrow-size) / 2);
    transform: rotate(45deg);
  }
  .member_section .spider__arrow:before {
    content: "";
    display: block;
    height: 16px !important;
    position: absolute;
    width: 16px !important;
  }
  /* 仕事内容ページ */
  .sp_job_right_banner {
    padding-left: 3px !important;
  }
  .sp_job_left_banner {
    padding-right: 3px !important;
  }
  .job_sp_content .c-container {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .job_ba_main_section .smb-items__banner__body {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .job_center_banner .smb-items__banner__body:before {
    right: 17px;
  }
  .job_left_banner .smb-items__banner__body:before {
    right: 17px;
  }
  /* ACF設定 */
  .select_industry {
    display: block;
  }
  .jobs_selects {
    display: block;
  }
  .hourly_wage {
    display: block;
  }
  .employment_status {
    display: block;
  }
  .select_industry dt:first-of-type {
    width: 100%;
  }
  /* 関連情報 */
  .p-related-posts .c-entries--rich-media {
    --entries--item-width: 50%!important;
  }
  /* 福利厚生 */
  .em_box {
    padding: 20px !important;
  }
  /* 採用一覧ページ */
  .rec_page_section .c-entries {
    --entries--item-width: 100%!important;
  }
  .rec_page_section .c-entry-summary__content {
    display: block !important;
    padding: 14px !important;
  }
  .rec_page_section .c-entry-summary__figure:before {
    padding-top: 60% !important;
  }
  .rec_page_section .c-entry-summary {
    padding-top: 50px !important;
  }
  .rec_page_section .c-entry-summary__figure {
    margin-bottom: 10px !important;
  }
  .post-type-archive-recruitment_informat .c-entries {
    --entries--item-width: 100%!important;
  }
  .post-type-archive-recruitment_informat .c-entry-summary__title {
    padding-left: 1% !important;
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }
  .c-entries--simple .c-entry-summary__figure {
    float: none !important;
    width: 100% !important;
  }
  /* 社員紹介ページ */
  .suke_col_section:before {
    left: 61px;
  }
  .suke_col_section:after {
    left: 67px;
  }
  .suke_col_section_last:before {
    left: 61px;
  }
  .suke_right_section {
    padding-left: 10px;
  }
  .suke_col_section .wp-block-column:first-of-type {
    flex-basis: 20% !important;
  }
  .suke_col_section_last .wp-block-column:first-of-type {
    flex-basis: 20% !important;
  }
  /* 二川氏 */
  .suke_point_point:after {
    height: 145% !important;
  }
  /* 中嶋氏 */
  .suke_point_point2:after {
    height: 145% !important;
  }
  /* 大野氏 */
  .suke_point_point3:after {
    height: 120% !important;
  }
  /* 関氏 */
  .suke_point_point4:after {
    height: 140% !important;
  }
  /* 海斗氏 */
  .suke_pojnt_point5:after {
    height: 130% !important;
  }
  /* 伊賀氏 */
  .suke_point_point6:after {
    height: 148% !important;
  }
  /* 岡田氏 */
  .suke_point_point7:after {
    height: 117% !important;
  }
  /* 福田氏 */
  .suke_point_point8:after {
    height: 141% !important;
  }
  /* 井上氏 */
  .suke_point_point10:after {
    height: 131% !important;
  }
  /* 絞り込み検索 */
  .rec_page_section .vkfs__outer-wrap {
    display: block;
  }
  .vkfs__label-name {
    padding: 5px 20px;
    margin-right: 0px;
    width: 100% !important;
  }
  .search-results .c-entry-summary {
    padding-top: 50px !important;
  }
  .search-results .c-entry-summary__figure:before {
    padding-top: 60% !important;
  }
  /* ACF */
  .property-content span {
    display: block;
    padding: 1px 13px;
    margin-right: 0px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    margin-bottom: 1px;
  }
  .property-info dl dt:first-of-type {
    padding: 5px;
  }
  .jobs_selects dt:first-of-type {
    width: 100% !important;
  }
  .top_img_first {
    display: none;
  }
  .top_img_first_sp {
    display: block;
  }
  .top_img_second {
    display: none;
  }
  .top_img_second_sp {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */