@charset "UTF-8";

/* =========================================================
   たんぽぽ会グループ 採用サイト  base style
   テーマカラー: #F3D922 / #F1C11C  茶: #6E3F1D / #4B2611
   ========================================================= */

:root {
  --c-yellow: #F3D922;
  --c-gold: #F1C11C;
  --c-brown: #6E3F1D;
  --c-brown-dark: #4B2611;
  --c-text: #332417;
  --c-bg: #ffffff;
  --c-bg-tint: #fffae8;
  --c-line: #ece3cc;
  --header-h: 76px;
  --fv-frame: 24px;
  --maxw: 1120px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: "Lexend Deca", "Zen Kaku Gothic New", "YuGothic", "游ゴシック",
    "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.95;
  font-size: 16px;
  letter-spacing: .02em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: opacity .2s var(--ease), color .2s var(--ease); }
a:hover { opacity: .75; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.sp-only { display: none; }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--c-yellow);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(75,38,17,.12); }

/* --- ホーム：FV下部にメニュー、スクロールで上部固定 --- */
body.is-home .site-main { padding-top: 0; }
body.is-home .site-header {
  position: absolute;
  top: calc(100vh - var(--header-h));
  inset-inline: 0;
  background: rgba(255,255,255,.86);
  border-bottom: none;
  box-shadow: 0 -6px 24px rgba(75,38,17,.08);
}
body.is-home .site-header.is-pinned {
  position: fixed;
  top: 0;
  background: rgba(255,255,255,.96);
  border-bottom: 3px solid var(--c-yellow);
  box-shadow: 0 4px 18px rgba(75,38,17,.12);
  animation: headerDown .4s var(--ease);
}
@keyframes headerDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.site-header__inner {
  height: 100%; max-width: var(--maxw); margin-inline: auto;
  padding: 0 0 0 24px;
  display: flex; align-items: stretch; gap: clamp(16px, 2vw, 36px);
}
.site-header__logo { display: flex; align-items: center; flex: none; }
.site-header__logo img { width: 175px; height: auto; }

.gnav { display: flex; align-items: center; gap: 28px; margin-inline: auto; }
.gnav__list { display: flex; gap: 28px; margin: 0; padding: 0; list-style: none; }
.gnav__item a {
  position: relative; font-weight: 700; font-size: 15px; padding-block: 6px;
  color: var(--c-brown-dark);
}
.gnav__item a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 3px;
  background: var(--c-gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.gnav__item a:hover { opacity: 1; }
.gnav__item a:hover::after { transform: scaleX(1); }

/* モバイルドロワー内のピル型エントリー（PCでは非表示） */
.gnav__entry {
  display: none; align-items: center; justify-content: center;
  background: var(--c-brown-dark); color: #fff; font-weight: 700; font-size: 14px;
  padding: 10px 22px; border-radius: 999px; line-height: 1;
}
.gnav__entry:hover { opacity: 1; background: var(--c-brown); }

/* PC：右端・全高のソリッドなエントリーブロック */
.entry-block {
  flex: none; align-self: stretch;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; min-width: 168px; padding: 0 clamp(22px, 2.4vw, 40px);
  background: var(--c-gold); color: var(--c-brown-dark);
  text-align: center; line-height: 1.2;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.entry-block:hover { opacity: 1; background: var(--c-brown-dark); color: #fff; }
.entry-block__sub { font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.entry-block__main {
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px); letter-spacing: .14em;
}

.hamburger {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: auto; min-width: 46px; height: 46px; border: 0; background: transparent;
  cursor: pointer; padding: 0;
}
.hamburger__bars { position: relative; display: block; width: 26px; height: 12px; }
.hamburger__bars span {
  position: absolute; left: 0; width: 100%; height: 2px; background: var(--c-brown-dark);
  border-radius: 3px; transition: transform .3s var(--ease);
}
.hamburger__bars span:nth-child(1) { top: 2px; }
.hamburger__bars span:nth-child(2) { top: 8px; }
.hamburger.is-open .hamburger__bars span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.hamburger.is-open .hamburger__bars span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
.hamburger__text {
  font-family: "Lexend Deca", sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .14em; color: var(--c-brown-dark); line-height: 1;
}

.site-main { padding-top: var(--header-h); }

/* ---------------- FV ---------------- */
.fv {
  position: relative;
  height: 100vh; height: 100svh;
  min-height: 560px;
  padding: var(--fv-frame) var(--fv-frame) var(--header-h);
  background: #fff;
}
.fv__frame {
  position: relative; height: 100%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(75,38,17,.14);
}
.fv__media { position: absolute; inset: 0; }
.fv__media img { width: 100%; height: 100%; object-fit: cover; }
.fv__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(75,38,17,.55) 0%, rgba(75,38,17,.15) 55%, rgba(75,38,17,0) 100%);
}
.fv__copy {
  position: absolute; inset: 0; z-index: 2;
  padding: clamp(28px, 6vw, 84px);
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
}
.fv__area {
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 900;
  font-size: clamp(26px, 4.4vw, 50px); line-height: 1.4; margin: 0 0 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.fv__area strong {
  color: var(--c-yellow); font-size: 1.25em;
}
.fv__lead {
  font-weight: 700; font-size: clamp(14px, 1.7vw, 19px); line-height: 1.8; margin: 0 0 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.fv__sub {
  display: inline-block; align-self: flex-start;
  background: var(--c-yellow); color: var(--c-brown-dark);
  font-weight: 900; font-size: clamp(13px, 1.5vw, 17px); line-height: 1.6;
  padding: 10px 18px; border-radius: 8px;
}

/* ---------------- Section common ---------------- */
.section { padding-block: clamp(56px, 8vw, 100px); }
.section--philosophy { padding-block: clamp(28px, 4vw, 50px); }
.section--tinted { background: var(--c-bg-tint); }

.heading { text-align: center; margin: 0 0 clamp(36px, 5.5vw, 64px); }
.heading__ja {
  display: block; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(23px, 3.4vw, 37px); line-height: 1.55; color: var(--c-brown-dark);
  letter-spacing: .06em;
}
.heading__ja::after {
  content: ""; display: block; width: 56px; height: 4px; border-radius: 999px;
  background: var(--c-gold); margin: 22px auto 0;
}
.heading__en {
  display: block; margin-top: 18px; font-weight: 500;
  font-size: clamp(13px, 1.7vw, 17px); color: var(--c-brown); letter-spacing: .04em;
}

.prose { max-width: 860px; margin-inline: auto; }
.prose p { margin: 0 0 1.4em; }
.prose p:last-child { margin-bottom: 0; }
.prose__strong {
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: 1.18em; color: var(--c-brown-dark);
}

/* ---------------- Movie ---------------- */
.movie {
  position: relative;
  max-width: 880px; margin-inline: auto;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 18px 48px rgba(75,38,17,.18);
  border: 4px solid var(--c-yellow);
}
.movie__video { width: 100%; display: block; background: #000; aspect-ratio: 16 / 9; }

/* 動画の上に重ねるタイトル（再生で消える） */
.movie__cover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px;
  border: 0; cursor: pointer; padding: 0;
  background: rgba(255, 255, 255, .72);
  transition: opacity .45s var(--ease), visibility .45s var(--ease);
}
.movie__cover:hover { background: rgba(255, 255, 255, .64); }
.movie.is-playing .movie__cover { opacity: 0; visibility: hidden; }
.movie__title {
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(26px, 4.2vw, 46px); line-height: 1.4;
  color: var(--c-brown-dark); letter-spacing: .08em;
  text-shadow: 0 2px 14px rgba(255, 255, 255, .9);
}
.movie__title::after {
  content: ""; display: block; width: 56px; height: 4px; border-radius: 999px;
  background: var(--c-gold); margin: 18px auto 0;
}
.movie__play {
  display: block; width: 76px; height: 76px; border-radius: 50%;
  background: var(--c-gold); box-shadow: 0 8px 24px rgba(75,38,17,.28);
  transition: transform .25s var(--ease);
}
.movie__play::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-40%, -50%);
  border-style: solid; border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--c-brown-dark);
}
.movie__play { position: relative; }
.movie__cover:hover .movie__play { transform: scale(1.08); }

/* ---------------- Features（当院の特長 / 交互レイアウト） ---------------- */
.features {
  position: relative; overflow: hidden;
  padding-block: clamp(40px, 6vw, 88px);
  background:
    radial-gradient(120% 70% at 50% 0%, var(--c-bg-tint) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #fffdf3 0%, #ffffff 50%, #fffdf3 100%);
}
.features__watermark {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: "Lexend Deca", sans-serif; font-weight: 700;
  font-size: clamp(72px, 17vw, 300px); letter-spacing: .03em; line-height: 1;
  color: rgba(241,193,28,.10); white-space: nowrap;
  pointer-events: none; user-select: none; z-index: 0;
}
.feature {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 35fr 65fr;
  grid-template-areas:
    "head head"
    "media body";
  column-gap: clamp(28px, 4vw, 60px);
  row-gap: clamp(20px, 2.5vw, 32px);
  align-items: center;
  max-width: 1160px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.feature + .feature { margin-top: clamp(44px, 6vw, 88px); }
.feature__head { grid-area: head; }
.feature__media { grid-area: media; position: relative; overflow: hidden; border-radius: 0 40px 0 40px; }
.feature__media img {
  width: 100%; height: auto; max-height: 460px; object-fit: cover; display: block;
}
.feature__body {
  grid-area: body;
  display: flex; flex-direction: column; justify-content: center;
}
.feature--reverse {
  grid-template-columns: 65fr 35fr;
  grid-template-areas:
    "head head"
    "body media";
}

.feature__num {
  font-family: "Lexend Deca", sans-serif; font-weight: 700;
  font-size: clamp(40px, 5vw, 66px); line-height: 1; color: var(--c-yellow);
  margin: 0 0 6px;
}
.feature__title {
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(21px, 2.4vw, 31px); line-height: 1.5; color: var(--c-brown-dark);
  margin: 0 0 10px; letter-spacing: .03em;
}
.feature__title::after {
  content: ""; display: block; width: 48px; height: 4px; border-radius: 999px;
  background: var(--c-gold); margin-top: 18px;
}
.feature__lead {
  margin: 0 0 18px; font-weight: 700; color: var(--c-gold);
  font-size: clamp(14px, 1.6vw, 17px); letter-spacing: .03em;
}
.feature__body .prose { max-width: 620px; margin: 0; }
.feature__body .prose + .prose { margin-top: 1.3em; }
.feature__body .point-list,
.feature__body .check-list { max-width: 620px; margin-left: 0; margin-right: 0; }
.feature__body .point-list { grid-template-columns: 1fr; margin-top: 24px; }
.feature__body .check-list { margin-top: 22px; }

mark.mk {
  background: linear-gradient(transparent 58%, rgba(243,217,34,.6) 58%);
  color: inherit; font-weight: 700; padding: 0 .08em;
}

@media (max-width: 900px) {
  .feature,
  .feature--reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "media" "body";
    row-gap: 24px;
  }
  .feature__media { aspect-ratio: 16 / 10; }
  .feature__media img { height: 100%; max-height: none; }
  .features__watermark { font-size: clamp(56px, 22vw, 140px); }
}

/* ---------------- Point list ---------------- */
.point-list {
  list-style: none; margin: clamp(32px, 5vw, 48px) auto 0; padding: 0;
  max-width: 880px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.point-list__item {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 10px;
  padding: 14px 18px; font-weight: 500; line-height: 1.5;
  box-shadow: 0 4px 14px rgba(75,38,17,.06);
}
.point-list__num {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--c-gold); color: #fff;
  display: grid; place-items: center; font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900; font-size: 12px;
}

/* ---------------- Check list ---------------- */
.check-list {
  list-style: none; max-width: 760px; margin: 28px auto; padding: 0;
  display: grid; gap: 12px;
}
.check-list li {
  position: relative; background: #fff; border-radius: 10px;
  padding: 14px 18px 14px 52px; font-weight: 500;
  box-shadow: 0 4px 14px rgba(75,38,17,.06);
}
.check-list li::before {
  content: "✓"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--c-gold); color: #fff; font-weight: 900; font-size: 14px;
  display: grid; place-items: center;
}

/* ---------------- Job banners（募集職種バナー） ---------------- */
.job-banners {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.job-banners__item { min-width: 0; }
.job-banner {
  position: relative; display: block; height: 100%;
  color: var(--c-text);
}
.job-banner__media {
  display: block; aspect-ratio: 3 / 4; overflow: hidden; position: relative;
}
.job-banner__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(241,193,28,.06), rgba(75,38,17,.18));
  transition: opacity .3s var(--ease); opacity: 0;
}
.job-banner__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.job-banner__body {
  position: relative; z-index: 2;
  display: block; margin: -52px 14px 0;
  background: #fff; padding: 18px 18px 20px;
  box-shadow: 0 12px 28px rgba(75,38,17,.12);
}
.job-banner__label {
  display: block; position: relative; padding-left: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(16px, 1.3vw, 19px); color: var(--c-brown-dark); line-height: 1.4;
}
.job-banner__label::before {
  content: ""; position: absolute; left: 0; top: .15em; bottom: .15em;
  width: 5px; border-radius: 999px; background: var(--c-gold);
}
.job-banner__en {
  display: block; margin: 4px 0 8px;
  font-family: "Lexend Deca", sans-serif; font-size: 11px; letter-spacing: .12em;
  color: var(--c-gold); font-weight: 700;
}
.job-banner__desc {
  display: block; font-size: 13px; line-height: 1.8; color: var(--c-text);
}
.job-banner__more {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 12px;
  font-size: 13px; font-weight: 700; color: var(--c-brown-dark);
}
.job-banner__arrow {
  display: inline-grid; place-items: center; width: 18px; height: 18px;
  border-radius: 50%; background: var(--c-gold); color: #fff; font-size: 13px; line-height: 1;
  transition: transform .25s var(--ease);
}
.job-banner:hover { opacity: 1; }
.job-banner:hover img { transform: scale(1.06); }
.job-banner:hover .job-banner__media::after { opacity: 1; }
.job-banner:hover .job-banner__arrow { transform: translateX(3px); }

@media (max-width: 1024px) {
  .job-banners { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .job-banners { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
}

/* ---------------- Footer ---------------- */
.site-footer { background: var(--c-brown-dark); color: #f6ecd9; padding-top: 56px; }
.site-footer__inner {
  max-width: var(--maxw); margin-inline: auto; padding: 0 24px 40px;
  display: grid; grid-template-columns: 1.3fr 1fr .7fr; gap: 40px;
}
.site-footer__brand img {
  width: 220px; background: #fff; padding: 12px 16px; border-radius: 10px;
}
.site-footer__lead { margin: 18px 0 0; font-weight: 700; font-size: 14px; }
.site-footer__dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; font-size: 14px; }
.site-footer__dl dt { font-weight: 700; color: var(--c-yellow); white-space: nowrap; }
.site-footer__dl dd { margin: 0; }
.site-footer__nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.site-footer__nav a { font-weight: 700; font-size: 14px; position: relative; padding-left: 16px; }
.site-footer__nav a::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; background: var(--c-yellow); border-radius: 2px;
}
.site-footer__copy {
  margin: 0; text-align: center; font-size: 12px; padding: 18px;
  background: rgba(0,0,0,.25); color: #d9c9ad;
}

/* ---------------- 固定ボトムCTA（スマホのみ） ---------------- */
.fixed-cta { display: none; }

/* ---------------- Page top ---------------- */
.pagetop {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: var(--c-gold); color: var(--c-brown-dark); font-size: 14px; cursor: pointer;
  box-shadow: 0 6px 16px rgba(75,38,17,.25);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.pagetop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.pagetop:hover { opacity: 1; background: var(--c-yellow); }

/* ---------------- Reveal animation ---------------- */
.section .container > * { opacity: 0; transform: translateY(24px); }
.section.is-in .container > * {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.section.is-in .container > *:nth-child(2) { transition-delay: .1s; }
.section.is-in .container > *:nth-child(3) { transition-delay: .2s; }
.section.is-in .container > *:nth-child(4) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .section .container > * { opacity: 1; transform: none; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__nav { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .sp-only { display: inline; }
  .site-header__inner { padding: 0 16px; align-items: center; }
  .site-header__logo img { width: 150px; }

  .entry-block { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .gnav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 3px solid var(--c-yellow);
    padding: 8px 0 20px;
    opacity: 0; visibility: hidden; transform: translateY(6px) scale(.98);
    transform-origin: top center;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease);
    box-shadow: 0 18px 30px rgba(75,38,17,.15);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .gnav.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .gnav__list { flex-direction: column; gap: 0; }
  .gnav__item a {
    display: block; padding: 16px 24px; border-bottom: 1px solid var(--c-line); font-size: 16px;
  }
  .gnav__item a::after { display: none; }
  .gnav__entry { display: flex; margin: 16px 24px 0; padding: 14px; font-size: 15px; }

  /* モバイルはヘッダーを常時上部固定（メニューが上から開くため） */
  body.is-home .site-main { padding-top: var(--header-h); }
  body.is-home .site-header {
    position: fixed; top: 0;
    background: rgba(255,255,255,.96);
    border-bottom: 2px solid var(--c-yellow);
    box-shadow: 0 4px 18px rgba(75,38,17,.12);
  }
  body.is-home .site-header.is-pinned { animation: none; }

  .fv { height: auto; min-height: 0; padding: 0; }
  .fv__frame { height: calc(72vh - 80px); min-height: 370px; box-shadow: none; }
  .fv__copy { padding: 24px 24px 54px; justify-content: flex-end; }

  .point-list { grid-template-columns: 1fr; }

  /* フッターは1カラムに積んで住所などの幅を確保 */
  .site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__nav { grid-column: auto; }
  .site-footer__dl { grid-template-columns: 6em 1fr; gap: 10px 16px; }

  /* スマホでは再生ボタンとタイトル下線を非表示（カバー全体タップで再生） */
  .movie__play { display: none; }
  .movie__title::after { display: none; }

  /* 固定ボトムCTA */
  body { padding-bottom: 64px; }
  .fixed-cta {
    display: grid; grid-template-columns: 1.5fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    box-shadow: 0 -4px 18px rgba(75,38,17,.2);
  }
  .fixed-cta a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 9px 10px; }
  .fixed-cta a:hover { opacity: 1; }
  .fixed-cta__tel { background: var(--c-brown-dark); color: #fff; }
  .fixed-cta__telbody { display: flex; flex-direction: column; line-height: 1.25; }
  .fixed-cta__num { font-family: "Lexend Deca", sans-serif; font-weight: 700; font-size: 19px; letter-spacing: .02em; }
  .fixed-cta__hours { font-size: 10px; opacity: .85; }
  .fixed-cta__entry { background: var(--c-gold); color: var(--c-brown-dark); font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 15px; }
  .fixed-cta__icon { flex: none; display: inline-grid; place-items: center; }
  .fixed-cta__icon svg { width: 20px; height: 20px; display: block; }

  .pagetop { bottom: 76px; }
}

@media (max-width: 480px) {
  body { font-size: 15px; line-height: 1.85; }
  .container { padding-inline: 18px; }
  .job-select { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   当院の特長 ページ（about.php）
   ========================================================= */
.pc-only { display: inline; }

/* ---- ページヒーロー ---- */
.ab-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(56px, 9vw, 110px) clamp(44px, 6vw, 76px);
  background:
    radial-gradient(140% 90% at 88% -20%, rgba(243,217,34,.34), rgba(255,255,255,0) 58%),
    linear-gradient(180deg, #fffdf2 0%, #ffffff 100%);
}
.ab-hero::before {
  content: ""; position: absolute; left: -8%; bottom: -40%;
  width: 60%; height: 120%;
  background: linear-gradient(135deg, rgba(243,217,34,.18), rgba(241,193,28,.05));
  transform: skewX(-16deg); transform-origin: bottom left;
  pointer-events: none;
}
.ab-hero__watermark {
  position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
  font-family: "Lexend Deca", sans-serif; font-weight: 700;
  font-size: clamp(70px, 16vw, 250px); line-height: 1; letter-spacing: .02em;
  color: rgba(241,193,28,.16);
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.ab-hero__inner { position: relative; z-index: 1; }
.ab-hero__en {
  margin: 0 0 10px; font-family: "Lexend Deca", sans-serif; font-weight: 700;
  font-size: clamp(12px, 1.4vw, 15px); letter-spacing: .28em; color: var(--c-gold);
}
.ab-hero__title {
  margin: 0; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 900;
  font-size: clamp(34px, 6.4vw, 74px); line-height: 1.1; color: var(--c-brown-dark);
  letter-spacing: .04em;
}
.ab-hero__title::after {
  content: ""; display: block; width: 64px; height: 5px; border-radius: 999px;
  background: var(--c-gold); margin-top: 22px;
}
.ab-hero__lead {
  margin: 26px 0 0; font-weight: 500; line-height: 1.9;
  font-size: clamp(15px, 1.7vw, 19px); color: var(--c-text);
}
.ab-hero__lead strong { color: var(--c-brown-dark); font-weight: 900; }

/* ---- ブロック共通 ---- */
.ab { position: relative; }
.section--ab { padding-block: clamp(50px, 7vw, 96px); }
.section--ab:nth-of-type(even) { background: var(--c-bg-tint); }
.ab-block__grid {
  display: grid;
  grid-template-columns: 46fr 54fr;
  align-items: center;
  column-gap: clamp(36px, 5vw, 76px);
  row-gap: 32px;
}
.ab-block--reverse .ab-block__visual { order: 2; }

/* 写真ビジュアル：オフセットの黄色ブロック＋巨大番号＋縦ラベル */
.ab-block__visual { position: relative; }
.ab-block__frame {
  position: relative; z-index: 2; margin: 0;
  overflow: hidden; border-radius: 6px 56px 6px 56px;
  box-shadow: 0 26px 60px rgba(75,38,17,.18);
}
.ab-block--reverse .ab-block__frame { border-radius: 56px 6px 56px 6px; }
.ab-block__frame img {
  width: 100%; height: 100%; max-height: 540px; object-fit: cover; display: block;
  transition: transform .8s var(--ease);
}
.ab-block__frame:hover img { transform: scale(1.04); }
.ab-block__visual::before {
  content: ""; position: absolute; z-index: 1;
  inset: auto -18px -18px auto; width: 64%; height: 76%;
  background:
    radial-gradient(circle at 2px 2px, rgba(241,193,28,.55) 1.6px, transparent 1.7px) 0 0 / 14px 14px,
    var(--c-bg-tint);
  border-radius: 6px 56px 6px 56px;
}
.ab-block--reverse .ab-block__visual::before {
  inset: auto auto -18px -18px; border-radius: 56px 6px 56px 6px;
}

/* サブ画像（メイン写真に重ねる、ロゴ風の2つ丸シルエット） */
.ab-block__inset {
  position: absolute; z-index: 4; margin: 0;
  right: -24px; bottom: -30px;
  width: 52%; max-width: 270px;
  filter: drop-shadow(0 14px 26px rgba(75,38,17,.28));
  transition: transform .4s var(--ease);
}
.ab-block__inset svg { width: 100%; height: auto; display: block; overflow: visible; }
.ab-block__visual:hover .ab-block__inset { transform: translateY(-4px) rotate(-2deg); }
.ab-block__num {
  position: absolute; z-index: 3; top: -34px; left: -14px;
  font-family: "Lexend Deca", sans-serif; font-weight: 700; line-height: 1;
  font-size: clamp(72px, 9vw, 132px);
  color: var(--c-gold);
  text-shadow: 0 6px 18px rgba(255,255,255,.6);
}
.ab-block--reverse .ab-block__num { left: auto; right: -14px; }
.ab-block__tag {
  position: absolute; z-index: 3; top: 50%; right: -30px;
  transform: translateY(-50%) rotate(90deg); transform-origin: center;
  font-family: "Lexend Deca", sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .4em; color: var(--c-brown);
  opacity: .55; white-space: nowrap;
}
.ab-block--reverse .ab-block__tag { right: auto; left: -30px; transform: translateY(-50%) rotate(-90deg); }

/* テキスト側 */
.ab-block__kicker {
  display: inline-block; margin: 0 0 14px;
  padding: 5px 16px; border-radius: 999px;
  background: var(--c-brown-dark); color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: .1em;
}
.ab-block__title {
  margin: 0 0 14px; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 900;
  font-size: clamp(24px, 3vw, 39px); line-height: 1.4; color: var(--c-brown-dark);
  letter-spacing: .02em;
}
.ab-block__sub {
  display: inline-block; margin: 0 0 20px;
  font-weight: 700; color: var(--c-brown);
  font-size: clamp(14px, 1.6vw, 18px);
  background: linear-gradient(transparent 62%, rgba(243,217,34,.55) 62%);
  padding: 0 .15em;
}
.ab-prose { max-width: none; margin: 0; }
.ab-prose p { margin: 0 0 1.2em; }

/* 理念の3カード */
.ab-creed {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: grid; gap: 12px;
}
.ab-creed__item {
  position: relative; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  background: #fff; border-left: 5px solid var(--c-gold);
  border-radius: 4px 12px 12px 4px;
  padding: 14px 20px; box-shadow: 0 6px 18px rgba(75,38,17,.07);
}
.ab-creed__to {
  flex: none; font-weight: 700; font-size: 13px; color: var(--c-brown);
  letter-spacing: .04em;
}
.ab-creed__word {
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 900;
  font-size: clamp(17px, 1.9vw, 22px); color: var(--c-brown-dark); line-height: 1.4;
}
.ab-block__closing {
  margin: 24px 0 0; padding: 18px 22px;
  background: var(--c-brown-dark); color: #fff; border-radius: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(14px, 1.5vw, 17px); line-height: 1.85;
}

/* 環境ブロックのピル */
.ab-pills {
  list-style: none; margin: 26px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.ab-pills li {
  position: relative; padding: 9px 16px 9px 34px;
  background: #fff; border: 1.5px solid var(--c-line); border-radius: 999px;
  font-weight: 700; font-size: 14px; color: var(--c-brown-dark);
  box-shadow: 0 4px 12px rgba(75,38,17,.05);
}
.ab-pills li::before {
  content: "✓"; position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--c-gold); color: #fff; font-size: 10px; font-weight: 900;
  display: grid; place-items: center;
}

/* デジタルブロックの数値 */
.ab-stats {
  list-style: none; margin: 30px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.ab-stat {
  text-align: center; background: #fff; border-radius: 14px;
  padding: 20px 10px; box-shadow: 0 10px 26px rgba(75,38,17,.08);
  border-top: 4px solid var(--c-gold);
}
.ab-stat__num {
  display: block; font-family: "Lexend Deca", sans-serif; font-weight: 700;
  font-size: clamp(30px, 4vw, 46px); line-height: 1; color: var(--c-brown-dark);
}
.ab-stat__num small {
  font-size: .42em; font-weight: 700; margin-left: 3px; color: var(--c-brown);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.ab-stat__label {
  display: block; margin-top: 10px; font-size: 12px; font-weight: 700;
  color: var(--c-text); line-height: 1.5;
}

/* 下部CTA */
.ab-cta__inner { text-align: center; }
.ab-cta__en {
  margin: 0 0 8px; font-family: "Lexend Deca", sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: .26em; color: var(--c-gold);
}
.ab-cta__title {
  margin: 0 0 28px; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 900;
  font-size: clamp(22px, 3.2vw, 34px); color: var(--c-brown-dark); letter-spacing: .03em;
}
.ab-cta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--c-brown-dark); color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(15px, 1.6vw, 18px); letter-spacing: .06em;
  padding: 16px 40px; border-radius: 999px;
  box-shadow: 0 12px 28px rgba(75,38,17,.22);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.ab-cta__btn span {
  display: inline-grid; place-items: center; width: 24px; height: 24px;
  border-radius: 50%; background: var(--c-gold); color: var(--c-brown-dark);
  font-size: 15px; line-height: 1; transition: transform .25s var(--ease);
}
.ab-cta__btn:hover { opacity: 1; background: var(--c-brown); transform: translateY(-2px); }
.ab-cta__btn:hover span { transform: translateX(3px); }

/* CTA 背景にうっすら写真を敷く（about.php） */
.ab-cta--photo { position: relative; overflow: hidden; isolation: isolate; }
.ab-cta--photo::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: var(--cta-img, url(../img/3986684_m.jpg)) var(--cta-pos, center) / cover no-repeat;
  opacity: .2; filter: saturate(1.05);
}
.ab-cta--photo::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 130% at 50% 45%, rgba(255,250,232,.42) 0%, rgba(255,250,232,.84) 62%, rgba(255,250,232,.97) 100%);
}
.ab-cta--photo .container { position: relative; z-index: 1; }
/* 上下に黄色のアクセントライン */
.ab-cta--photo .ab-cta__title::after {
  content: ""; display: block; width: 56px; height: 4px; border-radius: 999px;
  background: var(--c-gold); margin: 16px auto 0;
}

/* About レスポンシブ */
@media (max-width: 900px) {
  .pc-only { display: none; }
  .ab-block__grid { grid-template-columns: 1fr; row-gap: 40px; }
  .ab-block--reverse .ab-block__visual { order: 0; }
  .ab-block__frame img { max-height: 420px; }
  .ab-block__tag { display: none; }
  .ab-block__visual::before { inset: auto -10px -12px auto; }
  .ab-block--reverse .ab-block__visual::before { inset: auto auto -12px -10px; }
  .ab-stats { grid-template-columns: 1fr; }
  .ab-stat {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    padding: 16px; text-align: left;
  }
  .ab-stat__label { margin-top: 0; }
}

@media (max-width: 480px) {
  .ab-block__num { font-size: 64px; top: -28px; }
  .ab-creed__item { border-radius: 4px 10px 10px 4px; }
  .ab-cta__btn { padding: 15px 30px; }
}

/* =========================================================
   9院を展開 ページ（location.php）
   ========================================================= */
/* ---- イントロ＋エリアマップ ---- */
.lo-intro__lead { max-width: 1000px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.lo-intro__copy {
  margin: 0; font-weight: 500; line-height: 1.95;
  font-size: clamp(15px, 1.7vw, 19px); color: var(--c-text);
}
.lo-areas {
  list-style: none; margin: 26px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.lo-areas li {
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(13px, 1.5vw, 16px); color: var(--c-brown-dark);
  padding: 7px 18px; border-radius: 999px;
  background: var(--c-bg-tint); border: 1.5px solid var(--c-gold);
}

.lo-map { margin: 0 auto; max-width: 980px; }
.lo-map img { width: 100%; height: auto; display: block; }

/* ---- 店舗一覧グリッド ---- */
.lo-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 32px);
}
.lo-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 6px 26px 6px 26px; overflow: hidden;
  box-shadow: 0 12px 30px rgba(75,38,17,.09);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.lo-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(75,38,17,.16); }
.lo-card__media { position: relative; margin: 0; aspect-ratio: 310 / 240; overflow: hidden; }
.lo-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.lo-card:hover .lo-card__media img { transform: scale(1.06); }
.lo-card__no {
  position: absolute; left: 0; top: 0; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 46px; height: 38px; padding: 0 12px;
  background: var(--c-gold); color: var(--c-brown-dark);
  font-family: "Lexend Deca", sans-serif; font-weight: 700; font-size: 17px; line-height: 1;
  border-radius: 0 0 16px 0;
}
.lo-card__body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; }
.lo-card__area {
  margin: 0 0 6px; font-family: "Lexend Deca", sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: .12em; color: var(--c-gold);
}
.lo-card__name {
  position: relative; margin: 0 0 12px; padding-left: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px); line-height: 1.4; color: var(--c-brown-dark);
}
.lo-card__name::before {
  content: ""; position: absolute; left: 0; top: .2em; bottom: .2em;
  width: 5px; border-radius: 999px; background: var(--c-gold);
}
.lo-card__addr { margin: 0 0 18px; font-size: 14px; line-height: 1.7; color: var(--c-text); }
.lo-card__map {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-brown-dark); color: #fff;
  font-weight: 700; font-size: 14px; letter-spacing: .04em;
  padding: 11px 22px; border-radius: 999px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.lo-card__map:hover { opacity: 1; background: var(--c-brown); transform: translateX(2px); }
.lo-card__pin { display: inline-grid; place-items: center; }
.lo-card__pin svg { width: 16px; height: 16px; display: block; color: var(--c-yellow); }

@media (max-width: 900px) {
  .lo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lo-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   募集一覧 ページ（recruit.php）
   ========================================================= */
/* ---- 職種で探す（フィルター） ---- */
/* 見出しを外した分、セクション上の余白を約半分に詰める */
.rc-list { padding-top: clamp(28px, 4vw, 50px); }
.rc-filter { text-align: center; margin: 0 0 clamp(30px, 4vw, 48px); }
.rc-filter__label {
  display: inline-block; margin: 0 0 20px;
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(16px, 1.8vw, 20px); color: var(--c-brown-dark); letter-spacing: .06em;
}
.rc-filter__label::after {
  content: ""; display: block; width: 40px; height: 4px; border-radius: 999px;
  background: var(--c-gold); margin: 10px auto 0;
}
/* 地域マップ画像＋拠点マーカー */
.rc-tabs[hidden] { display: none; }
.rc-area-map { position: relative; margin: 20px auto 0; max-width: 640px; }
.rc-area-map__base { display: block; width: 100%; height: auto; }
.rc-map-marker {
  position: absolute; width: 10%; transform: translate(-50%, -50%);
  padding: 0; border: 0; background: none; cursor: pointer; -webkit-appearance: none; appearance: none;
  transition: transform .2s ease, filter .2s ease;
}
.rc-map-marker img { display: block; width: 100%; height: auto; pointer-events: none; }
.rc-map-marker:hover,
.rc-map-marker:focus-visible { transform: translate(-50%, -50%) scale(1.08); filter: drop-shadow(0 4px 6px rgba(0,0,0,.25)); z-index: 2; outline: none; }
.rc-map-marker.is-active { z-index: 3; }

/* 院情報の吹き出し */
.rc-map-popup {
  position: absolute; z-index: 10; width: 46%; max-width: 320px; min-width: 220px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.22));
  animation: rcPopupIn .18s ease-out;
}
.rc-map-popup[hidden] { display: none; }
.rc-map-popup__card { display: block; width: 100%; height: auto; }
.rc-map-popup__close {
  position: absolute; top: -10px; right: -10px; z-index: 1;
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid #fff; background: var(--c-brown-dark, #5b4636); color: #fff;
  font-size: 18px; line-height: 1; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,.25);
}
.rc-map-popup__close:hover { opacity: .85; }
@keyframes rcPopupIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }

/* マーカー選択時に募集カードが「検索したように」入れ替わる演出 */
.rc-grid.is-searching .rc-grid__item {
  opacity: .12; transform: translateY(8px) scale(.98);
  transition: opacity .18s ease, transform .18s ease;
}
@keyframes rcCardIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
/* セグメントタブ（下線がスライド／横スクロール対応） */
.rc-tabs {
  position: relative;
  display: flex; gap: clamp(0px, 0.3vw, 6px);
  width: fit-content; max-width: 100%; margin-inline: auto;
  overflow-x: auto; overflow-y: hidden;
  border-bottom: 2px solid var(--c-line);
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.rc-tabs::-webkit-scrollbar { display: none; }
.rc-tab {
  flex: none; cursor: pointer; border: 0; background: transparent;
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(14px, 1.4vw, 15.5px); letter-spacing: .02em; line-height: 1.4;
  color: var(--c-brown); white-space: nowrap;
  padding: 12px clamp(11px, 1.2vw, 16px) 14px;
  transition: color .25s var(--ease);
}
.rc-tab:hover { opacity: 1; color: var(--c-brown-dark); }
.rc-tab.is-active { color: var(--c-brown-dark); }
.rc-tabs__bar {
  position: absolute; left: 0; bottom: -2px; height: 4px; width: 0;
  background: var(--c-gold); border-radius: 999px;
  transform: translateX(0);
  transition: transform .35s var(--ease), width .35s var(--ease);
  pointer-events: none;
}

.rc-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 30px);
}
.rc-grid__item { min-width: 0; }
.rc-card {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border-radius: 6px 26px 6px 26px; overflow: hidden;
  box-shadow: 0 12px 30px rgba(75,38,17,.09); color: var(--c-text);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.rc-card:hover { opacity: 1; transform: translateY(-5px); box-shadow: 0 20px 44px rgba(75,38,17,.16); }
.rc-card__media { position: relative; margin: 0; aspect-ratio: 3 / 2; overflow: hidden; }
.rc-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.rc-card:hover .rc-card__media img { transform: scale(1.06); }
.rc-card__cat {
  position: absolute; left: 0; bottom: 0;
  background: var(--c-brown-dark); color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .06em; padding: 6px 16px;
  border-radius: 0 14px 0 0;
}
.rc-card__body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; }
.rc-card__title {
  position: relative; margin: 0 0 10px; padding-left: 13px;
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.5; color: var(--c-brown-dark);
}
.rc-card__title::before {
  content: ""; position: absolute; left: 0; top: .25em; bottom: .25em;
  width: 5px; border-radius: 999px; background: var(--c-gold);
}
.rc-card__desc { margin: 0 0 16px; font-size: 13.5px; line-height: 1.8; color: var(--c-text); }
.rc-card__more {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 13px; color: var(--c-brown-dark);
}
.rc-arrow {
  display: inline-grid; place-items: center; width: 18px; height: 18px;
  border-radius: 50%; background: var(--c-gold); color: #fff; font-size: 13px; line-height: 1;
  transition: transform .25s var(--ease);
}
.rc-card:hover .rc-arrow { transform: translateX(3px); }

/* 該当なしの表示 */
.rc-empty {
  grid-column: 1 / -1; text-align: center; padding: 48px 20px;
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  color: var(--c-brown); font-size: 15px;
}
.rc-empty[hidden] { display: none; }

/* ---- ページャ ---- */
.rc-pager {
  display: flex; justify-content: center; align-items: center; gap: clamp(6px, 1vw, 12px);
  margin-top: clamp(40px, 5.5vw, 64px);
}
.rc-pager__num,
.rc-pager__arrow {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; font-family: "Lexend Deca", sans-serif; font-weight: 700; font-size: 16px;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.rc-pager__num {
  background: var(--c-gold); color: var(--c-brown-dark);
  box-shadow: 0 6px 14px rgba(241,193,28,.4);
}
.rc-pager__num:hover { opacity: 1; background: var(--c-yellow); transform: translateY(-2px); }
.rc-pager__num.is-current {
  background: var(--c-brown-dark); color: #fff; box-shadow: 0 6px 14px rgba(75,38,17,.3);
}
.rc-pager__num.is-current:hover { transform: none; }
.rc-pager__arrow { background: transparent; color: var(--c-brown-dark); font-size: 22px; }
.rc-pager__arrow:hover { opacity: 1; background: var(--c-bg-tint); }
.rc-pager__arrow.is-disabled { color: var(--c-line); pointer-events: none; }

@media (max-width: 900px) {
  .rc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .rc-grid { grid-template-columns: 1fr; }
  .rc-pager__num, .rc-pager__arrow { width: 38px; height: 38px; font-size: 15px; }
}

/* =========================================================
   募集詳細 ページ（recruit-detail.php）
   ========================================================= */
/* ヒーロー */
.rd-breadcrumb {
  margin: 0 0 16px; font-size: 13px; font-weight: 700; color: var(--c-brown);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.rd-breadcrumb a { color: var(--c-brown); text-decoration: underline; text-underline-offset: 3px; }
.rd-breadcrumb span { color: var(--c-gold); }
.rd-tag {
  display: inline-block; margin: 0 0 14px;
  background: var(--c-brown-dark); color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: .08em; padding: 6px 18px; border-radius: 999px;
}
.rd-hero__title {
  margin: 0; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 900;
  font-size: clamp(28px, 5vw, 56px); line-height: 1.25; color: var(--c-brown-dark);
  letter-spacing: .03em;
}
.rd-hero__catch {
  margin: 22px 0 0; font-weight: 700; line-height: 1.9;
  font-size: clamp(15px, 1.8vw, 20px); color: var(--c-brown);
}

/* メインビジュアル＋待遇ハイライト */
.rd-visual-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 3.5vw, 48px);
  align-items: stretch;
}
.rd-visual {
  margin: 0; overflow: hidden; border-radius: 0;
  box-shadow: 0 24px 56px rgba(75,38,17,.18);
}
.rd-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rd-highlight {
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(135deg, var(--c-brown-dark), var(--c-brown));
  color: #fff; border-radius: 8px 48px 8px 48px;
  padding: clamp(26px, 3vw, 40px);
}
.rd-highlight__label {
  display: inline-block; align-self: flex-start; margin: 0 0 16px;
  background: var(--c-gold); color: var(--c-brown-dark);
  font-weight: 700; font-size: 13px; letter-spacing: .06em; padding: 5px 16px; border-radius: 999px;
}
.rd-highlight__main { margin: 0 0 6px; font-weight: 700; font-size: clamp(15px, 1.7vw, 19px); line-height: 1.7; }
.rd-highlight__main strong { color: var(--c-yellow); font-size: 1.15em; }
.rd-highlight__big {
  margin: 6px 0 18px; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 900;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.3;
}
.rd-highlight__big strong { color: var(--c-yellow); font-size: 1.3em; }
.rd-highlight__note { margin: 0; font-size: 13.5px; line-height: 1.85; color: #f3e7d4; }

/* 中央寄せの本文 */
.rd-center-prose { max-width: 820px; margin-inline: auto; text-align: center; }
.rd-center-prose p { text-align: left; }

/* デジタル機器グリッド */
.rd-digital-grid {
  list-style: none; margin: 0 0 clamp(32px, 4vw, 48px); padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 24px);
}
.rd-digital { text-align: center; }
.rd-digital__media {
  margin: 0 0 12px; overflow: hidden; border-radius: 50%;
  aspect-ratio: 1 / 1; border: 4px solid #fff;
  box-shadow: 0 12px 28px rgba(75,38,17,.14);
}
.rd-digital__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rd-digital__name {
  margin: 0; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(13px, 1.4vw, 16px); color: var(--c-brown-dark);
}

/* 業務内容（交互レイアウト） */
.rd-works { display: grid; gap: clamp(32px, 4.5vw, 60px); max-width: 1000px; margin-inline: auto; }
.rd-work {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3.5vw, 50px);
  align-items: center;
}
.rd-work--reverse .rd-work__media { order: 2; }
.rd-work__media { margin: 0; overflow: hidden; border-radius: 6px 36px 6px 36px; box-shadow: 0 16px 38px rgba(75,38,17,.14); }
.rd-work__media img { width: 100%; height: 100%; max-height: 320px; object-fit: cover; display: block; }
.rd-work__no {
  display: inline-block; font-family: "Lexend Deca", sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: .12em; color: var(--c-gold); margin-bottom: 8px;
}
.rd-work__title {
  margin: 0 0 12px; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(19px, 2vw, 26px); line-height: 1.45; color: var(--c-brown-dark);
}
.rd-work__title::after { content: ""; display: block; width: 44px; height: 4px; border-radius: 999px; background: var(--c-gold); margin-top: 14px; }
.rd-work__lead { margin: 0 0 12px; font-weight: 700; color: var(--c-brown); font-size: clamp(14px, 1.5vw, 16px); }
.rd-work__desc { margin: 0; line-height: 1.9; }

/* 安心のポイント */
.rd-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; max-width: 880px; margin-inline: auto; }
.rd-points li {
  display: flex; align-items: center; gap: 18px;
  background: #fff; border-radius: 6px 20px 6px 20px; padding: 22px 26px;
  box-shadow: 0 10px 26px rgba(75,38,17,.08);
}
.rd-points__no {
  flex: none; font-family: "Lexend Deca", sans-serif; font-weight: 700;
  font-size: clamp(26px, 3vw, 38px); line-height: 1; color: var(--c-gold);
}
.rd-points li p { margin: 0; line-height: 1.85; }
.rd-points strong { color: var(--c-brown-dark); }

/* 院内の様子 */
.rd-photos { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); }
/* 写真が2枚の医院（3列だと右が空くので2列で中央寄せ） */
.rd-photos--2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-inline: auto; }
.rd-photo { text-align: center; }
.rd-photo__media { margin: 0 0 12px; overflow: hidden; border-radius: 6px 28px 6px 28px; aspect-ratio: 4 / 3; box-shadow: 0 12px 30px rgba(75,38,17,.12); }
.rd-photo__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.rd-photo:hover .rd-photo__media img { transform: scale(1.05); }
.rd-photo__cap {
  margin: 0; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: 15px; color: var(--c-brown-dark); position: relative; padding-left: 18px; display: inline-block;
}
.rd-photo__cap::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 9px; height: 9px; border-radius: 50%; background: var(--c-gold); }

/* 福利厚生 */
.rd-welfare-cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.6vw, 28px); max-width: 980px; margin: 0 auto clamp(22px, 3vw, 32px); }
.rd-welfare { background: #fff; border-radius: 6px 24px 6px 24px; padding: 26px 28px; box-shadow: 0 10px 26px rgba(75,38,17,.08); border-top: 4px solid var(--c-gold); }
.rd-welfare__title { margin: 0 0 12px; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: clamp(16px, 1.7vw, 20px); color: var(--c-brown-dark); }
.rd-welfare p { margin: 0; line-height: 1.85; font-size: 14.5px; }
.rd-welfare-pills { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.rd-welfare-pills li {
  background: #fff; border: 1.5px solid var(--c-gold); border-radius: 999px;
  padding: 8px 18px; font-weight: 700; font-size: 14px; color: var(--c-brown-dark);
}

/* 院長メッセージ */
.rd-msg__catch {
  text-align: center; margin: 0 0 24px;
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(18px, 2.4vw, 28px); line-height: 1.7; color: var(--c-brown-dark);
}

/* 雇用形態の切り替え（正社員／アルバイト） */
.rd-emp { max-width: 920px; margin: 0 auto; }
.rd-emp__note { text-align: center; margin: 0 0 16px; font-size: 13px; font-weight: 700; color: var(--c-brown); }
.rd-emp-switch {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: clamp(22px, 3vw, 32px);
}
.rd-emp-tab {
  cursor: pointer; border: 2px solid var(--c-line); background: #fff; border-radius: 14px;
  padding: 16px 12px; text-align: center; line-height: 1.3;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.rd-emp-tab:hover { opacity: 1; transform: translateY(-2px); }
.rd-emp-tab__type { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 900; font-size: clamp(16px, 1.9vw, 20px); }
.rd-emp-tab__sub { font-size: 12px; font-weight: 700; opacity: .8; }
.rd-emp-tab__type::before {
  content: ""; display: inline-block; vertical-align: middle;
  width: 12px; height: 12px; border-radius: 50%; margin-right: 8px;
}
.rd-emp-tab--fulltime .rd-emp-tab__type::before { background: var(--c-brown-dark); }
.rd-emp-tab--parttime .rd-emp-tab__type::before { background: var(--c-gold); }
.rd-emp-tab--fulltime { color: var(--c-brown-dark); }
.rd-emp-tab--parttime { color: var(--c-brown-dark); }
.rd-emp-tab--fulltime.is-active {
  background: var(--c-brown-dark); border-color: var(--c-brown-dark); color: #fff;
  box-shadow: 0 10px 24px rgba(75,38,17,.28);
}
.rd-emp-tab--fulltime.is-active .rd-emp-tab__type::before { background: var(--c-yellow); }
.rd-emp-tab--parttime.is-active {
  background: var(--c-gold); border-color: var(--c-gold); color: var(--c-brown-dark);
  box-shadow: 0 10px 24px rgba(241,193,28,.45);
}
.rd-emp-tab--parttime.is-active .rd-emp-tab__type::before { background: var(--c-brown-dark); }
.rd-emp-panel[hidden] { display: none; }

/* パネル上部の色分けバッジ */
.rd-emp-badge {
  margin: 0 0 -1px; padding: 12px 22px; font-weight: 700; font-size: 15px;
  border-radius: 14px 14px 0 0; color: #fff;
  display: flex; align-items: center; gap: 0;
}
.rd-emp-badge__mark {
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 900; font-size: 1.15em;
  padding: 2px 14px; border-radius: 999px; margin-right: 10px;
}
.rd-emp-badge--fulltime { background: var(--c-brown-dark); }
.rd-emp-badge--fulltime .rd-emp-badge__mark { background: var(--c-yellow); color: var(--c-brown-dark); }
.rd-emp-badge--parttime { background: var(--c-gold); color: var(--c-brown-dark); }
.rd-emp-badge--parttime .rd-emp-badge__mark { background: var(--c-brown-dark); color: #fff; }
/* パネルごとに枠色を変えて一目で区別 */
.rd-emp-panel--fulltime .rd-spec { border-color: var(--c-brown-dark); border-radius: 0 0 14px 14px; }
.rd-emp-panel--parttime .rd-spec { border-color: var(--c-gold); border-radius: 0 0 14px 14px; }

/* 募集要項テーブル */
.rd-spec { max-width: 920px; margin: 0 auto; border: 1px solid var(--c-line); border-radius: 14px; overflow: hidden; background: #fff; }
.rd-spec__row { display: grid; grid-template-columns: 220px 1fr; }
.rd-spec__row + .rd-spec__row { border-top: 1px solid var(--c-line); }
.rd-spec__dt {
  background: var(--c-bg-tint); color: var(--c-brown-dark);
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 14px;
  padding: 18px 22px; display: flex; align-items: center;
  border-right: 1px solid var(--c-line);
}
.rd-spec__dd { margin: 0; padding: 18px 24px; line-height: 1.85; font-size: 14.5px; }

/* CTA */
.rd-cta { text-align: center; }
.rd-cta__en { margin: 0 0 8px; font-family: "Lexend Deca", sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .26em; color: var(--c-gold); }
.rd-cta__title { margin: 0 0 28px; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 900; font-size: clamp(20px, 3vw, 32px); color: var(--c-brown-dark); }
.rd-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 16px; }
.rd-cta__btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; transition: transform .25s var(--ease), background .25s var(--ease); }
.rd-cta__btn:hover { opacity: 1; transform: translateY(-2px); }
.rd-cta__btn--entry {
  gap: 10px; background: var(--c-gold); color: var(--c-brown-dark);
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: clamp(16px, 1.7vw, 19px);
  padding: 0 40px; min-height: 84px; min-width: 260px;
  box-shadow: 0 12px 28px rgba(241,193,28,.4);
}
.rd-cta__btn--entry:hover { background: var(--c-yellow); }
.rd-cta__btn--tel {
  flex-direction: column; gap: 2px; background: var(--c-brown-dark); color: #fff;
  padding: 14px 40px; min-width: 260px;
}
.rd-cta__btn--tel:hover { background: var(--c-brown); }
.rd-cta__tel-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--c-yellow); }
.rd-cta__tel-num { font-family: "Lexend Deca", sans-serif; font-weight: 700; font-size: clamp(22px, 2.4vw, 28px); letter-spacing: .02em; }
.rd-cta__tel-hours { font-size: 11px; opacity: .85; }
.rd-cta__back { margin: 28px 0 0; font-weight: 700; }
.rd-cta__back a { color: var(--c-brown); }

@media (max-width: 900px) {
  .rd-visual-grid { grid-template-columns: 1fr; }
  .rd-digital-grid { grid-template-columns: repeat(2, 1fr); }
  .rd-work, .rd-work--reverse { grid-template-columns: 1fr; }
  .rd-work--reverse .rd-work__media { order: 0; }
  .rd-work__media img { max-height: none; }
  .rd-welfare-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .rd-photos { grid-template-columns: 1fr; }
  .rd-spec__row { grid-template-columns: 1fr; }
  .rd-spec__dt { border-right: 0; border-bottom: 1px solid var(--c-line); }
  .rd-cta__btn--entry, .rd-cta__btn--tel { width: 100%; }
}

/* =========================================================
   WordPress化にともなう追加スタイル
   ========================================================= */

/* 職種タブをリンク（aタグ）にしたため、ボタンと同じ見た目に揃える */
a.rc-tab { display: block; text-decoration: none; }
a.rc-tab:hover { opacity: 1; }

/* 一覧カードに医院名を表示 */
.rc-card__clinic {
  margin: 0 0 8px; padding-left: 13px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: var(--c-brown);
}

/* 詳細ヒーローの医院タグ（職種タグの隣に並ぶ） */
.rd-tag + .rd-tag { margin-left: 8px; }
.rd-tag--clinic { background: var(--c-gold); color: var(--c-brown-dark); }

/* 募集要項が未入力のときの表示 */
.rd-spec__empty {
  margin: 0; padding: 40px 0; text-align: center;
  font-weight: 700; color: var(--c-brown);
}

/* ページャの省略記号 */
.rc-pager__num.dots {
  background: transparent; box-shadow: none; color: var(--c-brown);
  pointer-events: none;
}

/* 店舗カードから、その医院の募集一覧へ */
.lo-card__jobs {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  font-weight: 700; font-size: 13px; color: var(--c-brown-dark); text-decoration: none;
}
.lo-card__jobs:hover { opacity: 1; color: var(--c-brown); }

/* マップで医院を選んだときの「絞り込み中」表示 */
.rc-active-filter {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 12px; margin: 28px 0 clamp(28px, 4vw, 44px);
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: 15px; color: var(--c-brown-dark);
}
.rc-active-filter[hidden] { display: none; }
.rc-active-filter__name {
  display: inline-block; padding: 4px 14px; border-radius: 999px;
  background: var(--c-gold); color: var(--c-brown-dark);
}
.rc-active-filter__clear {
  cursor: pointer; border: 1px solid var(--c-line); background: #fff;
  border-radius: 999px; padding: 6px 16px;
  font-family: inherit; font-weight: 700; font-size: 13px; color: var(--c-brown);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.rc-active-filter__clear:hover { background: var(--c-bg-tint); color: var(--c-brown-dark); }

/* トップページ：TikTok埋め込み */
.section--tiktok { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 72px); }
.tiktok-grid {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(16px, 2.5vw, 32px);
}
.tiktok-grid__item { flex: 0 1 325px; min-width: 0; }
.tiktok-grid__item .tiktok-embed { border-radius: 12px; overflow: hidden; }

/* TikTok埋め込みスロット（読み込み前はリンク、読み込み後はiframe） */
.tiktok-embed-slot {
  position: relative; width: 100%; max-width: 325px; margin: 0 auto;
  aspect-ratio: 325 / 780; /* 埋め込みの中身が収まる高さ（スクロールバー対策とセット） */
  background: #fff; border: 1px solid var(--c-line); border-radius: 12px; overflow: hidden;
}
.tiktok-embed-slot iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.tiktok-embed-slot__link {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-weight: 700; font-size: 14px; color: var(--c-brown); text-decoration: none;
}
.tiktok-embed-slot.is-loaded .tiktok-embed-slot__link { display: none; }

/* =========================================================
   エントリーフォーム（募集詳細 / template-parts/entry-form.php）
   ※現状は見た目のみ。送信処理は未実装
   ========================================================= */
.rd-entry__lead {
  max-width: 920px; margin: 0 auto clamp(20px, 3vw, 32px);
  text-align: center; font-size: 14.5px; color: var(--c-brown);
}
.rd-entry__req {
  display: inline-block; margin-left: 8px; padding: 2px 9px;
  border-radius: 4px; background: #d64545; color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; line-height: 1.7;
  vertical-align: 2px;
}
.rd-entry__lead .rd-entry__req { margin-left: 0; margin-right: 4px; }

.rd-entry { max-width: 920px; margin: 0 auto; }
.rd-entry__rows { border: 1px solid var(--c-line); border-radius: 14px; overflow: hidden; background: #fff; }
.rd-entry__row { display: grid; grid-template-columns: 260px 1fr; }
.rd-entry__row + .rd-entry__row { border-top: 1px solid var(--c-line); }
.rd-entry__label {
  background: var(--c-bg-tint); color: var(--c-brown-dark);
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 14px;
  padding: 18px 22px; display: flex; align-items: center; flex-wrap: wrap; gap: 2px;
  border-right: 1px solid var(--c-line); line-height: 1.6;
}
.rd-entry__field { padding: 16px 24px; font-size: 14.5px; }
.rd-entry__note { margin: 8px 0 0; font-size: 12.5px; line-height: 1.8; color: #8a7458; }

/* 入力欄 */
.rd-entry input[type="text"],
.rd-entry input[type="email"],
.rd-entry input[type="tel"],
.rd-entry select,
.rd-entry textarea {
  font: inherit; font-size: 15px; color: var(--c-text);
  width: 100%; padding: 10px 14px;
  background: #fff; border: 1px solid var(--c-line); border-radius: 8px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.rd-entry textarea { line-height: 1.8; resize: vertical; min-height: 120px; }
.rd-entry input:focus,
.rd-entry select:focus,
.rd-entry textarea:focus {
  outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(241,193,28,.2);
}
.rd-entry input[readonly] { background: #f7f3e8; color: var(--c-brown); }
.rd-entry select {
  appearance: none; -webkit-appearance: none; padding-right: 38px; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--c-brown) 50%),
                    linear-gradient(135deg, var(--c-brown) 50%, transparent 50%);
  background-position: calc(100% - 19px) 52%, calc(100% - 13px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* 横並び（姓名・電話・郵便番号など） */
.rd-entry__inline { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.rd-entry__inline + .rd-entry__inline { margin-top: 10px; }
.rd-entry__unit { font-size: 13px; font-weight: 700; color: var(--c-brown); white-space: nowrap; }
.rd-entry__sep { color: var(--c-brown); }
.rd-entry__half { flex: 1 1 180px; min-width: 0; }
.rd-entry__short { max-width: 120px; }
.rd-entry__field .rd-entry__short + .rd-entry__unit { margin-left: 8px; }
.rd-entry__tel { flex: 0 1 120px; min-width: 0; }
.rd-entry__zip { flex: 0 1 100px; min-width: 0; }
.rd-entry__pref { flex: 0 1 180px; min-width: 0; }
.rd-entry__addr { flex: 1 1 240px; min-width: 0; }
.rd-entry__zipbtn {
  font: inherit; font-size: 13px; font-weight: 700; color: var(--c-brown-dark);
  padding: 9px 18px; cursor: pointer; white-space: nowrap;
  background: var(--c-bg-tint); border: 1px solid var(--c-line); border-radius: 8px;
  transition: background .2s var(--ease);
}
.rd-entry__zipbtn:hover { background: var(--c-yellow); }

/* ラジオ */
.rd-entry__choices { display: flex; flex-wrap: wrap; gap: 10px; }
.rd-entry__choice {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 8px 20px 8px 16px; border: 1px solid var(--c-line); border-radius: 999px;
  font-size: 14.5px; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.rd-entry__choice:hover { background: var(--c-bg-tint); }
.rd-entry__choice input { accent-color: var(--c-gold); width: 17px; height: 17px; margin: 0; }
.rd-entry__choice:has(input:checked) { border-color: var(--c-gold); background: var(--c-bg-tint); }

/* 個人情報について */
.rd-entry__rules { margin-top: clamp(24px, 3vw, 36px); }
.rd-entry__rules-title {
  margin: 0 0 12px; text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 16px;
  color: var(--c-brown-dark);
}
.rd-entry__rules-body {
  height: 240px; overflow-y: auto; padding: 20px 24px;
  background: #fff; border: 1px solid var(--c-line); border-radius: 12px;
  font-size: 13.5px; line-height: 1.9;
}
.rd-entry__rules-body p { margin: 0 0 14px; }
.rd-entry__rules-body h4 {
  margin: 20px 0 8px; font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px; font-weight: 700; color: var(--c-brown-dark);
}
.rd-entry__rules-body ul { margin: 0 0 14px; padding-left: 1.3em; }
.rd-entry__rules-body li { margin-bottom: 6px; }
.rd-entry__agree {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px;
  margin-top: 18px; font-weight: 700; font-size: 15px; cursor: pointer;
}
.rd-entry__agree input { accent-color: var(--c-gold); width: 19px; height: 19px; margin: 0; }
.rd-entry__agree .rd-entry__req { margin-left: 0; }

/* 送信ボタン */
.rd-entry__actions { margin-top: clamp(26px, 3.4vw, 40px); text-align: center; }
.rd-entry__submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700; font-size: clamp(16px, 1.7vw, 19px);
  color: var(--c-brown-dark); background: var(--c-gold);
  border: 0; border-radius: 16px; cursor: pointer;
  padding: 0 60px; min-height: 72px; min-width: 260px;
  box-shadow: 0 12px 28px rgba(241,193,28,.4);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.rd-entry__submit:hover { background: var(--c-yellow); transform: translateY(-2px); }

/* エントリーフォーム：エラー表示 */
.rd-entry__error { margin: 8px 0 0; font-size: 13px; font-weight: 700; color: #d63638; }
.rd-entry__alert {
  max-width: 920px; margin: 0 auto 20px; padding: 14px 22px;
  border: 2px solid #d63638; border-radius: 12px;
  background: #fdf1f1; color: #d63638; font-weight: 700;
}

/* エントリーフォーム：スパム対策のハニーポット（画面には表示しない） */
.rd-entry__hp { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); margin: 0; padding: 0; }

/* エントリーフォーム：確認画面 */
.rd-entry__field--confirm { display: flex; align-items: center; line-height: 1.85; overflow-wrap: anywhere; }
.rd-entry__actions--confirm { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 20px; }
.rd-entry__back {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700; font-size: clamp(15px, 1.6vw, 17px);
  color: var(--c-brown); background: #fff;
  border: 2px solid var(--c-line); border-radius: 16px; cursor: pointer;
  padding: 0 40px; min-height: 72px; min-width: 200px;
  transition: background .25s var(--ease);
}
.rd-entry__back:hover { background: var(--c-bg-tint); }

/* エントリーフォーム：完了画面 */
.rd-entry--done {
  background: #fff; border: 1px solid var(--c-line); border-radius: 14px;
  padding: clamp(36px, 5vw, 56px) 24px; text-align: center;
}
.rd-entry__done-title { margin: 0 0 18px; font-size: clamp(19px, 2.2vw, 24px); font-weight: 900; color: var(--c-brown-dark); }
.rd-entry__done-text { margin: 0 0 14px; line-height: 2; }

@media (max-width: 600px) {
  .rd-entry__row { grid-template-columns: 1fr; }
  .rd-entry__label { border-right: 0; border-bottom: 1px solid var(--c-line); padding: 13px 18px; }
  .rd-entry__field { padding: 16px 18px; }
  .rd-entry__tel { flex: 1 1 80px; }
  .rd-entry__pref, .rd-entry__addr { flex: 1 1 100%; }
  .rd-entry__submit { width: 100%; min-width: 0; padding: 0 20px; }
  .rd-entry__back { width: 100%; min-width: 0; }
}

/* 募集要項 → エントリーフォームのつなぎ */
.rd-bridge { background: var(--c-bg-tint); border-block: 1px solid var(--c-line); }
.rd-bridge__inner {
  padding-block: clamp(30px, 4.5vw, 52px);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.rd-bridge__msg {
  margin: 0; text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700;
  font-size: clamp(16px, 2.1vw, 22px); line-height: 1.7;
  color: var(--c-brown-dark); letter-spacing: .04em;
}
.rd-bridge__arrow {
  position: relative; display: block; width: 54px; height: 54px; border-radius: 50%;
  background: var(--c-gold); box-shadow: 0 8px 20px rgba(241,193,28,.42);
  animation: rdBridgeBob 1.8s var(--ease) infinite;
}
.rd-bridge__arrow::before {
  content: ""; position: absolute; left: 50%; top: 45%;
  width: 13px; height: 13px; margin-left: -7px;
  border-right: 3px solid #fff; border-bottom: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@keyframes rdBridgeBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@media (prefers-reduced-motion: reduce) { .rd-bridge__arrow { animation: none; } }
