@charset "UTF-8";
/*
# パンくずリストの上に余白を追加
---------------------------------- */
body:not(.home) .l-contents {
  padding-top: 5.30769rem;
  padding-top: calc(var(--_space, 1.76923rem) * 3);
}

/*
# サイト全体の文字色を変更
---------------------------------- */
body {
  color: #2e2e2e;
}

/* =========================================================
# ヘッダーナビ
========================================================= */
/*
# 区切り線の追加
---------------------------------- */
.c-navbar__item:not(:first-child):before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 30%;
  background-color: #2e2e2e;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*
# ホバーアクション
---------------------------------- */
.c-navbar__item > a {
  transition: all 0.3s;
}

.c-navbar__item > a::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20%;
  width: 60%;
  height: 1px;
  background-color: #1164d1;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

.c-navbar__item > a:hover {
  color: #1164d1;
}

.c-navbar__item > a:hover::after {
  transform: scale(1, 1);
}

/* ===== TwoWalk hero slideshow ===== */
.tw-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 95vh;
  min-height: 500px;
  overflow: hidden;
}

.tw-hero__slide,
.tw-hero__mask {
  position: absolute;
  inset: 0;
}

.tw-hero__slide {
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: tw-heroFade 25s infinite;
}

/* PC: 横長画像 */
.tw-hero__slide--1 {
  background-image: url("/wp-content/uploads/2026/06/hero1_v2-scaled.webp");
  animation-delay: 0s;
}

.tw-hero__slide--2 {
  background-image: url("/wp-content/uploads/2026/06/hero2_v2-scaled.webp");
  animation-delay: 5s;
}

.tw-hero__slide--3 {
  background-image: url("/wp-content/uploads/2026/06/hero3_v2-scaled.webp");
  animation-delay: 10s;
}

.tw-hero__slide--4 {
  background-image: url("/wp-content/uploads/2026/06/hero4_v2-scaled.webp");
  animation-delay: 15s;
}

.tw-hero__slide--5 {
  background-image: url("/wp-content/uploads/2026/06/hero5_v2-scaled.webp");
  animation-delay: 20s;
}

.tw-hero__mask {
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.3));
}

.tw-hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.tw-hero__title {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: clamp(26px, 4.6vw, 56px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.tw-hero__sub {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(13px, 1.6vw, 18px);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

@keyframes tw-heroFade {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  8% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  28% {
    opacity: 0;
    transform: scale(1.06);
  }
  100% {
    opacity: 0;
    transform: scale(1.06);
  }
}
/* ===== Scroll インジケーター ===== */
.tw-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
  pointer-events: none;
}

.tw-hero__scroll-text {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.tw-hero__scroll-line {
  position: relative;
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.tw-hero__scroll-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 40%;
  background: #fff;
  animation: tw-scrollFlow 2s ease-in-out infinite;
}

@keyframes tw-scrollFlow {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(250%);
  }
}
/* スマホ: 縦長画像に差し替え */
@media (max-width: 768px) {
  .tw-hero {
    height: 82vh;
    min-height: 480px;
  }
  .tw-hero__slide--1 {
    background-image: url("/wp-content/uploads/2026/06/heroM1_v2-scaled.webp");
  }
  .tw-hero__slide--2 {
    background-image: url("/wp-content/uploads/2026/06/heroM2_v2-1-scaled.webp");
  }
  .tw-hero__slide--3 {
    background-image: url("/wp-content/uploads/2026/06/heroM3_v1-scaled.webp");
  }
  .tw-hero__slide--4 {
    background-image: url("/wp-content/uploads/2026/06/heroM4_v1-scaled.webp");
  }
  .tw-hero__slide--5 {
    background-image: url("/wp-content/uploads/2026/06/heroM5_v2-scaled.webp");
  }
}
/* ===== CONCEPT 背景の透かし文字 ===== */
.tw-concept {
  position: relative;
  overflow: hidden;
}

/* ①白背景は一番下 */
.tw-concept > .smb-section__fixed-background {
  z-index: 0;
}

/* ②透かし文字は白背景の上 */
.tw-concept::before {
  content: "CONCEPT";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(48px, 15vw, 240px);
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.05); /* 透かしの濃さはココ */
  pointer-events: none;
}

/* CONCEPT透かし：スマホだけ上に配置（他セクションと統一） */
@media (max-width: 768px) {
  .tw-concept::before {
    top: 40px;
    transform: translateX(-50%); /* 中心基準→上端基準 */
    font-size: clamp(40px, 12vw, 180px); /* 他セクションと同じサイズ感に */
  }
}
/* ③本文・見出しは一番前 */
.tw-concept > .smb-section__inner {
  position: relative;
  z-index: 2;
}

/* 中途半端な折り返しを防ぐ */
.tw-concept .smb-section__title {
  letter-spacing: 0.08em;
  word-break: keep-all; /* 単語の途中で折り返さない */
  line-break: strict; /* 日本語の禁則を厳密に */
}

/* スマホだけ本文を左寄せ */
@media (max-width: 768px) {
  .tw-concept .smb-section__body p {
    text-align: left;
  }
}
/* 見出しの1文字孤立を防ぐ（全セクション共通） */
.smb-section__title {
  text-wrap: balance;
}

/* 本文・リード文の1文字孤立を防ぐ */
.smb-section__lede,
.smb-section__body p {
  text-wrap: pretty;
}

/* ===== 横スライド画像帯 ===== */
.tw-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.tw-strip__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: tw-stripScroll 35s linear infinite;
}

.tw-strip:hover .tw-strip__track {
  animation-play-state: paused; /* マウスを乗せると一時停止 */
}

.tw-strip__item {
  flex: 0 0 auto;
  width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;
}

@keyframes tw-stripScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* 8枚ぶん進んでループ */
}
/* スマホ：少し小さく */
@media (max-width: 768px) {
  .tw-strip__item {
    width: 200px;
    height: 200px;
  }
}
/* アニメOFF設定の人には動かさない（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  .tw-strip__track {
    animation: none;
  }
}
/* ===== CTA 固定背景（背景の上をコンテンツが滑る） ===== */
.tw-fixedbg {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("/wp-content/uploads/2026/06/contact_bg_v1.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: center, center -20%;
  background-size: cover, cover;
  background-attachment: fixed, fixed; /* ← これが“画面に貼り付ける”固定 */
}

@media (max-width: 768px) {
  .tw-fixedbg {
    background-attachment: scroll, scroll; /* スマホは固定をやめて画像を確実に表示 */
  }
}
/* ===== セクション透かし文字（共通の仕組み） ===== */
.tw-wm {
  position: relative;
  overflow: hidden;
}

.tw-wm > .smb-section__fixed-background {
  z-index: 0;
}

.tw-wm > .smb-section__inner {
  position: relative;
  z-index: 2;
}

.tw-wm::before {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translate(-50%);
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif; /* ← Arialから変更 */
  font-weight: 400; /* ← 700から変更 */
  font-size: clamp(40px, 12vw, 180px);
  letter-spacing: 0.06em; /* ← .04emから変更 */
  line-height: 1;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

/* 各セクションの文字（今後はここに1行ずつ足すだけ） */
.tw-wm-service::before {
  content: "SERVICE";
}

.tw-wm-reason::before {
  content: "REASON";
}

.tw-wm-area::before {
  content: "AREA";
}

/* トップページ：コンテンツ下の余白を消す（CTAとフッターの間） */
.home .p-section-front-page-content {
  padding-bottom: 0;
}

/* フッターのMENUを2カラムに */
.l-footer .widget_nav_menu ul {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 28px;
       column-gap: 28px;
}

/* フッター：MENU列を広く */
@media (min-width: 1024px) {
  .l-footer-widget-area__item:first-child {
    flex-basis: 40%;
    max-width: 40%;
  }
}
/* ===== お問い合わせフォームの体裁 ===== */
.snow-monkey-form { /* ← .smf-form から変更（フォーム全体を中央寄せ） */
  max-width: 700px;
  margin-inline: auto;
}

.smf-form input[type=text],
.smf-form input[type=email],
.smf-form input[type=tel] {
  width: 100%;
}

.smf-item {
  margin-bottom: 1.6em;
}

/* 必須項目に赤いバッジ */
.smf-item:has([data-validations~=required]) .smf-item__label__text::after {
  content: "必須";
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #e0392b;
  border-radius: 3px;
  vertical-align: middle;
}

/* ===== お問い合わせ ページヘッダー画像 ===== */
/* 顔が切れないよう、表示位置を上寄りに */
.c-page-header__bgimage img {
  -o-object-position: center 25%;
     object-position: center 25%;
}

/* タイトルを見やすく：暗いフィルター */
.c-page-header__bgimage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* ラベル（必須バッジ）と入力欄の間に余白 */
.smf-item__col--label {
  margin-bottom: 8px;
}

/* 料金表の列幅 */
.tw-price-table table {
  table-layout: fixed;
}

.tw-price-table th:nth-child(1),
.tw-price-table td:nth-child(1) {
  width: 32%;
} /* 配布方法 */
.tw-price-table th:nth-child(2),
.tw-price-table td:nth-child(2) {
  width: 14%;
} /* 料金（狭く） */
.tw-price-table th:nth-child(3),
.tw-price-table td:nth-child(3) {
  width: 54%;
} /* 特徴（広く） */
/* スマホ：料金表を縦積みカードに */
@media (max-width: 768px) {
  .tw-price-table table {
    table-layout: auto;
  }
  .tw-price-table thead {
    display: none;
  } /* ヘッダー行を隠す */
  .tw-price-table tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    overflow: hidden;
  }
  .tw-price-table td {
    display: block;
    width: 100% !important;
    border: none;
    padding: 10px 14px;
  }
  .tw-price-table td:nth-child(1) { /* 配布方法＝カードの見出し */
    background: #136AD1; /* ブランドカラー */
    color: #fff;
    font-weight: 700;
    text-align: center;
  }
  .tw-price-table td:nth-child(2)::before { /* 料金にラベル */
    content: "料金：";
    font-weight: 700;
  }
  .tw-price-table td:nth-child(3)::before { /* 特徴にラベル */
    content: "特徴：";
    font-weight: 700;
  }
}
/* ===== 情報テーブル（会社概要・サービス等で共用／見出し行アリ・ナシ両対応） ===== */
.tw-company-table table {
  table-layout: fixed;
  width: 100%;
}

.tw-company-table th,
.tw-company-table td {
  padding: 12px 18px;
}

/* 見出し行（あれば）＝ブランドブルーのバー */
.tw-company-table thead th {
  background: #136AD1;
  color: #fff;
  font-weight: 700;
  text-align: left;
}

.tw-company-table thead th:nth-child(1),
.tw-company-table td:nth-child(1) {
  width: 26%;
}

/* データ行の左列＝項目名（薄グレー＋太字） */
.tw-company-table tbody td:nth-child(1) {
  font-weight: 700;
  background: #f6f7f9;
}

/* スマホ：縦積みカード */
@media (max-width: 768px) {
  .tw-company-table table {
    table-layout: auto;
  }
  .tw-company-table thead {
    display: none;
  } /* 「項目／内容」見出しは隠す */
  .tw-company-table tr {
    display: block;
  }
  .tw-company-table td {
    display: block;
    width: 100% !important;
    border: none;
    padding: 8px 14px;
  }
  .tw-company-table tbody td:nth-child(1) { /* 項目名を見出しバーに */
    background: #f0f2f5;
    font-weight: 700;
  }
}
/* CTAの電話リンクを白に */
.tw-cta-tel a {
  color: #fff !important;
}

/* 料金ページ：印刷案内の付箋の縦線を青に（SMEのline-color変数を上書き） */
.tw-blue-line.is-style-sme-post-it-narrow {
  --sme-post-it-narrow--line-color: #136AD1 !important;
}

/* ===== 追従CTA（PC=右端の縦タブ / スマホ=下部固定バー） ===== */
/* PC：右端に縦書きタブ */
.tw-cta-fixed__tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9000;
  writing-mode: vertical-rl;
  text-orientation: upright; /* 文字を縦に正立 */
  background: #136AD1;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 20px 12px;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 2px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: background 0.2s;
}

.tw-cta-fixed__tab:hover {
  background: #0f579f;
  color: #fff;
}

/* スマホ用の下部バーはPCでは隠す */
.tw-cta-fixed__bar {
  display: none;
}

@media (max-width: 768px) {
  /* PCの縦タブはスマホで隠す */
  .tw-cta-fixed__tab {
    display: none;
  }
  /* 下部固定バー（電話＋お問い合わせ） */
  .tw-cta-fixed__bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  }
  .tw-cta-fixed__bar a {
    flex: 1 1 50%;
    text-align: center;
    padding: 15px 8px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
  }
  .tw-cta-fixed__bar-tel {
    background: #0f579f;
  } /* 濃い青＝電話 */
  .tw-cta-fixed__bar-contact {
    background: #136AD1;
  } /* ブランドブルー＝問い合わせ */
  /* バーの高さぶん、ページ末尾に余白（フッターが隠れないように） */
  body {
    padding-bottom: 54px;
  }
}
/* ハンバーガーメニューの背景をグラデに（ベタ塗りのキツさを緩和） */
.c-drawer.c-drawer--highlight-type-background-color {
  background: linear-gradient(160deg, #4A97F0, #093E7A) !important;
}

/* ===== トップ：スクロールでフワッと表示（フェードアップ／カードは1枚ずつ） ===== */
.tw-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.tw-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* セクション内のカードを順番に（stagger）。クラスの当たり判定を広めに */
.tw-reveal :is(.smb-panels__item, .wp-block-snow-monkey-blocks-panels-item, .c-row__col, .wp-block-column) {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.tw-reveal.is-in :is(.smb-panels__item, .wp-block-snow-monkey-blocks-panels-item, .c-row__col, .wp-block-column) {
  opacity: 1;
  transform: none;
}

.tw-reveal.is-in :is(.smb-panels__item, .wp-block-snow-monkey-blocks-panels-item, .c-row__col, .wp-block-column):nth-child(1) {
  transition-delay: 0.1s;
}

.tw-reveal.is-in :is(.smb-panels__item, .wp-block-snow-monkey-blocks-panels-item, .c-row__col, .wp-block-column):nth-child(2) {
  transition-delay: 0.35s;
}

.tw-reveal.is-in :is(.smb-panels__item, .wp-block-snow-monkey-blocks-panels-item, .c-row__col, .wp-block-column):nth-child(3) {
  transition-delay: 0.6s;
}

.tw-reveal.is-in :is(.smb-panels__item, .wp-block-snow-monkey-blocks-panels-item, .c-row__col, .wp-block-column):nth-child(n+4) {
  transition-delay: 0.8s;
}

/* ABOUTは「break the grid」で画像と文字ボックスが重なるレイアウト。
   中を1枚ずつ動かすと重なりがガタつくので、stagger対象から除外（セクション全体でフワッと出す） */
#ABOUT :is(.smb-panels__item, .wp-block-snow-monkey-blocks-panels-item, .c-row__col, .wp-block-column) {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

/* 動きを減らす設定の人には無効（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  .tw-reveal,
  .tw-reveal :is(.smb-panels__item, .wp-block-snow-monkey-blocks-panels-item, .c-row__col, .wp-block-column) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}/*# sourceMappingURL=style.css.map */