@charset "UTF-8";
/*
 * ======================================
 * site.css — 訪問看護ステーション あす花 サイト固有CSS
 * ======================================
 * 共通 main.css（SCSSコンパイル）で再現できないデザイン差分のみ追加。
 * 配色・フォント・角丸・影は scss/main.scss の変数上書きで適用済み。
 *
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * --------------------------------------
 *  .asuka-header            - スティッキー半透明ヘッダー（背景ぼかし）
 *  .asuka-nav               - 単一行日本語グローバルナビ
 *  .asuka-tel-pill          - 角丸の電話CTAピル（ラベル＋番号2段）
 *  .asuka-btn(--pink/--pink-outline/--orange-outline/--green/--sm/--lg)
 *                           - 塗り／枠線のピル型ボタン（デザイン専用ホバー）
 *  .asuka-footer            - 4カラム淡ベージュフッター
 *  .asuka-cta               - 共通お問い合わせCTA帯
 *  .asuka-hero              - TOPメインビジュアル（放射グラデ＋花あしらい）
 *  .asuka-flower            - 浮遊する花あしらい画像
 *  .asuka-svc-card          - サービスカード（丸アイコン＋見出し＋本文）
 *  .asuka-feature           - 「大切にしていること」カード
 *  .asuka-area              - 対応エリア（リスト＋地図）
 *  .asuka-menu-card         - ページ導線カード
 *  .asuka-recruit-bnr       - 採用バナー（緑枠＋マステ風ドット＋イラスト）
 *  .asuka-name              - 「あす花」由来セクション
 *  .fade utilities          - [data-fade] スクロールフェードイン
 *
 * 共通SCSSに不足していたもの（5分類）
 * --------------------------------------
 *  構造不足 : 小さな英字ラベル＋角丸ピルCTAを2段で持つ電話ボタン（.asuka-tel-pill）
 *  状態不足 : 塗りピルボタンの「同系の濃いピンク」ホバー（共通btnは塗り→サブ色になる）
 *  装飾パターン不足 : 浮遊する花あしらい／マスキングテープ風ドット
 *  値の粒度不足 : ヒーロー放射グラデーション等のサイト固有グラデ
 */

/* ==========================================================================
   セクション背景・ラベル色（デザイン固有の値）
   ========================================================================== */
.asuka-sec-svc {
  background: linear-gradient(180deg, #fff8f0 0%, #fef2f6 100%);
}
.asuka-sec-recruit {
  background: #fdeef4;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}
.asuka-sec-name-soft { background: #fffdf8; }
.asuka-c-orange { color: #f7a229; }
.asuka-c-green  { color: #76af08; }
.asuka-c-pink   { color: #ec6f9c; }

/* ==========================================================================
   keyframes（花の浮遊／揺れ）
   ========================================================================== */
@keyframes asuka-floaty {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-14px) rotate(var(--r, 0deg)); }
}
@keyframes asuka-sway {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(6deg); }
}

/* ==========================================================================
   スクロールフェードイン
   ========================================================================== */
[data-fade] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-fade].is-shown {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   見出し（共通 heading コンポーネントのフォント／色をデザインに合わせる）
   ========================================================================== */
.heading__ja,
.asuka-h__ja {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  color: #4a4036;
}
.heading__en {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.asuka-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: rgba(255, 253, 250, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f3e3ea;
}
.asuka-header .header__inner {
  height: auto;
  padding: 10px clamp(16px, 4vw, 40px);
}
.asuka-logo img {
  height: 52px;
  width: auto;
}

/* PCナビ：単一行日本語 */
.asuka-nav {
  gap: clamp(8px, 1.4vw, 22px);
  margin-right: 6px;
}
.asuka-nav .header__nav-item a {
  flex-direction: row;
  padding: 6px 2px;
}
.asuka-nav .header__nav-ja {
  font-size: 1.5rem;
  font-weight: 500;
  color: #5a544c;
  margin-top: 0;
  white-space: nowrap;
}
.asuka-nav .header__nav-item a::after {
  height: 2px;
  background: #fed9eb;
}
.asuka-nav .header__nav-item.is-current a {
  font-weight: 700;
}
.asuka-nav .header__nav-item.is-current .header__nav-ja {
  color: #ec6f9c;
}
.asuka-nav .header__nav-item.is-current a::after {
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* 電話ピル */
.asuka-tel-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  text-decoration: none;
  background: #ffbd4c;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(255, 189, 76, 0.4);
  transition: background 0.25s ease;
}
.asuka-tel-pill:hover {
  background: #f7a229;
  opacity: 1;
}
.asuka-tel-pill__label {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.92;
}
.asuka-tel-pill__num {
  font-size: 1.7rem;
  font-weight: 700;
  font-family: "Kiwi Maru", serif;
}
.asuka-tel-pill--block {
  align-items: center;
  width: 100%;
  padding: 12px;
}

/* ==========================================================================
   ボタン（ピル型）
   ========================================================================== */
.asuka-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 15px 34px;
  border-radius: 999px;
  border: 2px solid transparent;
  line-height: 1.3;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.asuka-btn--pink {
  background: #ec6f9c;
  color: #fff;
  box-shadow: 0 8px 20px rgba(236, 111, 156, 0.35);
}
.asuka-btn--pink:hover {
  background: #e05a8c;
  opacity: 1;
}
.asuka-btn--pink-outline {
  background: #fff;
  color: #ec6f9c;
  border-color: #fed9eb;
}
.asuka-btn--pink-outline:hover {
  background: #fff5f9;
  opacity: 1;
}
.asuka-btn--orange-outline {
  background: #fff;
  color: #f7a229;
  border-color: #ffe1b0;
}
.asuka-btn--orange-outline:hover {
  background: #fff8ef;
  opacity: 1;
}
.asuka-btn--green {
  background: #76af08;
  color: #fff;
  box-shadow: 0 8px 18px rgba(118, 175, 8, 0.3);
}
.asuka-btn--green:hover {
  background: #689a07;
  opacity: 1;
}
.asuka-btn--sm {
  font-size: 1.4rem;
  padding: 11px 24px;
}
.asuka-btn--lg {
  font-size: 1.7rem;
  padding: 17px 44px;
}

/* テキストリンク（下線付き → 系） */
.asuka-textlink {
  display: inline-block;
  text-decoration: none;
  color: #ec6f9c;
  font-weight: 700;
  font-size: 1.5rem;
  border-bottom: 2px solid #fed9eb;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}
.asuka-textlink:hover {
  color: #e05a8c;
  opacity: 1;
}

/* ==========================================================================
   花あしらい
   ========================================================================== */
.asuka-flower {
  position: absolute;
  opacity: 0.5;
  pointer-events: none;
  animation: asuka-floaty 8s ease-in-out infinite;
  z-index: 0;
}
/* MV全体に大小の花を散りばめ */
.asuka-flower--1  { top: 4%;  left: 8%;   width: clamp(130px, 15vw, 215px); animation-duration: 7s; }
.asuka-flower--2  { top: 25%; left: 30%;  width: clamp(65px, 8vw, 122px);   animation-duration: 9s; }
.asuka-flower--3  { top: 9%;  left: 66%;  width: clamp(95px, 11vw, 100px);  animation-duration: 8s; }
.asuka-flower--4  { top: 1%;  right: 2%;  width: clamp(130px, 15vw, 185px); animation-duration: 10s; }
.asuka-flower--5  { top: 40%; left: 1%;   width: clamp(95px, 11vw, 135px);  animation-duration: 8.5s; }
.asuka-flower--6  { top: 42%; right: 20%; width: clamp(95px, 11vw, 135px);  animation-duration: 9.5s; }
.asuka-flower--9  { top: 70%; left: 11%;  width: clamp(70px, 11vw, 195px);  animation-duration: 9s; }
.asuka-flower--10 { top: 70%; right: 6%;  width: clamp(95px, 11vw, 190px);  animation-duration: 10s; }

/* ==========================================================================
   TOP メインビジュアル
   ========================================================================== */
.asuka-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 90% at 70% 0%, #fff3d6 0%, #fee7f1 38%, #fef2f6 65%, #fffdf8 100%);
  padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 40px) clamp(72px, 10vw, 120px);
}
.asuka-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.asuka-hero__logo {
  width: clamp(180px, 28vw, 260px);
  height: auto;
  margin: 0 auto 8px;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(236, 111, 156, 0.18));
}
.asuka-hero__copy {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  line-height: 1.5;
  margin: 0 0 20px;
  color: #4a4036;
}
.asuka-hero__copy .accent {
  color: #ec6f9c;
}
.asuka-hero__lead {
  font-size: clamp(1.4rem, 1.9vw, 1.7rem);
  line-height: 2;
  margin: 0 auto 32px;
  max-width: 620px;
  color: #6b645b;
}
.asuka-hero__btns {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr; /* 2ボタンを等幅化（大きい方の幅に揃う） */
  gap: 14px;
  justify-content: center;
  width: -webkit-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}

/* ==========================================================================
   「あす花」由来セクション
   ========================================================================== */
.asuka-name {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 100px) clamp(16px, 4vw, 40px);
  text-align: center;
}
/* 「あす花」という名前に込めた想いセクションの幅 */
.asuka-name-sec { max-width: 1000px; }

/* ご依頼・ご相談の流れセクションの幅 */
.asuka-flow-wrap { max-width: 1200px; }

.asuka-name__lotus {
  display: block;
  margin-bottom: 18px;
  animation: asuka-sway 6s ease-in-out infinite;
  transform-origin: bottom center;
}
.asuka-name__lotus img {
  width: 58px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.asuka-name__lead {
  font-size: clamp(1.4rem, 1.8vw, 1.65rem);
  line-height: 2.1;
  margin: 0 auto 32px;
  max-width: 840px;
  color: #6b645b;
}

/* ==========================================================================
   サービスカード
   ========================================================================== */
.asuka-svc-card {
  background: #fff;
  border-radius: 24px;
  padding: 34px 28px;
  box-shadow: 0 10px 30px rgba(236, 111, 156, 0.08);
}
.asuka-svc-card__icon {
  width: 100%;
  aspect-ratio: 640 / 480;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
  padding: 6px; /* 背景色を画像の縁に少し覗かせる */
}
.asuka-svc-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px; /* 枠より少し小さい角丸 */
}
.asuka-svc-card__icon--pink   { background: #fef2f6; }
.asuka-svc-card__icon--orange { background: #fff6e6; }
.asuka-svc-card__icon--green  { background: #f3f8e6; }
.asuka-svc-card__title {
  font-family: "Kiwi Maru", serif;
  font-size: 2rem;
  margin: 0 0 12px;
  color: #4a4036;
}
.asuka-svc-card__text {
  font-size: 1.45rem;
  line-height: 1.95;
  margin: 0;
  color: #6b645b;
}

/* ==========================================================================
   「大切にしていること」カード
   ========================================================================== */
.asuka-feature {
  background: #fffdf8;
  border: 1.5px solid #f6e7ee;
  border-radius: 20px;
  padding: 28px 24px;
}
.asuka-feature__title {
  font-family: "Kiwi Maru", serif;
  font-size: 1.7rem;
  margin: 0 0 10px;
  color: #ec6f9c;
}
.asuka-feature__text {
  font-size: 1.4rem;
  line-height: 1.9;
  margin: 0;
  color: #6b645b;
}

/* ==========================================================================
   対応エリア
   ========================================================================== */
.asuka-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}
.asuka-area__lead {
  font-size: 1.5rem;
  line-height: 2;
  margin: 0 0 24px;
  color: #5a6b3a;
}
/* セクション見出し下の汎用サブタイトル（中立グレー・中央寄せ） */
.asuka-sub {
  font-size: 1.5rem;
  line-height: 2;
  margin: 0;
  color: #6b645b;
  text-align: center;
}
.asuka-area__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.asuka-area__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
}
.asuka-area__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.asuka-area__dot--pink   { background: #ec6f9c; }
.asuka-area__dot--orange { background: #ffbd4c; }
.asuka-area__dot--green  { background: #76af08; }
.asuka-area__name {
  font-weight: 700;
  color: #4a4036;
}
.asuka-area__note {
  color: #7a736a;
  font-size: 1.4rem;
}
.asuka-area__map {
  border-radius: 24px;
  overflow: hidden;
}
.asuka-area__map img {
  width: 100%;
  height: auto;
  border: 0;
  display: block;
}

/* ==========================================================================
   ページ導線カード
   ========================================================================== */
.asuka-menu-card {
  display: block;
  text-decoration: none;
  border-radius: 22px;
  padding: 30px 26px;
  border: 1.5px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.asuka-menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(236, 111, 156, 0.16);
  opacity: 1;
}
.asuka-menu-card__icon {
  margin-top: -70px;
  margin-bottom: 0;
  text-align: center;
}
.asuka-menu-card__icon img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: 170px;
  object-fit: contain;
}
.asuka-menu-card__title {
  font-family: "Kiwi Maru", serif;
  font-size: 1.9rem;
  margin: 0 0 8px;
  color: #4a4036;
}
.asuka-menu-card__text {
  font-size: 1.35rem;
  line-height: 1.85;
  margin: 0 0 14px;
  color: #7a736a;
}
.asuka-menu-card__more {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ec6f9c;
}
.asuka-menu-card--c1 { background: #f3f8e6; }
.asuka-menu-card--c2 { background: #fef2f6; }
.asuka-menu-card--c3 { background: #eef7fb; }
.asuka-menu-card--c4 { background: #fff6e6; }
.asuka-menu-card--c5 { background: #f6eefb; }

/* ==========================================================================
   採用バナー
   ========================================================================== */
.asuka-recruit-bnr {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
  border: 3px solid #bfe08a;
  border-radius: 28px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 52px) clamp(20px, 4vw, 44px);
}
.asuka-recruit-bnr__tape {
  position: absolute;
  border-radius: 4px;
  pointer-events: none;
}
.asuka-recruit-bnr__tape--1 { top: 14%;    left: 6%;   width: 26px; height: 26px; background: #fbe6a4; transform: rotate(12deg); }
.asuka-recruit-bnr__tape--2 { top: 62%;    left: 10%;  width: 34px; height: 34px; background: #d8edb0; transform: rotate(-10deg); }
.asuka-recruit-bnr__tape--3 { bottom: 10%; left: 23%;  width: 22px; height: 22px; background: #fcdbe9; transform: rotate(20deg); }
.asuka-recruit-bnr__tape--4 { top: 20%;    left: 36%;  width: 18px; height: 18px; background: #d8edb0; transform: rotate(8deg); }
.asuka-recruit-bnr__tape--5 { bottom: 16%; right: 30%; width: 24px; height: 24px; background: #fbe6a4; transform: rotate(-14deg); }
.asuka-recruit-bnr__tape--6 { top: 24%;    right: 22%; width: 20px; height: 20px; background: #fcdbe9; transform: rotate(16deg); }
.asuka-recruit-bnr__tape--7 { top: 64%;    right: 9%;  width: 32px; height: 32px; background: #fbe6a4; transform: rotate(10deg); }
.asuka-recruit-bnr__tape--8 { bottom: 12%; right: 6%;  width: 22px; height: 22px; background: #d8edb0; transform: rotate(-8deg); }
.asuka-recruit-bnr__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 3vw, 44px);
}
.asuka-recruit-bnr__illust {
  width: clamp(130px, 15vw, 200px);
  height: auto;
  flex-shrink: 0;
}
.asuka-recruit-bnr__illust--r {
  width: clamp(150px, 17vw, 230px);
}
.asuka-recruit-bnr__body {
  text-align: center;
  max-width: 470px;
}
.asuka-recruit-bnr__en {
  font-family: "Kiwi Maru", serif;
  color: #8bc34a;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}
.asuka-recruit-bnr__title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  line-height: 1.5;
  margin: 0 0 18px;
  color: #ec6f9c;
}
.asuka-recruit-bnr__text {
  font-size: clamp(1.3rem, 1.7vw, 1.5rem);
  line-height: 1.95;
  margin: 0 0 26px;
  color: #6b645b;
}

/* ==========================================================================
   共通お問い合わせCTA帯
   ========================================================================== */
.asuka-cta {
  background: radial-gradient(100% 120% at 50% 0%, #fee7f1 0%, #fef2f6 100%);
  padding: clamp(56px, 9vw, 96px) clamp(16px, 4vw, 40px);
  text-align: center;
}
.asuka-cta__en {
  font-family: "Kiwi Maru", serif;
  color: #76af08;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  margin: 0 0 8px;
}
.asuka-cta__ja {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  margin: 0 0 16px;
  color: #4a4036;
}
.asuka-cta__lead {
  font-size: 1.5rem;
  line-height: 2;
  margin: 0 auto 8px;
  max-width: 560px;
  color: #6b645b;
}
.asuka-cta__hours {
  font-size: 1.4rem;
  color: #7a736a;
  margin: 0 0 30px;
}
.asuka-cta__btns {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr; /* 2ボタンを等幅化（大きい方の幅に揃う） */
  gap: 14px;
  justify-content: center;
  width: -webkit-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}

/* ==========================================================================
   下層ページ：ページヒーロー（放射グラデ＋花あしらい＋パンくず）
   ========================================================================== */
.asuka-page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 100% at 50% 0%, #fff3d6 0%, #fee7f1 50%, #fffdf8 100%);
  padding: clamp(40px, 7vw, 76px) clamp(16px, 4vw, 40px);
  text-align: center;
}
.asuka-page-hero__flower {
  position: absolute;
  opacity: 0.9;
  pointer-events: none;
  animation: asuka-floaty 8s ease-in-out infinite;
}
.asuka-page-hero__flower--l { top: 20%; left: 8%; width: 56px; }
.asuka-page-hero__flower--r { bottom: 18%; right: 9%; width: 60px; animation-duration: 10s; }
.asuka-page-hero__en {
  position: relative;
  font-family: "Kiwi Maru", serif;
  letter-spacing: 0.12em;
  font-size: 1.4rem;
  margin: 0 0 10px;
}
.asuka-page-hero__ja {
  position: relative;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  margin: 0 0 14px;
  color: #4a4036;
}
.asuka-breadcrumb {
  position: relative;
  font-size: 1.4rem;
  color: #a99e92;
  margin: 0;
}
.asuka-breadcrumb a {
  color: #c79bb0;
  text-decoration: none;
}
.asuka-breadcrumb a:hover { color: #ec6f9c; opacity: 1; }

/* ==========================================================================
   下層ページ：汎用パーツ
   ========================================================================== */
/* 白い角丸テキストカード */
.asuka-textcard {
  background: #fff;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 0 10px 30px rgba(236, 111, 156, 0.08);
  font-size: clamp(1.5rem, 1.8vw, 1.65rem);
  line-height: 2.15;
  color: #5a544c;
}
.asuka-textcard p { margin: 0 0 22px; }
.asuka-textcard p:last-child { margin-bottom: 0; }

/* 本文リード（複数段落） */
.asuka-body {
  font-size: 1.5rem;
  line-height: 2.1;
  color: #5a544c;
}
.asuka-body p + p { margin-top: 1.4em; }

/* 代表メッセージ：丸アバター */
.asuka-msg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}
.asuka-avatar {
  text-align: center;
}
.asuka-avatar__circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 26vw, 240px);
  height: clamp(180px, 26vw, 240px);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #fff, #fde3ee);
  box-shadow: 0 14px 34px rgba(236, 111, 156, 0.18);
  overflow: hidden;
}
.asuka-avatar__circle img {
  width: auto;
  height: 80%;
  max-width: 100%;
  object-fit: contain;
}
.asuka-avatar__name {
  font-family: "Kiwi Maru", serif;
  font-size: 1.8rem;
  margin: 18px 0 2px;
  color: #4a4036;
}
.asuka-avatar__role {
  font-size: 1.3rem;
  color: #a99e92;
  margin: 0;
}

/* 概要テーブル（白角丸カード／緑ラベル） */
.asuka-deftable {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(118, 175, 8, 0.1);
}
.asuka-deftable__row {
  display: grid;
  grid-template-columns: minmax(110px, 160px) 1fr;
  border-bottom: 1px solid #f0ead9;
}
.asuka-deftable__row:last-child { border-bottom: none; }
.asuka-deftable__k {
  background: #fbf8ee;
  padding: 18px 20px;
  font-weight: 700;
  color: #76af08;
  font-size: 1.45rem;
}
.asuka-deftable__v {
  padding: 18px 20px;
  font-size: 1.45rem;
  line-height: 1.8;
  color: #5a544c;
}
.asuka-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ec6f9c;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.asuka-pdf-link:hover { opacity: 0.75; }

/* サービス内容カード（中央寄せ・絵文字丸アイコン） */
.asuka-care {
  background: #fff;
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: 0 8px 24px rgba(236, 111, 156, 0.07);
  text-align: center;
}
.asuka-care__icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 38px;
}
.asuka-care__icon img { width: 50%; height: 50%; object-fit: contain; }
.asuka-care__icon--c1 { background: #fef2f6; }
.asuka-care__icon--c2 { background: #eef7fb; }
.asuka-care__icon--c3 { background: #fff6e6; }
.asuka-care__icon--c4 { background: #f3f8e6; }
.asuka-care__icon--c5 { background: #f6eefb; }
.asuka-care__title {
  font-family: "Kiwi Maru", serif;
  font-size: 1.8rem;
  margin: 0 0 10px;
  color: #4a4036;
}
.asuka-care__text {
  font-size: 1.4rem;
  line-height: 1.9;
  margin: 0;
  color: #6b645b;
  text-align: left;
}

/* 利用者の声カード */
.asuka-voice {
  position: relative;
  background: #fffdf8;
  border: 1.5px solid #f6e7ee;
  border-radius: 22px;
  padding: 30px 26px 26px;
}
.asuka-voice__badge {
  position: absolute;
  top: -14px;
  left: 24px;
  font-size: 30px;
}
.asuka-voice__text {
  font-size: 1.45rem;
  line-height: 2;
  margin: 0 0 16px;
  color: #5a544c;
}
.asuka-voice__by {
  font-size: 1.3rem;
  color: #c79bb0;
  margin: 0;
  text-align: right;
}

/* 注記ボックス（淡ピンク角丸） */
.asuka-note {
  background: #fef2f6;
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #7a6a72;
}
.asuka-strong { color: #ec6f9c; font-weight: 700; }
.asuka-textcard .asuka-body p { margin: 0 0 20px; }

/* ==========================================================================
   医療関係者ページ（ブルー系アクセント／データビジュアル）
   ========================================================================== */
.asuka-c-blue { color: #5aa0c8; }
.asuka-page-hero--medical {
  background: radial-gradient(120% 100% at 50% 0%, #e7f3fb 0%, #fee7f1 55%, #fffdf8 100%);
}
.asuka-page-hero--medical .asuka-breadcrumb a { color: #9ab8cc; }

/* 依頼の流れ */
.asuka-mflow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.asuka-mflow__item {
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 8px 22px rgba(90, 160, 200, 0.1);
  text-align: center;
}
.asuka-mflow__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e7f3fb;
  color: #5aa0c8;
  font-family: "Kiwi Maru", serif;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.asuka-mflow__title {
  font-family: "Kiwi Maru", serif;
  font-size: 1.6rem;
  margin: 0 0 8px;
  color: #4a4036;
}
.asuka-mflow__text { font-size: 1.3rem; line-height: 1.85; margin: 0; color: #6b645b; }

/* 実績バナー（大きな数字） */
.asuka-stat {
  background: linear-gradient(135deg, #fef2f6, #fff6e6);
  border-radius: 26px;
  padding: clamp(30px, 5vw, 48px);
  text-align: center;
}
.asuka-stat__label { font-size: 1.5rem; margin: 0 0 6px; color: #6b645b; }
.asuka-stat__num { font-family: "Kiwi Maru", serif; margin: 0; color: #ec6f9c; line-height: 1; }
.asuka-stat__num .big { font-size: clamp(5.6rem, 11vw, 9.6rem); }
.asuka-stat__num .unit { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.asuka-stat__note { font-size: 1.4rem; margin: 10px 0 0; color: #7a736a; }

/* 実績2カラム */
.asuka-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.asuka-rcard {
  background: #fff;
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.asuka-rcard__title { font-family: "Kiwi Maru", serif; font-size: 1.8rem; margin: 0 0 22px; color: #4a4036; }
.asuka-rcard__note { font-size: 1.3rem; line-height: 1.8; margin: 18px 0 0; color: #7a736a; }

/* 縦棒グラフ */
.asuka-barchart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 14px;
  height: 170px;
}
.asuka-barchart__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
}
.asuka-barchart__val { font-family: "Kiwi Maru", serif; font-size: 2.2rem; color: #76af08; margin-bottom: 6px; }
.asuka-barchart__label { font-size: 1.25rem; color: #7a736a; margin-top: 8px; }
.asuka-obar {
  width: 100%;
  max-width: 56px;
  background: linear-gradient(180deg, #a8d65b, #76af08);
  border-radius: 12px 12px 0 0;
}
.asuka-obar--1 { height: 75%; }
.asuka-obar--2 { height: 89%; }
.asuka-obar--3 { height: 100%; }

/* 指示書発行元リスト */
.asuka-srclist { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.asuka-srclist__item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 1.45rem;
  color: #5a544c;
}
.asuka-srclist__item .emoji { font-size: 20px; }
.asuka-srclist__item--purple { background: #f6eefb; }
.asuka-srclist__item--blue   { background: #eef7fb; }
.asuka-srclist__item--green  { background: #f3f8e6; }
.asuka-srclist__item--purple .emoji { color: #9b6fc0; }
.asuka-srclist__item--blue   .emoji { color: #5b9bd5; }
.asuka-srclist__item--green  .emoji { color: #76af08; }

/* 疾患内訳バー */
.asuka-dchart {
  background: #fff;
  border-radius: 24px;
  padding: clamp(26px, 4vw, 40px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.asuka-dbar-head { display: flex; justify-content: space-between; font-size: 1.4rem; margin-bottom: 7px; color: #5a544c; }
.asuka-dbar-head .n { color: #a99e92; }
.asuka-dbar-track { background: #f3eef0; border-radius: 999px; height: 14px; overflow: hidden; }
.asuka-dbar { height: 100%; border-radius: 999px; }
.asuka-dbar--1 { width: 100%; background: linear-gradient(90deg, #f6a5c0, #ec6f9c); }
.asuka-dbar--2 { width: 50%;  background: linear-gradient(90deg, #c8a8e0, #c08bd6); }
.asuka-dbar--3 { width: 27%;  background: linear-gradient(90deg, #9fd3ea, #7ec8e3); }
.asuka-dbar--4 { width: 20%;  background: linear-gradient(90deg, #ffd88a, #ffbd4c); }
.asuka-dbar--5 { width: 20%;  background: linear-gradient(90deg, #b6dd6e, #76af08); }
.asuka-dbar--6 { width: 13%;  background: linear-gradient(90deg, #ffcf9e, #f7a229); }
.asuka-dbar--7 { width: 13%;  background: linear-gradient(90deg, #a8d6c8, #5fb89e); }
.asuka-dbar--8 { width: 10%;  background: linear-gradient(90deg, #f3b6c6, #e88aa6); }

/* 看取り実績カード */
.asuka-mcard {
  background: #fff;
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: 0 8px 24px rgba(236, 111, 156, 0.08);
  text-align: center;
  border-top: 5px solid #fed9eb;
}
.asuka-mcard__year { font-family: "Kiwi Maru", serif; font-size: 1.5rem; color: #ec6f9c; margin: 0 0 14px; }
.asuka-mcard__num { font-family: "Kiwi Maru", serif; margin: 0; color: #4a4036; line-height: 1; }
.asuka-mcard__num .big { font-size: 4.8rem; }
.asuka-mcard__num .unit { font-size: 2rem; }
.asuka-mcard__note { font-size: 1.3rem; color: #7a736a; margin: 10px 0 0; line-height: 1.7; }
.asuka-grad-note {
  background: #f3f8e6;
  border-radius: 20px;
  padding: 24px 28px;
  text-align: center;
  font-size: 1.45rem;
  line-height: 1.95;
  color: #5a6b3a;
}
.asuka-grad-note strong { color: #76af08; }

/* 看護事例 */
.asuka-case {
  background: #fff;
  border-radius: 24px;
  padding: clamp(26px, 4vw, 38px);
  box-shadow: 0 10px 28px rgba(236, 111, 156, 0.08);
}
.asuka-case__tag {
  display: inline-block;
  background: #fed9eb;
  color: #d65a8c;
  font-family: "Kiwi Maru", serif;
  font-size: 1.3rem;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.asuka-case__title { font-family: "Kiwi Maru", serif; font-size: 1.8rem; margin: 0 0 14px; color: #4a4036; line-height: 1.5; }
.asuka-case__text { font-size: 1.45rem; line-height: 2; margin: 0; color: #5a544c; }

/* サービス・エリア情報ボックス */
.asuka-infobox { border-radius: 22px; padding: 30px 28px; }
.asuka-infobox--blue  { background: #eef7fb; }
.asuka-infobox--green { background: #f3f8e6; }
.asuka-infobox__title { font-family: "Kiwi Maru", serif; font-size: 1.8rem; margin: 0 0 14px; color: #4a4036; }
.asuka-infobox__text { font-size: 1.4rem; line-height: 2; margin: 0; color: #5a544c; }
.asuka-sec-medical-flow { background: linear-gradient(180deg, #eef7fb 0%, #fff8f0 100%); }
.asuka-sec-disease { background: #f6f9ee; }

/* ==========================================================================
   採用情報ページ
   ========================================================================== */
/* 募集状況バナー */
.asuka-status {
  border-radius: 20px;
  border: 2px dashed;
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.asuka-status__icon { font-size: 24px; }
.asuka-status__text { font-family: "Kiwi Maru", serif; font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.asuka-status--open   { background: #f3f8e6; border-color: #bcdf7e; }
.asuka-status--open   .asuka-status__text { color: #5a8a10; }
.asuka-status--closed { background: #f4f1ee; border-color: #d8cfc6; }
.asuka-status--closed .asuka-status__text { color: #8a8076; }

/* メリットカード（横並び：丸アイコン＋テキスト） */
.asuka-merit {
  background: #fff;
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: 0 8px 24px rgba(236, 111, 156, 0.07);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.asuka-merit__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fef2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ec6f9c;
}
.asuka-merit__title { font-family: "Kiwi Maru", serif; font-size: 1.7rem; margin: 0 0 10px; color: #ec6f9c; line-height: 1.5; }
.asuka-merit__text { font-size: 1.4rem; line-height: 1.95; margin: 0; color: #6b645b; }

/* 数字ボックス */
/* 採用コンセプトの画像（中央配置） */
.asuka-concept-img { margin-top: 32px; text-align: center; }
.asuka-concept-img img { max-width: 520px; width: 100%; height: auto; display: inline-block; border-radius: 16px; }

.asuka-numbox { border-radius: 22px; padding: 34px 24px; text-align: center; }
.asuka-numbox--green  { background: #f3f8e6; }
.asuka-numbox--orange { background: #fff6e6; }
.asuka-numbox--pink   { background: #fef2f6; }
.asuka-numbox__num { font-family: "Kiwi Maru", serif; margin: 0; color: #76af08; line-height: 1; }
.asuka-numbox__num .big { font-size: 5.4rem; }
.asuka-numbox__num .unit { font-size: 2rem; }
.asuka-numbox__emoji { font-size: 32px; margin: 0; }
.asuka-numbox__emoji img { height: 72px; width: auto; display: inline-block; }
.asuka-numbox__label { font-size: 1.4rem; margin: 12px 0 0; line-height: 1.7; }
.asuka-numbox--green  .asuka-numbox__label { color: #5a6b3a; }
.asuka-numbox--green  .asuka-numbox__label .sub { font-size: 1.3rem; color: #7a8a5a; }
.asuka-numbox--orange .asuka-numbox__label { color: #9a7a3a; }
.asuka-numbox--pink   .asuka-numbox__label { color: #a36a82; }

/* スタッフ紹介カード */
.asuka-staff {
  background: #fff;
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}
.asuka-staff__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.asuka-staff__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  overflow: hidden;
}
.asuka-staff__avatar img {
  width: auto;
  height: 80%;
  max-width: 100%;
  object-fit: contain;
}
.asuka-staff__avatar--c1 { background: #fff6e6; }
.asuka-staff__avatar--c2 { background: #fef2f6; }
.asuka-staff__avatar--c3 { background: #f6eefb; }
.asuka-staff__avatar--c4 { background: #f3f8e6; }
.asuka-staff__avatar--c5 { background: #eef7fb; }
.asuka-staff__name { font-family: "Kiwi Maru", serif; font-size: 1.6rem; margin: 0; color: #4a4036; }
.asuka-staff__role { font-size: 1.25rem; color: #a99e92; margin: 2px 0 0; }
.asuka-staff__comment { font-size: 1.4rem; line-height: 1.95; margin: 0; color: #6b645b; }

/* 募集要項テーブル（ピンクラベル版） */
.asuka-deftable--pink .asuka-deftable__k { background: #fef2f6; color: #ec6f9c; }
.asuka-deftable--pink .asuka-deftable__row { border-color: #f3eef0; }

/* 対応エリア地図（フル幅） */
.asuka-map-full {
  border-radius: 24px;
  overflow: hidden;
}
/* 対応エリアのエリア画像（小さめ・中央配置） */
.asuka-map-full--area {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.asuka-map-full img {
  width: 100%;
  height: auto;
  border: 0;
  display: block;
}

/* ==========================================================================
   お問い合わせページ
   ========================================================================== */
/* 上段：電話＋フォーム（1カラム） */
.asuka-contact-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 28px;
}
/* 下段：ステーション情報＋地図（2カラム） */
.asuka-contact-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}
.asuka-telcard {
  text-decoration: none;
  background: linear-gradient(135deg, #ffd88a, #ffbd4c);
  border-radius: 22px;
  padding: 28px 26px;
  color: #fff;
  box-shadow: 0 10px 26px rgba(255, 189, 76, 0.3);
  display: block;
  width: 66%;
  min-width: 280px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.asuka-telcard:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(255, 189, 76, 0.4); opacity: 1; }
.asuka-telcard__label { font-size: 1.3rem; margin: 0 0 4px; opacity: 0.95; }
.asuka-telcard__num { font-family: "Kiwi Maru", serif; font-size: clamp(2.4rem, 4vw, 3rem); margin: 0; letter-spacing: 0.02em; }
.asuka-infocard {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}
.asuka-infocard__title { font-family: "Kiwi Maru", serif; font-size: 1.6rem; margin: 0 0 16px; color: #76af08; }
.asuka-infocard dl { margin: 0; font-size: 1.4rem; line-height: 1.9; color: #5a544c; }
.asuka-infocard dt { color: #c79bb0; font-size: 1.25rem; }
.asuka-infocard dd { margin: 0 0 12px; }
.asuka-infocard dd:last-child { margin-bottom: 0; word-break: break-all; }

.asuka-formcard {
  background: #fff;
  border-radius: 24px;
  padding: clamp(26px, 4vw, 40px);
  box-shadow: 0 12px 32px rgba(236, 111, 156, 0.1);
}

/* --------------------------------------------------------------------------
   フォームCMS（form-pattern-2 / cms_ajax）用の見た目調整
   CMS生成マークアップに合わせ、サイトのデザインへ !important で上書き
   -------------------------------------------------------------------------- */
/* 送信ボタンをサイトのピンク丸ピルに統一 */
.submit-btn {
  display: block !important;
  width: 100% !important;
  max-width: 360px !important;
  margin: 8px auto 0 !important;
  background: #ec6f9c !important;
  color: #fff !important;
  border: none !important;
  padding: 16px !important;
  border-radius: 999px !important;
  font-family: "Kiwi Maru", serif !important;
  font-size: 1.7rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  box-shadow: 0 8px 20px rgba(236, 111, 156, 0.35) !important;
  transition: background 0.25s ease !important;
}
.submit-btn:hover { background: #e05a8c !important; }
.form-pattern-2 .submit-btn:hover::before { background-color: #fff !important; }

/* 「必須」バッジをサイトカラー（ピンク）に */
.form-pattern-2 dl dt:not(.pattern-exclusion) span.required::before {
  content: '必須' !important;
  color: #fff !important;
  background: #ec6f9c !important;
}

.asuka-thanks { text-align: center; padding: 30px 10px; }
.asuka-thanks .asuka-btn { margin-top: 24px; }
.asuka-thanks__back { margin: 22px 0 0; font-size: 1.4rem; }
.asuka-thanks__icon { font-size: 48px; margin-bottom: 14px; }
.asuka-thanks__icon img { height: 90px; width: auto; display: inline-block; }
.asuka-thanks__title { font-family: "Kiwi Maru", serif; font-size: 2.2rem; margin: 0 0 12px; color: #ec6f9c; }
.asuka-thanks__text { font-size: 1.45rem; line-height: 1.95; margin: 0; color: #6b645b; }
.asuka-contact-lead {
  text-align: center;
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  line-height: 2;
  margin: 0 auto 48px;
  max-width: 620px;
  color: #6b645b;
}

/* ==========================================================================
   フッター
   ========================================================================== */
.asuka-footer {
  background: #fbf3ee;
  border-top: 3px solid #fed9eb;
  color: #5a544c;
}
.asuka-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  align-items: start;
  padding-top: clamp(36px, 6vw, 64px);
  padding-bottom: 28px;
}
.asuka-footer__logo {
  height: 64px;
  width: auto;
  max-width: 100%;
  display: block;
  margin-bottom: 14px;
}
.asuka-footer__tagline {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #7a736a;
}
.asuka-footer__title {
  font-family: "Kiwi Maru", serif;
  font-size: 1.6rem;
  color: #76af08;
  margin: 0 0 14px;
}
.asuka-footer__dl {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.95;
  color: #6b645b;
}
.asuka-footer__dl-row {
  display: flex;
  gap: 8px;
}
.asuka-footer__dl-row + .asuka-footer__dl-row {
  margin-top: 4px;
}
.asuka-footer__dl dt {
  color: #c79bb0;
  flex-shrink: 0;
}
.asuka-footer__dl dd {
  margin: 0;
}
.asuka-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.asuka-footer__nav a {
  text-decoration: none;
  color: #6b645b;
  font-size: 1.4rem;
  transition: color 0.2s ease;
}
.asuka-footer__nav a:hover {
  color: #ec6f9c;
  opacity: 1;
}
.asuka-footer__text {
  margin: 0 0 16px;
  font-size: 1.4rem;
  line-height: 1.85;
  color: #7a736a;
}
.asuka-footer__bottom {
  border-top: 1px solid #f0ddd0;
}
.asuka-footer__bottom p {
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 1.2rem;
  color: #a99e92;
  margin: 0;
  text-align: center;
}
/* スマホではフッターのサイトメニューを非表示 */
/* SP専用ユーティリティ（改行は既定で非表示） */
.sp-br { display: none; }

@media (max-width: 639px) {
  .asuka-footer__col--nav { display: none; }

  /* SP時のみ改行を有効化 */
  .sp-br { display: inline; }
  /* SP時は左寄せ */
  .sp-left { text-align: left !important; }

  /* MV背景の花あしらいをさらに薄く */
  .asuka-flower { opacity: 0.22; }
  /* 下層ページヒーローの花あしらいを少し薄く */
  .asuka-page-hero__flower { opacity: 0.4; }

  /* MV花あしらい：スマホ時の配置 */
  .asuka-flower--1 { top: 4%;  left: 1%;  width: clamp(94px, 15vw, 215px); }
  .asuka-flower--2 { top: 25%; left: 18%; width: clamp(52px, 8vw, 122px); }
  .asuka-flower--3 { top: 24%; left: 82%; width: clamp(50px, 11vw, 100px); }
  .asuka-flower--4 { top: 2%;  right: 2%; width: clamp(61px, 15vw, 185px); }

  /* 定義テーブル（会社概要・募集要項）を縦積みで見やすく */
  .asuka-deftable__row { grid-template-columns: 1fr; }
  .asuka-deftable__k { padding: 14px 18px 6px; }
  .asuka-deftable__v { padding: 0 18px 16px; }

  /* ご依頼・ご相談の流れ：ボックスが全幅にならないよう左右に余白 */
  .asuka-flow-wrap { padding-left: 20px; padding-right: 20px; }

  /* 採用ヒーロー見出し（3行に収める） */
  .recruit-hero-title { font-size: 2.2rem; }
  /* 採用コンセプト見出し（2行に収める） */
  .recruit-concept-title { font-size: 1.9rem !important; }
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 1100px) {
  .asuka-tel-pill { display: none; }
}
@media (max-width: 860px) {
  .asuka-recruit-illust { display: none; }
}
@media (max-width: 520px) {
  /* MV・CTAのボタンは縦積み（等幅は維持） */
  .asuka-hero__btns,
  .asuka-cta__btns {
    grid-auto-flow: row;
    width: 100%;
    max-width: 320px;
  }
}
