@charset "UTF-8";
/* ==========================================================
   いろのわ訪問看護ステーション
   Design reproduction (test coding)
   ========================================================== */
:root {
  --cream: #F3EDDF;
  --cream-2: #EFEFE7;
  --beige: #F9F6F0;
  --beige-deep: #F5EFE7;
  --card-beige: #F3EEE5;
  --green: #5A7E65;
  --green-deep: #3F5947;
  --green-line: #9DB3A0;
  --footer: #212A24;
  --ink: #3C3C3C;
  --gray: #666;
  --orange: #D96323;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", "Source Han Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.8;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: opacity .3s; }
a:hover { opacity: .75; }
ul, ol { list-style: none; }
.t-center { text-align: center; }

/* ---- common parts ---- */
.sec-label {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: .18em;
  color: var(--green);
  margin-bottom: 18px;
}
.sec-label--light { color: #A9C0AB; }
.sec-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .06em;
  margin-bottom: 28px;
}
.sec-divider {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--green);
  margin: 0 auto 70px;
}
.sec-divider--left { margin: 0 0 60px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .1em;
  border-radius: 6px;
  transition: opacity .3s, transform .3s;
}
.btn--green {
  background: var(--green);
  color: #fff;
}
.btn--outline {
  background: #fff;
  border: 1px solid var(--green);
  color: var(--green-deep);
}
.ic-tel { width: 17px; height: 17px; fill: currentColor; }
.arrow { font-family: sans-serif; }

/* ==========================================================
   Header
   ========================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
}
.header__inner {
  max-width: 1860px;
  margin: 0 auto;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.header__logo { width: 62px; height: auto; }
.header__brand-text { display: flex; flex-direction: column; line-height: 1.4; }
.header__corp { font-size: 11px; color: var(--gray); }
.header__name { font-size: 17px; font-weight: 700; }
.header__nav ul { display: flex; gap: 30px; }
.header__nav a { font-size: 14px; font-weight: 500; }
.header__tel { display: flex; flex-direction: column; line-height: 1.4; text-align: right; }
.header__tel-num {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: .04em;
}
.header__tel-hours { font-size: 10px; color: var(--gray); }

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position: relative;
  background: var(--cream-2);
  overflow: hidden;
}
.hero__photo {
  position: relative;
  width: 65%;
  min-height: 620px;
  padding: 44px 0 132px;
}
/* ---- メインビジュアルスライダー ---- */
.hero__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1232 / 876;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 82%, transparent 100%);
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 2.4s ease;
}
.hero__slide.is-prev { opacity: 1; z-index: 2; transition: none; }
.hero__slide.is-active { opacity: 1; z-index: 3; }
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}
.hero__slide.is-active img {
  animation: heroDrift 6.5s ease-out forwards;
}
@keyframes heroDrift {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
.hero__content {
  position: absolute;
  top: 50%;
  transform: translateY(-58%);
  left: 64%;
  width: 33%;
  min-width: 480px;
}
.hero__label {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  letter-spacing: .22em;
  color: #6B8F77;
  margin-bottom: 30px;
}
.hero__title { font-weight: 700; }
.hero__title span {
  display: block;
  width: fit-content;
  font-size: 44px;
  line-height: 1.42;
  letter-spacing: .06em;
  color: #2F4A38;
  /* マーカー風の下線（em指定なので文字サイズが変わっても位置が崩れない） */
  background-image: linear-gradient(rgba(90, 126, 101, .45), rgba(90, 126, 101, .45));
  background-size: 100% .32em;
  background-position: 0 .98em;
  background-repeat: no-repeat;
}
.hero__lead {
  margin-top: 30px;
  margin-left: 0;
  font-size: 13.5px;
  line-height: 1.9;
  color: #3a3a3a;
  max-width: 400px;
}
.hero__btns {
  margin-top: 32px;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 360px;
  max-width: 100%;
}
.btn--hero-tel {
  width: 100%;
  height: 58px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .1em;
  border-radius: 6px;
  gap: 10px;
}
.btn--hero-tel:hover { opacity: .85; }
.btn--hero-sub {
  width: 100%;
  height: 58px;
  background: #fff;
  color: var(--orange);
  border: 2px solid var(--orange);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  border-radius: 6px;
  gap: 10px;
}
.btn--hero-sub::after {
  content: '→';
  font-size: 16px;
  transition: transform .3s;
}
.btn--hero-sub:hover { background: var(--orange); color: #fff; }
.btn--hero-sub:hover::after { transform: translateX(4px); }
.hero__scroll {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.hero__scroll span {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: .26em;
  color: #807f74;
  writing-mode: vertical-rl;
  display: inline-block;
  padding-bottom: 28px;
  position: relative;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 24px;
  background: #807f74;
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================
   About
   ========================================================== */
.about {
  position: relative;
  padding: 178px 0 195px;
  background: #fff;
  overflow: hidden;
}
.about__deco {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 38%;
  height: 46%;
  background: var(--beige);
  border-radius: 40px 0 0 40px;
}
.about__inner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.about__text { max-width: 520px; }
.about__lead { margin-bottom: 46px; }
.about__lead p + p { margin-top: 1.4em; }
.about__features li { margin-bottom: 30px; }
.about__features h3 {
  font-size: 18px;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.about__features .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.about__features p { font-size: 14px; color: var(--gray); padding-left: 19px; }
.about__promise-title {
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: .18em;
  color: var(--green);
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--green-line);
}
.about__photo {
  align-self: flex-start;
  margin-top: 60px;
}
.about__photo img {
  width: 711px;
  border-radius: 20px;
}

/* ==========================================================
   Dementia Care
   ========================================================== */
.dementia {
  padding: 150px 0 160px;
  background: linear-gradient(180deg, var(--beige-deep), #FBF8F1);
}
.dementia__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 70px;
  align-items: flex-start;
}
.dementia__main { flex: 1; }
.dementia__subtitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 18px;
  letter-spacing: .06em;
}
.dementia__body {
  font-size: 15px;
  line-height: 1.95;
  color: #4a4a4a;
  margin-bottom: 20px;
}
.dementia__worries {
  flex-shrink: 0;
  width: 460px;
  background: #fff;
  border-radius: 16px;
  padding: 44px 40px 48px;
  border-top: 4px solid var(--green);
  box-shadow: 0 8px 28px rgba(90,126,101,.10);
}
.dementia__worries-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.dementia__worries-illust {
  width: auto;
  height: 110px;
  flex-shrink: 0;
}
.dementia__worries-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--green-deep);
  line-height: 1.5;
}
.dementia__worries-list { list-style: none; }
.dementia__worries-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #E8EDE9;
  font-size: 14.5px;
  line-height: 1.6;
  color: #3a3a3a;
}
.dementia__worries-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--green-line);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.dementia__worries-close {
  margin-top: 26px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--green-deep);
  text-align: center;
  line-height: 1.7;
}

/* ==========================================================
   Story
   ========================================================== */
.story {
  background: linear-gradient(180deg, var(--beige-deep), #FBF8F1);
  border-radius: 80px 0 0 0;
  padding: 130px 0 60px;
  overflow: hidden;
}
.story__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 90px;
  align-items: flex-start;
}
.story__photo {
  flex-shrink: 0;
  margin-top: 90px;
  margin-bottom: 210px;
  position: relative;
}
.story__photo::before {
  content: "";
  position: absolute;
  left: -92px;
  top: -16px;
  width: 100%;
  height: calc(100% + 212px);
  background: #EBF0EA;
  border-radius: 24px;
}
.story__photo img { width: 604px; border-radius: 20px; position: relative; }
.story__text { max-width: 560px; }
.story__text p { margin-bottom: 26px; font-size: 15.5px; }

/* ==========================================================
   Services
   ========================================================== */
.services { padding: 170px 0 240px; background: #fff; }
.services__inner { max-width: 1260px; margin: 0 auto; padding: 0 40px; }
.services__lead { margin-bottom: 90px; }
.services__cards {
  display: flex;
  justify-content: center;
  gap: 42px;
  margin-bottom: 130px;
}
.svc-card { width: 526px; max-width: 100%; }
.svc-card__photo img { border-radius: 14px; width: 100%; }
.svc-card__label {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--green);
  margin: 30px 0 8px;
}
.svc-card__title { font-size: 25px; letter-spacing: .08em; margin-bottom: 14px; }
.svc-card__body { font-size: 15px; color: #4a4a4a; }
.services__icons {
  display: flex;
  justify-content: center;
  gap: 22px;
}
.services__icons li {
  width: 215px;
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(90, 126, 101, .10);
  padding: 48px 10px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.services__icons img { width: 86px; height: 86px; object-fit: contain; }
.services__icons span { font-size: 14px; font-weight: 500; }

/* ==========================================================
   Flow
   ========================================================== */
.flow { background: var(--beige); padding: 100px 0 120px; }
.flow__inner { max-width: 1260px; margin: 0 auto; padding: 0 40px; }
.flow__steps {
  display: flex;
  justify-content: center;
  gap: 0;
  counter-reset: step;
}
.flow__steps li {
  width: 290px;
  text-align: center;
  position: relative;
}
.flow__steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(50% + 48px);
  width: calc(100% - 96px);
  height: 1px;
  background: #B9C7BB;
}
.flow__circle {
  width: 78px;
  height: 78px;
  margin: 0 auto 42px;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}
.flow__step {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--green);
}
.flow__num {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  color: var(--green);
}
.flow__steps h3 { font-size: 19px; letter-spacing: .06em; margin-bottom: 22px; text-align: center; }
.flow__steps p { font-size: 13.5px; color: #4a4a4a; text-align: center; }
.flow__steps li:last-child { transform: translateX(12px); }
.flow__steps li:last-child p { transform: translateX(7px); }
.flow__note { text-align: center; margin-top: 70px; font-size: 15px; }

/* ==========================================================
   Partnership
   ========================================================== */
.partner {
  background: var(--green-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.partner::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -40px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}
.partner__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 64px 40px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  z-index: 1;
}
.partner__text .sec-label { margin-bottom: 14px; }
.partner__text h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.7;
  margin-bottom: 22px;
}
.partner__text h2 { font-size: 22px; }
.partner__sub {
  display: block;
  font-size: 30px;
  margin-top: 6px;
}
.partner__body { font-size: 15px; color: #DCE4DA; line-height: 1.9; }
/* ── ワンストップ図解 ── */
.onestop {
  position: relative;
  flex-shrink: 0;
  width: 330px;
  max-width: 100%;
  aspect-ratio: 400 / 330;
}
.onestop__ring {
  position: absolute;
  left: 15.5%;
  top: 15.7%;
  width: 69%;
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, .38);
  border-radius: 50%;
}
.onestop__center {
  position: absolute;
  left: 50%;
  top: 57.6%;
  transform: translate(-50%, -50%);
  width: 132px;
  text-align: center;
}
.onestop__home {
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto 8px;
  fill: none;
  stroke: var(--card-beige);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.onestop__label {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.4;
  color: #fff;
}
.onestop__label span {
  display: block;
  font-size: 9px;
  letter-spacing: .26em;
  color: #B9C9BA;
}
.onestop__node {
  position: absolute;
  width: 26%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--card-beige);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.onestop__node svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--green-deep);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.onestop__node p {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: var(--green-deep);
}
.onestop__node--01 { left: 37%; top: 0; }
.onestop__node--02 { left: 7.1%; top: 62.7%; }
.onestop__node--03 { left: 66.9%; top: 62.7%; }

/* ── ワンストップ図解：人物イラスト版 ── */
.il-skin { fill: #F4DAC2; }
.il-hair { fill: #494540; }
.il-hair2 { fill: #5B534A; }
.il-gray { fill: #C2BEB6; }
.il-coat { fill: #fff; }
.il-polo { fill: #8AA891; }
.il-inner { fill: var(--green); }
.il-tan { fill: #CBA76D; }
.il-ink { fill: #3B4A3F; }
.il-o { stroke: #3B4A3F; stroke-width: 2.2; stroke-linejoin: round; stroke-linecap: round; }
.il-ln { fill: none; stroke: #3B4A3F; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.onestop--illust { width: 360px; aspect-ratio: 400 / 390; }
.onestop--illust .onestop__ring { left: 19%; top: 16.2%; width: 62%; }
.onestop--illust .onestop__node {
  width: 28%;
  justify-content: flex-start;
  padding-top: 8%;
  gap: 1px;
  overflow: hidden;
}
/* 4項目を円周上に配置（左上→右上→左下→右下＝本文の記載順） */
.onestop--illust .onestop__node--01 { left: 14.1%; top: 11.2%; }
.onestop--illust .onestop__node--02 { left: 57.9%; top: 11.2%; }
.onestop--illust .onestop__node--03 { left: 14.1%; top: 56.1%; }
.onestop--illust .onestop__node--04 { left: 57.9%; top: 56.1%; }
.onestop--illust .onestop__node svg { width: 64%; height: auto; }
.onestop--illust .onestop__center { top: 48%; width: 26%; }
.onestop--illust .onestop__center svg { display: block; width: 100%; height: auto; }
.onestop__caption {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.4;
  color: #fff;
  white-space: nowrap;
}
.onestop__caption span {
  display: block;
  font-size: 9px;
  letter-spacing: .26em;
  color: #B9C9BA;
}

.partner__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 999px;
  padding: 18px 44px;
  font-size: 16px;
  letter-spacing: .1em;
  color: #fff;
}

/* ==========================================================
   Group（明康会グループの事業所）
   ========================================================== */
.group {
  background: var(--beige-deep);
  padding: 100px 0 110px;
}
.group__inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.group__lead {
  max-width: 640px;
  margin: 0 auto 54px;
  text-align: center;
  font-size: 15px;
  color: var(--gray);
}
.group__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.group__item {
  background: #fff;
  border: 1px solid rgba(157, 179, 160, .45);
  border-radius: 10px;
  text-align: center;
  transition: transform .3s;
}
.group__item:hover { transform: translateY(-4px); }
.group__link {
  display: block;
  padding: 42px 14px 34px;
  color: inherit;
  text-decoration: none;
}
.group__ext {
  display: inline-block;
  margin-left: 4px;
  font-size: 12px;
  color: var(--green);
  transform: translateY(-1px);
}
a.group__link:hover .group__name { color: var(--orange); }
.group__logo {
  height: 110px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.group__logo img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
/* 4つのロゴは形も余白の取り方も違うため、高さを個別に指定して見た目の大きさを揃える */
.group__item:nth-child(1) .group__logo img { height: 78px; }
.group__item:nth-child(2) .group__logo img { height: 100px; }
.group__item:nth-child(3) .group__logo img { height: 90px; }
.group__item:nth-child(4) .group__logo img { height: 66px; }
.group__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--green-deep);
}

/* ==========================================================
   Director Message
   ========================================================== */
.message {
  padding: 140px 0 150px;
  background: #fff;
}
.message__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.message__photo {
  flex-shrink: 0;
  width: 420px;
}
.message__photo img {
  width: 100%;
  border-radius: 16px;
}
.message__caption {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--gray);
  text-align: center;
  line-height: 1.8;
  letter-spacing: .04em;
}
.message__body { flex: 1; }
.message__body .sec-title {
  margin-bottom: 36px;
}
.message__text p {
  font-size: 15px;
  line-height: 1.95;
  color: #4a4a4a;
  margin-bottom: 18px;
}
.message__sig {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--green-line);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .06em;
}

/* ==========================================================
   Staff
   ========================================================== */
.staff { padding: 130px 0 100px; background: var(--beige); }
.staff__inner { max-width: 1236px; margin: 0 auto; padding: 0 40px; }
.staff__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
}
.staff__cards > li {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.staff__photo { flex-shrink: 0; width: 200px; }
/* スタッフ写真は「顔の大きさ25%・頭頂20%・顔の中心を左右中央」に統一して書き出し済み。
   トリミング比率を変える場合も 3:4 を基本とし、object-position は 20% を維持する */
.staff__photo img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 20%; border-radius: 10px; }
.staff__info { flex: 1; min-width: 0; }
.staff__role {
  font-size: 12px;
  color: var(--green);
  margin: 0 0 6px;
}
.staff__name { font-size: 20px; letter-spacing: .1em; margin-bottom: 10px; }
.staff__quals {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.staff__quals li {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.6;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.staff__quals li::before {
  content: "–";
  margin-right: 0.3em;
  color: var(--green);
}
.staff__quals-cert {
  color: var(--green-deep);
  font-weight: 700;
  font-size: 11.5px;
  border-left: 2px solid var(--green);
  padding-left: 0.6em !important;
  text-indent: 0 !important;
  margin-bottom: 2px;
}
.staff__quals-cert::before {
  content: "" !important;
  margin-right: 0 !important;
}
/* 所属学会は資格リストとは別カテゴリのため、1行にまとめて資格の下に置く */
.staff__society {
  font-size: 11px;
  line-height: 1.7;
  color: var(--gray);
  margin: 0 0 10px;
}
/* 学会名の途中で改行させない */
.staff__society span { white-space: nowrap; }
.staff__comment { font-size: 13px; line-height: 1.9; color: var(--gray); }

/* ==========================================================
   FAQ
   ========================================================== */
.faq { padding: 140px 0 90px; background: #fff; }
.faq__inner { max-width: 790px; margin: 0 auto; padding: 0 40px; }
.faq__item { border-top: 1px solid var(--green-line); }
.faq__item:last-child { border-bottom: 1px solid var(--green-line); }
.faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 4px;
  font: inherit;
  color: inherit;
  text-align: left;
}
.faq__mark {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--green);
  flex-shrink: 0;
}
.faq__mark--a { color: var(--orange); font-size: 17px; }
.faq__q-text { font-size: 17px; font-weight: 500; flex: 1; }
.faq__toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-deep);
  position: relative;
  flex-shrink: 0;
}
.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.faq__toggle::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s; }
.is-open .faq__toggle::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner {
  overflow: hidden;
  display: flex;
  gap: 14px;
  padding-left: 42px;
}
.is-open .faq__a-inner { padding-bottom: 28px; }
.faq__a-inner p { font-size: 15px; color: #4a4a4a; }

/* ==========================================================
   Company
   ========================================================== */
.company { background: var(--beige); padding: 120px 0 120px; }
.company__inner { max-width: 780px; margin: 0 auto; padding: 0 40px; }
.company__table div {
  display: flex;
  padding: 17px 6px;
  border-bottom: 1px solid #CDD2C9;
  font-size: 15.5px;
}
.company__table div:first-child { border-top: 1px solid #CDD2C9; }
.company__table dt { width: 175px; flex-shrink: 0; font-weight: 500; }
.company__table dd { color: #4a4a4a; }

/* ==========================================================
   Recruit
   ========================================================== */
.recruit { padding: 110px 0 90px; background: #fff; }
.recruit__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px;
}
.recruit__text { max-width: 560px; }
.recruit__text .sec-title { font-size: 30px; }
.recruit__body { font-size: 15px; margin-bottom: 44px; }
.recruit__btn { width: 230px; height: 58px; font-size: 15px; }
.recruit__photo { position: relative; }
.recruit__photo::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 92%;
  height: 92%;
  background: var(--beige);
  border-radius: 16px;
  z-index: 0;
}
.recruit__photo img {
  position: relative;
  width: 648px;
  border-radius: 16px;
  z-index: 1;
}

/* ==========================================================
   Contact
   ========================================================== */
.contact { background: var(--beige-deep); padding: 120px 0 130px; }
.contact__inner { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.contact__lead { text-align: center; margin-bottom: 60px; font-size: 15.5px; }
.contact__card {
  position: relative;
  max-width: 625px;
  margin: 0 auto;
  background: var(--card-beige);
  border-top: 5px solid var(--green);
  box-shadow: 0 10px 30px rgba(120, 110, 90, .12);
  padding: 56px 40px 64px;
  text-align: center;
  overflow: hidden;
}
.contact__deco {
  position: absolute;
  border: 1px solid #DDD6C5;
  border-radius: 50%;
}
.contact__deco--1 { width: 170px; height: 170px; top: 26px; right: 60px; }
.contact__deco--2 { width: 180px; height: 180px; bottom: 30px; left: -10px; }
.contact__icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__icon svg { width: 34px; height: 34px; fill: #fff; }
.contact__copy { color: var(--green); font-size: 15px; letter-spacing: .12em; }
.contact__line {
  display: block;
  width: 330px;
  max-width: 80%;
  height: 1px;
  background: #9DB3A0;
  margin: 22px auto 28px;
}
.contact__tel {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #4A6B57;
  display: inline-block;
  line-height: 1.3;
}
.contact__hours { font-size: 15px; margin: 6px 0 36px; }
.contact__btn { width: 270px; height: 62px; margin: 0 auto; position: relative; z-index: 1; }

/* ==========================================================
   Footer
   ========================================================== */
.footer { background: var(--footer); color: #fff; padding: 70px 0 0; }
.footer__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px 50px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.footer__info { display: flex; gap: 24px; align-items: flex-start; }
.footer__logo { width: 95px; }
.footer__corp { font-size: 13px; color: #C2C9C0; }
.footer__name { font-size: 21px; font-weight: 700; letter-spacing: .06em; margin-bottom: 18px; }
.footer__addr, .footer__tel { font-size: 14px; color: #A7AFA6; }
.footer__nav ul { display: flex; flex-direction: column; gap: 14px; }
.footer__nav a { font-size: 14px; color: #DCE1DA; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  max-width: 1340px;
  margin: 0 auto;
  padding: 26px 40px 34px;
}
.footer__bottom p {
  text-align: center;
  font-size: 12px;
  letter-spacing: .08em;
  color: #99A199;
}

/* ==========================================================
   Responsive
   ========================================================== */
/* ---- hamburger (hidden on desktop) ---- */
.header__menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 210;
  flex-shrink: 0;
}
.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-deep);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.menu-open .header__menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .header__menu-btn span:nth-child(2) { opacity: 0; }
.menu-open .header__menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header__nav-tel { display: none; }

/* ---- ~1360px（3カラムが窮屈になるため縦積みに） ---- */
@media (max-width: 1360px) {
  .partner__inner { flex-direction: column; align-items: flex-start; gap: 34px; }
  .onestop { margin: 0 auto; }
  .onestop--illust { width: 440px; }
}

/* ---- ~1500px ---- */
@media (max-width: 1500px) {
  .header__nav ul { gap: 20px; }
  .hero__content { min-width: 440px; }
  .hero__title span { font-size: 38px; }
  .hero__btns { width: 360px; margin-left: 0; }
  .about__photo { flex: 1; min-width: 0; }
  .about__photo img { width: 100%; }
  .story__photo { flex: 1; min-width: 0; }
  .story__photo img { width: 100%; }
  .recruit__photo { flex: 1; min-width: 0; }
  .recruit__photo img { width: 100%; }
}

/* ---- ~1100px ---- */
@media (max-width: 1100px) {
  .header__menu-btn { display: block; }
  .header__tel { display: none; }
  .header__nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-open .header__nav { opacity: 1; visibility: visible; }
  .menu-open { overflow: hidden; }
  .header__nav ul { flex-direction: column; gap: 26px; text-align: center; }
  .header__nav a { font-size: 17px; }
  .header__nav-tel { display: block; margin-top: 10px; }
  .header__nav-tel a {
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--green-deep);
  }
  .header__nav-tel small { display: block; font-size: 11px; color: var(--gray); font-family: "Noto Sans JP", sans-serif; }

  .hero__photo { width: 100%; min-height: 0; padding: 0; }
  .hero__slider { -webkit-mask-image: none; mask-image: none; aspect-ratio: 3 / 2; }
  .hero__content {
    position: static;
    transform: none;
    width: auto;
    min-width: 0;
    padding: 48px 24px 56px;
    text-align: center;
  }
  .hero__label { font-size: 18px; margin-bottom: 20px; }
  .hero__title span { font-size: clamp(26px, 6vw, 34px); margin: 0 auto 4px; }
  .hero__lead { font-size: 13px; margin: 24px auto 0; }
  .hero__btns { width: 100%; max-width: 340px; margin: 36px auto 0; }
  .hero__scroll { display: none; }

  .sec-title { font-size: 28px; }
  .sec-divider { margin-bottom: 46px; }
  .sec-divider--left { margin-bottom: 40px; }

  .about { padding: 80px 0 90px; }
  .about__deco { display: none; }
  .about__inner { flex-direction: column; gap: 40px; }
  .about__text { max-width: none; }
  .about__photo { margin-top: 0; }

  .dementia { padding: 80px 0 90px; }
  .dementia__inner { flex-direction: column; gap: 36px; padding: 0 24px; }
  .dementia__worries { width: 100%; padding: 34px 26px 38px; }

  .message { padding: 80px 0 90px; }
  .message__inner { flex-direction: column; gap: 40px; padding: 0 24px; }
  .message__photo { width: 100%; max-width: 420px; margin: 0 auto; }

  .group { padding: 80px 0 90px; }
  .group__inner { padding: 0 24px; }
  .group__lead { margin-bottom: 40px; font-size: 14px; }
  /* 4カラムだと1枚が狭くなりすぎるため2×2に切り替える */
  .group__list { grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 700px; margin: 0 auto; }
  .group__link { padding: 34px 16px 28px; }
  .group__logo { height: 88px; margin-bottom: 18px; }
  .group__item:nth-child(1) .group__logo img { height: 68px; }
  .group__item:nth-child(2) .group__logo img { height: 86px; }
  .group__item:nth-child(3) .group__logo img { height: 78px; }
  .group__item:nth-child(4) .group__logo img { height: 58px; }
  .group__name { font-size: 15px; }

  .story { padding: 80px 0 90px; border-radius: 40px 0 0 0; }
  .story__inner { flex-direction: column-reverse; gap: 40px; }
  .story__photo { margin: 0 0 40px; }
  .story__photo::before { left: -16px; top: 12px; height: calc(100% + 28px); }
  .story__photo img { width: 100%; }
  .story__text { max-width: none; }

  .services { padding: 90px 0 100px; }
  .services__lead { margin-bottom: 50px; }
  .services__cards { flex-direction: column; align-items: center; gap: 50px; margin-bottom: 70px; }
  .svc-card { width: 100%; max-width: 560px; }
  .services__icons { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .services__icons li { width: calc(33.3% - 10px); min-width: 150px; padding: 28px 8px 24px; gap: 12px; }
  .services__icons img { width: 64px; height: 64px; }

  .flow { padding: 80px 0 90px; }
  .flow__steps { flex-direction: column; align-items: center; gap: 44px; }
  .flow__steps li { width: auto; max-width: 420px; }
  .flow__steps li:not(:last-child)::after { display: none; }
  .flow__circle { margin-bottom: 20px; }
  .flow__steps h3 { margin-bottom: 10px; }
  .flow__note { margin-top: 44px; }

  .partner__inner { flex-direction: column; align-items: flex-start; gap: 34px; padding: 56px 24px 60px; }
  .onestop { margin: 0 auto; }
  .partner__text h2 { font-size: 24px; }
  .partner__body br { display: none; }

  .staff { padding: 80px 0 70px; }
  .staff__cards { grid-template-columns: 1fr; gap: 44px; }
  .staff__photo { width: 180px; }

  .faq { padding: 80px 0 60px; }
  .company { padding: 70px 0 80px; }

  .recruit { padding: 80px 0 70px; }
  .recruit__inner { flex-direction: column; gap: 44px; }
  .recruit__text { max-width: none; }
  .recruit__text .sec-title { font-size: 25px; }
  .recruit__body br { display: none; }
  .recruit__photo::after { right: -14px; bottom: -14px; }

  .contact { padding: 80px 0 90px; }
  .contact__lead { margin-bottom: 40px; }

  .footer { padding-top: 50px; }
  .footer__inner { flex-direction: column; gap: 36px; padding-bottom: 36px; }
  .footer__nav ul { flex-direction: row; flex-wrap: wrap; gap: 12px 24px; }
}

/* ---- ~640px ---- */
@media (max-width: 640px) {
  body { font-size: 15px; }
  .header__inner { padding: 10px 14px; gap: 12px; }
  .header__logo { width: 44px; }
  .header__corp { font-size: 9px; }
  .header__name { font-size: 13px; }

  .hero__content { padding: 40px 18px 48px; }
  .hero__btns .btn { height: 54px; font-size: 15px; }

  .sec-label { font-size: 12px; margin-bottom: 12px; }
  .sec-title { font-size: 23px; margin-bottom: 20px; }
  .about { padding: 60px 0 70px; }
  .about__lead br { display: none; }
  .about__lead { margin-bottom: 34px; }

  .group { padding: 60px 0 66px; }
  .group__inner { padding: 0 18px; }
  .group__list { grid-template-columns: 1fr; gap: 14px; max-width: 340px; margin: 0 auto; }
  .group__link { padding: 30px 20px 26px; }

  .dementia { padding: 60px 0 70px; }
  .dementia__inner { padding: 0 16px; gap: 30px; }
  .dementia__worries { padding: 28px 18px 32px; }
  .dementia__worries-title { font-size: 15px; letter-spacing: .02em; }
  .dementia__worries-head { gap: 10px; margin-bottom: 20px; }
  .dementia__worries-illust { width: auto; height: 72px; }
  .dementia__worries-list li { font-size: 13.5px; }

  .message { padding: 60px 0 70px; }
  .message__inner { padding: 0 16px; gap: 32px; }

  .story { padding: 60px 0 70px; }
  .story__text p { margin-bottom: 20px; }

  .services { padding: 70px 0 80px; }
  .services__lead br { display: none; }
  .svc-card__title { font-size: 21px; }
  .services__icons li { width: calc(50% - 7px); min-width: 0; }

  .flow { padding: 60px 0 70px; }
  .flow__steps p br { display: none; }
  .flow__note { font-size: 14px; }

  .partner__text h2 { font-size: 21px; }
  .partner__btn { padding: 14px 30px; font-size: 15px; }
  .onestop { width: 330px; }
  .onestop--illust { width: 330px; }
  .onestop--illust .onestop__node p { font-size: 10.5px; }
  .onestop__caption { font-size: 12px; }
  .onestop__center { width: 112px; }
  .onestop__home { width: 46px; height: 46px; margin-bottom: 6px; }
  .onestop__label { font-size: 12px; }
  .onestop__node svg { width: 27px; height: 27px; }
  .onestop__node p { font-size: 11px; }

  .staff { padding: 60px 0 56px; }
  .staff__cards { gap: 36px; }
  .staff__cards > li { flex-direction: column; gap: 18px; }
  /* 4:3の横長にすると人物写真が左右に余り、顔も小さく見えるため 3:4 のまま幅を絞る */
  .staff__photo { width: 200px; }
  .staff__name { font-size: 17px; }
  .staff__comment { font-size: 12px; }
  .staff__quals li { font-size: 11px; }

  .faq { padding: 60px 0 44px; }
  .faq__q { gap: 12px; padding: 20px 2px; }
  .faq__q-text { font-size: 15px; }
  .faq__toggle { width: 28px; height: 28px; }
  .faq__a-inner { padding-left: 30px; gap: 10px; }
  .faq__a-inner p { font-size: 14px; }
  .faq__a-inner p br { display: none; }

  .company { padding: 56px 0 64px; }
  .company__table div { flex-direction: column; padding: 13px 4px; }
  .company__table dt { width: auto; font-size: 13px; color: var(--green); }

  .recruit { padding: 60px 0 56px; }
  .recruit__text .sec-title { font-size: 21px; }
  .recruit__btn { width: 100%; max-width: 320px; }

  .contact { padding: 60px 0 70px; }
  .contact__lead br { display: none; }
  .contact__lead { font-size: 14px; text-align: left; }
  .contact__card { padding: 40px 20px 44px; }
  .contact__icon { width: 64px; height: 64px; }
  .contact__icon svg { width: 28px; height: 28px; }
  .contact__tel { font-size: 28px; }
  .contact__hours { font-size: 13px; margin-bottom: 28px; }
  .contact__btn { width: 100%; max-width: 280px; height: 56px; }
  .contact__deco--1 { width: 110px; height: 110px; right: 20px; }
  .contact__deco--2 { width: 120px; height: 120px; }

  .footer__info { flex-direction: column; gap: 16px; }
  .footer__logo { width: 76px; }
  .footer__name { font-size: 17px; }
  .footer__addr, .footer__tel { font-size: 13px; }
  .footer__bottom { padding: 20px 16px 26px; }
  .footer__bottom p { font-size: 10px; }
}
