@charset "UTF-8";
.swiper-slide {
  /* 表示させる高さの調整 */
  position: relative;
  height: 94vh;
  overflow: hidden;
}

.swiper-slide .main-visual {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 9s ease;
  transition: -webkit-transform 9s ease;
  transition: transform 9s ease;
  transition: transform 9s ease, -webkit-transform 9s ease;
}

.swiper-slide-active .main-visual {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.swiper-slide-active .hero__title {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

.swiper-slide-active .hero__btn {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

.hero {
  overflow: hidden;
}

.hero__title {
  position: absolute;
  top: 36%;
  left: 50%;
  color: #fff;
  text-align: center;
  width: 95vw;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  -webkit-transition: opacity 1.2s ease 1.5s, -webkit-transform 1.2s ease 1.5s;
  transition: opacity 1.2s ease 1.5s, -webkit-transform 1.2s ease 1.5s;
  transition: opacity 1.2s ease 1.5s, transform 1.2s ease 1.5s;
  transition: opacity 1.2s ease 1.5s, transform 1.2s ease 1.5s, -webkit-transform 1.2s ease 1.5s;
  z-index: 10000;
}

.hero__title p {
  font-size: 40px;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
  line-height: 2em;
  font-weight: 600;
}

.hero__title span {
  display: block;
}

.hero__btn {
  position: absolute;
  bottom: 42%;
  left: 50%;
  text-align: center;
  color: #fff;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  -webkit-transition: opacity 1.2s ease 2.5s, -webkit-transform 1.2s ease 2.5s;
  transition: opacity 1.2s ease 2.5s, -webkit-transform 1.2s ease 2.5s;
  transition: opacity 1.2s ease 2.5s, transform 1.2s ease 2.5s;
  transition: opacity 1.2s ease 2.5s, transform 1.2s ease 2.5s, -webkit-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: 600;
}

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

.hero__title br {
  display: none;
}

.sub_title {
  font-size: 30px !important;
}

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

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

******************************************************************/
.pc_img {
  display: block;
}

.sp_img {
  display: none;
}

h3 {
  padding-left: 3% !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: .2rem;
}

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

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

.padding_top_Section {
  padding-top: 0px;
}

header {
  opacity: 0.9 !important;
}

.l-contents__inner {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

/* トップページ2カラム*/
.top_page_column_section {
  padding: 0px !important;
}

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

.column_section_left .wp-block-cover {
  padding-left: 20%;
}

.top_page_column_section .wp-block-snow-monkey-blocks-items-item-free {
  padding: 0px !important;
}

/* 会社概要ページ*/
.company_page_border span {
  border-bottom: solid 1px #000;
  padding-bottom: 10px;
}

.back_img_section {
  background-image: url(/wp-content/uploads/2024/05/bg.png);
  background-size: contain;
}

.company_page_company_section {
  height: 350px !important;
}

.company_page_text_section {
  height: 350px !important;
}

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

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

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

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

@-webkit-keyframes showElements {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}

@keyframes showElements {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}

.animation-target.show > a,
.animation-target.show > img {
  -webkit-animation: showElements 0.01s 0.9s forwards;
          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;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

@-webkit-keyframes showMask {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  45%,
  55% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes showMask {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  45%,
  55% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animation-target.show::before {
  -webkit-animation: showMask 1.8s forwards;
          animation: showMask 1.8s forwards;
}

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

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

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

/* 画像をズーム */
.business_section img {
  -webkit-transition: 1s all !important;
  transition: 1s all !important;
  overflow: hidden !important;
}

#business {
  overflow: hidden !important;
}

#business:hover img {
  -webkit-transform: scale(1.1, 1.1) !important;
          transform: scale(1.1, 1.1) !important;
  -webkit-transition: 1s all !important;
  transition: 1s all !important;
  opacity: 0.9 !important;
  background-color: #000000 !important;
}

/* サービスセクション */
.top_page_service_text {
  display: none;
}

.animation-target:hover .top_page_service_text {
  display: block;
}

.top_service_text {
  text-shadow: 1px 2px 3px #808080;
}

/* サービス箇所 */
.top_service .wp-block-cover {
  background-color: #000000 !important;
}

.top_service .wp-block-columns {
  margin-top: 0px;
}

.top_service .wp-block-column {
  margin-left: 0px !important;
}

.top_service .smb-section__inner {
  padding-top: 55px;
}

.top_service .animation-target a {
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 285px;
  width: 100%;
  color: #f3f3f3;
}

.service_btn_up a {
  padding-top: 124px !important;
  padding-bottom: 38px !important;
}

.service_btn_up a:hover {
  color: #f3f3f3 !important;
}

.service_btn_up span {
  width: 100%;
}

.service_btn_down a {
  padding-bottom: 152px !important;
  padding-top: 30px !important;
}

.service_btn_down a:hover {
  color: #f3f3f3 !important;
}

.service_btn_down {
  margin-top: 0px !important;
}

.service_btn_down span {
  width: 100%;
}

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

.l-footer-widget-area a {
  color: #333;
  -webkit-transition: all .8s;
  transition: all .8s;
}

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

.c-copyright {
  background-color: #972d33 !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;
}

.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;
}

.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;
}

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

.footer_link {
  margin-top: 8px !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;
}

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

a.btn_13 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  width: 360px;
  margin-left: 0px !important;
  padding: 1rem 4rem 1rem 2rem;
  font-weight: bold;
  background: none;
  color: #fff;
  border-radius: 0;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.9 !important;
  border: solid 1px #fff;
}

a.btn_13::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 1em;
  -webkit-transform: translateY(calc(-50% - 2px)) rotate(45deg);
          transform: translateY(calc(-50% - 2px)) rotate(45deg);
  width: 10px;
  height: 1px;
  background: #fff;
  opacity: 0.8 !important;
}

a.btn_13::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background-color: #fff;
  opacity: 0.8 !important;
}

a.btn_13:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #972d33;
  opacity: 0.7 !important;
}

.btn_13:hover::before {
  background: #972d33 !important;
}

.btn_13:hover::after {
  background: #972d33 !important;
}

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

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

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

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

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

******************************************************************/
  .page-template .c-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .swiper-slide {
    height: 80vh;
  }
  .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: 22px;
  }
  .sub_title {
    font-size: 16px !important;
  }
  .hero__title br {
    display: block;
  }
  .top_img_second {
    -o-object-position: 72% 50%;
       object-position: 72% 50%;
  }
  .footer_left {
    text-align: center !important;
    padding-left: 0px !important;
  }
  footer .footer_logo {
    width: 70% !important;
    text-align: center;
  }
  .footer_botom_section {
    padding-top: 5px;
  }
  .footer_c_section {
    padding: 0px 15px;
  }
  /* トップページ最初の箇所*/
  .top_page_first_section {
    padding-top: 20px !important;
  }
  /* サービスページ */
  .about_taisetu_section {
    position: relative !important;
  }
  .number_section {
    position: absolute !important;
    top: -73%;
    left: 19px;
  }
  .top_first_right {
    margin-top: -30px !important;
  }
  .number_section span {
    color: #f3f3f3 !important;
    font-size: 3rem !important;
  }
  /* カスタムボタン */
  a.btn_13 {
    width: 250px;
    margin-left: 0px !important;
    padding: 1rem 4rem 1rem 2rem;
  }
  a.btn_13::before {
    width: 10px;
    height: 1px;
  }
  a.btn_13::after {
    width: 50px;
    height: 1px;
  }
  /* トップページ会社概要会社概要や事業内容 */
  .column_section_left .wp-block-cover {
    padding-left: 15%;
  }
  .top_page_company {
    margin-bottom: 0px !important;
  }
  .top_page_column_section .wp-block-cover, .wp-block-cover-image {
    min-height: 338px !important;
  }
  /* トップページリクルート */
  .top_page_rec_section {
    padding-left: 15%;
  }
  .top_page_rec_section .c-container {
    padding: 0px !important;
  }
  .top_page_rec_text {
    margin-left: -4.8%;
  }
  /* トップページコンタクト */
  .top_page_contact_section .c-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .company_page_company_section {
    height: 700px !important;
  }
  .company_page_text_section {
    height: 350px !important;
  }
  .company_page_en_section {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .company_page_tizu_section {
    margin-bottom: 0px !important;
    height: 350px !important;
  }
  .company_page_tizu_section_right {
    height: 250px !important;
  }
}
/*# sourceMappingURL=style.css.map */