@charset "UTF-8";
/*
Theme Name: 合同会社ゆーはーと
Description: シェアハウス・訪問介護／長野県茅野市。ひとつ屋根の下 × 見守り。緑主役・ピンク差し色（Aスタイル）
Version: 1.0
*/
/* ============================================================
   ▼ ブレイクポイント & メディアクエリ mixin
   ------------------------------------------------------------
   $pc  : 1441px 以上（大型モニター）
   $tab : 1024px 以下（タブレット）
   $sp  :  768px 以下（スマホ）
============================================================ */
/* 768px 以上（タブレット〜PC共通で効かせたい時） */
/* 1024px 以上 */
/* ============================================================
   ▼ デザイントークン（確定Aスタイル / ひとつ屋根の下）
   ------------------------------------------------------------
   ロゴの緑を主役に、ピンクを差し色。白カード＋やわらか影。
   partial 側は var(--xxx) で参照する。
============================================================ */
:root {
  --bg:         #F7FAEC;
  /* ページ背景（やや黄み緑） */
  --green:      #C3D96E;
  /* ロゴの黄緑（主役）       */
  --green-soft: #E7F0C6;
  --green-mid:  #98B44C;
  /* ボタン                   */
  --green-deep: #68822E;
  /* 濃い文字アクセント       */
  --pink:       #F0CADF;
  /* ロゴのピンク             */
  --pink-soft:  #FBF0F6;
  --pink-deep:  #C9679E;
  --white:      #FFFFFF;
  --text:       #454B38;
  --text-soft:  #5A6049;
  --r:          26px;
  /* カード角丸               */
  --shadow:       0 10px 30px rgba(104,130,46,.09);
  --shadow-hover: 0 18px 40px rgba(104,130,46,.15);
}
/* ============================================================
   ▼ リセット & ベース要素
============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 2;
  letter-spacing: 0.03em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
/* フォント用ユーティリティ */
.en {
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.08em;
}
.maru {
  font-family: "Zen Maru Gothic", sans-serif;
}
/* ============================================================
   ▼ 共通セクション枠
============================================================ */
.sec {
  padding: 66px 20px;
}
@media screen and (min-width: 1025px) {
  .sec {
    padding: 90px 20px;
  }
}
.sec-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.sec-head {
  text-align: center;
  margin-bottom: 32px;
}
.sec-head .en-t {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-family: "Quicksand", sans-serif;
}
.sec-head .en-t.pk {
  color: var(--pink-deep);
}
.sec-head .lead {
  font-size: 13.5px;
  color: var(--text-soft);
  margin-top: 10px;
}
.sec-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 900;
  line-height: 1.75;
  margin-top: 6px;
}
.sec-title .u {
  background: linear-gradient(transparent 70%, var(--green) 70%);
  padding: 0 2px;
}
.sec-title .u.pk {
  background: linear-gradient(transparent 70%, var(--pink) 70%);
}
/* 白カード */
.card {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 30px 24px;
}
/* ============================================================
   ▼ 共通ボタン
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-mid);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 14px 38px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: 0.25s;
}
.btn:hover {
  background: var(--green-deep);
}
/* ============================================================
   ▼ 下層ページ共通ヒーロー & パンくず
============================================================ */
.page-hero {
  margin: 78px 14px 0;
  position: relative;
  /* 固定ヘッダー分のspace */
  border-radius: var(--r);
  overflow: hidden;
  height: min(34vh, 260px);
  height: min(34svh, 260px);
  box-shadow: var(--shadow);
}
@media screen and (min-width: 769px) {
  .page-hero {
    margin: 92px 22px 0;
    height: min(38vh, 300px);
  }
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(69, 75, 56, 0.5), transparent 60%);
}
.page-hero .hero-t {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
}
.page-hero .hero-t .en-s {
  font-size: 11px;
  letter-spacing: 0.24em;
  opacity: 0.9;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}
.page-hero .hero-t h1 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(24px, 5.6vw, 36px);
  font-weight: 900;
  text-shadow: 0 2px 16px rgba(69, 75, 56, 0.4);
}
.breadcrumb {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 22px 0;
  font-size: 11px;
  color: var(--text-soft);
}
.breadcrumb a {
  color: var(--green-deep);
  font-weight: 600;
}
/* ============================================================
   ▼ スクロール表示アニメ（fadeup / footer.php の IntersectionObserver）
============================================================ */
.fadeup {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.fadeup.show {
  opacity: 1;
  transform: none;
}
/* ============================================================
   ▼ SP 固定ボトムバー（電話 / メール）※全ページ・footer.php
============================================================ */
.sp-bottom {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 98;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  /* 768px超では非表示 */
}
@media screen and (min-width: 769px) {
  .sp-bottom {
    display: none;
  }
}
.sp-bottom a {
  padding: 15px 8px;
  text-align: center;
  font-weight: 900;
  font-size: 13.5px;
  border-radius: 999px;
  font-family: "Zen Maru Gothic", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 8px 22px rgba(69, 75, 56, 0.18);
}
.sp-bottom .tel {
  background: var(--white);
  color: var(--green-deep);
}
.sp-bottom .mail {
  background: var(--green-mid);
  color: #fff;
}
/* ============================================================
   ▼ ページトップへ戻る
============================================================ */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 97;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-mid);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  font-size: 20px;
  transition: 0.25s;
  /* SPボトムバーに重ならない */
}
.back-to-top:hover {
  background: var(--green-deep);
}
@media screen and (max-width: 768px) {
  .back-to-top {
    bottom: 78px;
  }
}
/* ============================================================
   ▼ 各ページ partial 読み込み
============================================================ */
/* ============================================================
   ヘッダー / ローディング / SPメニュー
   ============================================================ */
/* ------------------------------------------------------------
   ロゴマーク（CSS製・ロゴ支給までの仮対応）
   緑とピンクの葉っぱ2枚
------------------------------------------------------------ */
.logo-mark {
  width: 36px;
  height: 36px;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::before, .logo-mark::after {
  content: "";
  position: absolute;
  bottom: 3px;
  width: 19px;
  height: 25px;
  border: 1.5px solid var(--text);
}
.logo-mark::before {
  left: 1px;
  background: var(--green);
  border-radius: 50% 50% 6% 60% / 60% 60% 6% 55%;
  transform: rotate(-14deg);
}
.logo-mark::after {
  right: 1px;
  background: var(--pink);
  border-radius: 50% 50% 60% 6% / 60% 60% 55% 6%;
  transform: rotate(14deg);
  opacity: 0.92;
}
.logo-text {
  line-height: 1.25;
}
.logo-text small {
  font-size: 8.5px;
  display: block;
  color: var(--green-deep);
  letter-spacing: 0.15em;
  font-weight: 700;
}
.logo-text strong {
  font-size: 17px;
  font-weight: 900;
  font-family: "Zen Maru Gothic", sans-serif;
}
/* ------------------------------------------------------------
   固定ヘッダー
------------------------------------------------------------ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 250, 236, 0.92);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .header-inner {
    padding: 13px 30px;
  }
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.header-logo img {
  /* flexアイテムとして縮めるように */
  /* SP：高さと幅の両方に上限をかけ、横長ロゴでもヘッダーを突き破らない */
  max-height: 46px;
  width: auto;
  max-width: 62vw;
}
@media screen and (min-width: 769px) {
  .header-logo img {
    max-height: 62px;
    max-width: none;
  }
}
@media screen and (min-width: 1025px) {
  .header-logo img {
    max-height: 88px;
  }
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* グローバルナビ（PC ≥1024px のみ） */
.gnav {
  display: none;
}
@media screen and (min-width: 1025px) {
  .gnav {
    display: flex;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    font-family: "Zen Maru Gothic", sans-serif;
    margin-left: auto;
    margin-right: 22px;
  }
  .gnav a {
    /* 中央ではなく右側へ寄せ、ボタンと隣接 */
    padding: 8px 15px;
    border-radius: 999px;
    transition: 0.2s;
  }
  .gnav a:hover {
    background: var(--green-soft);
    color: var(--green-deep);
  }
}
/* お問い合わせ CTA */
.header-cta {
  background: var(--green-mid);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  padding: 11px 20px;
  border-radius: 999px;
  transition: 0.25s;
  font-family: "Zen Maru Gothic", sans-serif;
  /* 右端から少し内側へ */
  /* SPは固定ボトムバーに CTA があるため非表示 */
}
@media screen and (min-width: 769px) {
  .header-cta {
    margin-right: 24px;
  }
}
@media screen and (max-width: 768px) {
  .header-cta {
    display: none;
  }
}
.header-cta:hover {
  background: var(--green-deep);
}
/* ------------------------------------------------------------
   ハンバーガー（PC ≥1024px で非表示）
------------------------------------------------------------ */
.hamburger {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5.5px;
  box-shadow: var(--shadow);
}
@media screen and (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  width: 17px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(3.7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  transform: translateY(-3.7px) rotate(-45deg);
}
/* ------------------------------------------------------------
   SP フルスクリーンメニュー
------------------------------------------------------------ */
.sp-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 36px;
}
.sp-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.sp-menu a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 17px 0;
  font-weight: 900;
  font-size: 23px;
  font-family: "Zen Maru Gothic", sans-serif;
  border-bottom: 1px solid var(--green-soft);
}
.sp-menu a small {
  font-size: 10.5px;
  color: var(--green-deep);
  font-weight: 600;
  margin-left: auto;
  font-family: "Quicksand", sans-serif;
}
@media screen and (min-width: 1025px) {
  .sp-menu {
    display: none;
  }
}
.sp-menu-sns {
  display: flex;
  gap: 18px;
  margin-top: 26px;
}
.sp-menu-sns li a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-size: 18px;
  box-shadow: var(--shadow);
  border-bottom: none;
  padding: 0;
}
/* ------------------------------------------------------------
   ローディング画面
------------------------------------------------------------ */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s, visibility 0.6s;
}
.loading.active {
  opacity: 1;
  visibility: visible;
}
.loading .loading_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loading .loading_text img {
  max-width: 160px;
  height: auto;
}
.loading .loading_text .logo-mark {
  width: 56px;
  height: 56px;
}
.loading .loading_text .logo-mark::before, .loading .loading_text .logo-mark::after {
  width: 29px;
  height: 38px;
}
.pulse-container {
  display: flex;
  gap: 8px;
}
.pulse-bubble {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-mid);
  animation: pulse 0.6s infinite alternate;
}
.pulse-bubble-2 {
  animation-delay: 0.2s;
  background: var(--green);
}
.pulse-bubble-3 {
  animation-delay: 0.4s;
  background: var(--pink-deep);
}
@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.3;
    transform: scale(0.8);
  }
}
/* ============================================================
   TOPページ
   MV / 事業内容(top_biz) / ご挨拶(greeting) / Point / バナー(flex)
   ============================================================ */
/* ------------------------------------------------------------
   メインビジュアル（slickスライダー + Ken Burns）
------------------------------------------------------------ */
.mv {
  padding: 78px 14px 0;
}
@media screen and (min-width: 769px) {
  .mv {
    padding: 92px 22px 0;
  }
}
.mv-frame {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  height: min(78vh, 640px);
  height: min(78svh, 640px);
  box-shadow: var(--shadow);
  /* モバイルのURLバー伸縮で高さが揺れないように */
  /* slick未初期化（1枚だけ等）でも崩れない保険 */
  /* Ken Burns（表示中スライドをゆっくり拡大） */
}
.mv-frame .slider, .mv-frame .slick-list, .mv-frame .slick-track, .mv-frame .slick-img {
  height: 100%;
}
.mv-frame .slick-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv-frame > .slider > .slick-img:not(:first-child) {
  display: none;
}
.mv-frame .slick-initialized .slick-img {
  display: block;
}
.mv-frame .slick-img img {
  transform: scale(1.08);
  transition: transform 6s ease-out;
}
.mv-frame .slick-current img {
  transform: scale(1);
}
.mv-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(69, 75, 56, 0.52), rgba(69, 75, 56, 0.04) 46%, transparent 62%);
}
.mv-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 26px;
  z-index: 2;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .mv-copy {
    left: 38px;
    bottom: 36px;
  }
}
.mv-copy .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-deep);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.mv-copy .tag .heart {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.mv-copy h1 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(26px, 6.8vw, 48px);
  font-weight: 900;
  line-height: 1.6;
  text-shadow: 0 2px 20px rgba(69, 75, 56, 0.42);
}
.mv-copy p {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.95;
}
/* ------------------------------------------------------------
   事業内容 top_biz（カード3枚）
------------------------------------------------------------ */
.biz-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 8px;
}
@media screen and (min-width: 769px) {
  .biz-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.biz-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.28s;
  display: flex;
  flex-direction: column;
}
.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.biz-card .thumb {
  aspect-ratio: 1.6666666667;
  overflow: hidden;
  position: relative;
}
.biz-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.biz-card:hover .thumb img {
  transform: scale(1.05);
}
.biz-card .num {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 13px;
  border-radius: 999px;
}
.biz-card.pk .num {
  color: var(--pink-deep);
}
.biz-card .body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.biz-card .body h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18.5px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 8px;
}
.biz-card .body p {
  font-size: 13.5px;
  color: var(--text-soft);
  flex: 1;
}
.biz-card .link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-deep);
  font-family: "Zen Maru Gothic", sans-serif;
}
.biz-card .link::after {
  content: "→";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
  color: var(--green-deep);
}
.biz-card.pk .link {
  color: var(--pink-deep);
}
.biz-card.pk .link::after {
  background: var(--pink-soft);
  color: var(--pink-deep);
}
.biz-card:hover .link::after {
  background: var(--green);
  color: var(--text);
  transform: translateX(3px);
}
.biz-card.pk:hover .link::after {
  background: var(--pink);
}
/* ------------------------------------------------------------
   ご挨拶 greeting
------------------------------------------------------------ */
.greeting .sec-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .greeting .sec-inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 58px;
  }
}
.greeting-visual {
  position: relative;
}
.greeting-img {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 1.2903225806;
  box-shadow: var(--shadow);
}
.greeting-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.greeting-heart {
  position: absolute;
  right: -4px;
  top: -16px;
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-9px) rotate(4deg);
  }
}
.greeting-body .sec-head {
  text-align: left;
  margin-bottom: 16px;
}
.greeting-body p {
  font-size: 14.5px;
  color: var(--text-soft);
}
.greeting-body p + p {
  margin-top: 1em;
}
/* ------------------------------------------------------------
   えらばれる理由 Point
------------------------------------------------------------ */
.point-wrap {
  padding: 0 14px;
}
.point {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--green-soft);
  border-radius: 34px;
  padding: 56px 22px 60px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .point {
    padding: 64px 46px;
  }
}
.point::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 240px;
  height: 240px;
  background: var(--white);
  opacity: 0.5;
  border-radius: 50%;
}
.point::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  background: var(--white);
  opacity: 0.35;
  border-radius: 50%;
}
.point .sec-inner {
  position: relative;
  z-index: 2;
}
.point-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .point-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pt-card {
  background: var(--white);
  border-radius: 22px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(104, 130, 46, 0.1);
  transition: 0.25s;
}
.pt-card:hover {
  transform: translateY(-4px);
}
.pt-card .ic {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pt-card.pk .ic {
  background: var(--pink-soft);
}
.pt-card .big {
  font-size: clamp(28px, 6vw, 38px);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  font-family: "Quicksand", sans-serif;
}
.pt-card .big small {
  font-size: 13px;
  font-weight: 900;
  color: var(--text);
  font-family: "Zen Maru Gothic", sans-serif;
}
.pt-card.pk .big {
  color: var(--pink-deep);
}
.pt-card h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-weight: 900;
  margin: 8px 0 5px;
}
.pt-card p {
  font-size: 12.5px;
  text-align: left;
  color: var(--text-soft);
}
/* 畑のちょこっと紹介（Point内） */
.pt-farm {
  margin-top: 18px;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(104, 130, 46, 0.1);
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 769px) {
  .pt-farm {
    grid-template-columns: 5fr 7fr;
    align-items: center;
  }
}
.pt-farm .pt-farm-img {
  aspect-ratio: 1.6;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .pt-farm .pt-farm-img {
    aspect-ratio: auto;
    height: 100%;
  }
}
.pt-farm .pt-farm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pt-farm .pt-farm-body {
  padding: 22px 24px;
}
.pt-farm h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
}
.pt-farm .pt-farm-leaf {
  font-size: 18px;
}
.pt-farm p {
  font-size: 13px;
  color: var(--text-soft);
}
/* ------------------------------------------------------------
   バナーリンク flex（会社概要 / お問い合わせ）
------------------------------------------------------------ */
.links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .links-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.link-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 2;
  display: block;
  box-shadow: var(--shadow);
  transition: 0.28s;
}
.link-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.link-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.link-card:hover img {
  transform: scale(1.05);
}
.link-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(69, 75, 56, 0.55), transparent 52%);
}
.link-card .lbl {
  position: absolute;
  left: 22px;
  right: 74px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}
.link-card .lbl .en-s {
  /* 右下の→ボタンと重ならないように */
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.9;
  display: block;
  font-weight: 600;
}
.link-card .lbl b {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 900;
}
.link-card .go {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: 0.25s;
}
.link-card:hover .go {
  background: var(--green);
  color: var(--text);
  transform: translateX(4px);
}
/* ============================================================
   事業内容ページ  .pg-service
   3事業ブロック（#service01〜03）＋ 特徴カード ＋ ノート
   ============================================================ */
.pg-service {
  /* --- 事業ブロック --- */
  /* --- ブロック見出し（番号 + タイトル） --- */
  /* --- 本文 + 画像 --- */
  /* --- 特徴カード（2列） --- */
  /* --- 注釈ノート --- */
  /* --- 畑のちょこっと紹介（シェアハウス内） --- */
  /* --- ピンク配色ブロック（訪問介護） --- */
}
.pg-service .sv-block {
  max-width: 1020px;
  margin: 0 auto 44px;
  scroll-margin-top: 100px;
}
@media screen and (min-width: 1025px) {
  .pg-service .sv-block {
    /* 固定ヘッダー分、アンカー着地位置を下げる */
    scroll-margin-top: 120px;
  }
}
.pg-service .sv-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.pg-service .sv-head .sv-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-weight: 600;
  font-size: 15px;
  font-family: "Quicksand", sans-serif;
}
.pg-service .sv-head h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(20px, 4.6vw, 27px);
  font-weight: 900;
  line-height: 1.5;
}
.pg-service .sv-head h2 .en-s {
  display: block;
  font-size: 11px;
  color: var(--green-deep);
  letter-spacing: 0.2em;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
}
.pg-service .sv-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .pg-service .sv-body {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }
}
.pg-service .sv-img {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 1.6842105263;
  box-shadow: var(--shadow);
}
.pg-service .sv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pg-service .sv-text p {
  font-size: 14px;
  color: var(--text-soft);
}
.pg-service .sv-text p + p {
  margin-top: 0.8em;
}
.pg-service .sv-feature {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media screen and (min-width: 769px) {
  .pg-service .sv-feature {
    grid-template-columns: 1fr 1fr;
  }
}
.pg-service .ft {
  background: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}
.pg-service .ft .dot {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.pg-service .sv-note {
  margin-top: 14px;
  background: var(--green-soft);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 12.5px;
  color: var(--green-deep);
  font-weight: 500;
}
.pg-service .sv-farm {
  margin-top: 14px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .pg-service .sv-farm {
    grid-template-columns: auto 1fr;
  }
}
.pg-service .sv-farm .sv-farm-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1.3333333333;
}
@media screen and (min-width: 769px) {
  .pg-service .sv-farm .sv-farm-img {
    width: 180px;
  }
}
.pg-service .sv-farm .sv-farm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pg-service .sv-farm p {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.9;
}
.pg-service .sv-farm .sv-farm-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-deep);
  background: var(--green-soft);
  border-radius: 999px;
  padding: 1px 12px;
  margin-right: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  vertical-align: middle;
}
.pg-service .sv-block.pk .sv-num {
  color: var(--pink-deep);
}
.pg-service .sv-block.pk .sv-head h2 .en-s {
  color: var(--pink-deep);
}
.pg-service .sv-block.pk .ft .dot {
  background: var(--pink-soft);
  color: var(--pink-deep);
}
.pg-service .sv-block.pk .sv-note {
  background: var(--pink-soft);
  color: var(--pink-deep);
}
/* ============================================================
   会社概要ページ  .pg-company
   代表あいさつ / 会社情報テーブル
   ============================================================ */
.pg-company {
  /* --- 代表あいさつ --- */
  /* --- 会社情報テーブル --- */
  /* --- Googleマップ（事業所／事務所 横並び2つ） --- */
}
.pg-company .msg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  /* 代表写真なしの場合は本文を1カラムで */
}
@media screen and (min-width: 769px) {
  .pg-company .msg-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
  }
}
@media screen and (min-width: 769px) {
  .pg-company .msg-grid.no-img {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
  }
}
.pg-company .msg-img {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 1.3333333333;
  box-shadow: var(--shadow);
}
.pg-company .msg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pg-company .msg-body p {
  font-size: 14px;
  color: var(--text-soft);
}
.pg-company .msg-body p + p {
  margin-top: 0.9em;
}
.pg-company .msg-body .msg-sign {
  margin-top: 18px;
  text-align: right;
  font-size: 13px;
  font-weight: 700;
}
.pg-company .msg-body .msg-sign b {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  margin-left: 10px;
}
.pg-company .co-table {
  width: 100%;
  border-collapse: collapse;
  /* 長いURL／メールアドレスでも溢れない */
}
.pg-company .co-table th, .pg-company .co-table td {
  text-align: left;
  padding: 15px 8px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--bg);
  vertical-align: top;
}
.pg-company .co-table th {
  width: 34%;
  color: var(--green-deep);
  font-weight: 700;
  white-space: nowrap;
  font-family: "Zen Maru Gothic", sans-serif;
}
.pg-company .co-table td {
  overflow-wrap: anywhere;
}
.pg-company .co-table tr:last-child th, .pg-company .co-table tr:last-child td {
  border-bottom: none;
}
.pg-company .co-maps {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media screen and (min-width: 769px) {
  .pg-company .co-maps.two {
    grid-template-columns: 1fr 1fr;
  }
}
.pg-company .co-map-item {
  display: flex;
  flex-direction: column;
}
.pg-company .co-map-label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.pg-company .co-map-label small {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-soft);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.pg-company .co-map {
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}
.pg-company .co-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}
/* ============================================================
   お問い合わせページ  .pg-contact
   リード文 / 電話ボックス / フォーム（Contact Form 7）
   ============================================================ */
.pg-contact {
  /* --- リード文 --- */
  /* --- 電話ボックス --- */
  /* --- フォーム本体 --- */
  /* ============================================================
     Contact Form 7（実マークアップに合わせて装飾）
     各項目は <label> 氏名<span class="red">必須</span> [入力欄] </label>
  ============================================================ */
  /* バリデーション・応答メッセージ */
  /* 完了メッセージ */
}
.pg-contact .ct-lead {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-soft);
  margin-bottom: 26px;
}
.pg-contact .ct-tel {
  max-width: 640px;
  margin: 0 auto 34px;
  text-align: center;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 26px 22px;
}
.pg-contact .ct-tel .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--pink-deep);
  background: var(--pink-soft);
  border-radius: 999px;
  padding: 3px 14px;
  margin-bottom: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.pg-contact .ct-tel .num {
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.3;
}
.pg-contact .ct-tel .num a {
  color: inherit;
}
.pg-contact .ct-tel p {
  font-size: 12px;
  color: var(--text-soft);
}
.pg-contact .ct-form {
  max-width: 640px;
  margin: 0 auto;
}
.pg-contact .wpcf7 .wpcf7-form {
  /* nesting for clarity */
}
.pg-contact .wpcf7-form {
  /* 各項目ラベル（1項目1ブロック） */
  /* 必須 / 任意 バッジ */
  /* 入力欄（CF7は各コントロールを span.wpcf7-form-control-wrap で包む） */
  /* プライバシーポリシー同意チェック */
  /* 送信 / 確認 / 戻る ボタン（multistepモジュール含む） */
  /* 「戻る」はサブ扱い（控えめ） */
  /* 確認画面：入力値（[multiform]）表示 */
}
.pg-contact .wpcf7-form > label, .pg-contact .wpcf7-form > p > label, .pg-contact .wpcf7-form label {
  display: block;
  margin-bottom: 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  font-family: "Zen Maru Gothic", sans-serif;
}
.pg-contact .wpcf7-form .red, .pg-contact .wpcf7-form .blue {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  padding: 2px 10px;
  margin-left: 8px;
  vertical-align: middle;
  font-family: "Zen Maru Gothic", sans-serif;
}
.pg-contact .wpcf7-form .red {
  background: var(--pink-deep);
}
.pg-contact .wpcf7-form .blue {
  background: var(--green-mid);
}
.pg-contact .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
.pg-contact .wpcf7-form input[type=text], .pg-contact .wpcf7-form input[type=tel], .pg-contact .wpcf7-form input[type=email], .pg-contact .wpcf7-form input[type=number], .pg-contact .wpcf7-form select, .pg-contact .wpcf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--green-soft);
  border-radius: 14px;
  transition: 0.2s;
  outline: none;
  font-weight: 400;
  line-height: 1.6;
}
.pg-contact .wpcf7-form input[type=text]:focus, .pg-contact .wpcf7-form input[type=tel]:focus, .pg-contact .wpcf7-form input[type=email]:focus, .pg-contact .wpcf7-form input[type=number]:focus, .pg-contact .wpcf7-form select:focus, .pg-contact .wpcf7-form textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(152, 180, 76, 0.15);
}
.pg-contact .wpcf7-form input[type=text]::placeholder, .pg-contact .wpcf7-form input[type=tel]::placeholder, .pg-contact .wpcf7-form input[type=email]::placeholder, .pg-contact .wpcf7-form input[type=number]::placeholder, .pg-contact .wpcf7-form select::placeholder, .pg-contact .wpcf7-form textarea::placeholder {
  color: #B7BBA6;
}
.pg-contact .wpcf7-form textarea {
  min-height: 150px;
  resize: vertical;
}
.pg-contact .wpcf7-form label.policy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  margin-bottom: 22px;
  font-size: 13px;
  text-align: center;
}
.pg-contact .wpcf7-form label.policy .wpcf7-form-control-wrap {
  display: inline;
  margin-top: 0;
}
.pg-contact .wpcf7-form label.policy .wpcf7-list-item {
  margin: 0;
}
.pg-contact .wpcf7-form label.policy .wpcf7-list-item-label {
  font-weight: 700;
}
.pg-contact .wpcf7-form label.policy input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-mid);
  vertical-align: middle;
  margin-right: 4px;
}
.pg-contact .wpcf7-form input[type=submit], .pg-contact .wpcf7-form .wpcf7-previous, .pg-contact .wpcf7-form .wpcf7-submit, .pg-contact .wpcf7-form button[type=submit] {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 10px auto 0;
  background: var(--green-mid);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 16px 38px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: 0.25s;
}
.pg-contact .wpcf7-form input[type=submit]:hover, .pg-contact .wpcf7-form .wpcf7-previous:hover, .pg-contact .wpcf7-form .wpcf7-submit:hover, .pg-contact .wpcf7-form button[type=submit]:hover {
  background: var(--green-deep);
}
.pg-contact .wpcf7-form .wpcf7-previous {
  background: #B9C29F;
  order: 2;
}
.pg-contact .wpcf7-form .wpcf7-previous:hover {
  background: var(--text-soft);
}
.pg-contact .wpcf7-form .wpcf7cf-multistep .wpcf7-form-control-wrap, .pg-contact .wpcf7-form .wpcf7c-elm-step {
  font-weight: 400;
}
.pg-contact .wpcf7 .wpcf7-not-valid-tip {
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
}
.pg-contact .wpcf7 .wpcf7-response-output {
  margin: 18px auto 0;
  max-width: 520px;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 13px;
  text-align: center;
  border: 1.5px solid var(--green-soft);
}
.pg-contact .wpcf7 input[aria-invalid=true], .pg-contact .wpcf7 textarea[aria-invalid=true] {
  border-color: var(--pink-deep) !important;
}
.pg-contact .thanks {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-deep);
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 2;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 40px 24px;
}
/* ============================================================
   プライバシーポリシーページ  .pg-policy
   ============================================================ */
.pg-policy #policy {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 22px 20px;
}
@media screen and (min-width: 1025px) {
  .pg-policy #policy {
    padding: 64px 20px 40px;
  }
}
.pg-policy #policy h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(16px, 3.4vw, 20px);
  font-weight: 900;
  color: var(--green-deep);
  margin: 32px 0 10px;
  padding-left: 14px;
  line-height: 1.6;
  border-left: 5px solid var(--green);
  border-radius: 2px;
}
.pg-policy #policy h2:first-child {
  margin-top: 0;
}
.pg-policy #policy p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 2;
  overflow-wrap: anywhere;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 22px;
}
/* ============================================================
   フッター
   ============================================================ */
footer {
  padding: 56px 14px 128px;
}
@media screen and (min-width: 769px) {
  footer {
    /* SP: ボトムバー分の余白 */
    padding: 56px 14px;
  }
}
.footer-card {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r);
  padding: 38px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 12px;
}
.footer-logo img {
  max-height: 88px;
  width: auto;
}
.footer-info {
  font-size: 13px;
  line-height: 2.1;
  color: var(--text-soft);
}
.footer-info .tel-big {
  font-size: 26px;
  font-weight: 600;
  color: var(--green-deep);
}
.footer-sns {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 4px;
}
.footer-sns li a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-size: 17px;
  transition: 0.2s;
}
.footer-sns li a:hover {
  background: var(--green-soft);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin: 18px 0 6px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
}
.footer-nav a:hover {
  color: var(--green-deep);
}
.copyright {
  margin-top: 16px;
  font-size: 10.5px;
  color: #9AA284;
}
