@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --pink: #d4919f;
  --pink-pale: #f5e6e8;
  --pink-deep: #b5606e;
  --orange: #c8895a;
  --yellow: #d4aa6a;
  --cream: #faf6f0;
  --peach: #f0e0d0;
  --teal: #7aada8;
  --sand: #eee0cc;
  --brown: #7a5a48;
  --brown-light: #a8876a;
  --text: #4a3020;
  --text-sub: #7a5a48;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  line-height: 1.85;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* 見出しフォント */
h1,
h2,
h3,
h4,
.sec-title,
.hero-title,
.pillar-name,
.footer-logo,
.h-logo-main {
  font-family: "Zen Maru Gothic", sans-serif !important;
}

/* =========================================
   HEADER
========================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--cream);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 32px;
  gap: 16px;
}

.h-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.h-logo-main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  color: var(--brown);
  display: block;
}

.h-logo-sub {
  font-size: 11px;
  color: var(--text-sub);
  display: block;
  letter-spacing: 0.02em;
}

#gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  list-style: none;
}

#gnav a {
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

#gnav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brown-light);
  border-radius: 2px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

#gnav a:hover {
  color: var(--brown);
}

#gnav a:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* ナビ New バッジ */
.nav-new-badge {
  display: inline-block;
  background: var(--pink-deep);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  letter-spacing: 0.05em;
  vertical-align: middle;
  margin-left: 4px;
  line-height: 1.6;
  position: relative;
  top: -1px;
}

.h-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.h-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  background: var(--brown);
  color: #fff;
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.h-tel:hover {
  opacity: 0.85;
}

.h-contact-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  background: var(--pink-deep);
  color: #fff;
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.h-contact-btn:hover {
  opacity: 0.85;
}

/* =========================================
   HERO / MAIN VISUAL
========================================= */
#hero {
  padding-top: 70px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: linear-gradient(150deg, var(--sand) 0%, var(--cream) 55%, var(--peach) 100%);
  overflow: hidden;
  position: relative;
}

.hero-left {
  padding: 60px 40px 60px 64px;
  z-index: 1;
  text-align: center;
}

.hero-title {
  font-family: "Yusei Magic", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  color: var(--brown);
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--brown);
}

.hero-nowrap {
  white-space: nowrap;
}

/* 「地域へ」は幅不足時だけ改行 */
.hero-chiiki {
  display: inline-block;
  white-space: nowrap;
}

/* 桜デコレーション */
.hero-sakura {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 28px;
  opacity: 0.85;
}

.hero-text {
  font-size: 18px;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 32px;
}

/* 右側：写真エリア */
.hero-right {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  display: block;
}

/* 波ライン区切り */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -70px;
  position: relative;
  z-index: 2;
  background: transparent;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* =========================================
   SECTION COMMONS
========================================= */
.sec {
  padding: 72px 32px;
}

.sec-inner {
  max-width: 860px;
  margin: 0 auto;
}

.sec-bg-white {
  background: #fff;
}

.sec-bg-cream {
  background: var(--cream);
}

/* お知らせセクションだけHEROと差をつけたダスティローズ背景 */
#news {
  background: #eecdc8;
}

.sec-bg-pink {
  background: var(--pink-pale);
}

.sec-bg-sand {
  background: var(--sand);
}

.sec-bg-peach {
  background: var(--peach);
}

.sec-head {
  text-align: center;
  margin-bottom: 48px;
}

.sec-head-en {
  display: block;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--brown-light);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.sec-title {
  font-family: "Kaisei Decol", serif;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--text);
}

.sec-title-sub {
  font-size: 17px;
  color: var(--text-sub);
  margin-top: 10px;
  line-height: 1.8;
}

/* 手描き風区切りSVG */
.hand-divider {
  text-align: center;
  margin: 8px 0;
  opacity: 0.5;
}

/* =========================================
   GREETING
========================================= */
.greeting-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.greeting-text {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
}

.greeting-text p {
  margin-bottom: 1em;
}

.greeting-text p:last-child {
  margin-bottom: 0;
}

.greeting-text strong {
  color: var(--pink-deep);
  font-size: 18px;
}

.greeting-sign {
  text-align: right;
  font-weight: 700;
  color: var(--brown);
  margin-top: 1.5em;
}

.greeting-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 32px rgba(122, 90, 72, 0.18);
  box-shadow: 0 8px 32px rgba(122, 90, 72, 0.18);
  aspect-ratio: 3 / 4;
  -ms-flex-item-align: center;
  align-self: center;
}

.greeting-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.greeting-img-wrap:hover .greeting-img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

/* =========================================
   PILLARS / 3本の柱
========================================= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  border-radius: 28px;
  padding: 52px 28px 40px;
  text-align: center;
  border: none;
  -webkit-box-shadow: 0 8px 32px rgba(74, 48, 32, 0.08);
  box-shadow: 0 8px 32px rgba(74, 48, 32, 0.08);
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-box-shadow 0.4s ease;
  transition: -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-box-shadow 0.4s ease;
}

.pillar-card:nth-child(1) {
  background: linear-gradient(150deg, #FEF2F5 0%, #F8D0DB 100%);
}

.pillar-card:nth-child(2) {
  background: linear-gradient(150deg, #FFFCF0 0%, #F7E5A8 100%);
}

.pillar-card:nth-child(3) {
  background: linear-gradient(150deg, #EEF9F8 0%, #A4D8D4 100%);
}

.pillar-card:hover {
  -webkit-transform: translateY(-12px);
  transform: translateY(-12px);
  -webkit-box-shadow: 0 28px 56px rgba(74, 48, 32, 0.16);
  box-shadow: 0 28px 56px rgba(74, 48, 32, 0.16);
}

/* 英語ラベル */
.pillar-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-light);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.pillar-illust {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  -webkit-filter: drop-shadow(0 4px 12px rgba(74, 48, 32, 0.12));
  filter: drop-shadow(0 4px 12px rgba(74, 48, 32, 0.12));
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pillar-card:hover .pillar-illust {
  -webkit-transform: scale(1.08) translateY(-4px);
  transform: scale(1.08) translateY(-4px);
}

.pillar-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 26px;
  color: var(--brown);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.pillar-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

.pillar-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
  text-align: left;
  width: 100%;
}

.pillar-tagline-num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  font-family: "Zen Maru Gothic", sans-serif;
}

.pillar-tagline-num-1 {
  color: #E8789A;
}

.pillar-tagline-num-2 {
  color: #D4AA6A;
}

.pillar-tagline-num-3 {
  color: #7AADA8;
}

.pillar-tagline-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.6;
}

/* =========================================
   WORRIES
========================================= */
.worries-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.worry-item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1.5px solid var(--pink-pale);
  -webkit-box-shadow: 0 2px 8px rgba(122, 90, 72, 0.06);
  box-shadow: 0 2px 8px rgba(122, 90, 72, 0.06);
  -webkit-transition: border-color 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: border-color 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.worry-item:hover {
  -webkit-transform: translateY(-14px);
  transform: translateY(-14px);
  -webkit-box-shadow: 0 24px 48px rgba(122, 90, 72, 0.18), 0 8px 16px rgba(122, 90, 72, 0.1);
  box-shadow: 0 24px 48px rgba(122, 90, 72, 0.18), 0 8px 16px rgba(122, 90, 72, 0.1);
  border-color: var(--brown-light);
}

.worry-img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  display: block;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.worry-item:hover .worry-img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.worry-item span {
  display: block;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
  color: var(--text);
  background: #fff;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.worries-reassure {
  background: linear-gradient(135deg, var(--sand), var(--peach));
  border-radius: 20px;
  padding: 28px 32px;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  color: var(--pink-deep);
  line-height: 1.7;
}

/* =========================================
   SERVICE
========================================= */
.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.service-item {
  background: var(--cream);
  border-radius: 20px;
  padding: 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  text-align: left;
  border: 1.5px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service-item:hover {
  background: var(--pink-pale);
  border-color: var(--pink);
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
  -webkit-box-shadow: 0 4px 16px rgba(122, 90, 72, 0.1);
  box-shadow: 0 4px 16px rgba(122, 90, 72, 0.1);
}

.service-item svg {
  width: 60px;
  height: 60px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.service-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.service-name-ja {
  font-weight: 700;
  font-size: 18px;
  color: var(--brown);
  margin-bottom: 2px;
}

.service-name-en {
  font-size: 12px;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: block;
}

.service-desc {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.65;
}

.area-single {
  margin-bottom: 40px;
}

.area-single .info-box {
  max-width: 100%;
}

.info-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1.5px solid var(--pink-pale);
}

.info-box-title {
  font-weight: 700;
  font-size: 17px;
  color: var(--brown);
  border-bottom: 2px dashed var(--pink-pale);
  padding-bottom: 10px;
  margin-bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.info-box-body {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.75;
}

.info-box-body strong {
  color: var(--text);
}

.how-to {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  border: 1.5px solid var(--pink-pale);
}

.how-to-title {
  font-weight: 700;
  font-size: 17px;
  color: var(--brown);
  border-bottom: 2px dashed var(--pink-pale);
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.how-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 20px;
  position: relative;
}

.how-step:last-child {
  padding-bottom: 0;
}

.how-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--pink)), to(var(--peach)));
  background: linear-gradient(to bottom, var(--pink), var(--peach));
}

.how-num {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.how-body {
  padding-top: 6px;
}

.how-body strong {
  font-size: 16px;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.how-body span {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
}

.fee-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  border: 1.5px solid var(--pink-pale);
  margin-top: 28px;
}

.fee-box .info-box-title {
  font-weight: 700;
  font-size: 17px;
  color: var(--brown);
  border-bottom: 2px dashed var(--pink-pale);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.fee-box-body p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 12px;
}

.fee-box-body p:last-child {
  margin-bottom: 0;
}

/* =========================================
   FAQ よくある質問
========================================= */
.sec-faq {
  background: #FFF8F0;
  padding: 72px 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-q-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.faq-a-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  justify-content: flex-end;
}

.faq-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.faq-icon svg {
  width: 100%;
  height: 100%;
}

.faq-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.faq-bubble {
  max-width: 520px;
  padding: 14px 22px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  position: relative;
}

.faq-q-bubble {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--pink-pale);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 10px rgba(122, 90, 72, 0.06);
}

.faq-a-bubble {
  background: linear-gradient(135deg, #7AADA8, #5B9E99);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 10px rgba(90, 160, 155, 0.2);
}

.faq-a-icon {
  order: 2;
}

/* =========================================
   RECRUIT 採用情報
========================================= */
.sec-recruit {
  background: var(--text);
  padding: 0;
  overflow: hidden;
}

.recruit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 480px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.recruit-img-col {
  overflow: hidden;
  position: relative;
  background: var(--text);
  height: 723px;
}

.recruit-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
  display: block;
  border-radius: 24px;
}

.recruit-body-col {
  padding: 96px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruit-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.recruit-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin-bottom: 32px;
}

.recruit-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
  color: #fff;
  border-radius: 40px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(181, 96, 110, 0.35);
  align-self: flex-start;
}

.recruit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(181, 96, 110, 0.45);
}

/* bg_r 右側背景装飾（紅型シルエット） */
.sec,
.sec-faq,
.kantaki-body {
  position: relative;
  overflow: hidden;
}

/* bg_r をセクション内右側に配置 */
.sec::before,
.sec-faq::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 340px;
  max-width: 40%;
  background: url("IMG/bg_r.png") right center/auto 100% no-repeat;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}

.sec-inner {
  position: relative;
  z-index: 1;
}

/* =========================================
   ABOUT / 私たちについて
========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.about-map {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--pink-pale);
}

.about-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}

.about-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed var(--pink-pale);
  padding: 14px 0;
  font-size: 16px;
  gap: 16px;
}

.about-info-row:last-child {
  border-bottom: none;
}

.about-key {
  color: var(--brown);
  font-weight: 700;
  width: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.about-val {
  color: var(--text-sub);
  line-height: 1.7;
}

.about-val a {
  color: var(--pink-deep);
  text-decoration: none;
}

.about-tel-num {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.about-open-box {
  background: var(--pink-pale);
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 20px;
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  border: 1.5px dashed var(--pink);
}

.about-open-note {
  color: var(--brown);
  font-weight: 700;
  margin-top: 8px;
  font-size: 15px;
}

.contact-btn-big {
  display: block;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  color: #fff;
  border-radius: 40px;
  padding: 18px 32px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  -webkit-box-shadow: 0 6px 20px rgba(122, 90, 72, 0.25);
  box-shadow: 0 6px 20px rgba(122, 90, 72, 0.25);
  margin-top: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.contact-btn-big:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 28px rgba(217, 106, 138, 0.45);
  box-shadow: 0 10px 28px rgba(217, 106, 138, 0.45);
}

/* =========================================
   NEWS
========================================= */
.news-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--pink-pale);
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.news-card:hover {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.news-thumb {
  background: var(--pink-pale);
  width: 110px;
  min-height: 88px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.news-body {
  padding: 16px 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.news-date {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 6px;
}

.news-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
}

.news-more {
  text-align: center;
}

.news-more a {
  display: inline-block;
  border: 2px solid var(--brown-light);
  color: var(--brown);
  border-radius: 32px;
  padding: 10px 36px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.news-more a:hover {
  background: var(--brown-light);
  color: #fff;
}

/* News - button版（モーダル起動用） */
.news-card--btn {
  border: 1.5px solid var(--pink-pale);
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  width: 100%;
  padding: 0;
  color: inherit;
}

.news-card--btn:hover {
  border-color: var(--pink);
}

.news-card--btn:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

.news-meta {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
}

.news-meta .news-date {
  font-size: 13px;
  color: var(--brown);
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* カード全体を1行レイアウトに */
.news-card--btn { padding: 14px 22px; gap: 14px; }
.news-card--btn .news-body { padding: 0; }
.news-card--btn .news-title { font-size: 15px; line-height: 1.5; }

/* 5件表示＋もっと見る制御 */
.news-card--hidden { display: none !important; }
.news-grid.is-expanded .news-card--hidden { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; }

.news-more-wrap {
  text-align: center;
  margin-top: 8px;
}
.news-more-btn {
  display: inline-block;
  background: #fff;
  color: var(--pink-deep);
  border: 2px solid var(--pink);
  border-radius: 999px;
  padding: 12px 36px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.news-more-btn:hover {
  background: var(--pink);
  color: #fff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.news-more-btn.is-hidden { display: none; }

.news-cat {
  display: inline-block;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}
.news-cat--info     { background: var(--pink); }
.news-cat--recruit  { background: var(--teal); }
.news-cat--event    { background: var(--orange); }
.news-cat--blog     { background: var(--brown-light); }
.news-cat--holiday  { background: var(--pink-deep); }

/* =========================================
   BUSINESS（事業内容）
========================================= */
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

.sec-title-sub {
  text-align: center;
  font-size: 15px;
  color: var(--brown-light);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.business-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  text-decoration: none;
  color: var(--text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: left;
  gap: 18px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  -webkit-box-shadow: 0 10px 28px rgba(74, 48, 32, 0.14);
  box-shadow: 0 10px 28px rgba(74, 48, 32, 0.14);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s, border-color 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

/* ロゴを薄く背景に配置 */
.business-card::before {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 260px;
  height: 260px;
  background: url('../IMG/logo.PNG') center / contain no-repeat;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
.business-card > * {
  position: relative;
  z-index: 1;
}

/* 上段：ロゴ + 見出し（横並び） */
.business-card-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.business-card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 14px 32px rgba(74, 48, 32, 0.12);
  box-shadow: 0 14px 32px rgba(74, 48, 32, 0.12);
}

/* 詳細ページ修正中の一時無効化（後で削除予定） */
.business-card--nolink { cursor: default; }
.business-card--nolink:hover {
  -webkit-transform: none;
  transform: none;
  -webkit-box-shadow: 0 10px 28px rgba(74, 48, 32, 0.14);
  box-shadow: 0 10px 28px rgba(74, 48, 32, 0.14);
}
.business-card--nolink.business-card--nursing:hover { border-color: rgba(212, 145, 159, 0.55); }
.business-card--nolink.business-card--kantaki:hover { border-color: rgba(122, 173, 168, 0.55); }

.business-card--nursing {
  border-color: rgba(212, 145, 159, 0.55);
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#FCE6EB));
  background: linear-gradient(180deg, #ffffff 0%, #FCE6EB 100%);
}
.business-card--nursing:hover { border-color: var(--pink); }

.business-card--kantaki {
  border-color: rgba(122, 173, 168, 0.55);
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#DCEEEB));
  background: linear-gradient(180deg, #ffffff 0%, #DCEEEB 100%);
}
.business-card--kantaki:hover { border-color: var(--teal); }

.business-card-logo {
  width: 200px;
  height: 200px;
  background: transparent;
  border-radius: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.business-card-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* 見出しラッパー（タグ・タイトル・英文の縦並び） */
.business-card-heading {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-width: 0;
}

.business-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brown);
  background: var(--peach);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.business-card--kantaki .business-card-tag {
  background: rgba(122, 173, 168, 0.18);
  color: var(--teal);
}

.business-card-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  margin: 0;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.business-card-title-sub {
  font-size: 0.6em;
  color: var(--brown-light);
  font-weight: 500;
  margin-left: 6px;
}

.business-card-en {
  display: block;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--brown-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.business-card-newbadge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.06em;
  background: var(--pink);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: none;
}

.business-card-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 22px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.business-card-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  border: 2px solid var(--brown-light);
  border-radius: 999px;
  padding: 8px 24px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.business-card:hover .business-card-link {
  background: var(--brown-light);
  color: #fff;
}

/* =========================================
   CONTACT
========================================= */
/* お問い合わせセクション 背景画像 + 薄いベール */
#contact {
  background-color: var(--cream);
  background-image:
    linear-gradient(180deg, rgba(255, 250, 244, 0.78) 0%, rgba(255, 250, 244, 0.72) 100%),
    url('../IMG/bg_contact.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  position: relative;
}
#contact > .sec-inner {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-card {
  background: #fff;
  border-radius: 26px;
  padding: 44px 32px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(74, 48, 32, 0.10);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 220px;
  height: 220px;
  background: url('../IMG/logo.PNG') center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(74, 48, 32, 0.14);
}

.contact-card--tel {
  border-color: rgba(95, 135, 100, 0.5);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(190, 215, 188, 0.94) 100%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.contact-card--tel:hover { border-color: rgba(70, 110, 78, 0.75); }

.contact-card--form {
  border-color: rgba(178, 150, 110, 0.4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(232, 218, 196, 0.92) 100%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.contact-card--form:hover { border-color: rgba(150, 118, 80, 0.7); }

.contact-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.contact-card--tel .contact-card-icon { background: rgba(165, 195, 162, 0.75); color: #3d5e44; }
.contact-card--form .contact-card-icon { background: rgba(215, 196, 162, 0.55); color: #8a6c45; }

.contact-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 16px;
  border-radius: 999px;
  text-transform: uppercase;
}
.contact-card--tel .contact-card-tag { background: rgba(165, 195, 162, 0.75); color: #2e4a36; }
.contact-card--form .contact-card-tag { background: rgba(215, 196, 162, 0.55); color: #6e5232; }

.contact-card-title {
  font-family: "Kaisei Decol", serif;
  font-size: 22px;
  color: var(--text);
  margin: 4px 0 0;
  font-weight: 500;
  white-space: nowrap;
}

.contact-card-tel-num {
  font-family: "Kaisei Decol", serif;
  font-size: 38px;
  font-weight: 700;
  color: #2e4a36;
  letter-spacing: 0.06em;
  margin-top: 4px;
  line-height: 1.1;
}

.contact-card-hours {
  font-size: 17px;
  color: var(--text-sub);
  line-height: 1.85;
  margin: 8px 0 0;
  font-weight: 500;
}

.contact-card-desc {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.9;
  margin: 4px 0 0;
  flex-grow: 1;
}

.contact-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #8a6c45;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 999px;
  margin-top: 8px;
  box-shadow: 0 6px 18px rgba(138, 108, 69, 0.35);
  transition: all 0.2s;
}
.contact-card--form:hover .contact-card-btn {
  background: #6e5634;
  transform: translateY(-2px);
}

.contact-card-note {
  font-size: 11px;
  color: var(--text-sub);
  margin: 6px 0 0;
  line-height: 1.6;
}

.contact-privacy-note {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.85;
}

.privacy-note {
  background: var(--cream);
  border-radius: 12px;
  padding: 16px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 16px;
  border: 1px solid var(--pink-pale);
}

.contact-form-link-wrap {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--pink-pale);
}

.contact-form-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink-deep);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 18px 40px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 6px 18px rgba(212, 132, 132, 0.25);
}

.contact-form-link-btn:hover {
  background: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 132, 132, 0.35);
}

.contact-form-link-btn-arrow {
  font-size: 18px;
}

.contact-form-link-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-sub);
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.form-label {
  -ms-flex: 0 0 160px;
  flex: 0 0 160px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0;
}

.form-req {
  color: var(--pink-deep);
  font-size: 13px;
  margin-left: 4px;
}

.form-input,
.form-textarea {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: auto;
  border: 2px solid var(--pink-pale);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.form-group:has(.form-textarea) {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.form-group:has(.form-textarea) .form-label {
  padding-top: 12px;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--brown-light);
  background: #fff;
}

.form-textarea {
  height: 110px;
  resize: vertical;
}

.form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 16px;
}

.form-check input {
  margin-top: 3px;
  accent-color: var(--pink-deep);
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 4px 16px rgba(122, 90, 72, 0.25);
  box-shadow: 0 4px 16px rgba(122, 90, 72, 0.25);
}

.form-submit:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 24px rgba(122, 90, 72, 0.35);
  box-shadow: 0 8px 24px rgba(122, 90, 72, 0.35);
}

/* =========================================
   FOOTER
========================================= */
#footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.65);
  padding: 56px 32px 28px;
  text-align: center;
}

/* フッター上部：ロゴ */
.footer-top {
  margin-bottom: 40px;
}

.footer-logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}

.footer-logo-img {
  width: 72px;
  height: 72px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background: transparent;
}

.footer-logo-name {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

.footer-logo-sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

/* 基本情報 + 地図 */
.footer-info-wrap {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: left;
}

.footer-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.footer-info-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.footer-info-key {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  padding-top: 2px;
}

.footer-info-val {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-info-val a {
  color: var(--pink-light);
  text-decoration: none;
}

.footer-tel-num {
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-open-box {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 14px;
  line-height: 1.8;
  margin-top: 4px;
}

/* =========================================
   ACCESS
========================================= */
.access-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}

.access-info-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(122, 90, 72, 0.18);
}

.access-info-row:first-child {
  padding-top: 4px;
}

.access-info-key {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brown-light);
  text-transform: uppercase;
  margin: 0;
}

.access-info-val {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin: 0;
  word-break: break-word;
}

.access-info-val a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.access-info-val a:hover {
  color: var(--pink-deep);
}

.access-info-tel {
  font-family: "Kaisei Decol", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--pink-deep) !important;
}

.access-open-box {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  padding: 16px 18px;
  line-height: 1.8;
}

.access-open-row {
  font-size: 14px;
  color: var(--text);
  margin: 0;
}

.access-open-label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--brown-light);
  margin-right: 4px;
}

.access-open-note {
  font-size: 12px;
  color: var(--text-sub);
  margin: 6px 0 0;
}

.access-note {
  background: var(--pink-pale);
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.access-note p {
  margin: 0;
}

.access-map {
  border-radius: 18px;
  overflow: hidden;
  height: 300px;
  -webkit-box-shadow: 0 6px 24px rgba(122, 90, 72, 0.15);
  box-shadow: 0 6px 24px rgba(122, 90, 72, 0.15);
}

/* ナビ */
.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 13px;
  opacity: 0.8;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}

/* =========================================
   PAGE TOP
========================================= */
#pagetop {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: var(--brown);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1px;
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 16px rgba(74, 48, 32, 0.35);
  box-shadow: 0 4px 16px rgba(74, 48, 32, 0.35);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(12px);
  transform: translateY(12px);
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
  z-index: 100;
}

#pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#pagetop:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  background: var(--pink-deep);
}

.pagetop-arrow {
  font-size: 14px;
  line-height: 1;
}

.pagetop-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* =========================================
   MODAL
========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 48, 32, 0.55);
  backdrop-filter: blur(4px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #fff;
  border-radius: 24px;
  max-width: 480px;
  width: 90%;
  overflow: hidden;
  position: relative;
  -webkit-transform: translateY(24px) scale(0.96);
  transform: translateY(24px) scale(0.96);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-box-shadow: 0 24px 64px rgba(74, 48, 32, 0.25);
  box-shadow: 0 24px 64px rgba(74, 48, 32, 0.25);
}

.modal-overlay.is-open .modal-box {
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--brown);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: var(--pink-pale);
}

.modal-img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  display: block;
}

.modal-text {
  padding: 20px 24px 28px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  text-align: center;
  font-weight: 700;
}

/* News Modal */
.news-modal-box {
  max-width: 560px;
}

.news-modal-inner {
  padding: 36px 32px 32px;
}

.news-modal-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.news-modal-date {
  font-size: 14px;
  color: var(--brown);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-modal-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1.5px dashed var(--pink-pale);
}

.news-modal-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  text-align: left;
  font-weight: 400;
  margin: 0;
  white-space: pre-wrap;
}

/* =========================================
   サービスセクション バナー（訪問看護 / 看多機）
========================================= */
.svc-banner {
  position: relative;
  padding: 56px 24px 52px;
  text-align: center;
  overflow: hidden;
}

.svc-banner--hanahana {
  background: linear-gradient(135deg, #FFF0F4 0%, #FAF0E8 50%, #FFF8F0 100%);
  border-bottom: 2px solid rgba(212, 145, 159, 0.18);
}

.svc-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.svc-banner-tag {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-radius: 40px;
  padding: 5px 22px;
  text-transform: uppercase;
}

.svc-banner-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--brown);
  margin: 0;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.svc-banner-sub {
  font-size: 15px;
  color: rgba(100, 60, 40, 0.65);
  letter-spacing: 0.1em;
  margin: 0;
}

/* =========================================
   看多機 はなはなのおうち
========================================= */
.sec-bg-kantaki {
  background: linear-gradient(150deg, #FFF8F2 0%, #FDE8D8 60%, #F5D5C0 100%);
}

/* ---- 建物ヒーロー画像 ---- */
.kantaki-hero {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  line-height: 0;
}

.kantaki-hero-img {
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.kantaki-hero-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(40, 20, 10, 0.82)), color-stop(45%, rgba(40, 20, 10, 0.45)), to(rgba(40, 20, 10, 0.1)));
  background: linear-gradient(to top, rgba(40, 20, 10, 0.82) 0%, rgba(40, 20, 10, 0.45) 45%, rgba(40, 20, 10, 0.1) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 40px 24px 48px;
  text-align: center;
  gap: 12px;
}

.kantaki-hero-tag {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  padding: 0;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.kantaki-hero-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(36px, 7vw, 64px);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.06em;
  margin: 0;
}

.kantaki-hero-open {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: rgba(212, 100, 120, 0.88);
  border-radius: 40px;
  padding: 14px 36px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.kantaki-hero-date,
.kantaki-hero-loc {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.kantaki-hero-sep {
  width: 1.5px;
  height: 24px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}

.kantaki-hero-status {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.08em;
}

.kantaki-hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.12em;
  margin: 0;
}

.kantaki-hero-catch {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(16px, 2.4vw, 22px);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.75;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ---- コンテンツエリア ---- */
.kantaki-body {
  padding: 64px 32px;
}

.kantaki-body .sec-head {
  margin-bottom: 48px;
  text-align: center;
}

.kantaki-body .sec-title {
  font-size: clamp(18px, 2.6vw, 24px);
  color: var(--brown);
  line-height: 1.8;
  margin-top: 8px;
}

/* ---- 3サービス カード ---- */
.kantaki-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.kantaki-service-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(180, 100, 80, 0.1);
  border: 1.5px solid rgba(212, 160, 140, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.kantaki-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(180, 100, 80, 0.16);
}

.kantaki-service-action {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 40px;
  padding: 5px 20px;
}

.kantaki-service-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.4;
}

.kantaki-service-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.85;
  margin: 0;
}

/* ---- 底部キャッチコピー ---- */
.kantaki-bottom-catch {
  text-align: center;
  padding: 40px 24px;
}

.kantaki-bottom-main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}

.kantaki-bottom-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.08em;
  margin: 0;
}

.kantaki-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.kantaki-lead {
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 20px;
  line-height: 1.65;
  border-left: 4px solid var(--pink);
  padding-left: 16px;
}

.kantaki-desc p {
  font-size: 17px;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 16px;
}

.kantaki-desc p:last-child {
  margin-bottom: 0;
}

/* ---- ヴェン図（3つの重なる丸） ---- */
.kantaki-venn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 0;
}

.kantaki-venn {
  position: relative;
  width: 270px;
  height: 250px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.venn-circle {
  position: absolute;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.venn-circle:hover {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
  z-index: 10;
}

/* ショートステイ（左上） */
.venn-short {
  top: 0;
  left: 0;
  background: rgba(90, 160, 200, 0.72);
}

/* デイサービス（右上） */
.venn-day {
  top: 0;
  right: 0;
  background: rgba(100, 175, 165, 0.72);
}

/* 訪問看護・訪問介護（下中央） */
.venn-visit {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(244, 160, 181, 0.72);
  font-size: 15px;
}

.venn-visit:hover {
  -webkit-transform: translateX(-50%) scale(1.06);
  transform: translateX(-50%) scale(1.06);
}

/* =========================================
   フッター ロゴ名
========================================= */
.footer-logo-name {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* =========================================
   ヘッダー ロゴ名テキスト
========================================= */
.h-logo-name-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.h-logo-main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  display: block;
  line-height: 1.3;
}

.h-logo-sub {
  font-size: 11px;
  color: var(--text-sub);
  display: block;
  letter-spacing: 0.05em;
}

/* =========================================
   ハンバーガーボタン
========================================= */
.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.hamburger:hover {
  background: var(--pink-pale);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.2s ease, -webkit-transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, -webkit-transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: center;
  transform-origin: center;
}

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

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

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

/* =========================================
   ドロワーメニュー
========================================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 48, 32, 0.45);
  backdrop-filter: blur(3px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100dvh;
  background: var(--cream);
  z-index: 400;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: -6px 0 40px rgba(74, 48, 32, 0.18);
  box-shadow: -6px 0 40px rgba(74, 48, 32, 0.18);
  overflow-y: auto;
}

.drawer.is-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--brown);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.drawer-close:hover {
  background: var(--pink-pale);
}

.drawer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 28px 24px 20px;
  border-bottom: 1.5px dashed var(--pink-pale);
}

.drawer-logo-img {
  height: 48px;
  width: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.drawer-logo-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.5;
}

.drawer-nav {
  list-style: none;
  padding: 12px 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.drawer-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--pink-pale);
  -webkit-transition: background 0.18s, color 0.18s, padding-left 0.2s;
  transition: background 0.18s, color 0.18s, padding-left 0.2s;
  gap: 10px;
}

.drawer-nav li a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  opacity: 0.7;
}

.drawer-nav li a:hover {
  background: var(--pink-pale);
  color: var(--brown);
  padding-left: 36px;
}

.drawer-btns {
  padding: 20px 24px 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  border-top: 1.5px dashed var(--pink-pale);
}

.drawer-btns .h-tel,
.drawer-btns .h-contact-btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

/* =========================================
   LOGO PNG
========================================= */
.h-logo-img-png {
  height: 52px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 8px;
}

/* =========================================
   RESPONSIVE
   ~480px  → スマホ（小）
   ~768px  → スマホ / タブレット
   ~1024px → タブレット / 小さいPC
   1280px+ → デスクトップ（デフォルト）
========================================= */
/* ---- タブレット / 小さいPC（〜1024px） ---- */
@media (max-width: 1024px) {
  /* ヘッダー: ハンバーガー表示 */
  #gnav {
    display: none;
  }
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sec-inner {
    max-width: 100%;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pillar-card:last-child {
    grid-column: 1/-1;
    max-width: 420px;
    margin: 0 auto;
  }
  .kantaki-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .kantaki-venn {
    width: 220px;
    height: 205px;
  }
  .venn-circle {
    width: 128px;
    height: 128px;
    font-size: 14px;
  }
  .venn-visit {
    font-size: 13px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .kantaki-hero-img {
    height: 420px;
  }
  .kantaki-hero {
    max-height: 420px;
  }
  .kantaki-services {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .kantaki-service-card {
    padding: 24px 16px 20px;
  }
}
/* ---- スマホ / タブレット（〜768px） ---- */
@media (max-width: 768px) {
  /* ヘッダー */
  .h-btns {
    gap: 6px;
  }
  .h-tel,
  .h-contact-btn {
    font-size: 13px;
    padding: 7px 12px;
  }
  .h-logo-name-wrap {
    display: none;
  }
  /* ヒーロー */
  #hero {
    grid-template-columns: 1fr;
    min-height: 85vh;
  }
  .hero-right {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 0;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
  }
  .hero-right img {
    -o-object-position: center center;
    object-position: center center;
  }
  .hero-left {
    padding: 48px 24px 40px;
    position: relative;
    z-index: 1;
  }
  /* セクション共通 */
  .sec {
    padding: 56px 20px;
  }
  .kantaki-body {
    padding: 48px 20px;
  }
  /* ごあいさつ */
  .greeting-wrap {
    grid-template-columns: 1fr;
  }
  .greeting-img-wrap {
    height: auto;
    min-height: unset;
    aspect-ratio: 1/1;
  }
  .greeting-img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
  }
  /* 3つの柱 */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pillar-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }
  /* Your Worries */
  .worries-list {
    grid-template-columns: 1fr 1fr;
  }
  /* サービス */
  .service-list {
    gap: 10px;
  }
  .service-item {
    padding: 16px 18px;
    gap: 14px;
  }
  /* 看多機 */
  .kantaki-hero-img {
    height: 320px;
  }
  .kantaki-hero {
    max-height: 320px;
  }
  .kantaki-hero-open {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12px 20px;
    gap: 6px;
  }
  .kantaki-hero-sep {
    display: none;
  }
  .kantaki-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .kantaki-venn {
    width: 260px;
    height: 240px;
  }
  .venn-circle {
    width: 150px;
    height: 150px;
    font-size: 15px;
  }
  .kantaki-services {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .kantaki-body {
    padding: 48px 20px;
  }
  .kantaki-bottom-catch {
    padding: 28px 20px;
  }
  /* 私たちについて */
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-map {
    height: 280px;
  }
  /* お知らせ */
  .news-thumb {
    width: 88px;
    min-height: 72px;
  }
  .news-title {
    font-size: 15px;
  }
  /* お問い合わせ */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-card { padding: 36px 24px 28px; border-radius: 22px; }
  .contact-card-icon { width: 68px; height: 68px; }
  .contact-card-icon svg { width: 34px; height: 34px; }
  .contact-card-title { font-size: 19px; }
  .contact-card-tel-num { font-size: 30px; }
  .contact-card-btn { padding: 12px 28px; font-size: 14px; }
  .form-group {
    display: block;
  }
  .form-label {
    -ms-flex: none;
    flex: none;
    display: block;
    margin-bottom: 6px;
  }
  .form-input,
  .form-textarea {
    width: 100%;
  }
  .form-group:has(.form-textarea) .form-label {
    padding-top: 0;
  }
  /* FAQ */
  .faq-bubble {
    font-size: 15px;
    padding: 12px 16px;
  }
  .faq-icon {
    width: 42px;
    height: 42px;
  }
  /* Recruit */
  .recruit-inner {
    grid-template-columns: 1fr;
  }
  .recruit-img-col {
    height: 280px;
  }
  .recruit-body-col {
    padding: 40px 28px;
  }
  .recruit-btn {
    align-self: stretch;
  }
  /* Pillar tagline */
  .pillar-tagline {
    padding-top: 16px;
  }
  .pillar-tagline-num {
    font-size: 36px;
  }
}
/* ---- スマホ（小）〜480px ---- */
@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  /* ヘッダー */
  #header {
    padding: 8px 16px;
  }
  .h-logo-img-png {
    height: 40px;
  }
  .h-tel {
    display: none;
  }
  /* ヒーロー */
  .hero-title {
    font-size: clamp(28px, 8vw, 36px);
  }
  .hero-text {
    font-size: 16px;
  }
  /* セクション共通 */
  .sec {
    padding: 48px 16px;
  }
  .kantaki-body {
    padding: 40px 16px;
  }
  .sec-title {
    font-size: clamp(22px, 6vw, 28px);
  }
  /* Your Worries: 1列 */
  .worries-list {
    grid-template-columns: 1fr;
  }
  /* サービス */
  .service-item svg {
    width: 48px;
    height: 48px;
  }
  .service-name-ja {
    font-size: 16px;
  }
  /* 看多機 ヒーロー */
  .kantaki-hero-img {
    height: 260px;
  }
  .kantaki-hero {
    max-height: 260px;
  }
  .kantaki-hero-title {
    font-size: clamp(28px, 8vw, 40px);
  }
  .kantaki-hero-open {
    padding: 10px 16px;
  }
  .kantaki-hero-date,
  .kantaki-hero-loc {
    font-size: 16px;
  }
  .kantaki-hero-status {
    font-size: 14px;
  }
  /* ヴェン図: やや小さく */
  .kantaki-venn {
    width: 220px;
    height: 204px;
  }
  .venn-circle {
    width: 127px;
    height: 127px;
    font-size: 14px;
  }
  .venn-visit {
    font-size: 13px;
  }
  /* お知らせ */
  .news-thumb {
    width: 72px;
    min-height: 60px;
  }
  .news-body {
    padding: 12px 14px;
  }
  .news-title {
    font-size: 14px;
  }
  /* フッター */
  .footer-info-row {
    grid-template-columns: 70px 1fr;
  }
  /* アクセス */
  .access-wrap {
    grid-template-columns: 1fr;
  }
  .access-map {
    height: 220px;
  }
  .access-info-row {
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 12px 0;
  }
  .access-info-tel {
    font-size: 20px;
  }
  .footer-nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  /* FAQ */
  .sec-faq {
    padding: 48px 16px;
  }
  .faq-q-row, .faq-a-row {
    gap: 8px;
  }
  .faq-bubble {
    font-size: 14px;
    padding: 10px 14px;
  }
  .faq-icon {
    width: 36px;
    height: 36px;
  }
  /* Recruit */
  .recruit-body-col {
    padding: 32px 20px;
  }
  .recruit-title {
    font-size: 28px;
  }
}

/* ---- News / Business / News Modal レスポンシブ追加 ---- */
@media (max-width: 768px) {
  .news-meta {
    width: 96px;
    min-height: 72px;
    gap: 6px;
  }
  .news-meta .news-date { font-size: 12px; }
  .news-cat { font-size: 10px; padding: 2px 8px; }

  .business-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .business-card {
    text-align: center;
    padding: 32px 24px;
    gap: 18px;
  }
  .business-card-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
  }
  .business-card-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 0;
  }
  .business-card-heading {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .news-modal-inner { padding: 32px 22px 26px; }
  .news-modal-title { font-size: 19px; }
  .news-modal-body  { font-size: 15px; }
}

@media (max-width: 480px) {
  .news-meta {
    width: 80px;
    min-height: 64px;
    padding: 10px 4px;
  }
  .news-meta .news-date { font-size: 11px; }
  .news-cat { font-size: 9px; padding: 2px 6px; }

  .business-card {
    padding: 28px 20px 24px;
    border-radius: 18px;
  }
  .business-card-logo {
    width: 96px;
    height: 96px;
  }
  .business-card-desc { font-size: 14px; }
  .business-card-title { font-size: 20px; }

  .news-modal-inner { padding: 28px 18px 22px; }
  .news-modal-title { font-size: 17px; }
}

/* =========================================
   応援・寄付セクション（DONATION）
========================================= */
.donation-lead {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 2;
  color: var(--text);
  text-align: center;
}
.donation-lead p { margin: 0 0 18px; }
.donation-lead p:last-child { margin-bottom: 0; }

.donation-section-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 700;
  text-align: center;
  color: var(--text);
  margin: 12px 0 24px;
  letter-spacing: 0.04em;
}
.donation-section-title::before,
.donation-section-title::after {
  content: "❀";
  color: var(--pink);
  margin: 0 12px;
  font-size: 0.7em;
  vertical-align: 3px;
  opacity: 0.75;
}

.donation-ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto 36px;
}
.donation-way-card {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center 20px;
  background-size: 140px 140px;
  border-radius: 22px;
  padding: 180px 24px 24px;
  text-align: center;
  -webkit-box-shadow: 0 8px 26px rgba(74, 48, 32, 0.07);
  box-shadow: 0 8px 26px rgba(74, 48, 32, 0.07);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
}
.donation-way-card--kifu1 {
  background-image: url('../IMG/kifu-1.png');
}
.donation-way-card--kifu2 {
  background-image: url('../IMG/kifu-2.png');
}
.donation-way-card--kifu3 {
  background-image: url('../IMG/kifu-3.png');
}
.donation-way-card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 14px 32px rgba(74, 48, 32, 0.10);
  box-shadow: 0 14px 32px rgba(74, 48, 32, 0.10);
}
.donation-way-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--pink-deep);
  margin: 0 0 10px;
}
.donation-way-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
  margin: 0;
}

.donation-notice {
  background: #fff;
  border-radius: 24px;
  padding: 28px 28px 24px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  border: 2px dashed var(--pink);
}
.donation-notice-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--pink-deep);
  margin: 0 0 10px;
  letter-spacing: 0.04em;
}
.donation-notice p {
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 18px;
  color: var(--text);
}
.donation-cta-btn {
  display: inline-block;
  background: var(--pink-deep);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 36px;
  border-radius: 999px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.donation-cta-btn:hover {
  background: var(--pink);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .donation-ways { grid-template-columns: 1fr; max-width: 480px; }
  .donation-notice { padding: 22px 20px; border-radius: 20px; }
  .donation-section-title::before,
  .donation-section-title::after { margin: 0 8px; }
}

/* =========================================
   詳細ページ共通：寒色パレット・HERO・概要
========================================= */
.sec-bg-mint { background: #E8F2EE; }
.sec-bg-sky  { background: #E8EEF4; }

/* ページHERO（TOP画像） */
.page-hero {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}
.page-hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(60%, rgba(0, 0, 0, 0.32)), color-stop(100%, rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.32) 60%, rgba(0, 0, 0, 0.5) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 28px 20px;
}
.page-hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.page-hero--warm .page-hero-tag { color: var(--pink-deep); }
.page-hero--cool .page-hero-tag { color: #4A7B76; }
.page-hero-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.page-hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  margin: 0;
}
.page-hero-placeholder-note {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* 概要セクション */
.page-overview {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 2;
  color: var(--text);
}
.page-overview p { margin: 0 0 18px; }
.page-overview p:last-child { margin-bottom: 0; }

/* 事業所概要テーブル（丸っこくて可愛い） */
.profile-table {
  background: #fff;
  border-radius: 28px;
  padding: 10px 0;
  margin: 32px auto 0;
  max-width: 720px;
  -webkit-box-shadow: 0 8px 26px rgba(74, 48, 32, 0.07);
  box-shadow: 0 8px 26px rgba(74, 48, 32, 0.07);
  overflow: hidden;
}
.profile-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1.5px dashed rgba(74, 48, 32, 0.12);
  gap: 14px;
}
.profile-row:last-child { border-bottom: none; }
.profile-key {
  font-weight: 700;
  font-size: 14px;
  color: var(--brown);
  width: 200px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.profile-val {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}

/* 寒色ページでのアクセント色 */
.sec-bg-mint .profile-key,
.sec-bg-sky .profile-key { color: #4A7B76; }
.sec-bg-mint .profile-row,
.sec-bg-sky .profile-row { border-bottom-color: rgba(74, 123, 118, 0.20); }

@media (max-width: 600px) {
  .profile-table { border-radius: 22px; margin-top: 24px; }
  .profile-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 14px 22px;
    gap: 4px;
  }
  .profile-key {
    width: auto;
    font-size: 12px;
  }
  .profile-val { font-size: 14px; }
}

/* =========================================
   看多機 費用セクション 詳細デザイン
========================================= */
.fee-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 2;
  color: var(--text);
}
.fee-intro strong {
  color: #4A7B76;
  font-weight: 700;
}

.fee-section-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 700;
  text-align: center;
  color: var(--text);
  margin: 44px 0 22px;
  letter-spacing: 0.04em;
}
.fee-section-title::before,
.fee-section-title::after {
  content: "✿";
  color: #7AADA8;
  margin: 0 12px;
  font-size: 0.7em;
  vertical-align: 3px;
  opacity: 0.7;
}

/* 番号付きブロック */
.fee-detail-block {
  background: #fff;
  border-radius: 24px;
  padding: 26px 28px 22px;
  margin: 0 auto 18px;
  max-width: 760px;
  -webkit-box-shadow: 0 8px 26px rgba(74, 48, 32, 0.07);
  box-shadow: 0 8px 26px rgba(74, 48, 32, 0.07);
}
.fee-detail-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.fee-detail-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right bottom, from(#5A8A86), to(#7AADA8));
  background: linear-gradient(135deg, #5A8A86, #7AADA8);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.fee-detail-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.fee-detail-lead {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
}

/* 料金表 */
.fee-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #F2F8F7;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}
.fee-table th, .fee-table td {
  padding: 12px 18px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1.5px dashed rgba(74, 123, 118, 0.22);
}
.fee-table tr:last-child td { border-bottom: none; }
.fee-table th {
  background: #D6E8E4;
  color: #4A7B76;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.fee-table td:first-child {
  font-weight: 700;
  color: #4A7B76;
  width: 40%;
}
.fee-table tr:last-child td:last-child {
  color: #4A7B76;
  font-weight: 700;
}

/* 加算リスト */
.fee-bullet-heading {
  font-size: 13px;
  color: #4A7B76;
  font-weight: 700;
  margin: 8px 0 10px;
  letter-spacing: 0.04em;
}
.fee-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.fee-bullet-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}
.fee-bullet-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #5A8A86;
  font-weight: 700;
}

.fee-note {
  font-size: 12px;
  color: var(--brown-light);
  line-height: 1.75;
  margin: 8px 0 0;
}

/* お支払いボックス */
.fee-payment-box {
  background: #fff;
  border-radius: 22px;
  padding: 22px 28px;
  margin: 24px auto;
  max-width: 760px;
  -webkit-box-shadow: 0 8px 26px rgba(74, 48, 32, 0.07);
  box-shadow: 0 8px 26px rgba(74, 48, 32, 0.07);
  border-left: 5px solid #7AADA8;
}
.fee-payment-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #4A7B76;
}
.fee-payment-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
}

/* 特徴 2カラム */
.fee-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto 24px;
}
.fee-feature {
  background: #fff;
  border-radius: 22px;
  padding: 22px 24px;
  -webkit-box-shadow: 0 8px 26px rgba(74, 48, 32, 0.07);
  box-shadow: 0 8px 26px rgba(74, 48, 32, 0.07);
  border-top: 4px solid #7AADA8;
}
.fee-feature-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #4A7B76;
  margin: 0 0 10px;
}
.fee-feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
}

/* シミュレーション */
.fee-simulation {
  background: -webkit-gradient(linear, left top, right bottom, from(#D6E8E4), to(#E8F2EE));
  background: linear-gradient(135deg, #D6E8E4, #E8F2EE);
  border-radius: 24px;
  padding: 28px 28px 24px;
  margin: 0 auto 28px;
  max-width: 760px;
  -webkit-box-shadow: 0 8px 26px rgba(74, 123, 118, 0.10);
  box-shadow: 0 8px 26px rgba(74, 123, 118, 0.10);
}
.fee-simulation-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #4A7B76;
  text-align: center;
  margin: 0 0 6px;
}
.fee-simulation-sub {
  text-align: center;
  font-size: 14px;
  color: var(--text);
  margin: 0 0 18px;
  font-weight: 700;
}
.fee-simulation .fee-table { background: #fff; }

/* CTAボックス */
.fee-cta-box {
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  border: 2px dashed #7AADA8;
}
.fee-cta-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 700;
  color: #4A7B76;
  margin: 0 0 10px;
}
.fee-cta-text {
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
  color: var(--text);
}

/* サブ見出し（基本料金内の「介護保険」「医療保険」見出し用） */
.fee-sub-heading {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #4A7B76;
  margin: 22px 0 8px;
  letter-spacing: 0.04em;
  padding-left: 12px;
  border-left: 4px solid #7AADA8;
}
.fee-sub-heading:first-child { margin-top: 0; }

/* 暖色バリアント（訪問看護ページなど sec-bg-cream / sec-bg-peach 配下で自動切替） */
.sec-bg-cream .fee-detail-num,
.sec-bg-peach .fee-detail-num {
  background: -webkit-gradient(linear, left top, right bottom, from(var(--pink-deep)), to(var(--pink)));
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
}
.sec-bg-cream .fee-intro strong,
.sec-bg-peach .fee-intro strong { color: var(--pink-deep); }
.sec-bg-cream .fee-section-title::before,
.sec-bg-cream .fee-section-title::after,
.sec-bg-peach .fee-section-title::before,
.sec-bg-peach .fee-section-title::after { color: var(--pink); }
.sec-bg-cream .fee-table,
.sec-bg-peach .fee-table { background: #FFF5F7; }
.sec-bg-cream .fee-table th,
.sec-bg-peach .fee-table th {
  background: var(--pink-pale);
  color: var(--pink-deep);
}
.sec-bg-cream .fee-table th, .sec-bg-cream .fee-table td,
.sec-bg-peach .fee-table th, .sec-bg-peach .fee-table td {
  border-bottom-color: rgba(212, 145, 159, 0.22);
}
.sec-bg-cream .fee-table td:first-child,
.sec-bg-peach .fee-table td:first-child { color: var(--pink-deep); }
.sec-bg-cream .fee-table tr:last-child td:last-child,
.sec-bg-peach .fee-table tr:last-child td:last-child { color: var(--pink-deep); }
.sec-bg-cream .fee-bullet-heading,
.sec-bg-peach .fee-bullet-heading { color: var(--pink-deep); }
.sec-bg-cream .fee-bullet-list li::before,
.sec-bg-peach .fee-bullet-list li::before { color: var(--pink-deep); }
.sec-bg-cream .fee-sub-heading,
.sec-bg-peach .fee-sub-heading {
  color: var(--pink-deep);
  border-left-color: var(--pink);
}
.sec-bg-cream .fee-payment-box,
.sec-bg-peach .fee-payment-box { border-left-color: var(--pink); }
.sec-bg-cream .fee-payment-title,
.sec-bg-peach .fee-payment-title { color: var(--pink-deep); }
.sec-bg-cream .fee-feature,
.sec-bg-peach .fee-feature { border-top-color: var(--pink); }
.sec-bg-cream .fee-feature-title,
.sec-bg-peach .fee-feature-title { color: var(--pink-deep); }
.sec-bg-cream .fee-simulation,
.sec-bg-peach .fee-simulation {
  background: -webkit-gradient(linear, left top, right bottom, from(var(--pink-pale)), to(#FFF0F4));
  background: linear-gradient(135deg, var(--pink-pale), #FFF0F4);
  -webkit-box-shadow: 0 8px 26px rgba(212, 145, 159, 0.15);
  box-shadow: 0 8px 26px rgba(212, 145, 159, 0.15);
}
.sec-bg-cream .fee-simulation-title,
.sec-bg-peach .fee-simulation-title { color: var(--pink-deep); }
.sec-bg-cream .fee-cta-box,
.sec-bg-peach .fee-cta-box { border-color: var(--pink); }
.sec-bg-cream .fee-cta-title,
.sec-bg-peach .fee-cta-title { color: var(--pink-deep); }

/* レスポンシブ */
@media (max-width: 600px) {
  .fee-detail-block, .fee-payment-box, .fee-simulation, .fee-cta-box {
    padding: 22px 20px;
    border-radius: 20px;
  }
  .fee-bullet-list { grid-template-columns: 1fr; }
  .fee-features { grid-template-columns: 1fr; }
  .fee-detail-num { width: 38px; height: 38px; font-size: 16px; }
  .fee-section-title::before,
  .fee-section-title::after { margin: 0 8px; }
  .fee-table th, .fee-table td { padding: 10px 14px; font-size: 13px; }
  .fee-feature { padding: 20px 22px; }
  .fee-sub-heading { font-size: 14px; }
}

/* 看多機ページ用：service-item の円アイコンを寒色に */
.sec-bg-sky .service-item svg circle[r="24"],
.sec-bg-mint .service-item svg circle[r="24"] {
  fill: #D6E8E4;
}
.service-icon-kanji {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  font-weight: 700;
  fill: #4A7B76;
}

/* =========================================
   ページ末尾CTA（訪問看護・看多機の詳細ページ用）
========================================= */
.page-cta-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  max-width: 540px;
  margin: 0 auto;
}

.page-cta-btn {
  display: block;
  background: #fff;
  border: 2px solid var(--brown-light);
  border-radius: 16px;
  padding: 18px 24px;
  text-decoration: none;
  color: var(--brown);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.page-cta-btn:hover {
  background: var(--brown-light);
  color: #fff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.page-cta-btn--tel {
  background: -webkit-gradient(linear, left top, right bottom, from(var(--brown)), to(var(--brown-light)));
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  border-color: var(--brown);
  color: #fff;
  padding: 22px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
}

.page-cta-btn--tel:hover {
  background: -webkit-gradient(linear, left top, right bottom, from(var(--brown)), to(var(--brown-light)));
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  color: #fff;
  opacity: 0.92;
}

.page-cta-btn-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.page-cta-btn-num {
  font-size: 28px;
  letter-spacing: 0.02em;
  margin: 2px 0;
  font-weight: 700;
}

.page-cta-btn-sub {
  font-size: 11px;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

.page-cta-btn--top {
  background: transparent;
  font-size: 14px;
  padding: 14px 24px;
}

/* ミニフッター */
.mini-footer {
  background: var(--brown);
  color: #fff;
  text-align: center;
  padding: 24px 16px;
}

.mini-footer-copy {
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

@media (max-width: 480px) {
  .page-cta-btn { padding: 16px 18px; font-size: 15px; }
  .page-cta-btn--tel { padding: 20px 18px; }
  .page-cta-btn-num { font-size: 24px; }
}
