@charset "UTF-8";
/* ==========================================================================
 * 在宅ケア歩み株式会社 リニューアル用 追加スタイル
 * Phase 2-C: CSS変数定義とリニューアル骨格スタイル
 * ========================================================================== */

:root {
  /* === カラーシステム（ayumi0901.jp パレット由来） === */
  --c-primary:        #048b42;  /* メイン緑（ayumi0901.jp 圧倒的頻出色） */
  --c-primary-light:  #68a94a;  /* サブ緑 */
  --c-primary-bg:     #f4f9f6;  /* 背景用 薄緑 */
  --c-primary-dark:   #03632f;  /* 濃緑（CTAオーバーレイ等） */
  --c-accent:         #fcc419;  /* アクセントイエロー */
  --c-accent-dark:    #e0a900;  /* アクセント ホバー時 */

  --c-text:           #333333;
  --c-text-light:     #666666;
  --c-text-mute:      #999999;
  --c-bg:             #ffffff;
  --c-bg-gray:        #f7f7f7;
  --c-border:         #e0e0e0;

  /* === タイポグラフィ === */
  --ff-base:   "Sawarabi Gothic", "Noto Sans JP", sans-serif;
  --ff-en:     "Montserrat", "Rubik", sans-serif;
  --ff-mincho: "Sawarabi Gothic", "Noto Sans JP", sans-serif; /* 明朝撤去 → Sawarabi に統一 */

  /* === レイアウト === */
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

/* ==========================================================================
 * グローバルフォント上書き（base.css L148-155 の body 定義より family のみ差替）
 * 日本語: Sawarabi Gothic / 英数字専用: Montserrat
 * font-size / line-height は colab テンプレ標準 (body 1.6rem = 16px / html 62.5%) を維持
 * ========================================================================== */
body {
  font-family: var(--ff-base);
  /* .l-bg-circles (z-index:-1) を body の擬似背景として見せるための stacking context */
  position: relative;
  z-index: 0;
}
.c-en,
.l-page-cover__ttl.c-en,
.header__btn.c-en {
  font-family: var(--ff-en);
}

/* 下層ページタイトル: 旧 #191919/6rem 指定はここから削除し style.css の白/9rem を有効化
   （上書きが二重定義になっていたため、Single Source of Truth として style.css に集約） */

/* 404 ページ: 大小2段見出し（参考: front-check.site/404） */
.l-page-cover__ttl.h1_ttl { display: block; padding: 20px; line-height: 1.2; }
.l-page-cover__ttl.h1_ttl .big { display: block; font-family: var(--ff-en); font-size: 6rem; font-weight: 700; line-height: 1.2; color: #191919; }
.l-page-cover__ttl.h1_ttl .small { display: block; font-size: 2rem; font-weight: 500; line-height: 1.5; color: #191919; margin-top: 0.6rem; }
@media screen and (max-width: 767px) {
  .l-page-cover__ttl.h1_ttl { text-align: center; }
  .l-page-cover__ttl.h1_ttl .big { font-size: 4.2rem !important; }
  .l-page-cover__ttl.h1_ttl .small { font-size: 1.6rem !important; margin-top: 0.4rem; }
}

/* ==========================================================================
 * お問い合わせ（電話+フォーム） — colab-okinawa.jp/contact/ パターン複製
 * /company/ #contact-form セクション内
 * ========================================================================== */
.sub-contact__top {
  background-color: #fff;
  padding-bottom: 6rem;
  padding-top: 4rem;
  margin-bottom: 100px;
  /* border-bottom: 1px solid #333; */
}
/* c-heading01 内の英字スパン c-en に余白 */
.c-heading01 .c-en {
  margin-bottom: 1rem;
}
.sub-contact__box {
  margin-top: 4rem;
}
.sub-contact__box .c-textA {
  text-align: center;
}
.contactTit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  margin: 0 0 2.5rem;
}
.contactTit .jp {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-text);
  font-family: var(--ff-base);
}
.contactTit .en {
  font-size: 1.4rem;
  color: var(--c-primary);
  letter-spacing: .15em;
  font-family: var(--ff-en);
  text-transform: uppercase;
}
.sub-contact__list-top {
  display: flex;
  justify-content: center;
}
.sub-contact__item-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.sub-contact__tel {
  color: #333;
  font-size: 4.4rem;
  font-weight: 700;
  margin-top: 0;
  padding-left: 5.3rem;
  pointer-events: none;
  position: relative;
  font-family: var(--ff-en);
  text-decoration: none;
  letter-spacing: .04em;
  line-height: 1.1;
}
.sub-contact__tel::before {
  background-image: url(../img/common/tel-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 2.744rem;
  left: 1.2rem;
  margin: auto;
  position: absolute;
  top: 0.6rem;
  width: 2.744rem;
}
.sub-contact__tel:hover { opacity: .8; }
.sub-contact__time {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  color: var(--c-text-light);
  flex-wrap: wrap;
  justify-content: center;
}
.sub-contact__time span:nth-of-type(1) {
  display: inline-block;
  padding: .2rem 1rem;
  border: 1px solid var(--c-primary);
  border-radius: 4px;
  color: var(--c-primary);
  font-weight: 600;
  font-size: 1.3rem;
}

@media (max-width: 767px) {
  .sub-contact__top { padding: 2rem 0; margin-bottom: 2rem; }
  .contactTit .jp { font-size: 1.9rem; }
  .sub-contact__tel { padding-left: 4.2rem; font-size: 4rem; }
  .sub-contact__time { font-size: 1.3rem; }
}

/* ==========================================================================
 * main.sub / .sub 背景の透明化（ユーザー指示）
 * colab base.css 側で #faf8f3 等の薄ベージュ背景が当たっていたのを撤去
 * ========================================================================== */
/* 背景円 (.l-bg-circles) を body 擬似背景として可視化するため main 系の塗りつぶしを無効化
   base.css の以下 3 ルールを上書き:
   - L280  main.home { background-color: #edf4fa; }
   - L1652 main.sub  { background-color: #faf8f3; }
   - L6977 main.home { background-color: #fff;    } */
main.home,
main.sub,
.sub {
  background-color: transparent;
}

/* topics 関連ページ（投稿詳細 single / 投稿アーカイブ archive・category / topics 固定ページ）は
   背景円を見せず読みやすさ優先で main 背景を白に戻す
   注: /topics/ は WP の posts_page 設定なので body class は `blog` (page-id ではない) */
body.single main,
body.single .sub,
body.archive main,
body.archive .sub,
body.blog main,
body.blog .sub {
  background-color: #fff;
}

/* ==========================================================================
 * ページネーション: WP the_posts_pagination() 標準出力 (.pagination .page-numbers) のスタイル
 * ========================================================================== */
.pagination-wrapper {
  margin: 4rem auto 0;
  display: flex;
  justify-content: center;
}
.pagination-wrapper:empty { display: none; }
.pagination,
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
}
.pagination .page-numbers,
.pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  padding: 0 1.2rem;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  color: var(--c-text);
  font-family: var(--ff-en);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  transition: all .2s ease;
}
.pagination .page-numbers:hover,
.pagination-wrapper .page-numbers:hover {
  background: var(--c-primary-bg);
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.pagination .page-numbers.current,
.pagination-wrapper .page-numbers.current {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.pagination .page-numbers.dots,
.pagination-wrapper .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  color: var(--c-text-mute);
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next,
.pagination-wrapper .page-numbers.prev,
.pagination-wrapper .page-numbers.next {
  font-family: var(--ff-base);
  padding: 0 1.6rem;
}

/* ==========================================================================
 * ブログ・他: COLAB sub-archive デフォルトレイアウト + 色のみ ayumi 緑系に上書き
 * ========================================================================== */
.sub-archive__container--works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  margin-top: 2rem;
}
.sub-archive__link {
  display: block;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  text-decoration: none;
  color: var(--c-text);
  transition: transform .2s ease;
  overflow: hidden;
}
.sub-archive__link:hover { transform: translateY(-2px); }
.sub-archive__category {
  align-items: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  min-width: 0;
  padding: 0;
  text-align: center;
  color: #333;
  border: 0;
}
.sub-archive__link .home-news__thumbnail {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: var(--c-bg-gray);
}
.sub-archive__link .home-news__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sub-archive__time-category { margin: 1.2rem 1.6rem .8rem; }
.sub-archive__category.-blog span {
  display: inline-block;
  padding: .3rem 1rem;
  background: var(--c-primary-light);
  color: #fff;
  font-size: 1.2rem;
  border-radius: 4px;
}
.sub-archive__title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--c-text);
  font-family: var(--ff-base);
  padding: 0 1.6rem 1.6rem;
}
@media (max-width: 1024px) {
  .sub-archive__container--works { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sub-archive__container--works { grid-template-columns: 1fr; }
}

/* ==========================================================================
 * TOP セクション背景（ユーザー指定）
 * .home-mv / .home .p-about / .home .p-service を薄緑統一
 * CSS Nesting 形式は colab テンプレで効かない環境があるため flat 書き換え
 * ========================================================================== */
.home-mv {
  position: relative;
  padding-bottom: 100px;
}
.home {
  .p-about {
    position: relative;
    padding: 100px 0 79px;
    background-color: #f4f9f6;
  }
}
.home .p-about .p-about-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.home .p-about .p-about-box .p-about-box__imageArea {
  margin-top: 0;
  width: 40%;
  position: relative;
  z-index: 5;
}
.home .p-about .p-about-box .p-about-box__textArea .tit {
  color: #333;
  font-size: 32px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .home .p-about .p-about-box .p-about-box__textArea .tit {
    font-size: 2.2rem;
    margin-top: 2rem;
  }
}
.p-about-box__textArea img {
  border-radius: 20px;
}
.home {
  .p-service {
    position: relative;
    background-color: #f4f9f6;
    padding-bottom: 149px;
  }
}
.home .p-company .p-company__textArea .titArea .en {
  background: linear-gradient(0deg, #68a94a 37%, #c8ffe6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 80px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .home .p-company .p-company__textArea .titArea .en {
    font-size: 5rem;
  }
}

/* ==========================================================================
 * TOP 採用情報（パララックス）— front-check.site /home/ より複製
 * 色: 緑系（ayumi トンマナ）にマッピング
 * ========================================================================== */
.p-top-recruit-parallax {
  position: relative;
  min-height: 36rem;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.p-top-recruit-parallax__bg {
  position: absolute;
  inset: -25% 0;
  background-image: url(../img/home/recruit_bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  z-index: -2;
}
.p-top-recruit-parallax__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 99, 47, 0.82) 0%,
    rgba(4, 139, 66, 0.82) 50%,
    rgba(3, 99, 47, 0.88) 100%
  );
  z-index: -1;
}
.p-top-recruit-parallax__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.p-top-recruit-parallax__heading {
  color: #fff !important;
  margin-bottom: 2.5rem;
}
.p-top-recruit-parallax__heading span,
.p-top-recruit-parallax__heading .c-en {
  color: #fff !important;
}
.p-top-recruit-parallax__inner span.en.c-en {
  color: #fff;
}
.p-top-recruit-parallax__inner .c-titA .jp {
  color: #fff;
}
.p-top-recruit-parallax__text {
  font-size: 1.55rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.95);
  margin: 2rem 0 3rem;
  font-family: var(--ff-base);
}
.p-top-recruit-parallax__btn-wrap { text-align: center; }
.p-top-recruit-parallax__btn-wrap .btn {
  display: inline-block;
  padding: 1.4rem 4rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: opacity .2s ease, transform .2s ease;
  font-family: var(--ff-base);
}
.p-top-recruit-parallax__btn-wrap .btn.-color {
  background: var(--c-accent);
  color: var(--c-primary-dark);
  border: 1px solid var(--c-accent);
}
.p-top-recruit-parallax__btn-wrap .btn.-color:hover {
  background: var(--c-accent-dark);
  color: #fff;
  border-color: var(--c-accent-dark);
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .p-top-recruit-parallax { min-height: 28rem; margin-top: 4rem; }
  .p-top-recruit-parallax__bg { inset: -15% 0; }
  .p-top-recruit-parallax__inner { padding: 4rem 1.5rem; }
  .p-top-recruit-parallax__text { font-size: 1.35rem; margin-bottom: 2.5rem; }
}
.home .home-works .c-titA {
  margin-top: 0;
  display: flex;
  gap: 10px;
}

/* ==========================================================================
 * .slider_item 内の画像（slick スライダーのサムネ）— ユーザー指定
 * ========================================================================== */
.slider_item img {
  width: 26vw;
  height: auto;
  /* box-shadow: 0 0px 20px rgba(0, 0, 0, .1); */
}
@media (max-width: 767px) {
  .slider_item img {
    width: 60vw !important;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 3 / 2;
    margin-top: 3rem;
    box-shadow: none;
  }
}

/* ==========================================================================
 * TOP ブログハイライト: slick スライダー
 * ========================================================================== */
.home-blog {
  padding: clamp(4rem, 6vw, 6rem) 0;
  /* background: var(--c-primary-bg); */
}
.home-blog .inner-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.home-blog__container { margin-top: 3rem; }
.home-blog-slider { list-style: none; padding: 0; margin: 0; }
.home-blog-slider .slick-list { padding: 1rem 0; overflow: hidden; }
.home-blog-slider .slick-slide { padding: 0 1rem; }
.home-blog__link {
  display: block;
  background: #fff;
  border-radius: 20px;
  text-decoration: none;
  color: var(--c-text);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.home-blog__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4,139,66,.10);
}
.home-blog__thumbnail {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--c-bg-gray);
}
.home-blog__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-blog__time-category {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.6rem 0;
  font-size: 1.3rem;
}
.home-blog__time {
  font-family: var(--ff-en);
  color: var(--c-text-light);
  letter-spacing: .05em;
}
.home-blog__category span {
  display: inline-block;
  padding: .2rem .8rem;
  background: var(--c-primary-light);
  color: #fff;
  font-size: 1.2rem;
  border-radius: 4px;
}
.home-blog__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--c-text);
  font-family: var(--ff-base);
  padding: .8rem 1.6rem 1.6rem;
}
.home-blog__btn-wrap { text-align: center; margin-top: 3rem; }

/* slick の矢印・ドットをトンマナに */
.home-blog-slider .slick-prev,
.home-blog-slider .slick-next {
  width: 4rem;
  height: 4rem;
  background: var(--c-primary);
  border-radius: 50%;
  z-index: 2;
}
.home-blog-slider .slick-prev::before,
.home-blog-slider .slick-next::before {
  color: #fff;
  font-size: 2rem;
  opacity: 1;
}
.home-blog-slider .slick-prev { left: -1rem; }
.home-blog-slider .slick-next { right: -1rem; }
.home-blog-slider .slick-dots li button::before {
  font-size: 1.2rem;
  color: var(--c-primary-light);
  opacity: .5;
}
.home-blog-slider .slick-dots li.slick-active button::before {
  color: var(--c-primary);
  opacity: 1;
}

/* ==========================================================================
 * TOP 利用者様の声: 3カラム カード (5行で省略 / アイキャッチ表示)
 * ========================================================================== */
.home-voice {
  padding: clamp(3rem, 6vw, 5rem) 0;
  /* background: #ffffff; */
}
.home-works {
  /* background: linear-gradient(180deg, white 0%, #fdf7ee 100%); */
  padding-bottom: 8rem;
  /* padding-top: 8rem; */
  position: relative;
  z-index: 1;
  /* margin: 8rem 0 0 0; */
  background-color: #f4f9f6;
  background-blend-mode: lighten;
  /* background: #fff; */
}
.home .home-works {
  padding-bottom: 60px;
  /* overflow: hidden; */
  padding: 6rem 0 3rem;
}
.item_group .slider_item {
  margin-top: 0;
}
.home-voice-cards {
  list-style: none;
  padding: 0;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  max-width: 1200px;
}
.home-voice-card { background: transparent; }
.home-voice-card__link {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--c-text);
  height: 100%;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.home-voice-card__link:hover {
  box-shadow: 0 6px 20px rgba(4,139,66,.10);
  border-color: var(--c-primary-light);
  transform: translateY(-2px);
}
.home-voice-card__head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.home-voice-card__img {
  flex-shrink: 0;
  width: 7rem;
  height: 7rem;
  overflow: hidden;
  border-radius: 50%;
  background: var(--c-bg-gray);
}
.home-voice-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-voice-card__img-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-primary-bg) 0%, #fff 100%);
  border: 1px dashed var(--c-primary-light);
  border-radius: 50%;
}
.home-voice-card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.home-voice-card__service {
  display: inline-block;
  font-size: 1.2rem;
  padding: .2rem .8rem;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  border-radius: 4px;
  font-weight: 600;
  font-family: var(--ff-base);
  align-self: flex-start;
  line-height: 1.3;
}
.home-voice-card__name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-text);
  font-family: var(--ff-base);
}
.home-voice-card__comment {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--c-text);
  font-family: var(--ff-base);
  /* 5行で … 省略 */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.home-voice-card__comment p { margin: 0; }
.home-voice__btn-wrap {
  text-align: center;
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .home-voice-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .home-voice-cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
 * カテゴリ絞り込みバー (sky-info/info/ の .p-archive-category-row 複製)
 * ALL / カテゴリ名見出し + プルダウンセレクト
 * 色: 緑系 (var(--c-primary))
 * ========================================================================== */
.p-archive-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--c-text);
  padding-bottom: 1.5rem;
  margin: 2rem auto 0;
  /* max-width: 900px; */
  flex-wrap: wrap;
  gap: 1rem;
}
.p-archive-category-row .my-content__cat,
.my-content__cat {
  font-family: var(--ff-en);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--c-text);
  padding-left: 1rem;
  margin: 0;
}
.p-archive-category-row .p-info-category-filter {
  margin-bottom: 0;
  text-align: right;
}
.p-info-category-filter__label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-text);
  margin-right: 1rem;
  vertical-align: middle;
}
.p-info-category-select {
  display: inline-block;
  min-width: 16rem;
  max-width: 100%;
  padding: .7rem 3rem .7rem 1.2rem;
  font-size: 1.4rem;
  font-family: var(--ff-base);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23048b42' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  color: var(--c-text);
  transition: border-color .2s ease;
}
.p-info-category-select:hover,
.p-info-category-select:focus {
  border-color: var(--c-primary);
  outline: none;
}

/* ==========================================================================
 * /topics/ お知らせ・ブログ一覧:
 * front-check.xyz/info/ の .my-content__wrap a パターン複製
 * grid 12.5rem 1fr + border-bottom 区切り、アイキャッチ正方形 1:1
 * ayumi トンマナ: 緑系 + Sawarabi(JP) / Montserrat(EN)
 * base.css の旧 .c-news__link 縦積みCSS を上書き
 * ========================================================================== */
.c-news {
  max-width: 900px;
  margin: 2.5rem auto 0;
}
.c-news__item { }

.c-news__link {
  display: grid;
  grid-template-columns: 18rem 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-border);
  text-decoration: none;
  transition: opacity .2s ease;
}
.c-news__link:hover { opacity: .7; }

.c-news__img {
  width: 18rem;
  aspect-ratio: 3/2;
  padding-top: 0; /* base.css の旧 10rem を打ち消し */
  overflow: hidden;
  border-radius: 4px;
  background: var(--c-bg-gray);
  position: relative;
}
.c-news__img img {
  position: static !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-news__body {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  width: auto;
}
.c-news__time {
  font-family: var(--ff-en);
  font-size: 1.4rem;
  color: var(--c-text-light);
  letter-spacing: .06em;
  font-weight: 500;
}
.c-news__ttl {
  font-family: var(--ff-base);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.6;
  margin: 0;
}
.c-news__link:hover .c-news__ttl { color: var(--c-primary); }

@media (max-width: 767px) {
  .c-news__link {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 2rem 0;
  }
  .c-news__img {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .c-news__ttl { font-size: 1.5rem; }
}
/* TOP のお知らせは画像幅をオート（コンテナに追従） */
@media (min-width: 768px) {
  .home .c-news__img {
    width: auto;
  }
}

/* ----- 個人情報保護方針 (ayumi0901.jp 由来 / 送信ボタン下配置) ----- */
.sub-contact__privacy { margin-top: 5rem; }
.privacy-policy-title {
  font-family: var(--ff-base);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  margin: 0 auto 1.2rem;
  max-width: 900px;
  padding-left: 1rem;
  border-left: 4px solid var(--c-primary);
}
.privacy-policy-area {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem 3.5rem;
  border-radius: 12px;
  border: 1px solid var(--c-border);
  max-height: 480px;
  overflow-y: auto;
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--c-text);
  text-align: left;
}
.privacy-policy-area p { margin: 0 0 1.5rem; }
.privacy-policy-area p:last-child { margin-bottom: 0; }
.privacy-policy-area h3 {
  font-family: var(--ff-base);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin: 2.4rem 0 .8rem;
  padding-left: 1rem;
  border-left: 4px solid var(--c-primary);
}
.privacy-policy-area h3:first-of-type { margin-top: 1.5rem; }
.privacy-policy-area ul {
  list-style: disc;
  padding-left: 2.4rem;
  margin: 0 0 1.5rem;
}
.privacy-policy-area ul li { margin-bottom: .5rem; }
@media (max-width: 767px) {
  .privacy-policy-area { padding: 2rem 1.6rem; max-height: 380px; }
  .privacy-policy-area h3 { font-size: 1.5rem; }
}

/* ----- プライバシーポリシー同意チェック (zenrindo.com/contact/ パターン) ----- */
.privacy-policy-area__agree {
  text-align: center;
  margin: 3rem auto 2rem;
}
.privacy-policy-area__agree label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--c-text);
  padding: 1.2rem 2rem;
  background: var(--c-primary-bg);
  border-radius: 8px;
  border: 1px solid var(--c-primary-light);
  user-select: none;
  transition: background .2s ease;
}
.privacy-policy-area__agree label:hover { background: #e8f3ed; }
.privacy-policy-area__agree input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  accent-color: var(--c-primary);
  cursor: pointer;
}
/* 未チェック時の送信ボタン無効化スタイル */
.wpcf7-submit.is-disabled,
.wpcf7-form input[type="submit"].is-disabled,
.wpcf7-form button[type="submit"].is-disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================================================================
 * ホバーアニメーション 共通ルール
 * リンク・ボタン・カード・画像にサイト全体で一貫した hover を付与
 * ========================================================================== */

/* --- ナビゲーションリンク --- */
.header__link,
.nav-drawer__link,
.footer__link {
  transition: color .2s ease, opacity .2s ease;
}
/* PCヘッダーの長い項目を 2行で見やすく */
.header__link {
  line-height: 1.3;
  text-align: center;
  display: inline-block;
}
.header__link br { display: inline; }
@media (max-width: 900px) {
  /* 1024-768 タブレット幅で文字を縮小 */
  .header__list { gap: 1rem !important; }
  .header__link { font-size: 1.2rem; }
}
.header__link:hover,
.nav-drawer__link:hover,
.footer__link:hover {
  color: var(--c-primary);
  opacity: .85;
}
.footer.footer--bg .footer__link:hover {
  color: var(--c-primary-bg);
  opacity: 1;
}

/* --- 共通ボタン .button a (元の display: flex 維持、transition だけ付与) --- */
.button a {
  transition:
    transform .25s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow .25s ease,
    opacity .2s ease;
}
.button a:hover {
  transform: translateY(-2px);
  opacity: .92;
}

/* --- カード型リンク（共通の浮き上がり） --- */
.home-works__link,
.sub-archive__link,
.c-news__link,
.home-voice-card__link,
.footer_cta_card,
.footer-facility__card,
.p-service-contents__box--01,
.p-service-contents__box--02 .boxItem {
  transition:
    transform .3s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow .3s ease,
    border-color .2s ease;
}
.home-works__link:hover,
.sub-archive__link:hover,
.home-voice-card__link:hover,
.footer-facility__card:hover,
.p-service-contents__box--02 .boxItem:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 10px 28px rgba(4,139,66,.12); */
}

/* --- カード内画像のズーム（box-shadow 系カード共通） --- */
.home-works__thumbnail,
.sub-archive__link .home-news__thumbnail,
.c-news__img,
.home-voice-card__img,
.p-reasons-support__card-img,
.p-service-contents__box .imageArea,
.boxItem .imageArea {
  overflow: hidden;
}
.home-works__thumbnail img,
.sub-archive__link .home-news__thumbnail img,
.c-news__img img,
.home-voice-card__img img,
.p-reasons-support__card-img img,
.p-service-contents__box .imageArea img,
.boxItem .imageArea img {
  transition: transform .5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.home-works__link:hover .home-works__thumbnail img,
.sub-archive__link:hover .home-news__thumbnail img,
.c-news__link:hover .c-news__img img,
.home-voice-card__link:hover .home-voice-card__img img,
.p-reasons-support__card:hover .p-reasons-support__card-img img,
.p-service-contents__box--02 .boxItem:hover .imageArea img {
  transform: scale(1.06);
}

/* --- お問い合わせ電話番号リンク（hover で色を濃く） --- */
.sub-contact__tel,
.header__tel,
.footer .tel__link {
  transition: color .2s ease, opacity .2s ease;
}
.sub-contact__tel:hover,
.header__tel:hover,
.footer .tel__link:hover {
  color: var(--c-primary-dark);
  opacity: .85;
}

/* --- カテゴリタグ・SNSアイコン等の小さいインタラクション --- */
.cat-tag,
.area-block__badge {
  transition: transform .2s ease;
}
a:hover > .cat-tag,
a:hover > .area-block__badge {
  transform: scale(1.04);
}

/* --- page-top ボタンの hover --- */
.page-top a {
  transition: opacity .2s ease, transform .25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.page-top a:hover {
  transform: translateY(-3px);
  opacity: .85;
}

/* ==========================================================================
 * スクロールフェードイン アニメーション (cyberagent.co.jp 風)
 * .js-fadeUp 要素を初期: 透明+40px下にずらす → .is-inview で表示位置に
 * inview.js が viewport 進入時に .is-inview を付与済（main.js）
 * prefers-reduced-motion 環境では無効化
 *
 * 除外: 特定の positioning が必要な要素は対象外（MV catch / l-page-cover / footer 等）
 * ========================================================================== */
.js-fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}
/* MV / l-page-cover / footer 系の js-fadeUp は除外（既存のpositioning/transformと干渉するため）*/
.l-page-cover .js-fadeUp,
.l-page-cover.js-fadeUp,
footer .js-fadeUp,
.footer .js-fadeUp,
.footer_top .js-fadeUp,
.footer-contact.js-fadeUp {
  opacity: 1 !important;
  transform: none !important;
}
/* MV キャッチ は position: absolute + translate(-50%,-50%) で中央寄せされているため、
   fadeUp の transform が centering を破壊する → 個別に正しい transform を強制 */
.home-mv__text,
.home-mv__text.js-fadeUp,
.home-mv__text.js-fadeUp.is-inview,
.home-mv .js-fadeUp,
.home-mv__catch.js-fadeUp,
.home-mv__catch {
  opacity: 1 !important;
  transform: translate(-50%, -50%) !important;
}
.home-mv__catch,
.home-mv__catch.js-fadeUp {
  /* 子要素は親の translate を継承しないので、catch 自体は transform 不要 */
  transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .js-fadeUp,
  .js-fadeUp.is-inview {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* フッター背景: ayumi0901系メイン緑（ユーザー指示） */
.footer_top { background: #048b42 !important; }

/* フッター本体: ユーザー指定 */
.footer {
  background-color: #ffffff;
  color: #232472;
  padding-top: 5.1rem;
  position: relative;
}

/* ==========================================================================
 * フッター — saicolo パターン (footer_cta 2カラム / footer-facility 3カラム / Gナビ)
 * SNS は無し
 * ========================================================================== */

/* === CTA: 2カラム (お問い合わせ + 電話) === */
.footer_cta {
  position: relative;
  background: #048b42;
  padding: 6rem 2rem 8rem;
}
.footer_cta .container { max-width: 116.8rem; margin: 0 auto; }
.footer_cta_heading {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.4;
  font-family: var(--ff-base);
  /* text-shadow: 0 1px 4px rgba(0,0,0,.1); */
}
.footer_cta_cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer_cta_cards--2col {
  grid-template-columns: 1fr 1fr;
}
.footer_cta_card {
  background: #fff;
  border-radius: 1.2rem;
  text-align: center;
  padding: 5rem 2rem 3rem;
  position: relative;
  text-decoration: none;
  color: var(--c-text);
  transition: box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer_cta_card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  transform: translateY(-4px);
}
.footer_cta_card_icon {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 8rem;
  background: #f9c418;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.footer_cta_card_icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer_cta_card_title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 1.2rem;
  font-family: var(--ff-base);
}
.footer_cta_card_txt {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--c-text-light);
  margin-bottom: 2rem;
  flex-grow: 1;
  font-family: var(--ff-base);
}
.footer_cta_card_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--c-primary);
  color: #fff;
  padding: 1.4rem 4rem;
  border-radius: 5rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  /* box-shadow: 0 4px 12px rgba(4,139,66,0.25); */
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  font-family: var(--ff-base);
}
.footer_cta_card_btn::after {
  content: "→";
  font-weight: 700;
  transition: transform .25s ease;
}
.footer_cta_card:hover .footer_cta_card_btn {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4,139,66,0.35);
}
.footer_cta_card:hover .footer_cta_card_btn::after {
  transform: translateX(4px);
}
.footer_cta_card_tel {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0 0 .5rem;
  font-family: var(--ff-en);
}
.footer_cta_card_time {
  font-size: 1.3rem;
  color: var(--c-text-light);
  margin: 0;
  font-family: var(--ff-base);
  line-height: 1.6;
}

/* === 施設情報・アクセス: 3カラム === */
.footer-contact {
  padding: 5rem 0 10rem;
  /* background: #fff; */
}
/* colab base.css L6631 の .footer-contact::before（下部グラデバー）を撤去 */
.footer-contact::before {
  content: none !important;
  display: none !important;
}
.footer-contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-facility__heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin: 0 0 3rem;
  display: block;
  text-align: left;
  font-family: var(--ff-base);
  padding-left: 1rem;
  border-left: 4px solid var(--c-primary);
}
.footer-facility {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.footer-facility--3col {
  grid-template-columns: 1fr 1fr 1fr;
}
.footer-facility__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  border: 1px solid var(--c-border);
}
.footer-facility__info {
  padding: 2rem;
}
.footer-facility__name {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--ff-base);
  margin: 1rem 0 1rem;
  color: var(--c-primary-dark);
  text-align: center;
}
.footer-facility__info .footer__address {
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--c-text);
  text-align: left;
}
.footer-facility__info .footer__address span {
  display: block;
  margin-top: .3rem;
}
.footer-facility__info .footer__address a {
  color: var(--c-primary);
  text-decoration: underline;
}
.footer-facility__map {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border-top: 1px solid var(--c-border);
}
.footer-facility__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* === グローバルナビ === */
.footer.footer--bg {
  background: var(--c-primary-dark);
  padding: 4rem 0 0;
  color: #fff;
}
/* colab style.css L6559 の .footer--bg.is-pageend ::before/::after の
   12秒 section-blur-footer アニメーションを撤去（ユーザー指示） */
.footer.footer--bg.is-pageend::before,
.footer.footer--bg.is-pageend::after {
  animation: none !important;
  content: none !important;
  display: none !important;
}
.footer.footer--bg .inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer.footer--bg .footer-flex { width: 100%; }
.footer.footer--bg .footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  justify-content: center;
}
.footer.footer--bg .footer__item { margin: 0; }
.footer.footer--bg .footer__link {
  color: #fff;
  font-size: 1.4rem;
  font-family: var(--ff-base);
  position: relative;
  transition: opacity .2s ease;
  text-decoration: none;
}
.footer.footer--bg .footer__link:hover { opacity: .7; }
.footer.footer--bg .footer__link::before { display: none; }
.footer.footer--bg .footer__copyright {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,.7);
  padding: 2rem 0 1rem;
  font-family: var(--ff-en);
  letter-spacing: .04em;
}

/* SP */
@media (max-width: 1024px) {
  .footer-facility--3col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .footer_cta { padding: 5rem 1.6rem 6rem; }
  .footer_cta_heading { font-size: 2.2rem; margin-bottom: 7rem; }
  .footer_cta_cards--2col { grid-template-columns: 1fr; gap: 5rem; }
  .footer-contact { padding: 4rem 0; }
  .footer-facility,
  .footer-facility--3col { grid-template-columns: 1fr; }
  .footer.footer--bg .footer__list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* グローバル: リンク色 / 装飾（ユーザー指示）
 * display:block は global では破壊的（breadcrumb / table内 tel / 段落内リンクが全部縦積み化）
 * のため撤去。block 化が必要なカード型リンク等は個別に display:block を当てる。 */
a {
  color: #000000;
  text-decoration: none;
}

/* ==========================================================================
 * サイト全体: 角丸統一（ユーザー指示）
 * ボタン・入力・画像・iframe・テーブル・カードなどに丸み付与
 * 既に角丸が定義済の要素は上書きしない（最小値 8px 程度を補完）
 * ========================================================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
input[type="password"],
input[type="date"],
input[type="datetime-local"],
textarea,
select {
  border-radius: 8px;
}
input[type="submit"],
input[type="button"],
button:not(.hamburger):not(.slick-arrow),
.wpcf7-submit {
  border-radius: 999px;
}
/* 画像 */
.wp-block-image img,
.p-post-article__contents img,
.sub-single__body img,
figure img {
  border-radius: 12px;
}
/* 地図 iframe */
iframe[src*="google.com/maps"],
iframe[src*="maps.google"] {
  border-radius: 12px;
}
/* テーブル */
.c-table02,
table.c-table02 {
  border-radius: 12px;
  overflow: hidden;
}
/* 共通ボックス系（既に角丸あれば上書きしない最小値）*/
.area-block { border-radius: 12px; }

/* ==========================================================================
 * セクション交互背景（front-check.site/about/ のパターン流用）
 * 奇数番目セクション = 白 / 偶数番目 = 薄緑 var(--c-primary-bg) #f4f9f6
 * 対象: /sunsun/ /ikoha/ /ayumi/ /company/ などの下層ページ <section class="sub-shop">
 * ========================================================================== */
.l-main > section.sub-shop {
  /* background-color: #ffffff; */
}
.l-main > section.sub-shop:nth-of-type(even) {
  background-color: var(--c-primary-bg);
}

/* === グローバル上書き（既存colabテーマと衝突しないように bem 風セレクタで） === */

/* ヘッダーロゴ画像化に伴う調整 */
.header__logo img,
.header-sp__logo img {
  height: auto;
  max-height: 60px;
  width: auto;
}

.header-sp__logo img { max-height: 40px; }

/* メインカラーをCTA・見出しに反映（雛形） */
.header__btn,
.nav-drawer__btn,
.footer .mail.btn {
  background: var(--c-primary);
  color: #fff;
  transition: background .2s;
}
.header__btn:hover,
.nav-drawer__btn:hover,
.footer .mail.btn:hover {
  background: var(--c-primary-light);
}

.header__tel,
.footer .tel__link,
.nav-drawer__tel a {
  color: var(--c-primary);
}

/* ========== 下層ページ共通: ヒーロー ========== */
.page-hero {
  background: var(--c-primary-bg);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  position: relative;
}
.page-hero__title {
  color: var(--c-primary);
  font-family: var(--ff-base);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.4;
  margin: 0 0 .5rem;
}
.page-hero__subtitle {
  color: var(--c-primary-light);
  font-family: var(--ff-en);
  letter-spacing: .15em;
  margin: 0;
}

/* ========== 下層ページ共通: セクション ========== */
.page-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.page-section:nth-of-type(even) {
  background: var(--c-bg-gray);
}
.page-section__title {
  color: var(--c-primary);
  font-family: var(--ff-base);
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-align: center;
  margin: 0 0 2rem;
  position: relative;
  padding-bottom: .8rem;
}
.page-section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--c-accent);
  margin: .8rem auto 0;
}
.page-section__lead {
  text-align: center;
  color: var(--c-text-light);
  margin: 0;
}

/* ========== トピックス一覧 ========== */
.topics-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.topics-list__item {
  border-bottom: 1px solid var(--c-border);
}
.topics-list__link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  text-decoration: none;
  color: var(--c-text);
  transition: color .2s;
}
.topics-list__link:hover { color: var(--c-primary); }
.topics-list__date {
  color: var(--c-text-mute);
  font-family: var(--ff-en);
  white-space: nowrap;
  min-width: 90px;
}
.topics-list__title { flex: 1; }
.topics-list__more,
.voice-list__more {
  display: inline-block;
  padding: .5rem 1.5rem;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  text-decoration: none;
  transition: all .2s;
}
.topics-list__more:hover,
.voice-list__more:hover {
  background: var(--c-primary);
  color: #fff;
}

/* ========== 利用者の声カード一覧 ========== */
.voice-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 0 0 2rem;
}
.voice-list__item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.voice-list__item:hover { box-shadow: 0 4px 12px rgba(4,139,66,.15); }
.voice-list__link {
  display: block;
  padding: 1.25rem;
  text-decoration: none;
  color: var(--c-text);
}
.voice-list__photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
  background: var(--c-bg-gray);
}
.voice-list__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .8rem;
}
.voice-list__meta span {
  background: var(--c-primary-bg);
  color: var(--c-primary);
  padding: .15rem .6rem;
  border-radius: 999px;
}
.voice-list__title {
  display: block;
  font-weight: 600;
  line-height: 1.4;
}

/* ========== 個別記事: 利用者の声プロフィールカード ========== */
.voice-profile {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  background: var(--c-primary-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  align-items: center;
}
.voice-profile__photo img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.voice-profile__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .5rem 1.5rem;
  margin: 0;
}
.voice-profile__meta dt {
  color: var(--c-primary);
  font-weight: 600;
}
.voice-profile__meta dd { margin: 0; }

@media (max-width: 768px) {
  .voice-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .voice-profile__photo {
    max-width: 160px;
    margin: 0 auto;
  }
  .voice-profile__meta {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* ========== カテゴリタグ ========== */
.cat-tag {
  display: inline-block;
  padding: .2rem .8rem;
  border-radius: 4px;
  color: #fff;
}
.cat-tag--news  { background: var(--c-primary); }
.cat-tag--blog  { background: var(--c-primary-light); }
.cat-tag--voice { background: var(--c-accent); color: var(--c-text); }

/* ========== 戻るリンク ========== */
/* ==========================================================================
 * シングル投稿ページ (single.php) — sky-triad /info/ パターン適用
 * background 装飾無し、Gutenberg 対応の素直な記事レイアウト
 * URL: /voice-60m/ /year-end-2026/ /blog-* など全 single
 * ========================================================================== */
.p-post-article { padding: 4rem 0 6rem; background: transparent; }
.p-post-article__inner.l-inner {
  max-width: 112rem;
  margin: 2rem auto 0;
  padding: 0 2rem;
}
.p-post-article__wrap { }
.p-post-article__content {
  padding: 1rem 0 0;
  background: transparent;
  width: 100%;
  border-bottom: 1px solid var(--c-primary);
}
.p-post-article__content-wrap {
  padding-bottom: 4rem;
  width: 100%;
  margin: auto;
}
.p-post-article__info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.p-post-article__data {
  font-family: var(--ff-en);
  font-size: 1.4rem;
  letter-spacing: .05em;
  font-weight: 700;
  color: var(--c-text-light);
}
.p-post-article__category {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-post-article__category li {
  padding: .4rem 1rem;
  color: #fff;
  background: var(--c-primary);
  font-weight: 500;
  font-size: 1.3rem;
  border-radius: 4px;
  font-family: var(--ff-base);
}
.p-post-article__category li.cat-blog  { background: var(--c-primary-light); }
.p-post-article__category li.cat-voice { background: var(--c-accent); color: var(--c-text); }
.p-post-article__title-box h2.p-post-article__title {
  font-family: var(--ff-base);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--c-text);
  background-image: none;
  font-weight: 700;
  border: none;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
  line-height: 1.5;
}
.p-post-article__contents {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--c-text);
  font-family: var(--ff-base);
}
.p-post-article__contents p { margin: 0 0 1.8rem; line-height: 2; }
.p-post-article__contents h2 {
  margin: 3rem 0 1.5rem;
  padding: .6rem 1.2rem;
  color: var(--c-primary-dark);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--c-primary-bg);
  border-left: 4px solid var(--c-primary);
  border-radius: 0 6px 6px 0;
}
.p-post-article__contents h3 {
  margin: 2.5rem 0 1.2rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  color: var(--c-primary-dark);
  font-size: 1.9rem;
  font-weight: 700;
  background-image: linear-gradient(to right, var(--c-primary) 80px, var(--c-border) 80px);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 3px;
}
.p-post-article__contents h4 {
  margin: 2rem 0 1rem;
  color: var(--c-text);
  font-size: 1.7rem;
  font-weight: 700;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: .8rem;
}
.p-post-article__contents a { color: var(--c-primary); text-decoration: underline; }
.p-post-article__contents a:hover { color: var(--c-primary-dark); }
.p-post-article__contents ul,
.p-post-article__contents ol { margin: 0 0 1.8rem; padding-left: 2.5rem; }
.p-post-article__contents li { margin-bottom: .5rem; line-height: 1.8; }
.p-post-article__contents blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--c-primary-bg);
  border-left: 4px solid var(--c-primary-light);
  border-radius: 0 6px 6px 0;
}
.p-post-article__contents img,
.p-post-article__contents .wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem auto;
  display: block;
}
.p-post-article__contents table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.p-post-article__contents th,
.p-post-article__contents td {
  padding: 1rem 1.2rem;
  border: 1px solid var(--c-border);
  text-align: left;
}
.p-post-article__contents th {
  background: var(--c-primary-bg);
  color: var(--c-primary-dark);
  font-weight: 700;
}

/* 戻るボタン */
.p-pager-list { text-align: center; margin: 4rem auto 0; }
.p-pager-list__btn.back a {
  display: inline-block;
  padding: 1.2rem 3.5rem;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  text-decoration: none;
  font-family: var(--ff-base);
  font-size: 1.5rem;
  border-radius: 999px;
  transition: all .2s;
}
.p-pager-list__btn.back a:hover {
  background: var(--c-primary);
  color: #fff;
}

/* voice カテゴリ single: p-post-article 上部 + 下部に p-voice-list-item カード */
.p-post-article--voice .p-voice-list-item {
  margin-top: 2.5rem;
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--c-border);
}

@media (max-width: 767px) {
  .p-post-article { padding: 2rem 0 4rem; }
  .p-post-article__title-box h2.p-post-article__title {
    font-size: 1.9rem;
    margin-top: 1.5rem;
    text-align: left;
  }
  .p-post-article__contents h2 { font-size: 1.9rem; }
  .p-post-article__contents h3 { font-size: 1.7rem; }
}

/* 旧 sub-single 系セレクタは互換用に残置（使用箇所なくなったが念のため）*/
.sub-single__box,
.sub-single__main,
.sub-single__title-area .cat-tag {
  /* 旧スタイル無効化（新 .p-post-article パターンに移行済）*/
}
.cat-tag--news  { background: var(--c-primary); color: #fff; }
.cat-tag--blog  { background: var(--c-primary-light); color: #fff; }
.cat-tag--voice { background: var(--c-accent); color: var(--c-text); }

/* ==========================================================================
 * 利用者様の声 (single + category 共通): mcs-ainoie.com/feature/voice/ パターン
 * 左にイラスト+右にplace タグ・name・コメント吹き出し
 * 色: ayumi 緑系
 * ========================================================================== */
.p-voice-list {
  list-style: none;
  padding: 0;
  margin: 3rem auto 0;
  max-width: 1000px;
}
.p-voice-list .p-voice-list-item + .p-voice-list-item {
  margin-top: 4rem;
  border-top: 1px solid var(--c-border);
  padding-top: 4rem;
}
.p-voice-list-comment.p-voice-list-comment--link {
  display: block;
  color: var(--c-text);
  text-decoration: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.p-voice-list-comment.p-voice-list-comment--link:hover {
  box-shadow: 0 4px 16px rgba(4,139,66,.10);
  border-color: var(--c-primary);
}
.p-voice-list-comment__more {
  display: inline-block;
  margin-left: .4rem;
  color: var(--c-primary);
  font-weight: 600;
}

.p-voice-list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
.p-voice-list-img-box {
  flex-shrink: 0;
  width: 12rem;
}
.p-voice-list-img-box img {
  width: 100%;
  height: auto;
  display: block;
}
.p-voice-list-txt-box {
  flex: 1;
  min-width: 0;
}
.p-voice-list-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 2rem;
  margin-bottom: 1.5rem;
}
.p-voice-list-info-place {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: .08em;
  font-weight: 500;
  padding: .8rem 1.8rem;
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
  border-radius: 4px;
  margin: 0;
  font-family: var(--ff-base);
}
.p-voice-list-info-name {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: .08em;
  font-weight: 600;
  margin: 0;
  color: var(--c-text);
  font-family: var(--ff-base);
}
.p-voice-list-comment {
  font-size: 1.6rem;
  line-height: 1.85;
  letter-spacing: .04em;
  font-weight: 500;
  margin: 1.5rem 0 0 1rem;
  padding: 2.5rem 3.2rem 2.5rem 2.8rem;
  border: 1px solid var(--c-primary-light);
  border-radius: 10px;
  position: relative;
  background: #fff;
  color: var(--c-text);
  font-family: var(--ff-base);
}
/* /category/voice/ では 5行省略表示 (single は全文表示なのでこのクラス未適用)*/
.p-voice-list-comment.p-voice-list-comment--link {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-voice-list-comment::before {
  content: "";
  display: block;
  position: absolute;
  top: 2.5rem;
  left: -1.1rem;
  width: 0;
  height: 0;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-right: 1.1rem solid var(--c-primary-light);
}
.p-voice-list-comment::after {
  content: "";
  display: block;
  position: absolute;
  top: 2.5rem;
  left: -1rem;
  width: 0;
  height: 0;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-right: 1.1rem solid #fff;
}
.p-voice-list-comment p { margin: 0 0 1.2rem; }
.p-voice-list-comment p:last-child { margin-bottom: 0; }
.p-voice-list-date {
  display: block;
  text-align: right;
  margin-top: 1.5rem;
  font-family: var(--ff-en);
  font-size: 1.3rem;
  color: var(--c-text-mute);
  letter-spacing: .06em;
}

@media (max-width: 767px) {
  .sub-single--voice .sub-single-contentsWrap {
    padding: 3rem 1.6rem 4rem;
  }
  .p-voice-list-item {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .p-voice-list-img-box {
    width: 10rem;
  }
  .p-voice-list-info {
    justify-content: center;
    text-align: center;
  }
  .p-voice-list-info-name { font-size: 1.7rem; }
  .p-voice-list-comment {
    margin: 1rem 0 0;
    padding: 2rem;
    font-size: 1.5rem;
  }
  .p-voice-list-comment::before,
  .p-voice-list-comment::after { display: none; }
}

/* 本文エリア */
.sub-single__main {
  background: #fff;
  border-radius: 12px;
  padding: 4rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border: 1px solid var(--c-border);
  margin-bottom: 3rem;
}
.sub-single__body {
  font-size: 1.6rem;
  line-height: 2;
  color: var(--c-text);
  font-family: var(--ff-base);
}
.sub-single__body p { margin: 0 0 2rem; }
.sub-single__body p:last-child { margin-bottom: 0; }
.sub-single__body h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin: 3rem 0 1.5rem;
  padding: .8rem 1.2rem;
  background: var(--c-primary-bg);
  border-left: 4px solid var(--c-primary);
  border-radius: 0 6px 6px 0;
}
.sub-single__body h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin: 2.5rem 0 1.2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--c-primary);
}
.sub-single__body h4 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 2rem 0 1rem;
}
.sub-single__body a {
  color: var(--c-primary);
  text-decoration: underline;
}
.sub-single__body a:hover { color: var(--c-primary-dark); }
.sub-single__body ul,
.sub-single__body ol {
  margin: 0 0 2rem;
  padding-left: 2.5rem;
}
.sub-single__body li { margin-bottom: .5rem; line-height: 1.8; }
.sub-single__body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--c-primary-bg);
  border-left: 4px solid var(--c-primary-light);
  border-radius: 0 6px 6px 0;
  color: var(--c-text);
  font-style: normal;
}
.sub-single__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.sub-single__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.sub-single__body th,
.sub-single__body td {
  padding: 1rem 1.2rem;
  border: 1px solid var(--c-border);
  text-align: left;
}
.sub-single__body th {
  background: var(--c-primary-bg);
  color: var(--c-primary-dark);
  font-weight: 700;
}

@media (max-width: 767px) {
  .sub-single { padding: 3rem 0 4rem; }
  .sub-single__box { padding: 2.4rem 2rem 2rem; }
  .sub-single__main { padding: 2.4rem 2rem; }
  .sub-single__title { font-size: 1.9rem; }
  .sub-single--voice .voice-profile {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }
  .sub-single--voice .voice-profile__photo { max-width: 160px; margin: 0 auto; }
  .sub-single--voice .voice-profile__meta { grid-template-columns: 1fr; text-align: left; gap: .5rem 1rem; }
  .sub-single__body h2 { font-size: 1.9rem; }
  .sub-single__body h3 { font-size: 1.7rem; }
}

.sub-single__nav {
  text-align: center;
  margin-top: 3rem;
}
.sub-single__back {
  display: inline-block;
  padding: 1.2rem 3rem;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  text-decoration: none;
  font-family: var(--ff-base);
  font-size: 1.5rem;
  border-radius: 999px;
  transition: all .2s;
}
.sub-single__back:hover {
  background: var(--c-primary);
  color: #fff;
}

/* ========== フッターのCTA上書き ========== */
.footer_top {
  background: var(--c-primary-bg);
}
.ftrTit .c-en { color: var(--c-primary); }

/* ========== 共通: コンテナ ========== */
.inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ==========================================================================
 * Phase 3: 各ページ専用レイアウト
 * ========================================================================== */

/* ===== 共通: 見出し ===== */
/* ===== TOP 見出し .c-titA: 日本語メイン / 英語サブ 逆転（colab 標準は EN 80px・JP 18px） ===== */
.c-headingWrap { text-align: center; margin: 0 0 2rem; }
/* TOP 見出し: 英語メイン (大) + 日本語サブ (小) */
.c-titA {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.c-titA.c-titA--center { justify-content: center; }
.c-titA .en {
  font-family: var(--ff-en);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 500;
  color: var(--c-text);
  line-height: 1;
  text-transform: capitalize;
  letter-spacing: .02em;
}
.c-titA .jp {
  font-family: var(--ff-base);
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-text);
  margin-bottom: .8rem;
}
@media (max-width: 767px) {
  .c-titA { gap: .8rem; align-items: baseline; }
  .c-titA .en { font-size: 4.5rem; }
  .c-titA .jp { font-size: 1.4rem; margin-bottom: .4rem; }
}

/* ===== 共通: ボタン ===== */
.c-btn {
  display: inline-block;
  padding: .8rem 2rem;
  background: var(--c-primary);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity .2s, transform .2s;
  border: none;
  cursor: pointer;
}
.c-btn:hover { opacity: .85; transform: translateY(-1px); }
.c-btn--sm { padding: .5rem 1.2rem; }
.c-btn--accent { background: var(--c-accent); color: var(--c-text); }
.c-btn--accent:hover { background: var(--c-accent-dark); color: #fff; }

/* ===== TOP: メインビジュアル =====
 * NOTE: .home-mv 系の独自オーバーライド (height 固定 / position:absolute / display:flex)
 * は撤去。colab テンプレ標準 (base.css L991-1109 / style.css L1942-1965) の
 * slick fade + 角丸 + catch.png オーバーレイをそのまま使う。 */

/* ===== TOP: 3事業紹介 ===== */
.home-business { padding: clamp(3rem, 6vw, 5rem) 0; }
.home-business__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.home-business__item { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.05); transition: box-shadow .2s, transform .2s; }
.home-business__item:hover { box-shadow: 0 8px 24px rgba(4,139,66,.15); transform: translateY(-3px); }
.home-business__link { display: block; text-decoration: none; color: var(--c-text); }
.home-business__img { aspect-ratio: 4/3; overflow: hidden; background: var(--c-bg-gray); }
.home-business__img img { width: 100%; height: 100%; object-fit: cover; }
.home-business__body { padding: 1.5rem; }
.home-business__en { display: block; color: var(--c-primary); font-family: var(--ff-en); letter-spacing: .2em; margin-bottom: .3rem; }
.home-business__title { font-family: var(--ff-base); font-size: 1.25rem; margin: 0 0 .8rem; color: var(--c-primary); }
.home-business__lead { line-height: 1.7; margin: 0 0 1rem; color: var(--c-text-light); }
.home-business__more { color: var(--c-primary); font-weight: 600; }

/* ===== TOP: 理念 ===== */
.home-philosophy { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--c-primary-bg); }
.home-philosophy__text { text-align: center; font-family: var(--ff-base); font-size: clamp(1.1rem, 2.2vw, 1.5rem); line-height: 2.2; color: var(--c-primary); margin: 0 auto 2rem; }
.home-philosophy__more { text-align: center; }

/* ===== TOP: お知らせ ===== */
.home-news { padding: clamp(3rem, 6vw, 5rem) 0; }
.home-news__list { list-style: none; padding: 0; margin: 0 0 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.home-news__item { border-bottom: 1px solid var(--c-border); }
.home-news__link { display: flex; align-items: center; gap: 1.5rem; padding: 1rem 0; text-decoration: none; color: var(--c-text); transition: color .2s; }
.home-news__link:hover { color: var(--c-primary); }
.home-news__date { color: var(--c-text-mute); font-family: var(--ff-en); min-width: 90px; }
.home-news__title { flex: 1; }
.home-news__empty, .home-voice__empty { text-align: center; color: var(--c-text-mute); padding: 2rem 0; }
.home-news__more, .home-voice__more, .home-philosophy__more { text-align: center; }

/* ===== TOP: CTA ===== */
.home-cta { padding: clamp(3rem, 6vw, 5rem) 0; background-size: cover; background-position: center; background-color: var(--c-primary); color: #fff; position: relative; }
.home-cta::before { content: ""; position: absolute; inset: 0; background: rgba(3,99,47,.7); }
.home-cta .inner { position: relative; z-index: 1; text-align: center; }
.home-cta__title { font-family: var(--ff-base); font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0 0 1rem; }
.home-cta__lead { line-height: 1.8; margin: 0 0 2rem; }
.home-cta__buttons { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; align-items: center; }
.home-cta__tel { display: inline-flex; flex-direction: column; gap: .3rem; color: #fff; text-decoration: none; align-items: center; }
.home-cta__tel-label { opacity: .85; }
.home-cta__tel-number { font-family: var(--ff-en); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
.home-cta__form { padding: 1rem 2.5rem; font-size: 1rem; }

/* ===== TOP: アクセス ===== */
.home-access { padding: clamp(3rem, 6vw, 5rem) 0; }
.home-access__body { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.home-access__corp { font-family: var(--ff-base); color: var(--c-primary); font-size: 1.2rem; margin: 0 0 .8rem; }
.home-access__address, .home-access__tel { line-height: 1.7; margin: 0 0 1rem; }
.home-access__area-title { color: var(--c-primary); margin: 1.2rem 0 .4rem; padding-left: .8rem; border-left: 3px solid var(--c-accent); }
.home-access__area { line-height: 1.7; color: var(--c-text-light); margin: 0; }
.home-access__map iframe { width: 100%; min-height: 320px; border: 0; }
@media (max-width: 768px) {
  .home-access__body { grid-template-columns: 1fr; }
}

/* ===== 下層: 注意書き ===== */
.page-notice {
  max-width: var(--container-max);
  margin: 1.5rem auto;
  padding: 1rem 1.5rem;
  background: #fffbeb;
  border-left: 4px solid var(--c-accent);
  color: var(--c-text-light);
}
.page-section__sub-title { font-family: var(--ff-base); font-size: 1.3rem; color: var(--c-primary); margin: 3rem 0 1.5rem; text-align: center; }
.page-section__more { text-align: center; margin-top: 2rem; }

/* ===== 下層: 特徴カード ===== */
.feature-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.feature-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.feature-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--c-bg-gray); }
.feature-card__img img { width: 100%; height: 100%; object-fit: cover; }
.feature-card__body { padding: 1.25rem; }
.feature-card__title { font-family: var(--ff-base); color: var(--c-primary); font-size: 1.1rem; margin: 0 0 .8rem; }
.feature-card__body p { margin: 0; line-height: 1.7; color: var(--c-text-light); }

/* ===== 下層: 1日の流れ（縦軸タイムライン） ===== */
/* タイムライン: 線と○を完全中央揃えにする (border-left 廃止 → ::before で縦線を生成) */
.schedule-list {
  list-style: none;
  margin: 1.25rem auto 1rem;
  max-width: 720px;
  padding: .5rem 0 .5rem 3rem;
  border-left: 0;
  position: relative;
}
.schedule-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5rem; /* padding 3rem の中心 */
  width: 3px;
  background: rgba(4, 139, 66, .3);
  transform: translateX(-50%);
  pointer-events: none;
}
.schedule-list__item { position: relative; display: block; padding: 0 0 1.5rem; margin: 0; border: 0; }
.schedule-list__item:last-child { padding-bottom: 0; }
.schedule-list__item::before {
  content: "";
  position: absolute;
  left: -1.5rem; /* item content の -1.5rem = .schedule-list の 1.5rem 位置 = 線と同じ */
  top: .35rem;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid var(--c-primary);
  border-radius: 50%;
  box-sizing: border-box;
  transform: translateX(-50%);
  z-index: 1;
}
.schedule-list__time { display: inline-block; background: var(--c-primary-bg); color: var(--c-primary); font-family: var(--ff-en); font-weight: 700; padding: .15rem .7rem; border-radius: 4px; margin: 0 0 .4rem; min-width: 0; }
.schedule-list__desc {
  display: block;
  flex: none;
  margin: 0;
  color: #444;
  font-weight: 500;
  /* */
  line-height: 1.6;
}

/* ===== 下層: 施設・設備リスト ===== */
.facility-list { list-style: none; padding: 0; max-width: 720px; margin: 0 auto 2rem; }
.facility-list li { padding: .8rem 1rem; background: #fff; margin-bottom: .4rem; border-left: 3px solid var(--c-primary-light); }

/* ===== 下層: スタッフカード ===== */
.staff-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.staff-card { background: #fff; border-radius: 12px; overflow: hidden; text-align: center; padding: 2.4rem 2rem; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.staff-card__img { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; margin: 0 auto 1.6rem; background: var(--c-bg-gray); }
.staff-card__img img { width: 100%; height: 100%; object-fit: cover; }
.staff-card__name {
  font-family: var(--ff-base);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 .6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .6rem;
}
.staff-card__role {
  display: inline-block;
  font-size: 1.3rem;
  color: #fff;
  background: var(--c-primary);
  padding: .2rem 1rem;
  border-radius: 999px;
  margin: 0;
  font-weight: 600;
}
.staff-card__from {
  font-size: 1.4rem;
  color: var(--c-text-light);
  margin: 0 0 1.2rem;
}
.staff-card__career-table {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1.4rem;
  text-align: left;
}
.staff-card__career-table th,
.staff-card__career-table td {
  padding: .6rem .8rem;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
  line-height: 1.5;
}
.staff-card__career-table th {
  color: var(--c-primary-dark);
  font-weight: 600;
  text-align: left;
  width: 60%;
  background: var(--c-primary-bg);
  border-radius: 4px 0 0 4px;
}
.staff-card__career-table td {
  text-align: right;
  color: var(--c-text);
  font-weight: 600;
  width: 40%;
}
.staff-card__career-table tr:last-child th,
.staff-card__career-table tr:last-child td { border-bottom: 0; }
/* 旧 .staff-card__career（互換用、新HTML には無いが残置）*/
.staff-card__career { line-height: 1.6; color: var(--c-text-light); margin: 0; }

/* ===== 下層: 情報テーブル ===== */
.info-table { width: 100%; border-collapse: collapse; max-width: 800px; margin: 0 auto; background: #fff; }
.info-table th, .info-table td { padding: 1rem 1.2rem; border-bottom: 1px solid var(--c-border); text-align: left; vertical-align: top; line-height: 1.7; }
.info-table th { background: var(--c-primary-bg); color: var(--c-primary); width: 30%; min-width: 120px; font-weight: 600; }
.info-table thead th { background: var(--c-primary); color: #fff; }
.info-table--corp th { width: 25%; }
@media (max-width: 600px) {
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { width: 100%; padding: .6rem 1rem; }
  .info-table td { padding: .8rem 1rem 1rem; }
}

/* ===== 下層: FAQ アコーディオン（kariyushi-legal.com/reason/ パターン複製） ===== */
.accordion {
  max-width: 1000px;
  margin: 2rem auto 0;
}
.accordion .js-accordion-title {
  background-color: #fff;
  border: 1px solid var(--c-primary);
  cursor: pointer;
  padding: 1.5rem 2rem 2.3rem;
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2rem;
  border-radius: 14px;
  transition: box-shadow .2s ease;
}
.accordion .js-accordion-title:hover { box-shadow: 0 2px 8px rgba(4,139,66,.12); }
.accordion .js-accordion-title::before {
  content: "Q";
  position: absolute;
  display: block;
  left: 2.2rem;
  top: 1.3rem;
  font-size: 3rem;
  font-family: var(--ff-en);
  color: var(--c-primary);
  font-weight: bold;
  line-height: 1;
}
.accordion .js-accordion-title span {
  display: inline-block;
  font-size: 1.6rem;
  margin-left: 5rem;
  line-height: 1.6;
  font-family: var(--ff-base);
  color: var(--c-text);
}
.accordion .js-accordion-title i.arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 4px solid var(--c-primary);
  border-right: 4px solid var(--c-primary);
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  transition: transform .3s ease-in-out;
}
.accordion .js-accordion-title.open i.arrow {
  transform: translateY(-50%) rotate(-45deg);
}

.accordion-content {
  display: none;
  padding: 2.5rem 2rem 2.5rem 7rem;
  position: relative;
  line-height: 1.7;
}
.accordion-content::before {
  content: "A";
  position: absolute;
  display: block;
  left: 2.5rem;
  top: 2rem;
  font-size: 3rem;
  font-family: var(--ff-en);
  color: var(--c-accent-dark);
  font-weight: bold;
  line-height: 1;
}
.accordion-content p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--c-text);
}

@media (max-width: 767px) {
  .accordion .js-accordion-title {
    padding: 1.2rem 4rem 1.8rem 1.6rem;
    border-radius: 10px;
  }
  .accordion .js-accordion-title::before {
    left: 1.4rem;
    top: 1.1rem;
    font-size: 2.4rem;
  }
  .accordion .js-accordion-title span {
    margin-left: 3.2rem;
    font-size: 1.5rem;
  }
  .accordion .js-accordion-title i.arrow {
    right: 1.6rem;
  }
  .accordion-content {
    padding: 2rem 1.6rem 2rem 5rem;
  }
  .accordion-content::before {
    left: 1.6rem;
    top: 1.6rem;
    font-size: 2.4rem;
  }
  .accordion-content p {
    font-size: 1.5rem;
  }
}

/* ===== 下層: アクセスグリッド ===== */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.access-grid__map iframe { width: 100%; min-height: 360px; border: 0; }
.access-note { color: var(--c-text-mute); margin-top: 1rem; line-height: 1.6; }
@media (max-width: 768px) { .access-grid { grid-template-columns: 1fr; } }

/* ===== 下層: 料金ノート ===== */
.price-note { max-width: 800px; margin: 1.5rem auto 0; padding: 1rem 1.5rem; background: var(--c-bg-gray); color: var(--c-text-light); line-height: 1.7; }
.price-note p { margin: .3rem 0; }

/* ==========================================================================
 * 下層ページ追加CSS は撤去（colab-okinawa.jp 基準フォントサイズに戻すためユーザー指示）
 * font-family の Sawarabi Gothic / Montserrat は body / .c-en に当てる方式のみ採用、
 * 個別フォントサイズ宣言は colab テンプレ標準（base.css/style.css 由来）に任せる
 * ========================================================================== */

/* ==========================================================================
 * sky-triad テーマ流用クラス（弊社作 front-check.xyz/recruit/, /oki-share/ より複製）
 * /sunsun/ /ikoha/ /ayumi/ の 1日の流れ + 設備/サービス紹介セクションで利用
 * ========================================================================== */

/* ----- 1日の流れ: 2カラム(タイムライン+画像) 元: sky-triad .p-recruit-card--flex
 * sky-triad は html 16px-base、colab は html 62.5% = 10px-base のため 全 rem を ×1.6 換算 ----- */
.p-recruit-card {
  background: #fff;
  border-radius: 16px;
  padding: 3.2rem;
  overflow: hidden;
  margin: 2.4rem 0 3.2rem;
}
.p-recruit-card--flex {
  display: flex;
  gap: 3.2rem;
  align-items: center;
}
.p-recruit-card__content { flex: 1; min-width: 0; }
.p-recruit-card__image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,.05);
  aspect-ratio: 3/2;
}
.p-recruit-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.p-recruit-card__image:hover img { transform: scale(1.05); }
@media (max-width: 767px) {
  .p-recruit-card { padding: 2rem; }
  .p-recruit-card--flex { flex-direction: column; gap: 2rem; }
  .p-recruit-card__image { width: 100%; }
}

/* ----- 設備/サービス紹介: 4カラムカード 元: sky-triad .p-reasons-support
 * 同様 ×1.6 換算 ----- */
.p-reasons-support {
  position: relative;
  margin: 4.8rem 0 4.8rem;
  padding-top: 3.2rem;
}
.p-reasons-support::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 58%;
  background-color: var(--c-primary-bg);
}
.p-reasons-support__title,
.p-reasons-support__lead,
.p-reasons-support__cards { position: relative; z-index: 1; }

.p-reasons-support__title {
  font-family: var(--ff-base);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin: 0 0 1.2rem;
  text-align: center;
}
.p-reasons-support__lead {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--c-text-light);
  margin: 0 auto 2.4rem;
  text-align: center;
  max-width: 720px;
}
.p-reasons-support__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
.p-reasons-support__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.p-reasons-support__card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-bg-gray);
}
.p-reasons-support__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-reasons-support__card-title {
  font-family: var(--ff-base);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin: 2rem 0 .8rem;
  line-height: 1.5;
  padding: 0 2rem;
}
.p-reasons-support__card-text {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--c-text-light);
  margin: 0;
  padding: 0 2rem 2rem;
}
@media (max-width: 1024px) {
  .p-reasons-support__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .p-reasons-support__cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
 * ご利用料金: front-check.site/price/ より複製
 * front-check.site も html 62.5% (10px-base) のため rem 値はそのまま流用可能
 * 色: #8BC34A 等 → var(--c-primary) 等にマッピング、それ以外サイズはオリジナル準拠
 * ========================================================================== */
.p-price-lead {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.9;
  margin: 3rem auto 5rem;
  max-width: 800px;
  padding: 0 1.5rem;
  color: var(--c-text);
}
.p-price-lead strong { color: var(--c-primary); }

.p-price-group {
  margin-bottom: 6rem;
}
.p-price-group__header {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  color: #fff;
  padding: 2.5rem 3rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  box-shadow: 0 6px 20px rgba(4,139,66,.20);
}
.p-price-group__num {
  flex-shrink: 0;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}
.p-price-group__head-body {
  flex: 1;
  border-left: 2px solid rgba(255,255,255,.4);
  padding-left: 2rem;
}
.p-price-group__title {
  font-family: var(--ff-base);
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 .4rem;
  letter-spacing: .06em;
  color: #fff;
}
.p-price-group__desc {
  font-size: 1.4rem;
  margin: 0;
  opacity: .92;
  line-height: 1.6;
}

.p-price-card {
  background: #fff;
  border-radius: 12px;
  padding: 3rem 3.5rem;
  margin-bottom: 2.4rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  border: 1px solid var(--c-primary-bg);
}
.p-price-card:last-child { margin-bottom: 0; }
.p-price-card__ttl {
  font-family: var(--ff-base);
  font-size: clamp(2.4rem, 3.2vw, 3rem);
  font-weight: 700;
  color: var(--c-primary-dark);
  margin: 0 0 2.4rem;
  padding: 1.2rem 0 1.2rem 2rem;
  letter-spacing: .06em;
  background: var(--c-primary-bg);
  border-left: 6px solid var(--c-primary);
  border-radius: 0 6px 6px 0;
  line-height: 1.4;
}

/* price-table（カード内表） — front-check.site/price/ オリジナル値 */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 3rem auto;
  font-size: 1.55rem;
  font-family: var(--ff-base);
}
.price-table th,
.price-table td {
  padding: 1.8rem 2rem;
  text-align: left;
}
.price-table th {
  background-color: var(--c-primary);
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
  text-align: center;
  font-size: 1.6rem;
}
.price-table td {
  background-color: #fff;
  line-height: 1.7;
  vertical-align: middle;
}
.price-table tbody tr:nth-child(even) td {
  background-color: var(--c-primary-bg);
}
.price-table td:nth-child(1),
.price-table th:nth-child(1) {
  border-radius: 10px 0 0 10px;
}
.price-table th:nth-child(2),
.price-table td:nth-child(2) {
  border-radius: 0 10px 10px 0;
}
.price-table td:nth-child(2) {
  border-left: 1px solid var(--c-border);
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
  color: var(--c-text);
}
.price-table td:nth-child(2) span {
  font-weight: 400;
  font-size: 1.3rem;
  display: block;
  color: var(--c-text-mute);
  white-space: normal;
  margin-top: .25rem;
}
.price-table tbody tr:last-child td {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--c-primary-dark);
}

/* price-note — front-check.site/price/ オリジナル値 */
.price-note {
  font-size: 1.4rem;
  color: var(--c-text-light);
  margin: .8rem 0;
  line-height: 1.7;
  text-align: center;
  background: transparent;
  padding: 0;
  max-width: none;
}
.price-note.-attention {
  color: var(--c-accent-dark);
  font-weight: bold;
}

@media (max-width: 768px) {
  .p-price-group { margin-bottom: 4rem; }
  .p-price-group__header {
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
    padding: 2rem 1.6rem;
  }
  .p-price-group__num { font-size: 2.8rem; }
  .p-price-group__head-body { border-left: 0; padding-left: 0; }
  .p-price-card { padding: 2rem 1.6rem; }
  .price-table {
    font-size: 1.3rem;
    margin: 2rem auto;
  }
  .price-table th, .price-table td { padding: 1.2rem 1rem; }
  .price-table th { font-size: 1.3rem; }
  .price-table td:nth-child(2) { font-size: 1.35rem; }
}

/* ==========================================================================
 * 画像プレースホルダ（front-check.xyz の SSL 証明書不一致による broken image 回避）
 * sky-triad の oki-share-support-*.png / service_03_2.png は HTTPS で取得不可のため
 * 画像コンテナ内の <img> を非表示にして、緑グラデの枠だけ残す
 * ========================================================================== */
.p-reasons-support__card-img,
.p-recruit-card__image {
  background: linear-gradient(135deg, var(--c-primary-bg) 0%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-reasons-support__card-img img[src*="front-check.xyz"],
.p-recruit-card__image img[src*="front-check.xyz"] {
  display: none;
}
.p-reasons-support__card-img::after {
  content: "image";
  color: var(--c-primary-light);
  font-family: var(--ff-en);
  letter-spacing: .1em;
  position: absolute;
}
.p-recruit-card__image::after {
  content: "schedule image";
  color: var(--c-primary-light);
  font-family: var(--ff-en);
  font-size: 1rem;
  letter-spacing: .1em;
  position: absolute;
}
/* 画像が表示できているケース（colab-okinawa.jp 等）では ::after を隠す */
.p-reasons-support__card-img:has(img:not([src*="front-check.xyz"]))::after,
.p-recruit-card__image:has(img:not([src*="front-check.xyz"]))::after {
  display: none;
}

/* ----- 3つの特徴 / 3つの主なサービス: pointItem 明示的非ネストCSS版
 * colab テンプレ style.css の .p-sec01-recommend__point の CSS Nesting 構文が
 * 環境によって効かないケースの保険として、ここで全部 de-nested で再定義する
 * ----- */
.sub-shop .p-sec01-recommend { margin: 2.4rem 0 4rem; }
.sub-shop .p-sec01-recommend__point { margin-top: 1.6rem; }

.sub-shop .p-sec01-recommend__point .pointItem {
  display: flex;
  position: relative;
  gap: 4rem;
  align-items: center;
  margin: 0 0 4rem;
  padding: 1.6rem 0;
}
.sub-shop .p-sec01-recommend__point .pointItem .textArea {
  position: relative;
  z-index: 3;
  width: 50%;
}
.sub-shop .p-sec01-recommend__point .pointItem .imageArea {
  position: relative;
  width: 50%;
}
.sub-shop .p-sec01-recommend__point .pointItem:nth-child(even) {
  flex-direction: row-reverse;
}
/* imageArea が無い pointItem (sunsun/ikoha) は textArea 100% */
.sub-shop .p-sec01-recommend__point .pointItem:not(:has(.imageArea)) .textArea {
  width: 100% !important;
}

/* 画像（.image）の枠スタイル */
.sub-shop .p-sec01-recommend__point .pointItem .imageArea img.image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  display: block;
}

/* titArea(point番号+タイトル) と本文の体裁 */
.sub-shop .p-sec01-recommend__point .pointItem .titArea {
  margin-bottom: 1.6rem;
  font-family: var(--ff-base);
}
.sub-shop .p-sec01-recommend__point .pointItem .titArea .numArea {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .8rem;
}
.sub-shop .p-sec01-recommend__point .pointItem .titArea .numArea .en {
  font-size: 2.4rem;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--ff-en);
  color: var(--c-primary);
}
.sub-shop .p-sec01-recommend__point .pointItem .titArea .numArea .num {
  font-size: 3.6rem;
  font-weight: 500;
  font-family: var(--ff-en);
  color: var(--c-primary);
  line-height: 1;
}
.sub-shop .p-sec01-recommend__point .pointItem .titArea .tit {
  display: block;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: bold;
  font-family: var(--ff-base);
  color: var(--c-text);
}
.sub-shop .p-sec01-recommend__point .pointItem .c-textA {
  margin-top: 1.2rem;
}

/* SP: 縦積みに */
@media (max-width: 767px) {
  .sub-shop .p-sec01-recommend__point .pointItem,
  .sub-shop .p-sec01-recommend__point .pointItem:nth-child(even) {
    flex-direction: column;
    gap: 2rem;
  }
  .sub-shop .p-sec01-recommend__point .pointItem .textArea,
  .sub-shop .p-sec01-recommend__point .pointItem .imageArea {
    width: 100%;
  }
  .sub-shop .p-sec01-recommend__point .pointItem .titArea .numArea .en { font-size: 2rem; }
  .sub-shop .p-sec01-recommend__point .pointItem .titArea .numArea .num { font-size: 2.8rem; }
  .sub-shop .p-sec01-recommend__point .pointItem .titArea .tit { font-size: 1.8rem; }
}

/* ==========================================================================
 * 経営理念セクション (.philosophy-section) — front-check.site/about/ より複製
 * 色: #8BC34A → var(--c-primary), #F1F8E9 → var(--c-primary-bg)
 * ========================================================================== */
.philosophy-section {
  padding: 5rem 0 5rem;
  background: #fff;
}
.philosophy-content {
  max-width: 960px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 0 2rem;
}
.philosophy-lead {
  font-size: clamp(1.5rem, 1.7vw, 1.7rem);
  line-height: 2;
  color: var(--c-text);
  margin: 0 0 3rem;
}
.philosophy-detail {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
  text-align: left;
  font-family: var(--ff-base);
}
.philosophy-detail__block {
  background: var(--c-primary-bg);
  padding: 3rem 3.5rem;
  border-radius: 1rem;
  text-align: center;
}
.philosophy-detail__ttl {
  font-size: clamp(2.4rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 1.8rem;
  font-family: var(--ff-base);
  letter-spacing: .08em;
}
.philosophy-detail__text {
  font-size: clamp(1.8rem, 2vw, 2.1rem);
  line-height: 2;
  color: var(--c-text);
  font-family: var(--ff-base);
  font-weight: 500;
  margin: 0;
}
.philosophy-detail__list {
  margin-top: 1.2rem;
  list-style: none;
  padding: 0;
  font-family: var(--ff-base);
}
.philosophy-detail__list li {
  font-size: clamp(1.8rem, 2vw, 2.1rem);
  line-height: 2.2;
  color: var(--c-text);
  font-family: var(--ff-base);
  font-weight: 500;
}

@media (max-width: 767px) {
  .philosophy-section { padding: 5rem 0 4rem; }
  .philosophy-content { margin-top: 2.5rem; }
  .philosophy-detail__block { padding: 2rem 1.6rem; border-radius: .8rem; }
  .philosophy-detail__ttl { font-size: 2rem; margin-bottom: 1.2rem; }
  .philosophy-detail__text { font-size: 1.45rem; line-height: 1.85; text-align: left; }
  .philosophy-detail__list { text-align: left; }
  .philosophy-detail__list li { font-size: 1.45rem; line-height: 2; }
  .philosophy-detail { gap: 2rem; }
}

/* ==========================================================================
 * 代表者メッセージ (.greeting) — front-check.site/about/ より複製
 * .bg_01: 薄緑背景
 * .greeting-grid: 画像 + テキストの2カラム (--swap で順序反転)
 * ========================================================================== */
.greeting {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  /* max-width: 1000px; */
  /* margin: 0 auto; */
}
.greeting.bg_01 {
  background: #f4f9f6;
}
.greeting .inner {
  max-width: 112rem;
  padding: 5rem 0 10rem;
}
.greeting-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 6rem;
}
.greeting-grid.greeting-grid--swap {
  grid-template-columns: 1fr 1.5fr;
}
.greeting-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
}
.greeting-body { line-height: 2; }
.greeting-txt {
  line-height: 2;
  margin: 0;
  font-family: var(--ff-base);
  color: var(--c-text);
}

@media (max-width: 767px) {
  .greeting-grid,
  .greeting-grid.greeting-grid--swap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 0 4vw;
  }
  .greeting-img img {
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }
}

/* ----- /company/ 事業内容: p-service-contents 明示的非ネストCSS版 ----- */
.p-service-contents { margin-top: 3rem; }

.p-service-contents .p-service-contents__box {
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  padding: 4rem 3rem;
}
.p-service-contents .p-service-contents__box .textArea {
  position: relative;
}
.p-service-contents .p-service-contents__box .textArea .titArea {
  margin-bottom: 2rem;
}
.p-service-contents .p-service-contents__box .textArea .titArea span { display: block; }
.p-service-contents .p-service-contents__box .textArea .titArea .num {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--c-primary-light);
  font-family: var(--ff-en);
}
.p-service-contents .p-service-contents__box .textArea .titArea .tit {
  margin-top: .8rem;
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: bold;
  font-family: var(--ff-base);
  color: var(--c-text);
}
.p-service-contents .p-service-contents__box .textArea .button {
  margin-top: 2rem;
  text-align: center;
}
.p-service-contents .p-service-contents__box .imageArea {
  border-radius: 20px;
  overflow: hidden;
}
.p-service-contents .p-service-contents__box .imageArea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 01: 1行 (textArea + imageArea 横並び 50/50) */
.p-service-contents .p-service-contents__box--01 {
  gap: 4rem;
}
.p-service-contents .p-service-contents__box--01 .textArea { width: 50%; }
.p-service-contents .p-service-contents__box--01 .imageArea { width: 50%; aspect-ratio: 4/3; }

/* 02: 2カラム / 3カラム グリッド (--3col 親で 3カラム化) */
.p-service-contents .p-service-contents__box--02 {
  margin-top: 4rem;
  background-color: transparent;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.p-service-contents.p-service-contents--3col .p-service-contents__box--02 {
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
.p-service-contents .p-service-contents__box--02 .boxItem {
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}
.p-service-contents .p-service-contents__box--02 .boxItem .imageArea {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  aspect-ratio: 4/3;
}
.p-service-contents .p-service-contents__box--02 .boxItem .textArea {
  background-color: #fff;
  padding: 3rem 2rem 4rem;
}

@media (max-width: 767px) {
  .p-service-contents .p-service-contents__box {
    flex-direction: column-reverse;
    padding: 0;
  }
  .p-service-contents .p-service-contents__box--01 {
    gap: 0;
  }
  .p-service-contents .p-service-contents__box .textArea {
    padding: 3rem 2rem 4rem;
    width: 100% !important;
  }
  .p-service-contents .p-service-contents__box .imageArea {
    width: 100% !important;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .p-service-contents .p-service-contents__box .textArea .titArea .tit { font-size: 2rem; }
  .p-service-contents .p-service-contents__box--02,
  .p-service-contents.p-service-contents--3col .p-service-contents__box--02 {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }
  /* タブレット(768-1024): 3カラム → 2カラム */
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-service-contents.p-service-contents--3col .p-service-contents__box--02 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ----- About Us セクション p-sec02-contents 明示的非ネストCSS版 ----- */
.p-sec02-contents__box {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin: 4rem 0;
  position: relative;
}
.p-sec02-contents__box .imageArea {
  width: 50%;
  flex-shrink: 0;
  position: relative;
}
.p-sec02-contents__box .imageArea img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  display: block;
}
.p-sec02-contents__box .textArea {
  position: relative;
  z-index: 3;
  flex: 1;
}
.p-sec02-contents__box .textArea .tit {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-family: var(--ff-base);
  color: var(--c-text);
}

/* featureBox 3カード（アイコン丸+テキスト）*/
.p-sec02-contents__feature { margin-top: 5rem; }
.featureBox {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.featureBox .boxItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.featureBox .boxItem .itemArea {
  overflow: hidden;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  background: #68a94a;
  flex-shrink: 0;
}
.featureBox .boxItem .itemArea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featureBox .boxItem .itemText { width: 100%; }
.featureBox .boxItem .itemText .tit {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 1rem;
  font-family: var(--ff-base);
  color: var(--c-text);
}
.featureBox .boxItem .itemText .c-textA {
  text-align: center;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .p-sec02-contents__box {
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
  }
  .p-sec02-contents__box .imageArea { width: 100%; }
  .p-sec02-contents__box .textArea .tit { font-size: 2rem; }
  .featureBox { grid-template-columns: 1fr; gap: 3rem; }
  .featureBox .boxItem .itemArea { width: 160px; height: 160px; }
}

/* ----- 対応エリア（24時間対応可/不可 list block） /ayumi/ About Us 内 ----- */
.p-sec02-contents__area { margin-top: 5rem; }
.area-block { margin: 0 0 2rem; padding: 2rem; border-radius: 12px; }
.area-block:last-child { margin-bottom: 0; }
.area-block--available {
  background: var(--c-primary-bg);
}
.area-block--unavailable {
  background: var(--c-bg-gray);
}
.area-block__title {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 1.2rem;
  font-family: var(--ff-base);
  color: var(--c-text);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
}
.area-block__badge {
  display: inline-block;
  padding: .2rem 1rem;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 700;
}
.area-block__badge--ok {
  background: var(--c-primary);
  color: #fff;
}
.area-block__badge--ng {
  background: var(--c-text-mute);
  color: #fff;
}
.area-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1rem;
}
.area-block__list li {
  background: #fff;
  padding: .4rem 1.2rem;
  border-radius: 999px;
  font-size: 1.5rem;
  border: 1px solid var(--c-border);
}
.area-block--available .area-block__list li {
  border-color: var(--c-primary-light);
}

/* ===== 法人概要: 理念ボックス ===== */
.philosophy-box { background: var(--c-primary-bg); padding: 2.5rem 1.5rem; border-radius: 8px; text-align: center; margin-bottom: 3rem; }
.philosophy-box__title { font-family: var(--ff-base); color: var(--c-primary); font-size: 1.3rem; margin: 0 0 1.2rem; }
.philosophy-box__text { font-family: var(--ff-base); font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 2.2; color: var(--c-primary); margin: 0; }

/* ===== 法人概要: 代表あいさつ（旧 .greeting ルールは前方の 1fr 版に統合済のため撤去） ===== */
.greeting__img img { width: 100%; border-radius: 8px; }
.greeting__title { font-family: var(--ff-base); color: var(--c-primary); font-size: 1.3rem; margin: 0 0 1rem; }
.greeting__body p { line-height: 1.9; margin: 0 0 1rem; }
.greeting__sign { text-align: right; color: var(--c-primary); margin-top: 1.5rem !important; }
@media (max-width: 768px) {
  .greeting { grid-template-columns: 1fr; }
  .greeting__img { max-width: 240px; margin: 0 auto; }
}

/* ===== 法人概要: 事業内容リスト ===== */
.business-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.business-list__item { background: #fff; border-radius: 8px; overflow: hidden; padding: 0 0 1.5rem; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.business-list__item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.business-list__item h3 { font-family: var(--ff-base); color: var(--c-primary); font-size: 1.15rem; margin: 1.2rem 1rem .8rem; }
.business-list__item p { padding: 0 1rem; line-height: 1.7; color: var(--c-text-light); margin: 0 0 1.2rem; }

/* ===== 採用: メッセージ ===== */
.message-box { max-width: 800px; margin: 0 auto; padding: 2rem; background: var(--c-primary-bg); border-radius: 8px; line-height: 1.9; }
.message-box p { margin: 0 0 1rem; }
.message-box p:last-child { margin-bottom: 0; }

/* ===== 採用: 数字 ===== */
.numbers-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin: 0 auto 1rem; max-width: 900px; }
.numbers-list__item { background: #fff; padding: 1.5rem 1rem; text-align: center; border-radius: 8px; border-top: 4px solid var(--c-primary); }
.numbers-list__label { display: block; color: var(--c-text-light); margin-bottom: .5rem; }
.numbers-list__num { display: block; font-family: var(--ff-en); font-weight: 700; color: var(--c-primary); font-size: 2.2rem; line-height: 1; }
.numbers-list__num small { color: var(--c-text-light); font-weight: 400; }
.numbers-list__note { text-align: center; color: var(--c-text-mute); margin-top: 1rem; }

/* ===== 採用: インタビュー ===== */
.interview-card { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; margin: 0 auto 2rem; max-width: 900px; background: #fff; padding: 1.5rem; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,.05); align-items: start; }
.interview-card__photo img { width: 100%; border-radius: 8px; aspect-ratio: 1/1; object-fit: cover; }
.interview-card__role { color: var(--c-primary); margin: 0 0 .3rem; font-weight: 600; }
.interview-card__title { font-family: var(--ff-base); font-size: 1.2rem; margin: 0 0 1rem; }
.interview-card__body p { line-height: 1.9; margin: 0; }
@media (max-width: 768px) {
  .interview-card { grid-template-columns: 1fr; }
  .interview-card__photo { max-width: 200px; margin: 0 auto; }
}

/* ===== 採用: 募集要項カード ===== */
.recruit-card { max-width: 800px; margin: 0 auto 2.5rem; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.recruit-card__title { background: var(--c-primary); color: #fff; padding: 1rem 1.5rem; font-family: var(--ff-base); font-size: 1.15rem; margin: 0; }
.recruit-card .info-table { box-shadow: none; }

/* ===== 法人概要: フォームプレースホルダ／CF7フォームラップ ===== */
.contact-form-placeholder { max-width: 720px; margin: 0 auto; padding: 2rem; background: var(--c-bg-gray); border: 1px dashed var(--c-border); text-align: center; line-height: 1.8; color: var(--c-text-light); border-radius: 8px; }
.contact-form-wrap { max-width: 720px; margin: 0 auto; background: #fff; padding: 2rem; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.contact-form-wrap p { margin: 0 0 1rem; line-height: 1.7; }
.contact-form-wrap input[type=text],
.contact-form-wrap input[type=email],
.contact-form-wrap input[type=tel],
.contact-form-wrap textarea {
  width: 100%; padding: .7rem .9rem; border: 1px solid var(--c-border); border-radius: 4px; font-family: inherit; font-size: 1rem; box-sizing: border-box;
}
.contact-form-wrap textarea { min-height: 140px; }
.contact-form-wrap input[type=submit] {
  display: inline-block; padding: .9rem 2.4rem; background: var(--c-primary); color: #fff; border: none; border-radius: 4px; font-size: 1rem; cursor: pointer; transition: opacity .2s;
}
.contact-form-wrap input[type=submit]:hover { opacity: .85; }
.contact-form-note { max-width: 720px; margin: 1rem auto 0; color: var(--c-text-mute); text-align: center; }

/* ===== 404ページ ===== */
.page-404 { max-width: 720px; margin: 0 auto; text-align: center; }
.page-404__lead { font-size: 1.1rem; line-height: 1.8; margin: 0 0 1.5rem; }
.page-404__notes { list-style: none; padding: 0; margin: 0 0 2rem; text-align: left; max-width: 540px; margin: 0 auto 2rem; }
.page-404__notes li { padding: .5rem 0 .5rem 1.5rem; position: relative; line-height: 1.7; }
.page-404__notes li::before { content: "•"; position: absolute; left: .3rem; color: var(--c-primary); font-weight: 700; }
.page-404__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
 * モバイル詳細調整 (Phase 5)
 * ========================================================================== */

/* ===== SP共通 (768px以下) ===== */
@media (max-width: 768px) {
  :root { --container-padding: 1rem; }

  /* page-hero */
  .page-hero { padding: clamp(2.5rem, 8vw, 4rem) 0; }

  /* CTA ボタン縦並び */
  .home-cta__buttons { flex-direction: column; gap: 1.2rem; }
  .home-cta__tel { order: 1; }
  .home-cta__form { order: 2; width: 80%; max-width: 320px; }

  /* セクション余白圧縮 */
  .home-business,
  .home-philosophy,
  .home-news,
  .home-voice,
  .home-cta,
  .home-access,
  .page-section { padding: clamp(2rem, 6vw, 3rem) 0; }

  /* 3カードグリッド: SP で1カラム化 */
  .home-business__list,
  .feature-list,
  .business-list { grid-template-columns: 1fr; }

  /* お知らせリンクの date+title 横並びを縦並びに */
  .home-news__link,
  .topics-list__link {
    flex-direction: column;
    align-items: flex-start;
    gap: .3rem;
  }
  .home-news__date,
  .topics-list__date { min-width: auto; }

  /* スケジュール（SP: 縦軸タイムラインを少しコンパクトに） */
  .schedule-list { padding-left: 2.5rem; }
  .schedule-list::before { left: 1.25rem; }
  .schedule-list__item { padding: 0 0 1.1rem; }
  .schedule-list__item::before { left: -1.25rem; }
  /* .schedule-list__time / .schedule-list__desc の font-size 指定は撤去（body 継承） */

  /* 採用カード */
  .recruit-card__title { font-size: 1rem; padding: .8rem 1rem; }

  /* 数字グリッド */
  .numbers-list { grid-template-columns: repeat(2, 1fr); }
  .numbers-list__num { font-size: 1.6rem; }

  /* FAQ は新クラス .accordion 系で SP 用調整済 */

  /* ボタン */
  .c-btn { padding: .7rem 1.5rem; }

  /* 404 actions */
  .page-404__actions { flex-direction: column; align-items: center; }
  .page-404__actions .c-btn { width: 70%; max-width: 280px; text-align: center; }

  /* ヘッダーロゴ縮小 */
  .header-sp__logo img { max-height: 36px; }
}

/* ===== タブレット (601〜992px) ===== */
@media (min-width: 601px) and (max-width: 992px) {
  .home-business__list { grid-template-columns: repeat(2, 1fr); }
  .home-business__item:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .feature-list { grid-template-columns: repeat(2, 1fr); }
  .business-list { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 印刷 ===== */
@media print {
  .header, .header-sp, .footer, .footer_top, .sp_cta, .page-top, .home-cta { display: none !important; }
  body { background: #fff; color: #000; }
}


/* ============================================================
 * Recruit ページ用 補助CSS（site convention: html font-size 62.5%, 1rem = 10px）
 * 既存の c-heading01 / c-textA / c-titB / c-table02 を尊重し、
 * ここでは新規追加コンポーネントのみ定義する。
 * 2026/05/14 改訂版
 * ============================================================ */

/* リード文 */
.p-recruit-lead-wrap {
  max-width: 90rem;
  margin: 4rem auto 5rem;
  padding: 0 2rem;
}
.p-recruit-lead {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #444;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-lead { font-size: 1.4rem; }
}

/* セクション共通 */
.p-recruit-section {
  margin-bottom: 8rem;
  padding-bottom: 8rem;
}
.p-recruit-section .inner { max-width: 110rem; margin: 0 auto; padding: 0 2rem; }
@media screen and (max-width: 767px) {
  .p-recruit-section { margin-bottom: 6rem; padding-bottom: 6rem; }
}

section#numbers { padding: 4rem 0 8rem; }

/* 白カード */
.p-recruit-card {
  background: #fff;
  border-radius: 12px;
  padding: 4rem;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.04); */
}

/* 募集要項 内アンカーナビ + テーブル余白 + h3英語非表示 */
.p-recruit-jobs-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0 0 4rem;
}
.p-recruit-jobs-nav li a {
  display: block;
  padding: 1.6rem 1.2rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-size: 1.5rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.p-recruit-jobs-nav li a:hover {
  background: #048b42;
  color: #fff;
  border-color: #048b42;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs-nav { grid-template-columns: 1fr; gap: 1rem; }
  .p-recruit-jobs-nav li a { font-size: 1.4rem; padding: 1.4rem 1rem; }
}

#requirements .c-titB { margin-top: 6rem; scroll-margin-top: 8rem; }
#requirements .c-titB:first-of-type { margin-top: 2rem; }
#requirements .c-titB .en { display: none; }
#requirements .c-table02 { margin-bottom: 4rem; }
@media screen and (max-width: 767px) {
  #requirements .c-titB { margin-top: 4rem; }
  #requirements .c-table02 { margin-bottom: 2.4rem; }
}
.p-recruit-card--center { max-width: 88rem; margin: 0 auto; }
@media screen and (max-width: 767px) {
  .p-recruit-card { padding: 2.4rem; }
}

/* 横自動スクロール スライドショー（marquee） */
.p-recruit-marquee {
  overflow: hidden;
  position: relative;
  margin: 5rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: none;
}
.p-recruit-marquee__track {
  display: flex;
  width: max-content;
  animation: pRecruitMarquee 60s linear infinite;
}
.p-recruit-marquee:hover .p-recruit-marquee__track { animation-play-state: paused; }
.p-recruit-marquee__item {
  flex-shrink: 0;
  width: 32rem;
  margin-right: 2rem;
}
.p-recruit-marquee__item img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
@keyframes pRecruitMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media screen and (max-width: 767px) {
  .p-recruit-marquee { margin: 3rem 0; }
  .p-recruit-marquee__item { width: 22rem; margin-right: 1.2rem; }
  .p-recruit-marquee__item img { height: 16rem; }
}

/* 数字で見る */
.p-numbers-wrapper {
  background: #ffffff;
  padding: 5rem 2rem;
  border-radius: 12px;
}
.p-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  max-width: 108rem;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-numbers { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
}
@media screen and (max-width: 480px) {
  .p-numbers { grid-template-columns: 1fr; }
}
.p-number-card {
  background: #fff;
  border-radius: 8px;
  padding: 2.4rem 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 18rem;
}
.p-number-card__badge {
  display: inline-block;
  background: #048b42;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  margin-bottom: 1.6rem;
}
.p-number-card__value {
  font-size: 6rem;
  font-weight: 700;
  color: #048b42;
  line-height: 1;
  font-family: "Outfit", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}
.p-number-card__value--text { font-size: 3.2rem; letter-spacing: 0; }
.p-number-card__unit {
  font-size: 1.8rem;
  margin-left: 0.4rem;
  color: #048b42;
  font-weight: 700;
}
.p-number-card__note {
  font-size: 1.3rem;
  color: #666;
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-numbers-wrapper { padding: 3rem 1.6rem; }
  .p-number-card { padding: 2rem 1.4rem; min-height: 14rem; }
  .p-number-card__value { font-size: 4.4rem; }
  .p-number-card__value--text { font-size: 2.4rem; }
}

/* インタビューカード */
.p-recruit-interview { display: grid; gap: 4rem; }
.p-recruit-interview__card {
  background: #fff;
  border-radius: 12px;
  padding: 4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  display: flex;
  gap: 4rem;
  align-items: center;
}
.p-recruit-interview__card.-reverse { flex-direction: row-reverse; }
.p-recruit-interview__photo {
  flex: 0 0 36%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.p-recruit-interview__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.p-recruit-interview__body { flex: 1; }
.p-recruit-interview__role {
  font-size: 1.3rem;
  color: #888;
  font-weight: 600;
  margin: 0 0 0.8rem;
  letter-spacing: 0.05em;
}
.p-recruit-interview__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-recruit-interview { gap: 2.4rem; }
  .p-recruit-interview__card,
  .p-recruit-interview__card.-reverse { flex-direction: column; gap: 2rem; padding: 2.4rem; }
  .p-recruit-interview__photo { flex: 0 0 auto; width: 100%; }
  .p-recruit-interview__title { font-size: 1.8rem; }
}

/* FAQ カード（アコーディオンを薄カードで囲む） */
.p-recruit-faq-wrap { max-width: 96rem; margin: 0 auto; }

/* ============================================================
 * 採用バナー (TOP MV直下 / 下層 CTA直前 共通)
 * ============================================================ */
.p-recruit-banner { padding: 6rem 0 8rem; background: transparent; }
.p-recruit-banner .inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.p-recruit-banner__link { display: block; line-height: 0; border-radius: 12px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.p-recruit-banner__link:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.p-recruit-banner__link img { width: 100%; height: auto; display: block; }
.p-recruit-banner--sub { padding: 5rem 0 3rem; }
@media (max-width: 767px) {
  .p-recruit-banner { padding: 3rem 0 4rem; }
  .p-recruit-banner .inner { padding: 0 4vw; }
  .p-recruit-banner--sub { padding: 3rem 0 2rem; }
}

/* ============================================================
 * SP ユーザー指定オーバーライド（base.css 既定色を ayumi グリーンへ）
 * ============================================================ */
@media screen and (max-width: 767px) {
  .nav-drawer_ttl {
    font-size: 2rem;
    background: #048b42;
    color: #fff;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 14vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sp_cta a {
    display: block;
    height: 100%;
    text-align: center;
    width: 50%;
    font-size: 16px;
    padding: 18px 0 10px 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #fff;
    background: #03632f;
    position: relative;
  }
  .header-sp .hamburger {
    background: #03632f;
    border-radius: 50px;
  }
  .c-heading01 {
    font-size: 5.5vw;
    text-align: center;
    margin: 0 2rem 2rem;
  }
}

/* ========================================================================
 * 全ページ背景: ランダム配置の円が拡縮＋微小に漂う
 * - header.php の <body> 直下に <div class="l-bg-circles" id="js-bg-circles">
 * - js/ayumi-init.js の bgCircles IIFE が円要素を 14個生成
 * - 固定背景: scroll しても位置は動かず、円のアニメだけ動く
 * ======================================================================== */
.l-bg-circles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.l-bg-circles__dot {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
  animation-name: circlePulse;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

@keyframes circlePulse {
  0% {
    transform: translate(0, 0) scale(0.55);
    opacity: 0.45;
  }
  50% {
    transform: translate(12px, -14px) scale(1.0);
    opacity: 0.85;
  }
  100% {
    transform: translate(-10px, 18px) scale(1.45);
    opacity: 0.5;
  }
}

@media screen and (max-width: 767px) {
  /* モバイルでは描画負荷軽減のため円のアニメ時間を緩和 */
  .l-bg-circles__dot {
    animation-duration: 9s !important;
  }
}
