@charset "UTF-8";
/* 既存のswiperスライド（高さや画像拡大アニメ） */
.swiper-slide {
  position: relative;
  height: 98vh;
  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.2);
}

/* ファーストビューのhero全体 */
.hero {
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

.hero__title {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, 0);
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100vw - 64px);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.2em;
  font-size: clamp(2.9rem, 5vw, 7rem);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.16em;
  line-height: 1.1;
  white-space: nowrap;
  z-index: 10000;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
  writing-mode: horizontal-tb;
}

.hero-company-left,
.hero-company-right {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 0.68, 0.41, 1.01), transform 0.9s cubic-bezier(0.22, 0.68, 0.41, 1.01);
  will-change: transform, opacity;
}

.hero-company-left {
  letter-spacing: 0.22em;
  transform: translateX(-24px) scale(0.96);
}

.hero-company-right {
  transform: translateX(24px) scale(0.96);
}

.hero__title.active .hero-company-left {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero__title.active .hero-company-right {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* ↓中央に寄ってきた2つがピタッと合体 */
.hero__title.appear .hero-company-left,
.hero__title.appear .hero-company-right {
  transform: translateX(0) scale(1);
  transition: transform 0.4s cubic-bezier(0.6, 1.4, 0.61, 0.97);
}

/* キャッチコピー（最初は非表示） */
.sub_title {
  position: absolute;
  top: calc(100% + 1.8rem);
  left: 50%;
  right: auto;
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100vw - 48px);
  text-align: center;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem) !important;
  color: #ffe082;
  letter-spacing: 0.24em !important;
  opacity: 0;
  transform: translate(-50%, 30px);
  transition: opacity 0.7s 0.2s, transform 0.7s 0.2s;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* 横線とテキストの間の余白（お好みで調整） */
}

.sub_title::before,
.sub_title::after {
  content: "";
  display: inline-block;
  width: 16px; /* 横線の長さ。5pxだと短いので20pxを例示（お好みで） */
  height: 2px; /* 線の太さ */
  background: #ffe082; /* 線の色（テキスト色と合わせています） */
  vertical-align: middle;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
}

.hero__title.show-catch .sub_title {
  opacity: 1;
  transform: translate(-50%, 0);
  writing-mode: horizontal-tb;
}

/* 下部流れるマーキー */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
  padding: 0.6rem 0;
}

.hero-marquee__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: hero-marquee 18s linear infinite;
  will-change: transform;
}

/* スマホは少し早く流す */
@media (max-width: 639px) {
  .hero-marquee__track {
    animation-duration: 12s;
  }
}
.hero-marquee__word {
  font-size: clamp(7rem, 14vw, 14rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Cormorant Garamond", "Noto Serif JP", "Times New Roman", serif;
  padding: 0 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-marquee__sep {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

@keyframes hero-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.swiper-slide .main-visual {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.75;
  transform: scale(1);
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 10s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active .main-visual {
  opacity: 1;
  transform: scale(1.12);
}

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

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

******************************************************************/
body {
  font-family: "yu-mincho-pr6n", "游明朝", "Yu Mincho", "YuMincho", serif !important;
}

.busi_under_solid_top {
  border-bottom: solid 1px #333;
  padding-bottom: 10px;
  padding-left: 10px;
}

.busi_under_solid {
  border-bottom: solid 1px #333;
  padding-bottom: 10px;
  padding-left: 10px;
}

.top_work_main_cul {
  position: relative;
}

.point_btn_achi_sp {
  display: none;
}

.archive .l-contents__body {
  padding-top: 80px;
}

.blog .l-contents__body {
  padding-top: 80px;
}

/* リクルートページ */
.rec_box_section {
  padding: 0px !important;
  border-top-right-radius: 30px !important;
  padding-bottom: 50px !important;
  border-bottom-left-radius: 30px !important;
}

.rec_box_section .smb-box__background {
  border-top-right-radius: 30px !important;
  border-bottom-left-radius: 30px !important;
}

.rec_em_title {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 5px;
  padding-left: 40px;
  background-color: #01387f;
  border-top-right-radius: 30px;
}

.rec_em_col_section {
  padding-left: 60px;
  padding-bottom: 10px;
}

/* 全下層ページpadding調整 */
.l-contents__inner {
  padding-top: 0px !important;
}

/* 矢印 */
.scroll-indicator {
  position: fixed;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-family: "Yu Gothic", sans-serif;
  font-size: 14px;
  z-index: 10;
}

.scroll-text {
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.scroll-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  animation: arrowBounce 1.5s infinite;
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
    opacity: 1;
  }
  50% {
    transform: translateY(8px) rotate(45deg);
    opacity: 0.6;
  }
}
.scroll-indicator.hide {
  opacity: 0;
  pointer-events: none;
}

/*各ページのTOP画像内のテキスト*/
.page_top_img_text {
  writing-mode: vertical-rl;
}

/* 縦書き */
.vertical-text {
  writing-mode: vertical-rl; /* 右から左へ縦書き */
  text-orientation: mixed; /* 英数字も自然に表示したい場合 */
}

.opa_text {
  opacity: 0.2;
}

.fancy-text {
  opacity: 0;
  position: relative;
  display: inline-block;
  transition: opacity 0.9s;
}

.fancy-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #3bade3, #ff357f);
  transition: width 1.6s cubic-bezier(0.77, 0, 0.18, 1);
}

.fancy-text.fancy-show {
  opacity: 1;
}

.fancy-text.fancy-show::after {
  width: 100%;
}

.fancy-image {
  opacity: 0.15;
  filter: grayscale(85%) blur(12px) brightness(1.15) saturate(1.4);
  transition: opacity 1.1s cubic-bezier(0.77, 0, 0.18, 1), filter 1.4s cubic-bezier(0.77, 0, 0.18, 1), box-shadow 1.2s cubic-bezier(0.77, 0, 0.18, 1);
  box-shadow: none;
  transform: scale(1.07);
  overflow: hidden;
}

.fancy-image.fancy-show {
  opacity: 1;
  filter: grayscale(0%) blur(0) brightness(1.06) saturate(1.25);
  transform: scale(1);
}

.button a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  border-radius: 9999px;
  max-width: 250px;
  padding: 10px 25px;
  font-family: "Noto Sans Japanese";
  color: #fff;
  line-height: 1.8;
  text-decoration: none;
  font-weight: 500;
  background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
  background-position: 99% 50%; /* ←ここを99%に変更 */
  background-size: 200% auto;
  transition: all 0.3s ease-out;
}

.button a:hover {
  color: #fff;
  background-position: 1% 50%; /* ←ここを1%に変更 */
}

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

.hero__title_sp {
  display: none !important;
}

.c-entry-aside {
  display: none;
}

.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: 1px;
  height: 17px;
  margin-right: 0px;
  background-color: #000;
  transform: translateY(-5px);
}

.greeting_title_text_left::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  margin-right: 9px;
  background-color: #000;
  transform: translateY(-7px);
}

/* カーテンアクション */
.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: #155cbb;
  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: #155cbb !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: 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;
}

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

/* セクション上の斜めデザイン */
.point_section:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 15vw;
  background: #d7e5f1;
  opacity: 0.4;
  clip-path: polygon(0 100%, 0 0, 100% 0);
}

.point_section:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 31vw;
  aspect-ratio: 1/1;
  background: url(/wp-content/uploads/2025/07/kka0aa.png) center/100% no-repeat;
}

.t_medical .img_bg_block:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 15vw;
  background: #d7e5f1;
  opacity: 0.4;
  clip-path: polygon(0 100%, 0 0, 100% 0);
}

/* 共通スタイル */
.infinite-slider,
.infinite-slider2 {
  overflow: hidden;
  width: 100%;
  background: transparent; /* 背景を透明に */
  margin-left: 0px !important;
  padding-right: 0px !important;
  max-width: 100%;
}

.slider-track,
.slider-track2 {
  display: flex;
  width: 3000px; /* 画像14枚分 */
}

.slider-track img,
.slider-track2 img {
  width: 220px;
  height: auto;
  margin-right: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

/* 左から右に動く（＝右方向） */
.slider-track {
  animation: scroll-right 70s linear infinite;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
/* 右から左に動く（＝左方向） */
.slider-track2 {
  animation: scroll-left 70s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* スライドモーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.rec_message_section {
  z-index: 100 !important;
}

@media (max-width: 1300px) {
  .hero__title {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, 0);
    width: -moz-max-content;
    width: max-content;
    max-width: calc(100vw - 64px);
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.2em;
    font-size: clamp(2.9rem, 6.6vw, 8.5rem);
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.16em;
    line-height: 1.1;
    white-space: nowrap;
    z-index: 10000;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
    writing-mode: horizontal-tb;
  }
}
@media (max-width: 1023px) {
  /******************************************************************

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

  ******************************************************************/
  .hero__title {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, 0);
    width: -moz-max-content;
    width: max-content;
    max-width: calc(100vw - 64px);
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.2em;
    font-size: clamp(2.9rem, 7vw, 9rem);
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.16em;
    line-height: 1.1;
    white-space: nowrap;
    z-index: 10000;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
    writing-mode: horizontal-tb;
  }
}
@media (max-width: 639px) {
  /******************************************************************

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

  ******************************************************************/
  .point_btn_achi {
    display: none;
  }
  .point_btn_achi_sp {
    display: block;
  }
  .hero__title {
    position: absolute;
    top: 41% !important;
    left: 50%;
    transform: translate(-50%, 0);
    width: -moz-max-content;
    width: max-content;
    max-width: calc(100vw - 0px);
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.34em;
    font-size: clamp(2.4rem, 7vw, 3.5rem);
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.12em;
    line-height: 1.1;
    white-space: nowrap;
    z-index: 10000;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
    font-weight: 700;
  }
  .hero-company-left {
    letter-spacing: 0.16em;
  }
  /* リクルートページ */
  .rec_box_section {
    padding: 0px !important;
    border-top-right-radius: 30px !important;
    padding-bottom: 50px !important;
    border-bottom-left-radius: 30px !important;
  }
  .rec_box_section .smb-box__background {
    border-top-right-radius: 30px !important;
    border-bottom-left-radius: 30px !important;
  }
  .rec_em_title {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 5px;
    padding-left: 40px;
    background-color: #01387f;
    border-top-right-radius: 30px;
  }
  .rec_em_col_section {
    padding-left: 15px;
    padding-bottom: 10px;
  }
  .rec_em_col_section {
    gap: 0 !important;
  }
  .rec_col_left_icon {
    margin-right: 10px !important;
  }
  /* 縦書き */
  .vertical-text {
    writing-mode: vertical-rl; /* 右から左へ縦書き */
    text-orientation: mixed; /* 英数字も自然に表示したい場合 */
    line-height: 1px !important;
  }
  /* title は JS で .c-container 直下に移動され、figure の外で独立配置される。
     .fancy-image の opacity/filter/transform から完全に切り離されるため、
     img の GPU 合成レイヤーに隠される問題が起きない。
     位置（top/right）は JS が getBoundingClientRect から計算して設定する */
  .js-work-title-floating {
    position: absolute !important;
    left: auto !important;
    bottom: auto !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    z-index: 100;
    margin: 0 !important;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 3px;
  }
  .work_sp_work_title span {
    font-size: 0.9rem !important;
    font-weight: 700;
    line-height: 1.5rem;
  }
  .busi_gyo .c-row__col--md-1-4 {
    margin-bottom: 10px !important;
  }
  /*事業内容ページ*/
  .page-id-134 .l-contents__inner {
    padding-top: 0px !important;
  }
  .about_page_first_cover {
    min-height: 100vh !important;
  }
  .c-container {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .post-template .c-container {
    padding: 0px 18px !important;
  }
  .wp-block-heading {
    font-size: 1.2rem !important;
  }
  .smb-section__title {
    font-size: 1.35rem !important;
  }
  .c-site-branding__title {
    font-size: 1.3rem !important;
  }
  .page-template .c-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .swiper-slide {
    height: 88vh;
  }
  .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: 30px;
    letter-spacing: 0.2rem;
  }
  .hero__title_sp_title {
    line-height: 2.9rem !important;
  }
  .sub_title {
    font-size: 19px !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, 30px) !important;
    top: calc(100% + 1.3rem) !important;
    width: -moz-max-content;
    width: max-content;
    max-width: calc(100vw - 10px);
    letter-spacing: 0.08em !important;
  }
  .hero__title.show-catch .sub_title {
    opacity: 1;
    transform: translate(-50%, 0) !important;
    writing-mode: horizontal-tb;
  }
  .hero__title br {
    display: block;
  }
  .top_img_second {
    -o-object-position: 50% 50%;
       object-position: 50% 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;
  }
  .c-entry-summary__title {
    font-size: 1rem !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;
  }
}/*# sourceMappingURL=style.css.map */