@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.swiper-slide {
  /* 表示させる高さの調整 */
  position: relative;
  height: 100vh;
  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);
}
.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: 36%;
  left: 50%;
  color: #fff;
  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: 6vw;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
  line-height: 1.2em;
  font-weight: 600;
}
.hero__title span {
  display: block;
}
.hero__btn {
  position: absolute;
  bottom: 40%;
  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: 600;
}

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

.sub_title {
  font-size: 15px !important;
  letter-spacing: 0.15rem !important;
  margin-top: 40px;
}

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

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

******************************************************************/
.custom-logo-link {
  opacity: 0.9;
}

.qa_section .qa_section_panel {
  background-color: #f6f8fa !important;
}

.qa_section .smb-accordion__item {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 10px !important;
}

.flow_col_section {
  padding: 0px !important;
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px;
}

.flow_col_section_left {
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px;
}

/* 固定ページ設定 */
.page-template .l-contents__body {
  padding-top: 130px;
}

.page_first_section .greeting_title_text_black {
  margin-top: 0px;
}

.page_first_section .c-container {
  padding: 0px !important;
  max-width: 88% !important;
}

.p-breadcrumbs-wrapper {
  max-width: 88% !important;
  text-align: end;
}

.page-template .l-contents__container {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.page-template .l-contents__inner {
  margin-top: 5px !important;
}

.point_margin_top_no {
  margin-top: 5px !important;
}

/* 親：表示窓 */
.commonHeader__tickerTxt {
  --gap: .05em; /* テキストの区切り間隔 */
  --speed: 18s; /* 小さいほど速い（例: 12s, 25s など） */
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 170px;
  right: 0;
  z-index: -1;
}

/* 走るトラック */
.commonHeader__tickerTxt .tickerTxt {
  display: flex;
  white-space: nowrap;
  gap: var(--gap);
  will-change: transform;
  animation: ticker var(--speed) linear infinite;
}

/* 1セグメント（同じ文言を2つ並べるのがミソ） */
.commonHeader__tickerTxt .tickerTxt__txt {
  flex: 0 0 auto;
  padding-right: var(--gap);
}

/* 好みで体裁 */
.tickerTxt__txt-defaults {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 10rem;
  opacity: 0.8;
  color: rgba(0, 93, 164, 0.0588235294);
  font-family: "Poppins", sans-serif;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* 自身幅の半分＝1セグメントぶん左へ */
}
/* ホバーで一時停止したい場合（任意） */
.commonHeader__tickerTxt:hover .tickerTxt {
  animation-play-state: paused;
}

/* 動きを苦手とするユーザー配慮（任意） */
@media (prefers-reduced-motion: reduce) {
  .commonHeader__tickerTxt .tickerTxt {
    animation: none;
  }
}
/* =========
   Circular Text Button (navy + down arrow)
   ========= */
.page-template .btn_sp {
  display: none !important;
}

.commonHeader__circlePin {
  position: relative;
}

.commonHeader__circlePin {
  /* 好みで調整 */
  --pin-size: 120px; /* 全体の直径 */
  --spin-sec: 12s; /* 外周テキストの1周時間 */
  --pin-bg: #081a44; /* 中央の濃紺 */
  --ring-color: #6c86a8; /* 外周テキスト色（淡いブルー） */
  --arrow-color: #fff; /* 矢印の色（白） */
  --arrow-w: 1px; /* 矢印の線幅 */
  display: inline-block;
  position: absolute;
  top: 72px;
  right: 70px;
  z-index: 100;
}

.commonHeader__circlePin .circlePin {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: var(--pin-size);
  height: var(--pin-size);
  border-radius: 50%;
  text-decoration: none;
  color: var(--arrow-color); /* 必要なら継承させる用 */
}

/* 外周テキスト（画像 or SVG）を回す */
.commonHeader__circlePin .circlePin__en {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  animation: circlePin-spin var(--spin-sec) linear infinite;
  will-change: transform;
  color: var(--ring-color); /* SVGがcurrentColor対応ならこの色に */
}

/* 外周テキスト画像 */
.commonHeader__circlePin .circlePin__en img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}

/* 中央の濃紺円 */
.commonHeader__circlePin .circlePin__arrow {
  z-index: 1;
  width: calc(var(--pin-size) * 0.68);
  height: calc(var(--pin-size) * 0.68);
  background: var(--pin-bg);
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  /* 任意の影：必要なければ消してOK */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* 下矢印（縦線＋山形） */
.commonHeader__circlePin .circlePin__arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28%;
  width: var(--arrow-w);
  height: 34%;
  background: var(--arrow-color);
  transform: translateX(-50%);
  border-radius: 999px;
}

.commonHeader__circlePin .circlePin__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 56%;
  width: 12px; /* 好みで */
  height: 12px; /* 好みで */
  border-right: var(--arrow-w) solid var(--arrow-color);
  border-bottom: var(--arrow-w) solid var(--arrow-color);
  transform: translate(-50%, 0) rotate(45deg);
  border-radius: 1px;
}

/* ホバーで一時停止（任意） */
.commonHeader__circlePin .circlePin:hover .circlePin__en {
  animation-play-state: paused;
}

/* 省エネ設定ユーザーには停止 */
@media (prefers-reduced-motion: reduce) {
  .commonHeader__circlePin .circlePin__en {
    animation: none;
  }
}
@keyframes circlePin-spin {
  to {
    transform: rotate(360deg);
  }
}
/* 会社概要ページ */
.company_page_table {
  padding-top: 45px;
  padding-bottom: 45px;
  border-bottom: solid 1px #333;
  margin-top: 0px !important;
}

.company_page_table_first {
  padding-top: 45px;
  padding-bottom: 45px;
  border-bottom: solid 1px #333;
  border-top: solid 1px #333;
  margin-top: 0px !important;
}

/* 事業部ページ */
.zigyou_enter_section {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
  background-color: #ecf2f6;
  padding-bottom: 180px;
  padding-top: 110px;
}

.alignfull.zigyou_enter_section {
  margin-top: -60px !important;
}

.zigyou_enter_section .smb-section__fixed-background {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
}

.zigyou_enter_section .smb-section__background {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
}

.zigyou_ai_section {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
  background-color: #fff;
  padding-bottom: 180px;
  padding-top: 110px;
}

.alignfull.zigyou_ai_section {
  margin-top: -60px !important;
}

.zigyou_ai_section .smb-section__fixed-background {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
}

.zigyou_ai_section .smb-section__background {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
}

.zigyou_hybrid_section {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
  background-color: #ecf2f6;
  padding-bottom: 180px;
  padding-top: 110px;
}

.alignfull.zigyou_hybrid_section {
  margin-top: -60px !important;
}

.zigyou_hybrid_section .smb-section__fixed-background {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
}

.zigyou_hybrid_section .smb-section__background {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
}

.zigyou_global_section {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
  background-color: #fff;
  padding-bottom: 80px;
  padding-top: 110px;
}

.alignfull.zigyou_global_section {
  margin-top: -60px !important;
}

.zigyou_global_section .smb-section__fixed-background {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
}

.zigyou_global_section .smb-section__background {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
}

/* スライド */
.infinite-slider {
  overflow: hidden;
  width: 100%;
  background: transparent; /* 背景はお好みで */
}

.slider-track {
  display: flex;
  width: 3600px; /* 画像の幅×枚数（4枚×2周分） */
  animation: scroll 40s linear infinite;
}

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

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.infinite-slider {
  display: none;
}

.u-invisible-md-down {
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.6) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: none;
  will-change: unset;
  margin-top: 30px;
  color: black;
}

.menu-item-141 a {
  padding: 25px 40px !important;
}

.menu-item-141:before {
  display: block !important;
  position: absolute !important;
  content: "" !important;
  top: calc(50% - 10px) !important;
  left: 86% !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: #fff !important;
  visibility: visible !important;
  opacity: 1 !important;
  border-bottom: none !important;
}

.menu-item-141:after {
  display: block;
  position: absolute;
  content: "";
  top: calc(50% - 4px);
  right: 7px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(135deg);
  transition: transform 0.4s ease-out;
}

.menu-item-142 a {
  padding: 25px 40px !important;
}

.menu-item-142:before {
  display: block !important;
  position: absolute !important;
  content: "" !important;
  top: calc(50% - 10px) !important;
  left: 86% !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: #fff !important;
  visibility: visible !important;
  opacity: 1 !important;
  border-bottom: none !important;
}

.menu-item-142:after {
  display: block;
  position: absolute;
  content: "";
  top: calc(50% - 4px);
  right: 7px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(135deg);
  transition: transform 0.4s ease-out;
}

.menu-item-216 a {
  padding: 25px 40px !important;
}

.menu-item-28 a {
  margin: 10px 10px 10px 0;
  padding: 15px clamp(30px, 4vw, 50px) !important;
  border-radius: 30px;
  background: #003b68;
  color: #fff !important;
}

.c-navbar__submenu {
  width: 400px !important;
  opacity: 0.9 !important;
}

/* TOPページセービス箇所 */
/* セクション全体を基準化 */
.slide_section {
  position: relative;
  padding-top: 160px;
  padding-bottom: 200px;
}

/* カラム行の設定（Snow Monkeyのcolumnsはflexなのでこれが効きやすい） */
.slide_section .wp-block-columns {
  align-items: flex-start; /* 左が上から始まるように */
  gap: clamp(16px, 2vw, 40px);
}

/* 左カラムをセクション内で追従 */
.slide_section_left {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: -moz-fit-content;
  height: fit-content;
}

/* WP管理バーがある時の微調整（ログイン中の前提） */
@media (min-width: 783px) {
  .admin-bar .slide_section_left {
    top: 132px;
  }
}
/* モバイルでは固定を外す例（必要なら） */
@media (max-width: 767px) {
  .slide_section_left {
    position: static;
    top: auto;
  }
}
.c-site-branding__title {
  position: absolute;
  top: 0px;
  left: 0px;
}

.slide_section {
  background-color: #002B4B;
}

.color_white {
  color: #f3f3f3;
}

.slide_section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* 大きい波はそのまま。細く薄く。 */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='56' viewBox='0 0 800 56' preserveAspectRatio='none'><path d='M0,28 Q200,0 400,28 T800,28' fill='none' stroke='%23FFFFFF' stroke-width='0.5' opacity='0.06' stroke-linecap='round'/></svg>"), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='56' viewBox='0 0 800 56' preserveAspectRatio='none'><path d='M0,28 Q200,0 400,28 T800,28' fill='none' stroke='%23FFFFFF' stroke-width='0.5' opacity='0.06' stroke-linecap='round'/></svg>"), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='56' viewBox='0 0 800 56' preserveAspectRatio='none'><path d='M0,28 Q200,0 400,28 T800,28' fill='none' stroke='%23FFFFFF' stroke-width='0.5' opacity='0.06' stroke-linecap='round'/></svg>"), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='56' viewBox='0 0 800 56' preserveAspectRatio='none'><path d='M0,28 Q200,0 400,28 T800,28' fill='none' stroke='%23FFFFFF' stroke-width='0.5' opacity='0.06' stroke-linecap='round'/></svg>"), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='56' viewBox='0 0 800 56' preserveAspectRatio='none'><path d='M0,28 Q200,0 400,28 T800,28' fill='none' stroke='%23FFFFFF' stroke-width='0.5' opacity='0.06' stroke-linecap='round'/></svg>"), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='56' viewBox='0 0 800 56' preserveAspectRatio='none'><path d='M0,28 Q200,0 400,28 T800,28' fill='none' stroke='%23FFFFFF' stroke-width='0.5' opacity='0.06' stroke-linecap='round'/></svg>"), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='56' viewBox='0 0 800 56' preserveAspectRatio='none'><path d='M0,28 Q200,0 400,28 T800,28' fill='none' stroke='%23FFFFFF' stroke-width='0.5' opacity='0.06' stroke-linecap='round'/></svg>"), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='56' viewBox='0 0 800 56' preserveAspectRatio='none'><path d='M0,28 Q200,0 400,28 T800,28' fill='none' stroke='%23FFFFFF' stroke-width='0.5' opacity='0.06' stroke-linecap='round'/></svg>");
  background-repeat: repeat, repeat, repeat, repeat;
  /* 振れ幅キープのためタイルの高さは 56px のまま */
  background-size: 800px 56px, 800px 56px, 800px 56px, 800px 56px;
  /* 縦位置を1/4ずつずらす → 見た目の間隔=約14px */
  background-position: 0 0, 0 18px, 0 28px, 0 42px;
}

/* 好みで色を調整 */
:root {
  --cta-text:#fff; /* “View” の色（淡い水色） */
  --cta-bg:#ffffff; /* 丸ボタンの背景 */
  --cta-fg:#0B2A6B; /* 丸ボタン内の矢印色 */
  --cta-bg-hover:#E9F1FF; /* ホバー時の丸の色 */
}

.top_page_company_section {
  --cta-text:#000; /* “View” の色（淡い水色） */
  --cta-bg:#005ea4; /* 丸ボタンの背景 */
  --cta-fg:#fff; /* 丸ボタン内の矢印色 */
  --cta-bg-hover:#012b4b; /* ホバー時の丸の色 */
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--cta-text);
  /* クリック領域を広げる */
  padding: 0.5rem 0.5rem 0.5rem 0;
}

/* “View” の下線をホバー時だけ */
.cta__label {
  position: relative;
  font-size: 0.95rem; /* ← 小さく */
  font-weight: 400; /* ← 細字 */
  letter-spacing: 0.03em;
}

.cta__label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

/* 丸いボタン */
.cta__circle {
  display: grid;
  place-items: center;
  width: 60px; /* ← 円の幅を小さく */
  height: 60px; /* ← 円の高さも小さく */
  border-radius: 50%;
  background: var(--cta-bg);
  color: var(--cta-fg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

/* 矢印サイズ */
.cta__icon {
  width: 22px; /* ← 小さめに */
  height: 22px;
  transition: transform 0.25s ease;
}

/* ホバー・フォーカス時の動き */
.service_box_first:hover .cta__label::after,
.cta:focus-visible .cta__label::after {
  transform: scaleX(1);
}

.service_box_first:hover .cta__circle,
.cta:focus-visible .cta__circle {
  background: var(--cta-bg-hover);
  transform: translateX(2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.service_box_first:hover .cta__icon,
.cta:focus-visible .cta__icon {
  transform: translateX(4px);
}

.service_box_second:hover .cta__label::after,
.cta:focus-visible .cta__label::after {
  transform: scaleX(1);
}

.service_box_second:hover .cta__circle,
.cta:focus-visible .cta__circle {
  background: var(--cta-bg-hover);
  transform: translateX(2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.service_box_second:hover .cta__icon,
.cta:focus-visible .cta__icon {
  transform: translateX(4px);
}

.service_box_third:hover .cta__label::after,
.cta:focus-visible .cta__label::after {
  transform: scaleX(1);
}

.service_box_third:hover .cta__circle,
.cta:focus-visible .cta__circle {
  background: var(--cta-bg-hover);
  transform: translateX(2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.service_box_third:hover .cta__icon,
.cta:focus-visible .cta__icon {
  transform: translateX(4px);
}

.service_box_business:hover .cta__label::after,
.cta:focus-visible .cta__label::after {
  transform: scaleX(1);
}

.service_box_business:hover .cta__circle,
.cta:focus-visible .cta__circle {
  background: var(--cta-bg-hover);
  transform: translateX(2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.service_box_business:hover .cta__icon,
.cta:focus-visible .cta__icon {
  transform: translateX(4px);
}

.service_box_message:hover .cta__label::after,
.cta:focus-visible .cta__label::after {
  transform: scaleX(1);
}

.service_box_message:hover .cta__circle,
.cta:focus-visible .cta__circle {
  background: var(--cta-bg-hover);
  transform: translateX(2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.service_box_message:hover .cta__icon,
.cta:focus-visible .cta__icon {
  transform: translateX(4px);
}

.service_box_company:hover .cta__label::after,
.cta:focus-visible .cta__label::after {
  transform: scaleX(1);
}

.service_box_company:hover .cta__circle,
.cta:focus-visible .cta__circle {
  background: var(--cta-bg-hover);
  transform: translateX(2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.service_box_company:hover .cta__icon,
.cta:focus-visible .cta__icon {
  transform: translateX(4px);
}

.footer_recruit_section:hover .cta__label::after,
.cta:focus-visible .cta__label::after {
  transform: scaleX(1);
}

.footer_recruit_section:hover .cta__circle,
.cta:focus-visible .cta__circle {
  background: var(--cta-bg-hover);
  transform: translateX(2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.footer_recruit_section:hover .cta__icon,
.cta:focus-visible .cta__icon {
  transform: translateX(4px);
}

.footer_contact_section:hover .cta__label::after,
.cta:focus-visible .cta__label::after {
  transform: scaleX(1);
}

.footer_contact_section:hover .cta__circle,
.cta:focus-visible .cta__circle {
  background: var(--cta-bg-hover);
  transform: translateX(2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.footer_contact_section:hover .cta__icon,
.cta:focus-visible .cta__icon {
  transform: translateX(4px);
}

/* キーボード操作のためのフォーカスリング */
.cta:focus-visible {
  outline: 3px solid rgba(191, 215, 255, 0.65);
  outline-offset: 6px;
}

.service_section_right_right {
  text-align: end;
}

.service_box {
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: 30px;
}

.service_box_first {
  position: relative;
  overflow: hidden; /* はみ出し防止 */
  color: #fff;
}

.service_box_first::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/wp-content/uploads/2025/08/AdobeStock_315871771.webp);
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  will-change: transform;
}

.service_box_first:hover::before {
  transform: scale(1.1);
}

.service_box_second {
  position: relative;
  overflow: hidden; /* はみ出し防止 */
  color: #fff;
}

.service_box_second::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/wp-content/uploads/2025/08/AdobeStock_325328393-scaled.webp);
  background-size: cover;
  transition: transform 0.8s ease; /* 滑らかに拡大 */
  will-change: transform; /* ブラウザに最適化指示 */
}

.service_box_second:hover::before {
  transform: scale(1.1); /* GPU処理で滑らかに拡大 */
}

.service_box_third {
  position: relative;
  overflow: hidden; /* はみ出し防止 */
  color: #fff;
}

.service_box_third::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/wp-content/uploads/2025/08/AdobeStock_183568443-scaled.webp);
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  will-change: transform;
}

.service_box_third:hover::before {
  transform: scale(1.1); /* 滑らか拡大 */
}

.top_page_company_section {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
  background-color: #ECF2F6;
  padding-bottom: 180px;
}

.alignfull.top_page_company_section {
  margin-top: -60px !important;
}

.top_page_company_section .smb-section__fixed-background {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
}

.top_page_company_section .smb-section__background {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
}

.top_company_box {
  padding-left: 50px;
}

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

.top_rec_con_section {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
  background-color: #fff;
}

.alignfull.top_rec_con_section {
  margin-top: -60px !important;
}

.l-footer {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
  margin-top: -60px !important;
}

.l-footer-widget-area__item {
  border-top-left-radius: 60px !important;
  border-top-right-radius: 60px !important;
  overflow: hidden;
}

.l-footer-widget-area .c-fluid-container .c-row .l-footer-widget-area__item:nth-child(1) {
  padding-top: 50px !important;
}

.l-footer-widget-area .c-fluid-container .c-row .l-footer-widget-area__item:nth-child(2) {
  background-color: #012b4b;
  margin-top: -60px !important;
  padding-top: 50px;
  z-index: 100;
}

.footer_recruit_section {
  position: relative;
  overflow: hidden; /* はみ出し防止 */
}

.footer_recruit_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/wp-content/uploads/2025/08/AdobeStock_494368816-scaled.webp);
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  will-change: transform;
  z-index: 0; /* 黒フィルターより下 */
}

.footer_recruit_section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 42, 75, 0.6);
  z-index: 1; /* 画像より上 */
}

.footer_recruit_section:hover::before {
  transform: scale(1.1); /* 画像だけ拡大 */
}

.footer_recruit_section .smb-box__body {
  z-index: 10;
}

.footer_contact_section {
  position: relative;
  overflow: hidden; /* はみ出し防止 */
}

.footer_contact_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/wp-content/uploads/2025/08/AdobeStock_579581627-scaled.webp);
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  will-change: transform;
  z-index: 0; /* 黒フィルターより下 */
}

.footer_contact_section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 42, 75, 0.6);
  z-index: 1; /* 画像より上 */
}

.footer_contact_section:hover::before {
  transform: scale(1.1); /* 画像だけ拡大 */
}

.footer_contact_section .smb-box__body {
  z-index: 10;
}

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

.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: #f3f3f3;
  transform: translateY(-5px);
}

.greeting_title_text_black::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  margin-right: 8px;
  background-color: #333;
  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: #012b4b;
  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: #012b4b !important;
}

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

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

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

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

.footer_botom_section {
  padding-top: 100px;
  padding-left: 60px;
}

.footer_col_first {
  --_item-width: 40%;
  text-align: start !important;
}

.footer_col_second {
  --_item-width: 17%;
  text-align: start !important;
}

.footer_col_third {
  --_item-width: 26%;
  text-align: start !important;
}

.footer_col_fourth {
  --_item-width: 17%;
  text-align: start !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;
}

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

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

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

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

  ******************************************************************/
  .u-invisible-lg-up {
    background-color: #012b4b;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .footer_point_text_sp {
    font-size: 0.75rem !important;
  }
  /* 固定ページ設定 */
  /* 好みで体裁 */
  .tickerTxt__txt-defaults {
    font-size: 3rem;
  }
  .page-template .l-contents__container {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .page_first_section .c-container {
    max-width: 100% !important;
  }
  .point_margin_top_no {
    margin-top: 5px !important;
  }
  .service_flow_box {
    padding: 7px !important;
  }
  .flow_col_section {
    gap: 3px !important;
  }
  .flow_col_section .wp-block-list {
    margin-top: 5px !important;
  }
  .flow_col_section_left {
    padding: 3px !important;
  }
  /* 列の中身を縦横中央寄せ */
  .flow_col_section_left {
    display: flex;
    align-items: center; /* 縦中央 */
    justify-content: center; /* 横中央（お好みで） */
  }
  /* 段落のデフォルト余白を消す（ズレ防止） */
  .flow_col_section_left > p {
    margin: 0;
  }
  .flow_col_section_right {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .commonHeader__circlePin {
    /* 好みで調整 */
    --pin-size: 75px; /* 全体の直径 */
    --spin-sec: 12s; /* 外周テキストの1周時間 */
    --pin-bg: #081a44; /* 中央の濃紺 */
    --ring-color: #6c86a8; /* 外周テキスト色（淡いブルー） */
    --arrow-color: #fff; /* 矢印の色（白） */
    --arrow-w: 1px; /* 矢印の線幅 */
    top: 45px;
    right: 10px;
  }
  .page_sclo_main_section {
    min-height: 200px !important;
  }
  .padding_top_Section {
    margin-top: 0px !important;
  }
  .page_into_img_section {
    min-height: 200px !important;
  }
  /* 事業部ページ */
  .zigyou_enter_section {
    padding-bottom: 120px;
    padding-top: 67px;
  }
  .zigyou_ai_section {
    padding-bottom: 120px;
    padding-top: 67px;
  }
  .zigyou_hybrid_section {
    padding-bottom: 120px;
    padding-top: 67px;
  }
  .zigyou_global_section {
    padding-bottom: 50px;
    padding-top: 67px;
  }
  /* 会社概要ページ */
  .company_table_sp .c-row__col--md-1-4 {
    margin-bottom: 3px !important;
  }
  .wp-block-snow-monkey-blocks-information {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .page-template .btn_sp {
    display: block !important;
  }
  .page-template .btn_pc {
    display: none !important;
  }
  .page-template .l-contents__body {
    padding-top: 81px;
  }
  .menu-item-141 a {
    padding: 10px 0px !important;
  }
  .menu-item-141:before {
    display: none !important;
  }
  .menu-item-141:after {
    display: none !important;
  }
  .menu-item-142 a {
    padding: 10px 0px !important;
  }
  .menu-item-142:before {
    display: none !important;
  }
  .menu-item-142:after {
    display: none !important;
  }
  .menu-item-143 a {
    padding: 10px 0px !important;
  }
  .menu-item-28 a {
    padding: 10px 0px !important;
    background: none;
    margin: 0px !important;
  }
  .c-drawer__submenu a {
    padding: 0px !important;
  }
  .c-drawer {
    background: linear-gradient(90deg, #02073f, #003b68) !important;
  }
  .l-header {
    height: 68px !important;
  }
  .c-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  p {
    font-size: 0.9rem;
  }
  .top_company_box {
    padding-left: 20px;
  }
  .slide_section {
    padding-top: 97px;
    padding-bottom: 137px;
  }
  .service_box {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .service_box_message {
    margin-top: 10px !important;
  }
  .service_box_message .wp-block-columns {
    gap: 1px !important;
  }
  .service_box_company {
    margin-top: 10px !important;
  }
  .service_box_company .wp-block-columns {
    gap: 1px !important;
  }
  .top_company_box {
    min-height: 410px !important;
  }
  .message_company_section {
    margin-top: 0px !important;
    gap: 0px !important;
  }
  .footer_recruit_section {
    padding-left: 13px !important;
    padding-right: 13px !important;
    text-align: start !important;
  }
  .footer_contact_section {
    padding-left: 13px !important;
    padding-right: 13px !important;
    text-align: start !important;
  }
  .footer_col_first {
    --_item-width: 100%;
  }
  .footer_col_second {
    --_item-width: 100%;
    text-align: start !important;
  }
  .footer_col_third {
    --_item-width: 100%;
    text-align: start !important;
  }
  .footer_col_fourth {
    --_item-width: 100%;
    text-align: start !important;
  }
  .footer_botom_section {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 35px;
  }
  .top_rec_con_section {
    padding-bottom: 120px;
  }
  .footer_margin_top {
    margin-top: 10px !important;
  }
  /* 好みで色を調整 */
  :root {
    --cta-text:#fff; /* “View” の色（淡い水色） */
    --cta-bg:#ffffff; /* 丸ボタンの背景 */
    --cta-fg:#0B2A6B; /* 丸ボタン内の矢印色 */
    --cta-bg-hover:#E9F1FF; /* ホバー時の丸の色 */
  }
  .top_page_company_section {
    --cta-text:#000; /* “View” の色（淡い水色） */
    --cta-bg:#005ea4; /* 丸ボタンの背景 */
    --cta-fg:#fff; /* 丸ボタン内の矢印色 */
    --cta-bg-hover:#012b4b; /* ホバー時の丸の色 */
  }
  .cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    color: var(--cta-text);
    /* クリック領域を広げる */
    padding: 0.5rem 0 0.5rem 0;
  }
  /* “View” の下線をホバー時だけ */
  .cta__label {
    position: relative;
    font-size: 0.9rem; /* ← 小さく */
    font-weight: 400; /* ← 細字 */
    letter-spacing: 0em;
  }
  /* 丸いボタン */
  .cta__circle {
    display: grid;
    place-items: center;
    width: 45px; /* ← 円の幅を小さく */
    height: 45px; /* ← 円の高さも小さく */
    border-radius: 50%;
    background: var(--cta-bg);
    color: var(--cta-fg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  }
  /* 矢印サイズ */
  .cta__icon {
    width: 22px; /* ← 小さめに */
    height: 22px;
    transition: transform 0.25s ease;
  }
  .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.35rem !important;
  }
  .page-template .c-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .swiper-slide {
    height: 100vh;
  }
  .pc_img {
    display: none;
  }
  .sp_img {
    display: block;
  }
  .hero__btn {
    bottom: 45%;
    width: 100vw;
  }
  .hero__title p {
    font-size: 27px;
    letter-spacing: 0px;
  }
  .hero__title {
    top: 38% !important;
  }
  .sub_title {
    font-size: 12px !important;
    line-height: 1.2rem !important;
  }
  .hero__title br {
    display: block;
  }
  .top_img_third {
    -o-object-position: 67% 50%;
       object-position: 67% 50%;
  }
  footer .footer_logo {
    width: 70% !important;
    text-align: center;
  }
  .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 */