/* ==========================================================================
   chillna.co.jp - Stylesheet Part 1
   Sections: Reset, Base, Utility, Header, Sidebar, Hero,
             Philosophy, Mission/Vision, News, Our Service, 訪問看護事業
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --pink: #E8B4A8;        /* warm coral rose */
  --pink-light: #F2D0C4;  /* light warm rose */
  --pink-bg: #FDF3EF;     /* very light warm bg */
  --mint: #C4D8C0;         /* warm sage green */
  --lavender: #D4C8B8;     /* warm sand/beige */
  --sky: #C8D8D0;          /* warm pale green-gray */
  --peach: #F0D8C0;        /* warm peach */
  --cream: #FAF8F5;        /* warm cream */
  --white: #FFFFFF;
  --gray: #8A8580;         /* warm gray */
  --gray-dark: #5A5550;    /* warm dark gray */
  --label: #C07860;        /* warm terracotta accent */
  --text: #3A3530;         /* warm dark brown */
  --text-light: #8A8580;

  --font-en: 'Cormorant Garamond', serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --header-h: 92px;
  --container-max: 1200px;
  --container-wide: 1400px;
}

/* ==========================================================================
   1. Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.container--wide {
  max-width: var(--container-wide);
}

/* ==========================================================================
   2. Utility - Fade-in Animations
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--delay1 {
  transition-delay: 0.15s;
}

.fade-in--delay2 {
  transition-delay: 0.3s;
}

.fade-in--delay3 {
  transition-delay: 0.45s;
}

/* Section label utility (reused across sections) */
.section-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  color: var(--label);
}

/* CTA link with circle arrow */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease;
}

.cta-link:hover {
  opacity: 1;
  gap: 18px;
}

.cta-link__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--label);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-link:hover .cta-link__circle {
  background-color: var(--label);
  color: var(--white);
}

/* ==========================================================================
   3. Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background-color: var(--white);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-wide);
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* Logo: anju text logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-text {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--label);
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: lowercase;
}

.header__logo-text .degree {
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 1px;
}

/* Navigation */
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-jp, 'Noto Sans JP', sans-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header__nav-item::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: var(--label);
  border-radius: 50%;
  flex-shrink: 0;
}

.header__nav-item:hover,
.header__nav-item.is-active {
  color: var(--label);
}

/* Dropdown menu (サービス → グループホーム / 訪問看護) */
.header__nav-dropdown {
  position: relative;
  cursor: pointer;
}

.header__nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}

.header__nav-trigger::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.header__nav-dropdown.is-open .header__nav-trigger::after,
.header__nav-dropdown:hover .header__nav-trigger::after {
  transform: rotate(225deg) translateY(2px);
}

.header__nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 1100;
}

.header__nav-submenu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background-color: var(--white);
  transform: translateX(-50%) rotate(45deg);
  margin-top: 4px;
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.04);
}

.header__nav-dropdown:hover .header__nav-submenu,
.header__nav-dropdown.is-open .header__nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.header__nav-subitem {
  display: block;
  padding: 10px 24px;
  font-family: var(--font-jp, 'Noto Sans JP', sans-serif);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header__nav-subitem:hover,
.header__nav-subitem.is-active {
  background-color: var(--pink-bg);
  color: var(--label);
  opacity: 1;
}

/* Contact button */
.header__contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 44px;
  border: 1.5px solid var(--label);
  border-radius: 50px;
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--label);
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header__contact::after {
  content: '';
  position: relative;
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--label);
  margin-left: 12px;
}

.header__contact .contact-circle {
  display: inline-block;
  width: 6px;
  height: 6px;
  border: 1px solid var(--label);
  border-radius: 50%;
  margin-left: -1px;
  flex-shrink: 0;
}

.header__contact:hover {
  background-color: var(--label);
  color: var(--white);
  opacity: 1;
}

.header__contact:hover::after {
  background-color: var(--white);
}

.header__contact:hover .contact-circle {
  border-color: var(--white);
}

/* Hamburger (hidden on desktop) */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  height: 1px;
  background-color: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==========================================================================
   4. Right Sidebar
   ========================================================================== */

/* Recruit sidebar */
.sidebar-recruit {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.sidebar-recruit__badge {
  background-color: var(--pink);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  writing-mode: horizontal-tb;
  white-space: nowrap;
}

.sidebar-recruit__text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text);
  padding: 20px 14px;
  background-color: var(--white);
  border-left: 1px solid #eee;
}

.sidebar-recruit__text .en {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.sidebar-recruit__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--label);
  background-color: var(--white);
  color: var(--label);
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar-recruit__arrow:hover {
  background-color: var(--label);
  color: var(--white);
}

/* SNS sidebar */
.sidebar-sns {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 900;
}

.sidebar-sns__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--label);
  color: var(--label);
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar-sns__item:hover {
  background-color: var(--label);
  color: var(--white);
  opacity: 1;
}

.sidebar-sns__item svg,
.sidebar-sns__item img {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(232,180,184,0.7) 0%,
    rgba(184,216,208,0.6) 30%,
    rgba(200,184,216,0.65) 60%,
    rgba(184,208,232,0.7) 100%
  ), url('../images/omori-exterior-front.jpg') center/cover no-repeat;
  z-index: 0;
}

/* If a real background image is added later */
.hero__bg--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(180, 160, 155, 0.6) 0%,
      rgba(196, 168, 160, 0.5) 50%,
      rgba(140, 120, 115, 0.7) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 40px;
}

.hero__title {
  font-family: var(--font-jp, 'Noto Sans JP', sans-serif);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 2;
  margin-bottom: 60px;
}

.hero__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero__logo-text {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   6. Philosophy Section
   ========================================================================== */
.philosophy {
  background-color: var(--mint);
  padding: 100px 0;
  color: var(--white);
}

.philosophy__header {
  margin-bottom: 60px;
}

.philosophy__label {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--white);
  line-height: 1.2;
}

.philosophy__subtitle {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
}

.philosophy__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.philosophy__text {
  font-size: 1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.95);
}

.philosophy__text p + p {
  margin-top: 1.5em;
}

.philosophy__lead {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 1.2em;
  color: var(--white);
}

.philosophy__cta {
  margin-top: 40px;
}

.philosophy__cta .cta-link {
  color: var(--white);
}

.philosophy__cta .cta-link__circle {
  border-color: rgba(255, 255, 255, 0.6);
}

.philosophy__cta .cta-link:hover .cta-link__circle {
  background-color: var(--white);
  color: var(--pink);
}

.philosophy__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.philosophy__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: url('../images/secondsection.jpg') center/cover no-repeat;
}

.philosophy__image:nth-child(2) {
  background-image: url('../images/gh-caregivers-02.jpg');
}

.philosophy__image:nth-child(3) {
  background-image: url('../images/gh-staff-group-04.jpg');
}

.philosophy__image--large {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.philosophy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   7. Mission / Vision Section
   ========================================================================== */
.mission-vision {
  background-color: var(--lavender);
  padding: 100px 0;
  color: var(--white);
}

.mission-vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.mission-vision__col {
  display: flex;
  flex-direction: column;
}

.mission-vision__heading {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  line-height: 1.2;
  margin-bottom: 8px;
}

.mission-vision__subheading {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.mission-vision__text {
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.mission-vision__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: url('../images/free-landscape-01.jpg') center/cover no-repeat;
  margin-top: auto;
}

.mission-vision__col:nth-child(2) .mission-vision__image {
  background-image: url('../images/okayama1-living.jpg');
}

.mission-vision__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Divider between mission and vision columns */
.mission-vision__grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.mission-vision__grid {
  position: relative;
}

/* ==========================================================================
   8. News Section
   ========================================================================== */
.news {
  background-color: var(--sky);
  padding: 80px 0;
  color: var(--white);
}

.news__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 40px;
}

.news__label {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

.news__label-jp {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.news__label-divider {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 4px;
}

.news__list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.news__item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  gap: 24px;
  transition: padding-left 0.3s ease;
}

.news__item:hover {
  padding-left: 8px;
}

.news__date {
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  min-width: 100px;
}

.news__title {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--white);
}

.news__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.news__item:hover .news__arrow {
  background-color: rgba(255, 255, 255, 0.15);
}

.news__more {
  margin-top: 32px;
  text-align: right;
}

/* --------------------------------------------------------------------------
   News / Blog アーカイブページ用：明るい背景でも視認できる色に上書き
   -------------------------------------------------------------------------- */
.news--archive {
  background-color: transparent;
  color: var(--text);
}

.news--archive .news__label {
  color: var(--text);
}

.news--archive .news__label-jp {
  color: var(--gray);
}

.news--archive .news__label-divider {
  color: var(--gray);
}

.news--archive .news__list {
  border-top-color: rgba(60, 50, 40, 0.15);
}

.news--archive .news__item {
  border-bottom-color: rgba(60, 50, 40, 0.15);
}

.news--archive .news__date {
  color: var(--gray);
}

.news--archive .news__title {
  color: var(--text);
}

.news--archive .news__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news--archive .news__title a:hover {
  color: var(--label);
}

.news--archive .news__arrow {
  border-color: rgba(60, 50, 40, 0.3);
  color: var(--text);
}

.news--archive .news__item:hover .news__arrow {
  background-color: rgba(60, 50, 40, 0.08);
  border-color: var(--label);
  color: var(--label);
}

/* ==========================================================================
   9. Our Service Section
   ========================================================================== */
.our-service {
  background-color: var(--peach);
  padding: 100px 0;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.our-service__inner {
  position: relative;
  z-index: 1;
}

.our-service__label {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.our-service__subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 40px;
}

.our-service__heading {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
  max-width: 600px;
}

.our-service__heading .en {
  font-family: var(--font-en);
  font-weight: 300;
}

/* Large semi-transparent logo on right */
.our-service__logo-bg {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.our-service__logo-bg-text {
  font-family: var(--font-en);
  font-size: 12rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  user-select: none;
}

/* ==========================================================================
   10. 訪問看護事業 Detail Section
   ========================================================================== */
.service-detail {
  background-color: var(--peach);
  padding: 100px 0;
}

.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background-color: var(--white);
  border: 1px solid #ECE2DA;
  border-radius: 16px;
  padding: 48px;
}

.service-detail__inner + .service-detail__inner {
  margin-top: 80px;
}

.service-detail__content {
  display: flex;
  flex-direction: column;
}

.service-detail__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--label);
  margin-bottom: 8px;
}

.service-detail__title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.5;
}

.service-detail__subtitle {
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  font-weight: 500;
}

.service-detail__text {
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 36px;
}

.service-detail__cta .cta-link {
  color: var(--text-dark);
}

.service-detail__cta .cta-link__circle {
  border-color: var(--label);
  color: var(--label);
}

.service-detail__cta .cta-link:hover .cta-link__circle {
  background-color: var(--label);
  color: var(--white);
}

.service-detail__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: url('../images/gh-view-04.jpg') center/cover no-repeat;
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo placeholder variant - displays business-specific logo on white panel */
.service-detail__image--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
}

.service-detail__image--grouphome {
  background-image: url('../images/logo-grouphome.png');
}

.service-detail__image--houkan {
  background-image: url('../images/logo-houkan.png');
}

/* Reversed layout variant (image left, text right) */
.service-detail--reverse .service-detail__inner {
  direction: rtl;
}

.service-detail--reverse .service-detail__inner > * {
  direction: ltr;
}

/* ==========================================================================
   Spacer for fixed header
   ========================================================================== */
.header-spacer {
  height: var(--header-h);
}
/* ============================================
   Chillna - Home Nursing Station Website
   Second Half: nu Banner through Responsive
   ============================================ */

/* Part 2: nu Banner through Responsive */

/* --------------------------------------------
   11. Large nu° Banner Section
   -------------------------------------------- */

.nu-banner {
  width: 100%;
  padding: 80px 0;
  background-color: var(--cream);
  text-align: center;
  overflow: hidden;
}

.nu-banner__logo {
  font-family: var(--font-en);
  font-size: 7rem;
  font-weight: 300;
  color: var(--pink-light);
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  margin-bottom: 10px;
}

.nu-banner__sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gray);
  letter-spacing: 0.15em;
  font-weight: 400;
}

/* --------------------------------------------
   12. Recruit Text Block (below nu° banner)
   -------------------------------------------- */

.recruit-text {
  background-color: var(--cream);
  padding: 60px 20px 80px;
  text-align: center;
}

.recruit-text__message {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 2;
  max-width: 640px;
  margin: 0 auto 40px;
  letter-spacing: 0.05em;
}

.recruit-text .btn-cta {
  margin: 0 auto;
}

/* --------------------------------------------
   13. Message Section (代表からの挨拶)
   -------------------------------------------- */

.message-section {
  background-color: var(--cream);
  padding: 100px 20px;
}

.message-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.message-section__heading {
  text-align: center;
  margin-bottom: 60px;
}

.message-section__heading-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--pink);
  letter-spacing: 0.1em;
}

.message-section__heading-sep {
  display: inline-block;
  margin: 0 12px;
  color: var(--gray);
  font-weight: 300;
}

.message-section__heading-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--gray);
  letter-spacing: 0.15em;
}

.message-section__content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.message-section__photo {
  flex: 0 0 360px;
  height: 480px;
  background: url('../images/free-landscape-01.jpg') center/cover no-repeat;
  border-radius: 8px;
  overflow: hidden;
}

.message-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-section__body {
  flex: 1;
}

.message-section__greeting {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.message-section__greeting-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--pink);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.message-section__greeting-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.1em;
}

.message-section__quote {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 2.2;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
}

.message-section__name {
  text-align: right;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--gray-dark);
  letter-spacing: 0.08em;
}

.message-section__name strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 4px;
}

/* --------------------------------------------
   14. About Section (会社概要)
   -------------------------------------------- */

.about-section {
  background-color: #FAF3EF;
  padding: 100px 20px;
}

.about-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-section__heading {
  text-align: center;
  margin-bottom: 50px;
}

.about-section__heading-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--pink);
  letter-spacing: 0.1em;
}

.about-section__heading-sep {
  display: inline-block;
  margin: 0 12px;
  color: var(--gray);
  font-weight: 300;
}

.about-section__heading-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--gray);
  letter-spacing: 0.15em;
}

.about-section__card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  position: relative;
  margin-bottom: 40px;
}

.about-section__card::before {
  content: '';
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--pink-light);
  opacity: 0.5;
}

.about-section__table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.about-section__table tr {
  border-bottom: 1px solid #e8e0dc;
}

.about-section__table tr:last-child {
  border-bottom: none;
}

.about-section__table th,
.about-section__table td {
  padding: 20px 10px;
  vertical-align: top;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.8;
  border: none;
}

.about-section__table th {
  color: var(--label);
  font-weight: 500;
  letter-spacing: 0.12em;
  white-space: nowrap;
  width: 160px;
  font-family: 'Noto Sans JP', sans-serif;
}

.about-section__table td {
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
}

.about-section__office {
  margin-bottom: 0.6em;
}

.about-section__office:last-child {
  margin-bottom: 0;
}

.about-section__office strong {
  color: var(--label);
  font-weight: 500;
}

.about-section__btn {
  text-align: center;
}

/* --------------------------------------------
   15. Contact Section (dusty pink bg)
   -------------------------------------------- */

.contact-section {
  background: linear-gradient(135deg, var(--pink) 0%, var(--peach) 50%, var(--mint) 100%);
  padding: 100px 20px;
}

.contact-section__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-section__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.contact-section__subheading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.15em;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}

.contact-section__description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 2;
  margin-bottom: 36px;
  letter-spacing: 0.03em;
}

.contact-section__btn .btn-cta {
  background-color: var(--white);
  color: var(--text);
}

/* --------------------------------------------
   16. Recruit Full Section (dark gray bg)
   -------------------------------------------- */

.recruit-section {
  background-color: #8A8584;
  padding: 120px 20px;
}

.recruit-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
}

.recruit-section__photo {
  flex: 0 0 400px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: url('../images/gh-staff-group-01.jpg') center/cover no-repeat;
}

.recruit-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-section__body {
  flex: 1;
  color: var(--white);
}

.recruit-section__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.recruit-section__label-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
}

.recruit-section__label-line {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
}

.recruit-section__label-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.recruit-section__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.recruit-section__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}

.recruit-section__btn .btn-cta {
  background-color: var(--white);
  color: var(--text);
}

/* --------------------------------------------
   17. Footer
   -------------------------------------------- */

.footer {
  background-color: var(--white);
  padding: 80px 20px 40px;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: lowercase;
  margin-bottom: 12px;
}

.footer__name-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.footer__name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}

.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer__nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-jp, 'Noto Sans JP', sans-serif);
  font-size: 0.9rem;
  color: #999;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer__nav-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #ccc;
  flex-shrink: 0;
}

.footer__nav-item:hover {
  color: var(--label);
}

.footer__copyright {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  color: #bbb;
  letter-spacing: 0.1em;
  padding-top: 30px;
  border-top: 1px solid #eee;
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------
   18. Back to Top
   -------------------------------------------- */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--label);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(196, 168, 160, 0.4);
  border: none;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 18px rgba(196, 168, 160, 0.5);
}

/* --------------------------------------------
   19. CTA Button Component (reusable)
   -------------------------------------------- */

.btn-cta {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 50px;
  padding: 15px 40px;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  gap: 16px;
}

.btn-cta__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--label);
  color: var(--label);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-cta__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.btn-cta__line {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

.btn-cta__line::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--pink-light);
  transition: width 0.3s ease;
}

.btn-cta__line::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--pink-light);
  flex-shrink: 0;
  margin-left: -1px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.btn-cta:hover .btn-cta__arrow {
  background-color: var(--label);
  color: var(--white);
}

.btn-cta:hover .btn-cta__line::before {
  width: 80px;
}

/* --------------------------------------------
   20. Responsive (max-width: 1024px) - Tablet
   -------------------------------------------- */

@media screen and (max-width: 1024px) {

  .container {
    padding: 0 24px;
  }

  .header__inner {
    padding: 0 24px;
  }

  .header__nav {
    gap: 24px;
  }

  .header__nav-item {
    font-size: 0.8rem;
  }

  .header__contact {
    padding: 6px 24px;
    font-size: 0.8rem;
  }

  /* Philosophy */
  .philosophy__body {
    gap: 40px;
  }

  /* Mission/Vision */
  .mission-vision__grid {
    gap: 40px;
  }

  .mission-vision__heading {
    font-size: 2rem;
  }

  /* Service Detail */
  .service-detail__inner {
    gap: 40px;
  }

  /* Recruit Full */
  .recruit-section__inner {
    gap: 50px;
  }

  .recruit-section__photo {
    flex: 0 0 300px;
    width: 300px;
    height: 300px;
  }

  /* Contact */
  .contact-section__heading {
    font-size: 2.5rem;
  }

  /* Sidebar position */
  .sidebar-sns {
    right: 12px;
  }
}

/* --------------------------------------------
   21. Responsive (max-width: 768px) - Mobile
   -------------------------------------------- */

@media screen and (max-width: 768px) {

  .container {
    padding: 0 20px;
  }

  /* ---- Header ---- */
  .header__hamburger {
    display: flex;
    z-index: 1100;
  }

  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 1050;
  }

  .header__nav.is-active {
    display: flex;
  }

  .header__nav-item {
    font-size: 1.1rem;
  }

  /* Dropdown - mobile inline expansion */
  .header__nav-dropdown {
    flex-direction: column;
    gap: 16px;
  }

  .header__nav-trigger {
    cursor: pointer;
  }

  .header__nav-submenu {
    position: static;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    border-left: 2px solid var(--label);
  }

  .header__nav-submenu::before {
    display: none;
  }

  .header__nav-dropdown.is-open .header__nav-submenu {
    display: block;
    transform: none;
  }

  .header__nav-subitem {
    padding: 8px 24px;
    font-size: 0.95rem;
  }

  .header__contact {
    display: none;
  }

  .header__hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ---- Sidebar ---- */
  .sidebar-recruit,
  .sidebar-sns {
    display: none;
  }

  /* ---- Hero ---- */
  .hero {
    min-height: 80vh;
  }

  .hero__title {
    font-size: 2.2rem;
    letter-spacing: 0.15em;
  }

  .hero__subtitle {
    font-size: 0.85rem;
    margin-bottom: 40px;
  }

  .hero__logo {
    width: 48px;
    height: 48px;
  }

  .hero__logo-text {
    font-size: 1.1rem;
  }

  /* ---- Philosophy ---- */
  .philosophy {
    padding: 70px 0;
  }

  .philosophy__label {
    font-size: 1.8rem;
  }

  .philosophy__body {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .philosophy__images {
    grid-template-columns: 1fr 1fr;
  }

  .philosophy__image--large {
    grid-column: span 2;
  }

  .philosophy__cta {
    margin-top: 24px;
  }

  /* ---- Mission/Vision ---- */
  .mission-vision {
    padding: 70px 0;
  }

  .mission-vision__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .mission-vision__grid::before {
    display: none;
  }

  .mission-vision__heading {
    font-size: 2rem;
  }

  /* ---- News ---- */
  .news {
    padding: 60px 0;
  }

  .news__label {
    font-size: 1.5rem;
  }

  .news__item {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .news__date {
    min-width: auto;
    font-size: 0.8rem;
  }

  .news__title {
    flex-basis: 100%;
    font-size: 0.85rem;
  }

  .news__arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .news__item {
    position: relative;
    padding-right: 44px;
  }

  /* ---- Our Service ---- */
  .our-service {
    padding: 70px 0;
  }

  .our-service__heading {
    font-size: 1.3rem;
  }

  .our-service__logo-bg-text {
    font-size: 8rem;
  }

  /* ---- Service Detail ---- */
  .service-detail {
    padding: 70px 0;
  }

  .service-detail__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px;
  }

  .service-detail__title {
    font-size: 1.2rem;
  }

  /* ---- nu° Banner ---- */
  .nu-banner {
    padding: 50px 20px;
  }

  .nu-banner__logo {
    font-size: 4.5rem;
  }

  .nu-banner__sub {
    font-size: 0.9rem;
  }

  /* ---- Recruit text ---- */
  .recruit-text {
    padding: 40px 20px 60px;
  }

  .recruit-text__message {
    font-size: 0.95rem;
  }

  /* ---- Message Section ---- */
  .message-section {
    padding: 60px 20px;
  }

  .message-section__heading-en {
    font-size: 1.8rem;
  }

  .message-section__content {
    flex-direction: column;
    gap: 30px;
  }

  .message-section__photo {
    flex: none;
    width: 100%;
    height: 280px;
  }

  .message-section__quote {
    font-size: 0.9rem;
  }

  /* ---- About Section ---- */
  .about-section {
    padding: 60px 16px;
  }

  .about-section__heading-en {
    font-size: 1.8rem;
  }

  .about-section__card {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .about-section__table tr {
    display: block;
  }

  .about-section__table th,
  .about-section__table td {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .about-section__table th {
    padding-top: 18px;
    padding-bottom: 4px;
  }

  .about-section__table td {
    padding-bottom: 18px;
  }

  /* ---- Contact Section ---- */
  .contact-section {
    padding: 60px 0;
  }

  .contact-section__heading {
    font-size: 2.2rem;
  }

  /* ---- Recruit Full Section ---- */
  .recruit-section {
    padding: 60px 20px;
  }

  .recruit-section__inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .recruit-section__photo {
    flex: none;
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }

  .recruit-section__heading {
    font-size: 1.2rem;
  }

  .recruit-section__label {
    justify-content: center;
  }

  .recruit-section__desc {
    font-size: 0.85rem;
  }

  /* ---- Footer ---- */
  .footer {
    padding: 50px 20px 30px;
  }

  .footer__logo {
    font-size: 2.2rem;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .footer__nav-item {
    font-size: 0.75rem;
  }

  .footer__copyright {
    font-size: 0.7rem;
  }

  /* ---- Back to Top ---- */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  /* ---- CTA Button ---- */
  .btn-cta {
    padding: 12px 24px;
    gap: 10px;
    font-size: 0.85rem;
  }

  .btn-cta__line::before {
    width: 30px;
  }

  .btn-cta:hover .btn-cta__line::before {
    width: 40px;
  }
}

/* --------------------------------------------
   22. Responsive (max-width: 480px) - Small Mobile
   -------------------------------------------- */

@media screen and (max-width: 480px) {

  .hero__title {
    font-size: 1.6rem;
  }

  .hero__subtitle {
    font-size: 0.8rem;
    line-height: 1.8;
  }

  .philosophy__label {
    font-size: 1.4rem;
  }

  .philosophy__images {
    grid-template-columns: 1fr;
  }

  .philosophy__image--large {
    grid-column: span 1;
  }

  .mission-vision__heading {
    font-size: 1.5rem;
  }

  .our-service__heading {
    font-size: 1.1rem;
  }

  .our-service__logo-bg-text {
    font-size: 5rem;
  }

  .nu-banner__logo {
    font-size: 3rem;
  }

  .recruit-text__message {
    font-size: 0.9rem;
  }

  .message-section__photo {
    height: 220px;
  }

  .contact-section__heading {
    font-size: 1.8rem;
  }

  .recruit-section__photo {
    width: 200px;
    height: 200px;
  }

  .recruit-section__heading {
    font-size: 1.1rem;
  }

  .btn-cta {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .btn-cta__arrow {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  /* Service page 480px */
  .svc-hero__title { font-size: 1.4rem; }
  .svc-hero__logo-text { font-size: 2rem; }
  .svc-details__sidebar { padding: 30px 20px; }
  .svc-policy__title { font-size: 1.6rem; }
  .svc-policy__cards-grid { gap: 30px; }
  .svc-point__circle { width: 140px; height: 140px; font-size: 0.8rem; }

  /* Recruit page 480px */
  .rec-hero__title { font-size: 1.8rem; }
  .rec-hero__photo { height: 200px; }
  .rec-message__heading { font-size: 0.95rem; letter-spacing: 0.1em; }
  .rec-workstyle__title { font-size: 1.6rem; }
  .rec-workstyle__logo { font-size: 3rem; right: 10px; }
  .rec-point__number { font-size: 3.5rem; }
  .rec-point__heading { font-size: 1.1rem; }
  .rec-point__circle { width: 150px; height: 150px; font-size: 0.8rem; }
  .rec-info__heading { font-size: 1.5rem; }
  .rec-info__job-title { font-size: 1rem; }
  .rec-apply__phone { flex-direction: column; gap: 8px; padding: 16px 24px; }
  .rec-apply__phone-number { font-size: 1.2rem; }

  /* Contact page 480px */
  .cnt-page__title { font-size: 1.6rem; }
  .cnt-form__footer { gap: 16px; }
  .cnt-form__submit { padding: 12px 30px; font-size: 0.8rem; }

  /* News/Blog 480px */
  .news-page__title { font-size: 1.4rem; }
  .blog-page__title { font-size: 1.4rem; }
}

/* ==========================================================================
   Service Page Styles — /service/
   ========================================================================== */

/* ---------- 1. svc-hero ---------- */
.svc-hero {
  background: linear-gradient(135deg, var(--peach), var(--mint));
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.svc-hero__bar {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  background: var(--pink-light);
  opacity: 0.6;
}

.svc-hero__bar--left { left: 0; }
.svc-hero__bar--right { right: 0; }

.svc-hero__inner {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svc-hero__title {
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.svc-hero__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-hero__logo-text {
  font-family: var(--font-en);
  font-size: 5rem;
  color: var(--white);
  opacity: 0.9;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

/* ---------- 2. svc-photo ---------- */
.svc-photo {
  width: 100%;
  position: relative;
}

.svc-photo__image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(196,168,160,0.3), rgba(180,160,155,0.4)), url('../images/gh-cooking-03.jpg') center/cover no-repeat;
  display: block;
}

.svc-photo__card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  margin-top: -60px;
  position: relative;
  z-index: 1;
  max-width: var(--container-max, 1200px);
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ---------- 3. svc-nursing ---------- */
.svc-nursing {
  padding: 80px 0;
}

.svc-nursing__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.svc-nursing__label {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.svc-nursing__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--label);
  flex-shrink: 0;
}

.svc-nursing__label-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.08em;
}

.svc-nursing__lead {
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  color: var(--label);
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-left: 2px solid var(--label);
  padding-left: 16px;
  line-height: 1.8;
}

.svc-nursing__body {
  margin-top: 40px;
}

.svc-nursing__desc {
  font-size: 0.9rem;
  line-height: 2.2;
  color: var(--text);
}

/* ---------- 4. svc-details ---------- */
.svc-details {
  padding: 0 0 80px;
}

.svc-details__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
}

.svc-details__main {
  padding: 60px 40px 60px 0;
}

.svc-details__heading {
  color: var(--label);
  font-family: var(--font-jp, 'Noto Sans JP', sans-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--label);
  margin-bottom: 30px;
}

.svc-details__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-details__list li {
  padding: 10px 0;
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.svc-details__sidebar {
  background: var(--mint);
  padding: 40px 30px;
  color: var(--white);
}

.svc-details__sidebar-block {
  margin-bottom: 36px;
}

.svc-details__sidebar-block:last-child {
  margin-bottom: 0;
}

.svc-details__sidebar-heading {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-jp, 'Noto Sans JP', sans-serif);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.svc-details__sidebar-text {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  line-height: 2;
}

/* ---------- svc-grouphome / svc-houkan (新事業内容) ---------- */
.svc-grouphome {
  padding: 80px 0 60px;
}

.svc-houkan {
  padding: 60px 0 80px;
}

.svc-section__heading {
  font-family: var(--font-jp, 'Noto Sans JP', sans-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--label);
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.svc-section__heading-mark {
  color: var(--label);
  font-size: 1.1rem;
  margin-right: 4px;
}

.svc-section__heading-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

.svc-section__intro {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 28px;
}

.svc-section__addr {
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.svc-section__lead-box {
  position: relative;
  background-color: var(--cream);
  padding: 36px 40px 32px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(192, 120, 96, 0.06);
}

.svc-section__lead-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--label);
  border-radius: 2px;
}

.svc-section__lead-box p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--text);
}

.svc-section__lead-box p + p {
  margin-top: 12px;
}

.svc-section__lead {
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: var(--label) !important;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 8px !important;
}

/* GH home cards */
.svc-homes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.svc-home-card {
  background-color: var(--white);
  border: 1px solid #ECE2DA;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-home-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 120, 96, 0.10);
}

.svc-home-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background-color: #ECE2DA;
}

.svc-home-card__image {
  aspect-ratio: 4 / 3;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.svc-home-card__body {
  padding: 18px 22px 22px;
}

.svc-home-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 6px;
}

.svc-home-card__addr {
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

/* ご利用対象者 */
.svc-target {
  background-color: var(--pink-bg);
  padding: 28px 32px;
  border-radius: 8px;
}

.svc-target__heading {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--label);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-target__heading::before {
  content: '◎';
  color: var(--label);
}

.svc-target__list {
  list-style: none;
  padding: 0;
}

.svc-target__list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
}

.svc-target__list li::before {
  content: '・';
  position: absolute;
  left: 4px;
  color: var(--label);
  font-weight: 700;
}

.svc-target__note {
  display: inline;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* 訪問看護 強み */
.svc-strength {
  margin-top: 8px;
}

.svc-strength__heading {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 12px;
}

.svc-strength__lead {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 14px;
}

.svc-strength__list {
  list-style: none;
  padding: 0;
}

.svc-strength__list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--text);
}

.svc-strength__list li::before {
  content: '・';
  position: absolute;
  left: 4px;
  color: var(--label);
  font-weight: 700;
}

@media (max-width: 768px) {
  .svc-homes {
    grid-template-columns: 1fr;
  }
  .svc-section__heading {
    font-size: 1.2rem;
  }
}

/* ---------- svc-fees (price list / service PDFs) ---------- */
.svc-fees {
  padding: 100px 0 60px;
  background-color: var(--cream);
}

.svc-fees__header {
  text-align: center;
  margin-bottom: 32px;
}

.svc-fees__title {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--label);
  text-transform: lowercase;
  line-height: 1.2;
}

.svc-fees__subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-top: 6px;
  color: var(--text-light);
}

.svc-fees__lead {
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 1.9;
  margin-bottom: 40px;
  color: var(--text);
}

.svc-fees__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.svc-fees__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background-color: var(--white);
  border: 1px solid #ECE2DA;
  border-radius: 10px;
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.svc-fees__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 120, 96, 0.12);
  border-color: var(--label);
  opacity: 1;
}

.svc-fees__card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--pink-bg);
  color: var(--label);
}

.svc-fees__card-icon svg {
  width: 26px;
  height: 26px;
}

.svc-fees__card-body {
  flex: 1;
  min-width: 0;
}

.svc-fees__card-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 2px 10px;
  background-color: var(--label);
  color: var(--white);
  border-radius: 999px;
  margin-bottom: 8px;
}

.svc-fees__card-title {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.svc-fees__card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.svc-fees__card-arrow {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--label);
  transition: transform 0.3s ease;
}

.svc-fees__card:hover .svc-fees__card-arrow {
  transform: translateX(4px);
}

.svc-fees__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.svc-fees__note a {
  color: var(--label);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .svc-fees__cards {
    grid-template-columns: 1fr;
  }
  .svc-fees__title {
    font-size: 1.8rem;
  }
}

/* ---------- svc-gallery (写真ギャラリー) ---------- */
.svc-gallery {
  padding: 100px 0;
  background-color: var(--cream);
}

.svc-gallery__header {
  text-align: center;
  margin-bottom: 40px;
}

.svc-gallery__title {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--label);
  text-transform: lowercase;
  line-height: 1.2;
}

.svc-gallery__subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-top: 6px;
  color: var(--text-light);
}

.svc-gallery__grid {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.svc-gallery__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: galleryScroll 40s linear infinite;
}

.svc-gallery__track:hover {
  animation-play-state: paused;
}

@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

.svc-gallery__item {
  flex-shrink: 0;
  width: 360px;
  aspect-ratio: 4 / 3;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.svc-gallery__item:hover {
  transform: scale(1.03);
  filter: brightness(1.06);
}

@media (max-width: 768px) {
  .svc-gallery__item {
    width: 260px;
  }
  .svc-gallery__track {
    gap: 14px;
    animation-duration: 28s;
  }
  .svc-gallery__grid {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-gallery__track {
    animation: none;
  }
}

/* ---------- 5. svc-message ---------- */
.svc-message {
  padding: 100px 0;
}

.svc-message__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.svc-message__text {
  color: var(--label);
  letter-spacing: 0.08em;
  font-weight: 300;
}

.svc-message__line {
  font-size: 1.1rem;
  line-height: 2.2;
}

.svc-message__gap {
  height: 24px;
}

.svc-message__photo {
  width: 100%;
  height: 400px;
  background: url('../images/gh-view-04.jpg') center/cover no-repeat;
}

/* ---------- 6. svc-policy ---------- */
.svc-policy {
  padding: 100px 0 40px;
}

.svc-policy__header {
  text-align: center;
  margin-bottom: 40px;
}

.svc-policy__title {
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--label);
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

.svc-policy__title-line {
  width: 100%;
  max-width: 300px;
  height: 1px;
  background: var(--label);
  margin: 8px auto 0;
}

.svc-policy__text {
  font-size: 0.9rem;
  line-height: 2.2;
  color: var(--text);
  max-width: 1000px;
  margin: 0 auto;
}

.svc-policy__sub-header {
  text-align: center;
  margin-top: 60px;
}

.svc-policy__subtitle {
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--text);
}

.svc-policy__subtitle-line {
  width: 80px;
  height: 2px;
  background: var(--pink-light);
  margin: 8px auto 0;
}

/* ---------- 7. svc-policy__cards ---------- */
.svc-policy__cards {
  padding: 40px 0 80px;
}

.svc-policy__cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Make cards 4 and 5 center on 2nd row */
.svc-policy__card:nth-child(4),
.svc-policy__card:nth-child(5) {
  /* handled by grid wrapping naturally */
}

.svc-policy__card {
  text-align: center;
}

.svc-policy__card-icon {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--pink-bg);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-policy__card-icon svg {
  width: 64px;
  height: 64px;
}

.svc-policy__card-title {
  color: var(--label);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.6;
}

.svc-policy__card-line {
  width: 40px;
  height: 1px;
  background: var(--lavender);
  margin: 0 auto 16px;
}

.svc-policy__card-desc {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--text);
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- 8. svc-promise ---------- */
.svc-promise {
  padding: 80px 0;
  background: var(--cream);
}

.svc-promise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.svc-promise__left {
  font-size: 1.2rem;
  color: var(--label);
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 300;
}

.svc-promise__right {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 2;
  letter-spacing: 0.03em;
  border-left: 2px solid var(--pink-light);
  padding-left: 24px;
}

/* ---------- 9. Responsive ---------- */
@media (max-width: 768px) {
  .svc-hero {
    padding: 80px 0 50px;
  }

  .svc-hero__bar { width: 30px; }

  .svc-hero__title { font-size: 1.8rem; }

  .svc-hero__logo-text { font-size: 3rem; }

  .svc-hero__inner { flex-direction: column; gap: 20px; align-items: flex-start; }

  .svc-photo__image { height: 250px; }

  .svc-nursing__header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .svc-details__grid { grid-template-columns: 1fr; }

  .svc-details__main { padding: 40px 0; }

  .svc-message__grid { grid-template-columns: 1fr; gap: 30px; }

  .svc-message__photo { height: 280px; }

  .svc-policy__cards-grid { grid-template-columns: 1fr; }

  .svc-promise__grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ==========================================================================
   News Page Styles — /news/
   ========================================================================== */

/* Pink band below header */
.page-band {
  width: 100%;
  height: 40px;
  background: var(--pink);
  margin-top: var(--header-h);
}

/* News page content */
.news-page {
  padding: 80px 0 120px;
  background: var(--white);
}

.news-page__header {
  margin-bottom: 80px;
}

.news-page__title {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--label);
  letter-spacing: 0.12em;
  text-transform: lowercase;
  line-height: 1.2;
  margin-bottom: 16px;
}

.news-page__subtitle {
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: var(--label);
  letter-spacing: 0.12em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pink-light);
  display: inline-block;
}

/* News list */
.news-page__list {
  max-width: 1000px;
}

.news-page__item {
  display: flex;
  align-items: baseline;
  gap: 60px;
  padding: 36px 0;
  border-bottom: 1px solid #e0dcd8;
}

.news-page__item:first-child {
  border-top: 1px solid #e0dcd8;
}

.news-page__date {
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--label);
  flex-shrink: 0;
  min-width: 120px;
}

.news-page__item-title {
  font-family: var(--font-jp);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text);
  letter-spacing: 0.03em;
}

/* Active nav item dot fill */
.header__nav-item.is-active::before {
  background-color: var(--label);
}

.header__nav-item.is-active {
  color: var(--label);
}

/* Responsive */
@media (max-width: 768px) {
  .page-band {
    height: 24px;
  }

  .news-page {
    padding: 50px 0 80px;
  }

  .news-page__title {
    font-size: 1.8rem;
  }

  .news-page__header {
    margin-bottom: 50px;
  }

  .news-page__item {
    flex-direction: column;
    gap: 8px;
    padding: 24px 0;
  }

  .news-page__date {
    min-width: auto;
  }
}

/* ==========================================================================
   Blog Page Styles — /blog/
   ========================================================================== */

.page-band--cream {
  background: var(--pink-bg);
}

.blog-page {
  padding: 80px 0 120px;
  background: var(--white);
}

.blog-page__header {
  margin-bottom: 60px;
}

.blog-page__title {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--label);
  letter-spacing: 0.12em;
  text-transform: lowercase;
  line-height: 1.2;
  margin-bottom: 16px;
}

.blog-page__subtitle {
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: var(--label);
  letter-spacing: 0.12em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pink-light);
  display: inline-block;
}

/* Blog card grid */
.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}

.blog-card {
  display: block;
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: url('../images/meeting-allmember-03.jpg') center/cover no-repeat;
  margin-bottom: 16px;
}

.blog-card:nth-child(3) .blog-card__image {
  background-image: url('../images/meeting-03.jpg');
}

.blog-card:nth-child(4) .blog-card__image {
  background-image: url('../images/meeting-04.jpg');
}

.blog-card:nth-child(5) .blog-card__image {
  background-image: url('../images/gh-meal-04.jpg');
}

.blog-card__image--2 {
  background: url('../images/meeting-allmember-02.jpg') center/cover no-repeat;
}

.blog-card__image--6 {
  background: url('../images/gh-cooking-02.jpg') center/cover no-repeat;
}

.blog-card__title {
  font-family: var(--font-jp);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 8px;
}

.blog-card__date {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--label);
}

@media (max-width: 1024px) {
  .blog-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 768px) {
  .blog-page {
    padding: 50px 0 80px;
  }

  .blog-page__title {
    font-size: 1.8rem;
  }

  .blog-page__header {
    margin-bottom: 40px;
  }

  .blog-page__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-card__image {
    aspect-ratio: 16 / 9;
  }
}

/* ==========================================================================
   Recruit Page
   ========================================================================== */

/* --------------------------------------------------------------------------
   rec-hero
   -------------------------------------------------------------------------- */
.rec-hero {
  padding: 120px 40px 80px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.rec-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.rec-hero__title {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--label);
  text-transform: lowercase;
  line-height: 1.3;
}

.rec-hero__subtitle {
  font-size: 0.85rem;
  color: var(--label);
  letter-spacing: 0.2em;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pink-light);
  display: inline-block;
  margin-top: 12px;
}

.rec-hero__photo {
  width: 100%;
  height: 450px;
  background: url('../images/gh-staff-group-01.jpg') center/cover no-repeat;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   rec-message
   -------------------------------------------------------------------------- */
.rec-message {
  padding: 80px 0 100px;
  max-width: 900px;
  margin: 0 auto;
}

.rec-message__heading {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  line-height: 2.2;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 40px;
}

.rec-message__body {
  font-size: 0.9rem;
  line-height: 2.2;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   rec-workstyle
   -------------------------------------------------------------------------- */
.rec-workstyle {
  background: linear-gradient(135deg, var(--mint), var(--lavender));
  padding: 100px 40px 120px;
  position: relative;
  overflow: hidden;
}

.rec-workstyle::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -5%;
  width: 110%;
  height: 80px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
}

.rec-workstyle__title {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.rec-workstyle__subtitle {
  color: var(--white);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 8px;
  display: inline-block;
  margin-top: 16px;
}

.rec-workstyle__logo {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: 10rem;
  color: var(--white);
  opacity: 0.07;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  pointer-events: none;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   rec-point
   -------------------------------------------------------------------------- */
.rec-point {
  padding: 100px 0;
  max-width: var(--container-max);
  margin: 0 auto;
}

.rec-point__header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.rec-point__label {
  font-family: var(--font-en);
  font-size: 2rem;
  color: var(--label);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: lowercase;
}

.rec-point__label-line {
  width: 80px;
  height: 2px;
  background: var(--pink-light);
  margin: 12px 0;
}

.rec-point__number {
  font-family: var(--font-en);
  font-size: 8rem;
  font-weight: 300;
  color: var(--pink-light);
  line-height: 1;
  opacity: 0.7;
}

.rec-point__heading {
  font-size: 1.4rem;
  color: var(--label);
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.rec-point__desc {
  font-size: 0.9rem;
  line-height: 2.2;
  color: var(--text);
  margin-top: 24px;
}

.rec-point__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rec-point__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: url('../images/gh-staff-trio.jpg') center/cover no-repeat;
  border-radius: 4px;
}

.rec-point__photo:nth-child(2) {
  background-image: url('../images/gh-managers-02.jpg');
}

.rec-point__photo:nth-child(3) {
  background-image: url('../images/houkan-staff-all-01.jpg');
}

.rec-point__circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -60px;
  position: relative;
  z-index: 1;
}

.rec-point__circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin: 0 auto;
  padding: 20px;
}

/* --------------------------------------------------------------------------
   rec-divider
   -------------------------------------------------------------------------- */
.rec-divider {
  display: none;
}

/* --------------------------------------------------------------------------
   rec-jobs
   -------------------------------------------------------------------------- */
.rec-jobs {
  background: var(--sky);
  padding: 80px 0;
  text-align: center;
}

.rec-jobs__title {
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

.rec-jobs__buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.rec-jobs__btn {
  background: var(--white);
  border-radius: 50px;
  padding: 24px 80px;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--text);
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  font-family: var(--font-jp);
}

.rec-jobs__btn:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.rec-jobs__btn-chevron {
  font-size: 1.2rem;
  color: var(--gray);
}

/* --------------------------------------------------------------------------
   rec-info
   -------------------------------------------------------------------------- */
.rec-info {
  padding: 100px 0;
  max-width: var(--container-max);
  margin: 0 auto;
}

.rec-info__heading {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--label);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  display: inline;
}

.rec-info__heading-jp {
  font-size: 0.9rem;
  color: var(--gray);
  letter-spacing: 0.15em;
  margin-left: 24px;
}

.rec-info__card {
  background: var(--white);
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  margin-top: 40px;
}

.rec-info__job-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.rec-info__job-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--label);
  flex-shrink: 0;
}

.rec-info__job-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.rec-info__job-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: url('../images/meeting-allmember-01.jpg') center/cover no-repeat;
  border-radius: 8px;
}

.rec-info__welcome {
  background: #f5f2ef;
  border-radius: 12px;
  padding: 30px;
}

.rec-info__welcome-title {
  font-size: 0.95rem;
  color: var(--label);
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rec-info__welcome-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--pink-light);
  margin-left: 16px;
  position: relative;
}

.rec-info__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.rec-info__check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.rec-info__check-label {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 8px;
}

.rec-info__check-text {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   rec-info__comment (senior comment)
   -------------------------------------------------------------------------- */
.rec-info__comment {
  border-radius: 12px;
  padding: 30px 40px;
  margin-top: 40px;
  color: var(--white);
}

.rec-info__comment--nurse {
  background: var(--pink);
}

.rec-info__comment--therapist {
  background: var(--gray);
}

.rec-info__comment-badge {
  background: var(--pink-light);
  color: var(--white);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.rec-info__comment-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.rec-info__comment-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: url('../images/houkan-medicine-01.jpg') center/cover no-repeat;
  flex-shrink: 0;
}

.rec-info__comment--therapist .rec-info__comment-photo {
  background-image: url('../images/houkan-medicine-03.jpg');
}

.rec-info__comment-heading {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.rec-info__comment-text {
  font-size: 0.85rem;
  line-height: 1.9;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   rec-info__accordion
   -------------------------------------------------------------------------- */
.rec-info__accordion {
  text-align: center;
  margin-top: 40px;
}

.rec-info__accordion-btn {
  background: #f0ede9;
  border: none;
  border-radius: 50px;
  padding: 16px 60px;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-jp);
  transition: background 0.3s ease;
}

.rec-info__accordion-btn:hover {
  background: #e8e4e0;
}

/* --------------------------------------------------------------------------
   rec-apply
   -------------------------------------------------------------------------- */
.rec-apply {
  background: var(--sky);
  padding: 80px 0;
  text-align: center;
}

.rec-apply__title {
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 40px;
}

.rec-apply__cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.rec-apply__card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  min-width: 280px;
}

.rec-apply__card-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--text-light);
}

.rec-apply__card-text {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--text);
}

.rec-apply__cta {
  display: inline-block;
  background: var(--label);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 18px 80px;
  font-size: 1rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  margin-bottom: 24px;
  font-family: var(--font-jp);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.rec-apply__cta:hover {
  opacity: 0.85;
}

.rec-apply__phone {
  background: #777;
  border-radius: 50px;
  padding: 20px 60px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
  text-decoration: none;
}

.rec-apply__phone-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.rec-apply__phone-number {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   Recruit Page - Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .rec-hero {
    padding: 80px 20px 40px;
  }

  .rec-hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rec-hero__photo {
    height: 250px;
  }

  .rec-message {
    padding: 40px 20px 60px;
  }

  .rec-message__heading {
    font-size: 1.1rem;
  }

  .rec-workstyle {
    padding: 60px 20px 80px;
  }

  .rec-workstyle__logo {
    font-size: 5rem;
    right: 20px;
  }

  .rec-point {
    padding: 60px 20px;
  }

  .rec-point__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rec-point__number {
    font-size: 5rem;
  }

  .rec-point__photos {
    grid-template-columns: 1fr;
  }

  .rec-point__circles {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }

  .rec-point__circle {
    width: 180px;
    height: 180px;
    font-size: 0.9rem;
  }

  .rec-divider {
    margin: 0 20px;
    height: 120px;
  }

  .rec-jobs {
    padding: 60px 20px;
  }

  .rec-jobs__buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .rec-jobs__btn {
    padding: 20px 40px;
    font-size: 1rem;
  }

  .rec-info {
    padding: 60px 20px;
  }

  .rec-info__card {
    padding: 30px 20px;
  }

  .rec-info__job-content {
    grid-template-columns: 1fr;
  }

  .rec-info__heading-jp {
    display: block;
    margin-left: 0;
    margin-top: 8px;
  }

  .rec-info__comment {
    padding: 24px 20px;
  }

  .rec-info__comment-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .rec-apply {
    padding: 60px 20px;
  }

  .rec-apply__cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .rec-apply__card {
    min-width: auto;
    width: 100%;
    max-width: 320px;
  }

  .rec-apply__phone {
    padding: 16px 32px;
    gap: 16px;
  }

  .rec-apply__phone-number {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   Contact Page Styles — /contact/
   ========================================================================== */

.cnt-page {
  padding: 120px 0 80px;
  background: var(--white);
}

.cnt-page__header {
  margin-bottom: 60px;
}

.cnt-page__title {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--label);
  letter-spacing: 0.12em;
  text-transform: lowercase;
  margin-bottom: 16px;
}

.cnt-page__subtitle {
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: var(--label);
  letter-spacing: 0.12em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pink-light);
  display: inline-block;
}

.cnt-page__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

/* Form Card */
.cnt-page__form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.cnt-page__intro {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 30px;
}

.cnt-page__divider {
  border: none;
  border-top: 1px solid #e0dcd8;
  margin: 0 0 30px;
}

/* Form fields */
.cnt-form__group {
  margin-bottom: 30px;
}

.cnt-form__label {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.cnt-form__required {
  color: var(--label);
}

.cnt-form__input,
.cnt-form__select,
.cnt-form__textarea {
  width: 100%;
  padding: 14px 16px;
  background: #f5f2ef;
  border: none;
  border-bottom: 1px solid #ddd;
  font-family: var(--font-jp);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.cnt-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.cnt-form__textarea {
  resize: vertical;
  min-height: 180px;
}

.cnt-form__input:focus,
.cnt-form__select:focus,
.cnt-form__textarea:focus {
  border-color: var(--pink);
}

.cnt-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
}

.cnt-form__privacy {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cnt-form__privacy input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--pink);
}

.cnt-form__privacy a {
  color: var(--text);
  text-decoration: underline;
}

.cnt-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  font-family: var(--font-jp);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cnt-form__submit:hover {
  background: #b89a92;
  transform: translateY(-2px);
}

.cnt-form__submit-line {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

.cnt-form__submit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  margin-left: -4px;
}

/* --------------------------------------------------------------------------
   Contact Form 7（CF7）統合スタイル
   .cnt-form__* を CF7 のフォーム定義（[text] [email] etc.）と組み合わせて利用
   -------------------------------------------------------------------------- */

/* CF7 ラッパーのデフォルト余白をリセット */
.wpcf7,
.wpcf7-form {
  margin: 0;
  padding: 0;
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* バリデーションエラー */
.wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 6px;
  display: block;
}

.wpcf7-form-control.wpcf7-not-valid {
  border-bottom-color: #dc3545 !important;
}

/* CF7 のレスポンスメッセージ（送信成功・失敗） */
.wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 16px 20px !important;
  border-radius: 8px !important;
  border: none !important;
  font-size: 0.9rem;
  line-height: 1.6;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #66bb6a !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  background: #fde8e8;
  color: #c62828;
  border-left: 4px solid #ef5350 !important;
}

/* 送信中スピナー */
.wpcf7-spinner {
  margin-left: 12px;
  vertical-align: middle;
}

/* acceptance（同意チェックボックス）の見た目調整 */
.cnt-form__privacy .wpcf7-list-item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cnt-form__privacy .wpcf7-list-item-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.cnt-form__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--pink);
  cursor: pointer;
  flex-shrink: 0;
}

/* CF7 が生成する submit ボタン（input[type="submit"]）も同デザインに */
input.cnt-form__submit,
input.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  font-family: var(--font-jp);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

input.cnt-form__submit:hover,
input.wpcf7-submit:hover {
  background: #b89a92;
  transform: translateY(-2px);
}

/* 必須マーク自動表示（CF7 の wpcf7-validates-as-required を持つ field のラベル） */
.cnt-form__group label .cnt-form__required {
  color: var(--label);
  margin-left: 2px;
}

/* Sidebar */
.cnt-page__sidebar {
  padding-top: 20px;
}

.cnt-page__sidebar-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cnt-page__sidebar-nu {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

.cnt-page__sidebar-name {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.cnt-page__sidebar-name-en {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.cnt-page__sidebar-phone {
  display: block;
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--label);
  letter-spacing: 0.08em;
  margin: 24px 0;
  text-decoration: none;
}

.cnt-page__sidebar-follow {
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.cnt-page__sidebar-sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--label);
  color: var(--label);
  transition: background 0.3s ease, color 0.3s ease;
}

.cnt-page__sidebar-sns-link:hover {
  background: var(--label);
  color: var(--white);
  opacity: 1;
}

.cnt-page__sidebar-sns-link svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .cnt-page {
    padding: 100px 0 60px;
  }

  .cnt-page__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cnt-page__form-card {
    padding: 30px 20px;
  }

  .cnt-form__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cnt-form__submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .cnt-page__grid {
    grid-template-columns: 1fr 260px;
    gap: 40px;
  }

  .rec-hero__grid {
    gap: 30px;
  }

  .rec-point__circle {
    width: 180px;
    height: 180px;
    font-size: 0.85rem;
  }
}

/* ========== Hero Slideshow ========== */
.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero__slide--active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(232,180,168,0.6) 0%,
    rgba(196,216,192,0.5) 25%,
    rgba(240,216,192,0.55) 50%,
    rgba(200,216,208,0.5) 75%,
    rgba(192,120,96,0.35) 100%
  );
  z-index: 1;
}

/* ========== Logo Image Styles ========== */
.header__logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto 12px;
}

@media (max-width: 768px) {
  .header__logo-img {
    height: 50px;
  }
  .footer__logo-img {
    height: 60px;
  }
}

/* ==========================================================================
   Privacy Policy Page
   ========================================================================== */
.privacy-page {
  padding: 140px 0 100px;
  background-color: var(--cream);
  min-height: 80vh;
}

.privacy-page__header {
  text-align: center;
  margin-bottom: 60px;
}

.privacy-page__title {
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--label);
  text-transform: lowercase;
  line-height: 1.2;
}

.privacy-page__subtitle {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  margin-top: 8px;
  color: var(--text-light);
}

.privacy-page__body {
  max-width: 820px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 56px 56px 64px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.privacy-page__intro {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #ECE2DA;
}

.privacy-page__section {
  margin-bottom: 36px;
}

.privacy-page__heading {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--label);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pink-bg);
}

.privacy-page__section p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--text);
}

.privacy-page__list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.privacy-page__list li {
  position: relative;
  padding: 4px 0 4px 22px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
}

.privacy-page__list li::before {
  content: '・';
  position: absolute;
  left: 4px;
  color: var(--label);
  font-weight: 700;
}

.privacy-page__contact {
  margin-top: 14px;
  padding: 16px 20px;
  background-color: var(--pink-bg);
  border-radius: 6px;
}

.privacy-page__contact a {
  color: var(--label);
  text-decoration: underline;
}

.privacy-page__date {
  margin-top: 32px;
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .privacy-page {
    padding: 100px 0 60px;
  }
  .privacy-page__body {
    padding: 32px 24px 40px;
  }
  .privacy-page__title {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   Lightbox (写真クリックで拡大表示)
   ========================================================================== */

/* Hover hint on clickable images */
.svc-home-card__image,
.svc-gallery__item {
  cursor: zoom-in;
  transition: filter 0.3s ease, transform 0.4s ease;
}

.svc-home-card__image:hover {
  filter: brightness(1.06);
}

.svc-gallery__item:hover {
  filter: brightness(1.06);
  transform: scale(1.02);
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(20, 18, 16, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
  cursor: default;
}

.lightbox.is-open .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.lightbox__close:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .lightbox {
    padding: 8vh 4vw;
  }
  .lightbox__close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ==========================================================================
   福祉系デザイン調整 (配色・文言は維持、ソフトな印象に統一)
   ========================================================================== */

/* ---------- 角丸を全体的に大きく ---------- */
.svc-home-card { border-radius: 18px; }
.svc-fees__card { border-radius: 14px; }
.svc-fees__card-icon { border-radius: 50%; width: 56px; height: 56px; }
.about-section__card { border-radius: 20px; }
.privacy-page__body { border-radius: 20px; }
.svc-section__lead-box { border-radius: 18px; }
.svc-target { border-radius: 18px; }
.svc-gallery__item { border-radius: 14px; }
.philosophy__image { border-radius: 14px; }
.message-section__photo { border-radius: 16px; }
.service-detail__image { border-radius: 18px; }

/* ---------- 柔らかい影 (drop-shadowで自然な深み) ---------- */
.svc-home-card {
  box-shadow: 0 6px 20px rgba(192, 120, 96, 0.08), 0 2px 6px rgba(192, 120, 96, 0.04);
}
.svc-home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(192, 120, 96, 0.14), 0 4px 12px rgba(192, 120, 96, 0.06);
}

.svc-fees__card {
  box-shadow: 0 4px 16px rgba(192, 120, 96, 0.06);
}
.svc-fees__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(192, 120, 96, 0.16);
}

.svc-section__lead-box {
  box-shadow: 0 4px 18px rgba(192, 120, 96, 0.06);
}

.about-section__card {
  box-shadow: 0 6px 24px rgba(192, 120, 96, 0.07);
}

.privacy-page__body {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

/* ---------- ボタンの丸みを増す + ホバーで浮く ---------- */
.btn-cta,
.cnt-form__submit,
.svc-fees__card-arrow {
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-cta:hover,
.cnt-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(192, 120, 96, 0.18);
}

.cta-link__circle {
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.cta-link:hover .cta-link__circle {
  transform: translateX(4px) scale(1.05);
}

/* ---------- リスト記号を「・」から優しい円形ドットに ---------- */
.svc-target__list li,
.svc-strength__list li {
  padding-left: 28px;
}
.svc-target__list li::before,
.svc-strength__list li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 14px;
  width: 8px;
  height: 8px;
  background-color: var(--label);
  border-radius: 50%;
  font-weight: normal;
}

.privacy-page__list li {
  padding-left: 28px;
}
.privacy-page__list li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 14px;
  width: 8px;
  height: 8px;
  background-color: var(--label);
  border-radius: 50%;
  font-weight: normal;
}

/* ---------- ご利用対象者：チェックマーク風 ---------- */
.svc-target__heading::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: var(--label);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  vertical-align: middle;
  margin-right: 4px;
}
.svc-target__heading::after {
  content: none;
}

/* ---------- ホームカードの名前にハウスアイコン ---------- */
.svc-home-card__name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-home-card__name::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: var(--label);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/><polyline points='9 22 9 12 15 12 15 22'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/><polyline points='9 22 9 12 15 12 15 22'/></svg>") center/contain no-repeat;
  flex-shrink: 0;
}

/* ---------- セクション見出しマーク ■ をハートに置き換え ---------- */
.svc-section__heading-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 0;
  color: transparent;
}
.svc-section__heading-mark::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background-color: var(--label);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/></svg>") center/contain no-repeat;
}

/* ---------- ニュース項目のホバーで柔らかく ---------- */
.news__item {
  border-radius: 12px;
  padding: 18px 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.news__item:hover {
  background-color: var(--pink-bg);
  transform: translateX(2px);
}

/* ---------- ブログカードを柔らかく ---------- */
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(192, 120, 96, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(192, 120, 96, 0.12);
}

/* ---------- セクション間の余白を広めに ---------- */
.philosophy { padding-top: 110px; padding-bottom: 110px; }
.our-service { padding-top: 100px; padding-bottom: 100px; }
.message-section__inner { padding-top: 110px; padding-bottom: 110px; }
.about-section { padding-top: 110px; padding-bottom: 110px; }

/* ---------- リード文の行間を少し広げる ---------- */
.svc-section__intro,
.svc-section__lead-box p,
.svc-strength__lead,
.svc-target__list li,
.svc-strength__list li {
  line-height: 2;
}

/* ---------- フッターのコピーライト周りも柔らかく ---------- */
.footer__nav-item {
  padding: 4px 8px;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.footer__nav-item:hover {
  background-color: var(--pink-bg);
  color: var(--label);
  opacity: 1;
}

/* ---------- お問い合わせフォーム周りを優しく ---------- */
.cnt-form__input,
.cnt-form__select,
.cnt-form__textarea {
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cnt-form__input:focus,
.cnt-form__select:focus,
.cnt-form__textarea:focus {
  border-color: var(--label);
  box-shadow: 0 0 0 3px rgba(192, 120, 96, 0.12);
  outline: none;
}

/* ---------- About テーブルの柔らかさ ---------- */
.about-section__office {
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.about-section__office:hover {
  background-color: var(--pink-bg);
}

/* ---------- back-to-top も柔らかく ---------- */
.back-to-top {
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(192, 120, 96, 0.20);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(192, 120, 96, 0.28);
}

/* ==========================================================================
   調整 (パディング統一・ホバー視認性・SPメニュー・背景アニメーション)
   ========================================================================== */

/* ---------- セクション padding 統一 100px ---------- */
.philosophy { padding-top: 100px; padding-bottom: 100px; }
.our-service { padding-top: 100px; padding-bottom: 100px; }
.message-section__inner { padding-top: 100px; padding-bottom: 100px; }
.about-section { padding-top: 100px; padding-bottom: 100px; }
.news { padding-top: 100px; padding-bottom: 100px; }
.service-detail { padding-top: 100px; padding-bottom: 100px; }

/* our-service → service-detail は同色背景で連続するため間を詰める */
.our-service { padding-bottom: 40px; }
.service-detail { padding-top: 40px; }

/* ---------- ホバー視認性: テキストを暗くして読みやすく ---------- */

/* news 項目: 緑背景 + 白文字 → ホバーで pink-bg + 暗いテキスト */
.news__item:hover .news__date,
.news__item:hover .news__title {
  color: var(--text);
}
.news__item:hover .news__arrow {
  color: var(--text);
  border-color: rgba(58, 53, 48, 0.4);
  background-color: rgba(255, 255, 255, 0.5);
}

/* footer ナビ: ホバーで暗いテキストに */
.footer__nav-item:hover {
  color: var(--text);
}

/* ヘッダーサブメニュー: ホバーで暗いテキスト */
.header__nav-subitem:hover,
.header__nav-subitem.is-active {
  color: var(--text);
}

/* GH home card 名前: ホバー時にもアイコン色維持 */
.svc-home-card:hover .svc-home-card__name {
  color: var(--label);
}

/* ---------- SP メニューのドロップダウン修正 (余分なドット・ガタつき) ---------- */
@media screen and (max-width: 768px) {
  /* dropdown wrapper の bullet ::before を非表示 (代わりに trigger に dot を付ける) */
  .header__nav-item.header__nav-dropdown::before {
    display: none;
  }
  /* trigger に bullet dot を付与 */
  .header__nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-jp, 'Noto Sans JP', sans-serif);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text);
  }
  .header__nav-trigger::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: var(--label);
    border-radius: 50%;
    flex-shrink: 0;
  }
  /* dropdown wrapper のレイアウト調整 */
  .header__nav-dropdown {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  /* submenu はインライン展開 (左ボーダーは PC のような飾り削除、SPは中央寄せ) */
  .header__nav-submenu {
    margin-top: 12px;
    border-left: none;
    text-align: center;
  }
  .header__nav-submenu::before {
    display: none;
  }
  .header__nav-subitem {
    padding: 8px 16px;
    font-size: 0.95rem;
    color: var(--gray-dark);
  }
}

/* ==========================================================================
   背景アニメーション (抽象的なブロブ - 福祉系の優しい色)
   ========================================================================== */
.bg-anim {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-anim__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  will-change: transform;
}

.bg-anim__blob--1 {
  width: 480px;
  height: 480px;
  background: var(--peach);
  top: -120px;
  left: -120px;
  animation: bgFloat1 22s infinite ease-in-out;
}

.bg-anim__blob--2 {
  width: 560px;
  height: 560px;
  background: var(--mint);
  top: 30%;
  right: -180px;
  animation: bgFloat2 26s infinite ease-in-out;
}

.bg-anim__blob--3 {
  width: 420px;
  height: 420px;
  background: var(--pink-light);
  bottom: -100px;
  left: 25%;
  animation: bgFloat3 28s infinite ease-in-out;
}

.bg-anim__blob--4 {
  width: 360px;
  height: 360px;
  background: var(--sky);
  top: 60%;
  left: -100px;
  animation: bgFloat4 24s infinite ease-in-out;
}

@keyframes bgFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 80px) scale(1.1); }
  66% { transform: translate(120px, -40px) scale(0.95); }
}
@keyframes bgFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-100px, -80px) scale(1.15); }
}
@keyframes bgFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-80px, -60px) scale(1.08); }
  80% { transform: translate(60px, 30px) scale(0.92); }
}
@keyframes bgFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -50px) scale(1.12); }
}

/* モバイルでは少し小さめ・少しオパシティ抑える */
@media screen and (max-width: 768px) {
  .bg-anim__blob {
    filter: blur(60px);
    opacity: 0.35;
  }
  .bg-anim__blob--1 { width: 320px; height: 320px; }
  .bg-anim__blob--2 { width: 380px; height: 380px; }
  .bg-anim__blob--3 { width: 280px; height: 280px; }
  .bg-anim__blob--4 { width: 240px; height: 240px; }
}

/* アニメーション軽減モード */
@media (prefers-reduced-motion: reduce) {
  .bg-anim__blob {
    animation: none;
  }
}
