/* ==========================================================================
   はつかいち暮らし — TOP PAGE
   Colors: #2A2620 (ink) / #C84A3A (red) / #3A5A3A (green) / #E8C87A (gold)
   Type: Shippori Mincho (serif JP headings) + Noto Sans JP (body)
   ========================================================================== */

:root{
  --ink: #2A2620;
  --ink-soft: #55504a;
  --red: #C84A3A;
  --red-dark: #a83b2d;
  --green: #3A5A3A;
  --green-dark: #2c452c;
  --gold: #E8C87A;
  --rose: #d99089;
  --rose-soft: #e6b3ae;
  --pink: #E5799A;
  --pink-soft: #F6D9E2;
  --orange: #cd7a3d;
  --blue: #6a93ab;
  --blue-soft: #d6ebf2;
  --cream: #F7F1E6;
  --cream-2: #f1ead9;
  --white: #ffffff;
  --milky-white: #fdfcf8;
  --line: rgba(42,38,32,0.12);
  --shadow: 0 12px 32px rgba(42,38,32,0.10);
  --serif: "Shippori Mincho", "Noto Serif JP", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --hand-jp: "Yomogi", cursive;
  --hand-en: "Caveat", cursive;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul, ol{ margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5{ font-family: var(--serif); margin: 0; font-weight: 600; letter-spacing: .02em; }
p{ margin: 0; }
select, button, input{ font-family: inherit; }

.container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.arrow{ display: inline-block; transition: transform .25s ease; }
a:hover .arrow, .btn:hover .arrow{ transform: translateX(4px); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 0.95rem;
  letter-spacing: .04em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-primary{ background: var(--red); color: var(--white); }
.btn-primary:hover{ background: var(--red-dark); }
.btn-line{ background: #06C755; color: var(--white); padding: 10px 18px; font-size: .85rem; border-radius: 4px; }
.btn-line:hover{ background: #05a648; }
.btn-outline-light{ border: 1px solid rgba(255,255,255,.6); color: var(--white); background: transparent; }
.btn-outline-light:hover{ background: rgba(255,255,255,.12); }
.btn-solid-light{ background: var(--ink); color: var(--white); }
.btn-solid-light:hover{ background: #000; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,241,230,0.97);
  border-bottom: 1px solid var(--line);
  border-top: 3px solid var(--pink);
}
.header-inner{
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo{ position: relative; display: flex; flex-direction: column; line-height: 1.2; padding-left: 15px; }
.logo::before{
  content: ""; position: absolute; left: 0; top: 3px; width: 7px; height: 7px; border-radius: 50%; background: var(--pink);
}
.logo-jp{ font-family: var(--serif); font-size: 1.15rem; font-weight: 700; }
.logo-en{ font-size: 0.6rem; letter-spacing: .18em; color: var(--pink); }

.logo-group{ display: flex; align-items: center; gap: 18px; min-width: 0; }
.operator-badge{
  display: flex; align-items: center; gap: 9px; padding-left: 18px; border-left: 1px solid var(--line);
}
.operator-logo{ width: 28px; height: 28px; flex-shrink: 0; }
.operator-text{ font-size: .6rem; line-height: 1.45; color: var(--ink-soft); letter-spacing: .01em; white-space: nowrap; }
.main-nav{ display: flex; align-items: center; gap: 30px; font-size: 0.9rem; }
.main-nav a:not(.btn){ position: relative; }
.main-nav a:not(.btn)::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--pink); transform: scaleX(0); transition: transform .25s ease;
}
.main-nav a:not(.btn):hover::after{ transform: scaleX(1); }
.nav-toggle{ display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle span{ width: 24px; height: 2px; background: var(--ink); display: block; }

/* ---------- Hero ---------- */
.hero{ position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg{ position: absolute; inset: 0; }
.hero-bg img{ width: 100%; height: 100%; object-fit: cover; }
.hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,22,20,.35) 0%, rgba(20,22,20,.15) 35%, rgba(20,22,20,.55) 100%);
}
.hero-content{ position: relative; z-index: 2; width: 100%; padding: 120px 32px 56px; max-width: 1240px; margin: 0 auto; color: var(--white); }
.hero-eyebrow{ letter-spacing: .2em; font-size: .8rem; color: var(--rose-soft); margin-bottom: 18px; }
.hero-title{ font-size: clamp(2.1rem, 5.2vw, 4rem); line-height: 1.4; margin-bottom: 22px; text-shadow: 0 4px 24px rgba(0,0,0,.25); }
.hero-sub{ font-size: 1.05rem; margin-bottom: 40px; opacity: .95; }

.hero-search{
  background: rgba(255,255,255,.92);
  border-radius: 4px;
  padding: 26px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.search-field{ display: flex; flex-direction: column; gap: 6px; flex: 1 1 160px; }
.search-field label{ font-size: .72rem; color: var(--ink-soft); letter-spacing: .05em; }
.search-field select{
  border: none; border-bottom: 1px solid var(--line); background: transparent;
  padding: 6px 4px; font-size: .95rem; color: var(--ink);
}
.search-btn{ flex: 0 0 auto; white-space: nowrap; }
.hero-thumbs{ display: flex; gap: 8px; margin-left: auto; }
.thumb{ width: 64px; height: 64px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.thumb img{ width: 100%; height: 100%; object-fit: cover; }
.thumb-snow{
  background: linear-gradient(160deg, #cfe4ef, #eef6fa 60%, #dcebf2);
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem; color: #4c7288; text-align: center; padding: 4px;
  font-weight: 600; letter-spacing: .02em;
}

.section{ padding: 96px 0; border-bottom: 1px solid var(--line); }
.section-tight{ padding: 56px 0; }
.section-contact{ background: var(--orange); color: var(--white); border-bottom: none; }

.section-head{ margin-bottom: 40px; }
.section-label{ font-size: .78rem; letter-spacing: .12em; color: var(--red); margin-bottom: 14px; text-transform: uppercase; }
.section-label.light{ color: rgba(255,255,255,.85); }
.section-no{ font-weight: 700; }
.section-head-row{ display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.section-head-row h2{ font-size: clamp(1.5rem, 2.6vw, 2rem); }
.section-desc{ margin-top: 12px; color: var(--ink-soft); max-width: 640px; }
.link-more{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600; white-space: nowrap;
  color: var(--red); background: var(--pink-soft);
  padding: 9px 18px; border-radius: 20px;
  transition: background .2s ease, color .2s ease;
}
.link-more .arrow{ transition: transform .2s ease; }
.link-more:hover{ background: var(--red); color: var(--white); }
.link-more:hover .arrow{ transform: translateX(3px); }
.link-more.muted{ display: inline; color: var(--ink-soft); font-size: .82rem; font-weight: 400; background: none; padding: 0; }
.link-more.muted:hover{ background: none; color: var(--ink-soft); }
.link-more.muted:hover .arrow{ transform: none; }
.section-links{ display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.link-more-accent{ color: var(--red); font-weight: 600; }

.announce-link{
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white); font-weight: 600; font-size: .88rem;
  padding: 11px 20px 11px 14px; border-radius: 30px; border-bottom: none;
  box-shadow: 0 8px 20px rgba(200,74,58,.32);
  transition: transform .22s ease, box-shadow .22s ease;
}
.announce-link:hover{ transform: translateY(-2px); box-shadow: 0 12px 26px rgba(200,74,58,.42); }
.announce-link .arrow{ margin-left: 2px; }
.announce-badge{
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--ink); font-size: .64rem; font-weight: 700;
  letter-spacing: .04em; padding: 4px 9px; border-radius: 10px;
}
.promo-banner-stack{ display: flex; flex-direction: column; gap: 20px; margin: 28px 0 20px; }
.promo-banner{
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  border-radius: 10px; padding: 28px 30px; overflow: hidden; color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
.promo-banner:hover{ transform: translateY(-3px); box-shadow: 0 16px 34px rgba(42,38,32,.16); }
.promo-banner-note{ font-family: var(--hand-jp); font-size: 1.05rem; color: var(--rose); transform: rotate(-3deg); transform-origin: left; display: block; margin-bottom: 8px; line-height: 1.3; }
.promo-banner-title{ font-size: 1.35rem; line-height: 1.5; margin-bottom: 10px; }
.promo-banner-title .accent{ color: var(--rose); }
.promo-banner-sub{ font-size: .82rem; color: var(--ink-soft); margin-bottom: 20px; }
.promo-banner-btn{ display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; padding: 9px 18px; border-radius: 20px; transition: background .2s ease, color .2s ease; }

.promo-banner-nandemo{ background: linear-gradient(135deg, var(--milky-white) 0%, var(--blue-soft) 100%); color: var(--ink); }
.promo-banner-nandemo .promo-banner-note{ color: var(--blue); }
.promo-banner-nandemo .promo-banner-sub{ color: var(--ink-soft); }
.promo-banner-nandemo .promo-banner-btn{ background: var(--blue); color: var(--white); }
.promo-banner-nandemo:hover .promo-banner-btn{ background: var(--ink); color: var(--white); }
.promo-banner-nandemo .announce-badge{ margin-bottom: 12px; }
.promo-banner-icon-circle{
  flex-shrink: 0; width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center;
}
.promo-banner-icon-circle svg{ width: 34px; height: 34px; color: var(--white); }
.promo-banner-nandemo .promo-banner-icon-circle{ background: rgba(106,147,171,.16); }
.promo-banner-nandemo .promo-banner-icon-circle svg{ color: var(--blue); }

/* ---------- Full-width consulting hero banner ---------- */
.promo-hero-img{
  display: block; border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
}
.promo-hero-img:hover{ transform: translateY(-3px); }
.promo-hero-img img{ width: 100%; height: auto; display: block; }

@media (max-width: 640px){
  .promo-banner{ padding: 24px 22px; gap: 14px; }
  .promo-banner-icon-circle{ width: 60px; height: 60px; }
  .promo-banner-icon-circle svg{ width: 26px; height: 26px; }
  .promo-banner-title{ font-size: 1.15rem; }
}

.announce-badge::after{
  content: ""; position: absolute; top: -4px; right: -4px; width: 9px; height: 9px;
  background: var(--white); border-radius: 50%; box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: announcePulse 2s ease-out infinite;
}
@keyframes announcePulse{
  0%{ box-shadow: 0 0 0 0 rgba(255,255,255,.65); }
  70%{ box-shadow: 0 0 0 9px rgba(255,255,255,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@media (prefers-reduced-motion: reduce){
  .announce-badge::after{ animation: none; }
}
.section-contact h2{ font-size: clamp(1.6rem, 3vw, 2.3rem); margin-top: 8px; }

/* ---------- SNS quick access ---------- */
.sns-quick-head{ position: relative; text-align: center; margin-bottom: 40px; }
.sns-followus{ font-family: var(--hand-en); font-size: 1.5rem; color: var(--rose); transform: rotate(-6deg); display: inline-block; margin-bottom: 6px; }
.sns-quick-title{ display: flex; align-items: center; justify-content: center; gap: 22px; }
.sns-quick-title h2{ font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--red); white-space: nowrap; }
.sns-quick-line{ height: 1px; width: 70px; background: var(--line); flex-shrink: 0; }
.sns-quick-head .section-desc{ text-align: center; max-width: none; margin-top: 12px; }
.sns-quick-bird{ position: absolute; right: 0; top: -18px; display: flex; align-items: center; gap: 10px; }
.sns-quick-bird svg{ width: 54px; height: 40px; color: var(--rose); }
.sns-quick-note{ font-family: var(--hand-jp); font-size: 1.05rem; color: var(--rose); line-height: 1.4; text-align: left; transform: rotate(-2deg); }

.sns-quick-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sns-quick-card{
  display: flex; flex-direction: column; gap: 14px;
  background: var(--white); border-radius: 8px; padding: 22px; box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.sns-quick-card:hover{ transform: translateY(-3px); box-shadow: 0 16px 36px rgba(42,38,32,.14); }
.sns-quick-top{ display: flex; align-items: center; gap: 14px; min-width: 0; }
.sns-quick-icon{ width: 44px; height: 44px; flex-shrink: 0; }
.sns-quick-info{ min-width: 0; }
.sns-quick-platform{ font-family: var(--serif); font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sns-quick-handle{ font-size: .8rem; color: var(--ink-soft); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sns-quick-bottom{ display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.sns-quick-btn{ background: var(--pink-soft); color: var(--red); font-size: .78rem; font-weight: 600; padding: 7px 14px; border-radius: 20px; white-space: nowrap; }
.sns-quick-url{ font-size: .74rem; color: var(--ink-soft); opacity: .75; word-break: break-all; }

@media (max-width: 980px){
  .sns-quick-bird{ position: static; justify-content: center; margin-top: 16px; }
}
@media (max-width: 640px){
  .sns-quick-grid{ grid-template-columns: 1fr; }
}

/* ---------- Areas ---------- */
.area-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.area-card{
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}
.area-card img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.area-card:hover img{ transform: scale(1.06); }
.area-card::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,15,.05) 30%, rgba(20,20,15,.75) 100%);
}
.area-tag{
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: .68rem; letter-spacing: .08em; color: var(--white);
  background: rgba(20,20,15,.35); padding: 4px 10px; border-radius: 20px;
}
.area-info{ position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; color: var(--white); }
.area-en{ font-size: .68rem; letter-spacing: .1em; opacity: .85; margin-bottom: 4px; }
.area-info h3{ font-size: 1.3rem; margin-bottom: 4px; }
.area-info p:last-child{ font-size: .82rem; opacity: .9; }

.area-card-map{
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; border: 1px solid var(--line); gap: 4px;
}
.map-label{ font-size: .7rem; letter-spacing: .15em; color: var(--ink-soft); }
.map-num{ font-family: var(--serif); font-size: 2.6rem; color: var(--red); line-height: 1; }
.map-caption{ font-size: .68rem; letter-spacing: .15em; color: var(--ink-soft); }
.map-sub{ font-size: .75rem; color: var(--ink-soft); margin-top: 10px; }
.area-card-map .arrow{ margin-top: 10px; color: var(--red); }

/* ---------- News ---------- */
.news-panel{ background: var(--cream-2); border-radius: 6px; padding: 32px; }
.news-title-row{ display: flex; justify-content: space-between; align-items: baseline; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.news-title-row .news-title{ margin-bottom: 0; }
.news-title{ font-size: 1.6rem; margin-bottom: 20px; }

.news-hero-grid{ display: grid; grid-template-columns: 340px 1fr; gap: 36px; align-items: start; }
.news-hero-grid .life-photo-stack{ gap: 16px; }
.news-hero-grid .life-photo{ min-height: 240px; }
.page-tagline{ font-family: var(--serif); font-size: 1.1rem; color: var(--red); margin-top: 8px; }

.category-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.category-card{ background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 24px; }
.category-card h3{ font-size: 1.05rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.category-card h3::before{ content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--tag-color, var(--red)); flex-shrink: 0; }
.category-card p{ font-size: .85rem; color: var(--ink-soft); }
.news-tabs{ display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.tab{
  border: 1px solid var(--line); background: var(--white); color: var(--ink-soft);
  padding: 8px 16px; border-radius: 20px; font-size: .82rem; cursor: pointer; transition: all .2s ease;
}
.tab.active, .tab:hover{ background: var(--red); border-color: var(--red); color: var(--white); }
.news-body{ display: grid; grid-template-columns: 300px 1fr; gap: 30px; }
.news-photo{ position: relative; border-radius: 4px; overflow: hidden; }
.news-photo img{ width: 100%; height: 190px; object-fit: cover; }
.news-photo-stack{ display: flex; flex-direction: column; gap: 12px; }
.news-photo-stack .news-photo img{ height: 137px; }
.news-photo p{
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; color: var(--white);
  font-size: .8rem; padding: 30px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.65));
}
.badge{ display: inline-block; font-size: .7rem; padding: 5px 12px; border-radius: 2px; }
.badge-rose{ background: var(--rose); color: var(--white); position: absolute; top: 12px; left: 12px; z-index: 2; }
.badge-solid-red{ background: var(--red); color: var(--white); }
.news-list li{ border-bottom: 1px solid var(--line); }
.news-list li:last-child{ border-bottom: none; }
.news-list li[hidden]{ display: none; }
.news-list time{ color: var(--ink-soft); font-size: .85rem; }
.news-row{
  display: grid; grid-template-columns: 60px 152px 1fr; align-items: center; gap: 16px;
  padding: 16px 40px 16px 4px; font-size: .92rem; color: inherit; border-radius: 4px;
  transition: background .2s ease; position: relative;
}
.news-row::after{
  content: "詳しく見る →";
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font-size: .78rem; font-weight: 600; color: var(--red); white-space: nowrap;
}
.news-row:hover{ background: rgba(42,38,32,.04); }
.news-row:hover p{ text-decoration: underline; }
.tag{ font-size: .72rem; padding: 4px 10px; border-radius: 3px; text-align: center; color: var(--white); white-space: nowrap; justify-self: start; }
.tag-new{ background: var(--red); }
.tag-event{ background: var(--green); }
.tag-grant{ background: var(--gold); color: var(--ink); }
.tag-corps{ background: #7a6a52; }
.tag-tour{ background: var(--rose); }
.tag-local{ background: var(--orange); }
.tag-info{ background: var(--pink); }

/* ---------- Properties ---------- */
.properties-grid{ display: grid; grid-template-columns: 1fr 320px; gap: 24px; }
.prop-cats{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.prop-cat{ background: var(--white); padding: 22px 20px; position: relative; transition: background .2s ease; }
.prop-cat:hover{ background: var(--cream-2); }
.prop-no{ font-size: .72rem; color: var(--ink-soft); }
.prop-cat h3{ font-size: 1.15rem; margin: 8px 0 14px; }
.prop-cat p{ font-family: var(--serif); font-size: 1.4rem; }
.prop-cat p small{ font-family: var(--sans); font-size: .8rem; font-weight: 400; color: var(--ink-soft); margin-left: 2px; }
.prop-cat .prop-tagline{ font-family: var(--sans); font-size: .85rem; font-weight: 400; color: var(--ink-soft); }
.pop{ position: absolute; top: 18px; right: 16px; background: var(--red); color: var(--white); font-size: .62rem; padding: 3px 8px; border-radius: 10px; }
.prop-photos{ display: flex; flex-direction: column; gap: 12px; }
.prop-photo{ position: relative; border-radius: 4px; overflow: hidden; flex: 1; min-height: 130px; }
.prop-photo img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.prop-photo::after{ content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.6)); }
.prop-photo .badge{ position: absolute; top: 12px; left: 12px; z-index: 2; }
.prop-photo p{ position: absolute; left: 14px; bottom: 12px; z-index: 2; color: var(--white); font-family: var(--serif); font-size: 1.05rem; }

/* ---------- Lifestyle bar ---------- */
.lifestyle-bar{
  display: grid; grid-template-columns: auto repeat(7, minmax(0, 1fr)); align-items: stretch; background: var(--rose); border-radius: 4px; overflow: hidden;
}
.lifestyle-label{ background: var(--rose); padding: 22px 26px; color: var(--white); }
.lifestyle-label h3{ font-size: 1.2rem; }
.lifestyle-label p{ font-size: .68rem; letter-spacing: .1em; opacity: .85; margin-top: 4px; }
.lifestyle-tag{
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); border-left: 1px solid rgba(255,255,255,.25); padding: 18px 8px; text-align: center; gap: 6px;
  transition: background .2s ease;
}
.lifestyle-tag:hover{ background: rgba(0,0,0,.08); }
.lt-no{ font-size: .68rem; opacity: .75; }
.lifestyle-tag.active{ background: rgba(232,200,122,.28); border: 1px dashed var(--gold); }
.lifestyle-tag.highlight{ background: var(--red); font-weight: 600; }

/* ---------- Features ---------- */
.features-grid{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.feature{ position: relative; border-radius: 4px; overflow: hidden; display: block; min-height: 190px; }
.feature-main{ grid-row: 1 / 3; min-height: 400px; }
.feature img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feature:hover img{ transform: scale(1.05); }
.feature-photo::after, .feature-main::after{
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 40%, rgba(0,0,0,.7));
}
.feature-text{ position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2; color: var(--white); }
.feature-no{ font-size: .74rem; letter-spacing: .08em; opacity: .85; margin-bottom: 8px; }
.feature-text h3{ font-size: 1.7rem; margin-bottom: 10px; }
.feature-desc{ font-size: .88rem; max-width: 420px; opacity: .95; }
.feature-photo{ display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 18px; }
.feature-photo p, .feature-photo .feature-no{ position: relative; z-index: 2; color: var(--white); }
.feature-photo h3{ position: relative; z-index: 2; color: var(--white); font-size: 1.15rem; margin-top: 6px; }
.feature-photo .feature-no{ font-family: var(--serif); font-size: 1.05rem; line-height: 1.4; }
.feature-solid{ padding: 22px; color: var(--white); display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; }
.feature-pet{ background: var(--cream-2); color: var(--ink); border: 1px solid var(--line); }
.feature-pet .feature-no{ color: var(--ink-soft); }
.feature-startup{ background: var(--green); }
.feature-solid h3{ font-size: 1.25rem; }
.feature-solid .feature-desc{ font-size: .82rem; }
.feature-count{ margin-top: 6px; font-size: .85rem; }

/* ---------- Stories ---------- */
.story-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.story-card{ display: block; border-radius: 4px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.story-card img{ width: 100%; height: 260px; object-fit: cover; }
.story-caption{ padding: 26px; }
.story-meta{ font-size: .8rem; color: var(--ink-soft); margin-bottom: 8px; }
.badge-outline{ border: 1px solid var(--red); color: var(--red); padding: 3px 10px; font-size: .72rem; margin-right: 8px; border-radius: 2px; }
.story-route{ font-size: .88rem; color: var(--ink-soft); margin-bottom: 6px; }
.story-card h3{ font-size: 1.3rem; margin-bottom: 10px; }
.story-desc{ font-size: .88rem; color: var(--ink-soft); margin-bottom: 14px; }
.story-foot{ display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 16px; margin-top: 6px; }
.figure{ font-size: .85rem; margin-right: 14px; }
.story-foot .arrow{ color: var(--red); font-size: 1.1rem; }

/* ---------- Renovation ---------- */
.head-right{ text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.renovation-grid{ display: grid; grid-template-columns: 1fr 90px 1fr; align-items: center; gap: 10px; }
.renov-photo{ position: relative; border-radius: 4px; overflow: hidden; }
.renov-photo img{ width: 100%; height: 320px; object-fit: cover; }
.renov-photo p{ position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; color: var(--white); font-size: .95rem; padding: 40px 18px 16px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.65)); }
.renov-arrow{ text-align: center; }
.renov-arrow .arrow{ font-size: 1.8rem; color: var(--red); display: block; margin-bottom: 10px; }
.renov-arrow p{ font-size: .75rem; color: var(--ink-soft); }
.renov-stats{
  margin-top: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 4px;
  display: flex; align-items: center; padding: 26px 30px; gap: 20px; flex-wrap: wrap;
}
.renov-stats > div{ flex: 1; min-width: 110px; border-right: 1px solid var(--line); padding-right: 20px; }
.renov-stats > div:last-of-type{ border-right: none; }
.stat-label{ font-size: .74rem; color: var(--ink-soft); margin-bottom: 8px; }
.stat-value{ font-family: var(--serif); font-size: 1.7rem; }
.stat-value small{ font-family: var(--sans); font-size: .8rem; font-weight: 400; margin-left: 2px; }
.stat-value.accent{ color: var(--red); }
.stat-value.small{ font-size: 1.1rem; }
.stat-sub{ font-size: .75rem; color: var(--ink-soft); margin-top: 2px; }

/* ---------- Support table ---------- */
.support-table{ background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.support-row{
  display: grid; grid-template-columns: 1.4fr 2fr .7fr .9fr .9fr 30px; gap: 16px; align-items: center;
  padding: 22px 26px; border-bottom: 1px solid var(--line);
}
.support-row:last-child{ border-bottom: none; }
.support-row-head{ background: var(--rose); color: var(--white); font-size: .82rem; padding: 14px 26px; }
.support-row h4{ font-size: 1.05rem; margin-bottom: 4px; }
.support-row .sub{ font-size: .72rem; color: var(--ink-soft); letter-spacing: .05em; }
.support-row .sub-accent{ color: var(--red); }
.rate{ font-family: var(--serif); font-size: 1.2rem; }
.amount{ font-family: var(--serif); font-size: 1.25rem; color: var(--red); }
.amount small{ font-family: var(--sans); font-size: .75rem; font-weight: 400; color: var(--ink); margin-left: 2px; }
.support-row .arrow{ text-align: right; color: var(--red); }

/* ---------- Trial stay ---------- */
.trial-panel{ display: grid; grid-template-columns: 1fr 1fr; background: var(--green); border-radius: 6px; overflow: hidden; color: var(--white); }
.trial-left, .trial-right{ padding: 44px; }
.trial-left .badge-solid-red{ margin-bottom: 20px; display: inline-block; }
.trial-eyebrow{ font-size: .78rem; letter-spacing: .15em; color: var(--gold); margin-bottom: 14px; }
.trial-left h2{ font-size: 2rem; margin-bottom: 16px; line-height: 1.3; }
.trial-tagline{ font-family: var(--serif); font-size: 1.1rem; color: var(--gold); margin-bottom: 10px; }
.trial-desc{ font-size: .9rem; opacity: .9; margin-bottom: 30px; line-height: 1.7; }
.trial-facility{ margin-bottom: 22px; }
.trial-facility-name{ font-family: var(--serif); font-size: 1.1rem; margin: 4px 0 4px; }
.trial-facility-address{ font-size: .85rem; opacity: .85; }
.trial-facility-address .map-link{ margin-left: 10px; opacity: 1; border-bottom: 1px solid rgba(255,255,255,.5); white-space: nowrap; }
.trial-left .cta-buttons{ display: flex; gap: 12px; flex-wrap: wrap; }
.trial-fields{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.2); border-radius: 4px; padding: 20px; margin-bottom: 26px; }
.field-label{ font-size: .74rem; opacity: .8; margin-bottom: 10px; letter-spacing: .05em; }
.pill-group{ display: flex; gap: 8px; flex-wrap: wrap; }
.pill{ border: 1px solid rgba(255,255,255,.5); border-radius: 20px; padding: 5px 14px; font-size: .82rem; }
.trial-stay-length{ font-family: var(--serif); font-size: 1.25rem; }
.field-note{ font-size: .72rem; opacity: .75; margin-top: 4px; }
.purpose-links{ display: flex; gap: 18px; flex-wrap: wrap; margin: 12px 0 30px; font-size: .88rem; }
.purpose-links span{ border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 3px; }

.experience-eyebrow{ font-size: .74rem; letter-spacing: .15em; opacity: .8; margin-bottom: 8px; }
.trial-right h3{ font-size: 1.3rem; margin-bottom: 22px; }
.experience-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.experience-card{
  background: rgba(255,255,255,.95); color: var(--ink); border-radius: 4px; padding: 20px; position: relative; min-height: 130px;
}
.exp-no{ font-size: .72rem; color: var(--ink-soft); margin-bottom: 10px; }
.experience-card h4{ font-size: 1.05rem; margin-bottom: 8px; }
.experience-card p{ font-size: .78rem; color: var(--ink-soft); }
.experience-card .arrow{ position: absolute; right: 16px; bottom: 14px; color: var(--red); }
.experience-price{ background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 4px; padding: 18px 22px; display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.price-value{ font-family: var(--serif); font-size: 1.8rem; color: var(--gold); }
.price-value small{ font-family: var(--sans); font-size: .8rem; color: var(--white); margin-left: 4px; }
.price-note{ font-size: .78rem; opacity: .85; }
.price-includes{ font-size: .8rem; opacity: .9; flex-basis: 100%; }

/* ---------- Consulting ---------- */
.consulting-intro{ display: flex; align-items: center; gap: 40px; background: var(--cream-2); border-radius: 10px; padding: 40px; }
.consulting-intro-text{ flex: 1 1 55%; }
.consulting-intro-badge{ display: inline-block; background: var(--pink-soft); color: var(--rose); font-size: .78rem; font-weight: 600; padding: 6px 14px; border-radius: 16px; margin-bottom: 18px; }
.consulting-intro-title{ font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.7; margin-bottom: 20px; color: var(--ink); }
.consulting-intro-desc{ font-size: .9rem; color: var(--ink-soft); line-height: 1.9; margin-bottom: 20px; }
.consulting-intro-tagline{ font-family: var(--serif); font-size: 1.05rem; color: var(--red); line-height: 1.8; margin-bottom: 26px; }
.consulting-intro-photo{ flex: 1 1 45%; align-self: stretch; border-radius: 8px; overflow: hidden; min-height: 280px; }
.consulting-intro-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 980px){
  .consulting-intro{ flex-direction: column; padding: 32px 26px; }
  .consulting-intro-photo{ width: 100%; min-height: 220px; }
}

.consult-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.consult-grid-half{ grid-template-columns: repeat(2, 1fr); }
.consult-card{ border-radius: 4px; padding: 34px; min-height: 320px; display: flex; flex-direction: column; }
.consult-white{ background: var(--white); border: 1px solid var(--line); }
.consult-red{ background: var(--red); color: var(--white); }
.consult-green{ background: var(--green); color: var(--white); }
.consult-eyebrow{ font-size: .74rem; letter-spacing: .1em; opacity: .75; margin-bottom: 12px; }
.consult-card h3{ font-size: 1.4rem; margin-bottom: 6px; position: relative; padding-bottom: 16px; }
.consult-card h3::after{ content:""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: currentColor; opacity: .5; }
.consult-desc{ font-size: .85rem; margin: 14px 0 18px; opacity: .9; }
.consult-list{ display: flex; flex-direction: column; gap: 10px; counter-reset: item; flex: 1; }
.consult-list li{ font-size: .9rem; padding-left: 26px; position: relative; counter-increment: item; }
.consult-list li::before{ content: "0" counter(item); position: absolute; left: 0; font-size: .72rem; opacity: .6; }
.consult-card .btn{ margin-top: 20px; align-self: flex-start; }

/* ---------- Jobs ---------- */
.jobs-grid{ display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; }
.jobs-photo{ position: relative; border-radius: 4px; overflow: hidden; display: block; min-height: 380px; }
.jobs-photo img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.jobs-photo::after{ content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1) 30%, rgba(0,0,0,.75)); }
.jobs-photo .badge{ position: absolute; top: 16px; left: 16px; z-index: 2; }
.jobs-photo-text{ position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2; color: var(--white); }
.jobs-eyebrow{ font-size: .72rem; letter-spacing: .1em; opacity: .8; margin-bottom: 8px; }
.jobs-photo-text h3{ font-size: 1.5rem; margin-bottom: 10px; }
.jobs-photo-text p{ font-size: .85rem; opacity: .95; margin-bottom: 12px; }
.jobs-cards{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.jobs-card{ background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 22px; display: flex; flex-direction: column; gap: 6px; }
.jobs-card-green{ background: var(--green); color: var(--white); border-color: var(--green); }
.jobs-card-eyebrow{ font-size: .68rem; letter-spacing: .08em; opacity: .7; }
.jobs-card h4{ font-size: 1.1rem; }
.jobs-card p:not(.jobs-card-eyebrow){ font-size: .8rem; opacity: .85; }
.jobs-count{ margin-top: auto; padding-top: 10px; font-family: var(--serif); font-size: 1.1rem; display: flex; align-items: baseline; gap: 6px; }
.jobs-count .arrow{ margin-left: auto; font-family: var(--sans); color: var(--red); }
.jobs-card-green .jobs-count .arrow{ color: var(--white); }
.badge-star{ font-family: var(--sans); font-size: .75rem; background: var(--gold); color: var(--ink); padding: 3px 10px; border-radius: 10px; }

/* ---------- SNS & Contact ---------- */
.sns-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 60px; }
.sns-card{ background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 4px; padding: 24px; }
.sns-card-line{ background: #06C755; border-color: #06C755; }
.sns-eyebrow{ font-size: .68rem; letter-spacing: .1em; opacity: .8; margin-bottom: 8px; }
.sns-card h3{ font-size: 1.25rem; margin-bottom: 10px; }
.sns-card p:not(.sns-eyebrow):not(.sns-count){ font-size: .82rem; opacity: .9; margin-bottom: 16px; }
.sns-count{ font-family: var(--serif); font-size: 1rem; display: flex; align-items: center; gap: 8px; }

.contact-cta{ display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; border-top: 1px solid rgba(255,255,255,.25); padding-top: 50px; }
.contact-eyebrow{ font-size: .78rem; letter-spacing: .1em; opacity: .8; margin-bottom: 12px; }
.contact-desc{ margin-top: 14px; opacity: .95; }
.contact-info{ background: rgba(0,0,0,.15); border-radius: 6px; padding: 30px; }
.contact-phone{ font-family: var(--serif); font-size: 2.2rem; margin: 8px 0; }
.contact-hours{ font-size: .85rem; opacity: .85; margin-bottom: 20px; }
.contact-buttons{ display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.contact-address{ font-size: .8rem; opacity: .85; line-height: 1.6; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--green-dark); color: rgba(255,255,255,.85); padding: 60px 0 0; }
.footer-inner{ display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .logo-jp{ font-size: 1.2rem; color: var(--white); }
.footer-brand .logo-en{ font-size: .65rem; letter-spacing: .15em; opacity: .6; margin: 6px 0 14px; }
.footer-copy{ font-size: .8rem; opacity: .7; }
.footer-links{ display: flex; gap: 60px; flex-wrap: wrap; }
.footer-links h5{ font-size: .82rem; margin-bottom: 16px; opacity: .6; letter-spacing: .05em; }
.footer-links a{ display: block; font-size: .85rem; margin-bottom: 10px; opacity: .85; }
.footer-links a:hover{ opacity: 1; text-decoration: underline; }
.footer-bottom{ padding: 22px 32px; font-size: .78rem; opacity: .55; text-align: center; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .main-nav{
    position: fixed; inset: 70px 0 0 0; background: var(--cream); flex-direction: column;
    align-items: flex-start; padding: 30px 32px; gap: 22px; font-size: 1.1rem;
    transform: translateX(100%); transition: transform .3s ease; overflow-y: auto;
  }
  .main-nav.open{ transform: translateX(0); }
  .nav-toggle{ display: flex; }
  .area-grid{ grid-template-columns: repeat(2, 1fr); }
  .features-grid{ grid-template-columns: 1fr 1fr; }
  .feature-main{ grid-column: 1 / 3; grid-row: auto; min-height: 320px; }
  .properties-grid{ grid-template-columns: 1fr; }
  .prop-photos{ flex-direction: row; }
  .story-grid{ grid-template-columns: 1fr; }
  .renovation-grid{ grid-template-columns: 1fr; }
  .renov-arrow{ transform: rotate(90deg); }
  .trial-panel{ grid-template-columns: 1fr; }
  .consult-grid{ grid-template-columns: 1fr; }
  .jobs-grid{ grid-template-columns: 1fr; }
  .sns-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-cta{ grid-template-columns: 1fr; }
  .lifestyle-bar{ display: grid; grid-template-columns: repeat(3, 1fr); }
  .lifestyle-label{ grid-column: 1 / -1; }
  .lifestyle-tag{ border-left: none; border-top: 1px solid rgba(255,255,255,.25); }
  .support-row{ grid-template-columns: 1fr; gap: 6px; text-align: left; }
  .support-row-head{ display: none; }
  .support-row{ padding: 20px; }
  .support-row .arrow{ text-align: left; }
  .renov-stats > div{ border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
  .category-grid{ grid-template-columns: repeat(2, 1fr); }
  .news-hero-grid{ grid-template-columns: 1fr; }
  .news-hero-grid .life-photo-stack{ flex-direction: row; }
  .news-hero-grid .life-photo{ min-height: 180px; }
}

/* ==========================================================================
   Area detail pages (/areas/*.html)
   ========================================================================== */
.breadcrumb{ font-size: .8rem; color: var(--ink-soft); padding: 18px 0; }
.breadcrumb a{ border-bottom: 1px solid transparent; }
.breadcrumb a:hover{ border-color: var(--ink-soft); }
.breadcrumb span.sep{ margin: 0 8px; opacity: .5; }
.breadcrumb span.current{ color: var(--ink); }

.area-hero{ position: relative; min-height: 56vh; display: flex; align-items: flex-end; overflow: hidden; }
.area-hero img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.area-hero .hero-overlay{ position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,22,20,.25) 0%, rgba(20,22,20,.15) 40%, rgba(20,22,20,.7) 100%); }
.area-hero-content{ position: relative; z-index: 2; width: 100%; padding: 60px 32px 48px; max-width: 1240px; margin: 0 auto; color: var(--white); }
.area-hero-tag{ display: inline-block; font-size: .72rem; letter-spacing: .1em; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.4); padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
.area-hero-en{ font-size: .78rem; letter-spacing: .2em; color: var(--gold); margin-bottom: 10px; }
.area-hero-content h1{ font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.4; margin-bottom: 14px; }
.area-hero-copy{ font-size: 1.02rem; opacity: .95; max-width: 560px; }

.area-lead{ max-width: 760px; font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 0; }
.area-body-text{ max-width: 720px; font-size: .95rem; color: var(--ink-soft); margin-top: 16px; }
.area-body-text strong{ color: var(--ink); font-weight: 600; }
.area-pullquote{
  font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  text-align: center; max-width: 720px; margin: 0 auto; line-height: 1.7;
  text-wrap: balance;
}
.area-pullquote::before{ content: "― "; color: var(--pink); }
.area-pullquote::after{ content: " ―"; color: var(--pink); }

.area-stats{ display: flex; flex-wrap: wrap; gap: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 26px 30px; }
.area-stats > div{ flex: 1; min-width: 140px; border-right: 1px solid var(--line); padding-right: 20px; }
.area-stats > div:last-child{ border-right: none; }

.life-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.life-card{ background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 26px; }
.life-card .life-no{ font-family: var(--serif); font-size: 1.3rem; color: var(--red); margin-bottom: 10px; }
.life-card h3{ font-size: 1.1rem; margin-bottom: 10px; }
.life-card p{ font-size: .88rem; color: var(--ink-soft); }

.life-photo-grid{ display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; }
.life-photo{ position: relative; border-radius: 4px; overflow: hidden; min-height: 220px; }
.life-photo img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.life-photo p{ position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; color: var(--white); font-size: .85rem; padding: 40px 18px 14px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.65)); }
.life-photo-stack{ display: flex; flex-direction: column; gap: 16px; }
.life-photo-stack .life-photo{ flex: 1; }

.area-housing-tags{ display: flex; flex-wrap: wrap; gap: 10px; }
.area-housing-tags span{ border: 1px solid var(--line); background: var(--white); padding: 8px 18px; border-radius: 20px; font-size: .85rem; color: var(--ink-soft); }

.access-list{ background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.access-row{ display: grid; grid-template-columns: 160px 1fr; gap: 16px; padding: 18px 26px; border-bottom: 1px solid var(--line); font-size: .92rem; align-items: baseline; }
.access-row:last-child{ border-bottom: none; }
.access-row .access-to{ color: var(--ink-soft); font-size: .85rem; }
.access-row .access-time{ font-family: var(--serif); color: var(--red); }

.area-testimonial{ display: grid; grid-template-columns: 320px 1fr; background: var(--white); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); }
.area-testimonial img{ width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.area-testimonial-body{ padding: 30px 34px; }
.area-testimonial-quote{ font-family: var(--serif); font-size: 1.2rem; line-height: 1.7; margin-bottom: 16px; }
.area-testimonial-meta{ font-size: .85rem; color: var(--ink-soft); }

.other-areas-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.area-card-sm{ position: relative; aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; display: block; }
.area-card-sm img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.area-card-sm:hover img{ transform: scale(1.06); }
.area-card-sm::after{ content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,15,.05) 40%, rgba(20,20,15,.75) 100%); }
.area-card-sm span{ position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2; color: var(--white); font-size: .92rem; font-family: var(--serif); }

.area-cta{ background: var(--green); color: var(--white); border-radius: 6px; padding: 44px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.area-cta h2{ font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 10px; }
.area-cta p{ opacity: .9; font-size: .92rem; }
.area-cta .cta-buttons{ display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 980px){
  .life-grid{ grid-template-columns: 1fr 1fr; }
  .life-photo-grid{ grid-template-columns: 1fr; }
  .area-testimonial{ grid-template-columns: 1fr; }
  .other-areas-grid{ grid-template-columns: repeat(2, 1fr); }
  .area-stats{ flex-direction: column; }
  .area-stats > div{ border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
}

@media (max-width: 640px){
  .life-grid{ grid-template-columns: 1fr; }
  .other-areas-grid{ grid-template-columns: 1fr; }
  .access-row{ grid-template-columns: 1fr; gap: 4px; }
  .area-cta{ padding: 30px; flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Nandemo LP (/nandemo.html)
   ========================================================================== */
.nandemo-hero{
  position: relative; padding: 150px 0 70px; overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream) 55%, var(--pink-soft) 100%);
}
.nandemo-hero::before{
  content: ""; position: absolute; right: -140px; top: -140px; width: 440px; height: 440px;
  border-radius: 50%; border: 2px solid var(--rose-soft); opacity: .5;
}
.nandemo-hero-inner{ position: relative; z-index: 2; max-width: 720px; }
.nandemo-eyebrow{ font-size: .8rem; letter-spacing: .1em; color: var(--red); margin-bottom: 18px; padding-left: 16px; position: relative; }
.nandemo-eyebrow::before{ content:""; position:absolute; left:0; top:50%; transform:translateY(-50%); width:8px; height:2px; background:var(--red); }
.nandemo-hero h1{ font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.55; margin-bottom: 22px; }
.nandemo-highlight{ background: var(--red); color: var(--white); padding: 2px 10px; display: inline-block; }
.nandemo-tagline{ font-family: var(--serif); font-size: 1.15rem; color: var(--red); margin-bottom: 14px; }
.nandemo-desc{ font-size: .95rem; color: var(--ink-soft); margin-bottom: 34px; max-width: 480px; }
.nandemo-hero .cta-buttons{ display: flex; gap: 14px; flex-wrap: wrap; }

.quote-box{
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.8;
  background: var(--white); border: 1px solid var(--line); border-radius: 4px;
  padding: 30px 36px; margin-top: 26px; max-width: 640px; position: relative;
}
.quote-box::before{ content: "\201C"; color: var(--pink); font-size: 2.2rem; position: absolute; left: 14px; top: 2px; opacity: .6; }

.task-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.task-card{ background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 24px; }
.task-card .task-no{ font-family: var(--serif); font-size: 1.1rem; color: var(--red); margin-bottom: 10px; }
.task-card h3{ font-size: 1.02rem; margin-bottom: 8px; line-height: 1.4; }
.task-card p{ font-size: .82rem; color: var(--ink-soft); }
.task-card.flagship{ background: var(--red); color: var(--white); border-color: var(--red); }
.task-card.flagship .task-no{ color: var(--gold); }
.task-card.flagship p{ color: rgba(255,255,255,.85); }
.task-note{ font-size: .82rem; color: var(--ink-soft); margin-top: 22px; }

.watch-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.watch-card{ display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 20px 22px; }
.watch-no{ font-family: var(--serif); color: var(--white); background: var(--green); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .78rem; }
.watch-card h4{ font-size: .98rem; margin-bottom: 4px; }
.watch-card p{ font-size: .82rem; color: var(--ink-soft); }

.price-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.price-card{ border-radius: 6px; padding: 34px; }
.price-card-base{ background: var(--white); border: 1px solid var(--line); }
.price-card-launch{ background: var(--red); color: var(--white); }
.price-card-label{ font-size: .74rem; letter-spacing: .1em; margin-bottom: 14px; opacity: .8; }
.price-card .price-value{ font-family: var(--serif); font-size: 2.6rem; color: var(--ink); }
.price-card-launch .price-value{ color: var(--white); }
.price-card .price-value small{ font-family: var(--sans); font-size: .95rem; font-weight: 400; margin-left: 4px; }
.price-card p.price-desc{ font-size: .85rem; margin-top: 14px; opacity: .85; }

.plan-banner{ margin-top: 24px; background: var(--cream-2); border: 1px dashed var(--rose); border-radius: 4px; padding: 26px 30px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.plan-banner h3{ font-size: 1.15rem; margin-bottom: 6px; }
.plan-banner p{ font-size: .85rem; color: var(--ink-soft); }
.plan-banner .plan-price{ font-family: var(--serif); font-size: 1.6rem; color: var(--red); white-space: nowrap; }

.k-grid{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.k-card{ background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 20px 18px; text-align: center; }
.k-card .k-no{ font-family: var(--serif); font-size: 1.5rem; color: var(--rose); margin-bottom: 8px; }
.k-card h4{ font-size: .95rem; margin-bottom: 6px; }
.k-card p{ font-size: .74rem; color: var(--ink-soft); line-height: 1.5; }

/* ==========================================================================
   Trial Stay detail page (/trial-stay.html)
   ========================================================================== */
.trial-hero{ background: var(--green); color: var(--white); padding: 130px 0 60px; }
.trial-hero .badge-solid-red{ margin-bottom: 22px; display: inline-block; }
.trial-hero-eyebrow{ font-size: .78rem; letter-spacing: .15em; color: var(--gold); margin-bottom: 14px; }
.trial-hero h1{ font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.55; margin-bottom: 26px; max-width: 680px; }
.trial-hero-lead{ font-size: .95rem; opacity: .95; max-width: 640px; margin-bottom: 16px; line-height: 1.9; }
.trial-hero .cta-buttons{ display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.experience-detail-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.experience-detail-card{ background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 32px; }
.experience-detail-card .exp-detail-no{ font-family: var(--serif); font-size: 1.4rem; color: var(--red); margin-bottom: 10px; }
.experience-detail-card h3{ font-size: 1.2rem; margin-bottom: 16px; line-height: 1.5; }
.experience-detail-card p{ font-size: .9rem; color: var(--ink-soft); margin-bottom: 12px; line-height: 1.85; }
.experience-detail-card p:last-child{ margin-bottom: 0; }
.experience-detail-card strong{ color: var(--ink); font-weight: 600; }

.philosophy-section{ background: var(--ink); color: rgba(255,255,255,.92); }
.philosophy-text{ max-width: 760px; margin: 0 auto; text-align: center; }
.philosophy-text p{ font-size: 1rem; line-height: 2; margin-bottom: 20px; opacity: .92; }
.philosophy-text p:last-child{ margin-bottom: 0; }
.philosophy-text .philosophy-highlight{ font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: var(--gold); line-height: 1.7; margin-bottom: 28px; }

.check-list{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.check-item{ display: flex; align-items: flex-start; gap: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 16px 20px; font-size: .92rem; }
.check-item::before{ content: "\2713"; color: var(--red); font-weight: 700; flex-shrink: 0; }

.fund-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fund-card{ background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 30px; text-align: center; }
.fund-card.fund-highlight{ background: var(--red); color: var(--white); border-color: var(--red); }
.fund-card .fund-label{ font-size: .78rem; letter-spacing: .08em; color: var(--ink-soft); margin-bottom: 10px; }
.fund-card.fund-highlight .fund-label{ color: rgba(255,255,255,.85); }
.fund-card .fund-value{ font-family: var(--serif); font-size: 2rem; }
.fund-card .fund-value small{ font-family: var(--sans); font-size: .8rem; font-weight: 400; margin-left: 2px; }

@media (max-width: 980px){
  .trial-hero{ padding: 110px 0 50px; }
  .experience-detail-grid{ grid-template-columns: 1fr; }
  .fund-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .check-list{ grid-template-columns: 1fr; }
}

.flow-panel{ background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 36px; margin-top: 30px; }
.flow-title{ font-family: var(--serif); font-size: 1.05rem; text-align: center; margin-bottom: 24px; color: var(--ink-soft); }
.flow-list{ display: flex; flex-direction: column; align-items: center; gap: 2px; }
.flow-step{ width: 100%; max-width: 480px; border-radius: 4px; padding: 18px 26px; text-align: center; }
.flow-step .flow-label{ font-family: var(--serif); font-size: 1.1rem; margin-bottom: 6px; }
.flow-step .flow-desc{ font-size: .8rem; opacity: .85; }
.flow-step-01{ background: var(--cream-2); color: var(--ink); }
.flow-step-02{ background: var(--rose-soft); color: var(--ink); }
.flow-step-03{ background: var(--rose); color: var(--white); }
.flow-step-final{ background: var(--ink); color: var(--white); }
.flow-arrow{ color: var(--red); font-size: 1.2rem; line-height: 1; margin: 2px 0; }

.article-meta{ display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.article-meta time{ color: var(--ink-soft); font-size: .88rem; }
.article-title{ font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 30px; line-height: 1.5; }
.article-body{ max-width: 720px; }
.article-body p{ font-size: .95rem; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.9; }
.article-body p:last-child{ margin-bottom: 0; }
.article-body strong{ color: var(--ink); font-weight: 600; }
.article-photo{ border-radius: 4px; overflow: hidden; margin-bottom: 30px; max-width: 720px; }
.article-photo img{ width: 100%; height: 320px; object-fit: cover; display: block; }
.article-info{ background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 26px 30px; max-width: 720px; margin-bottom: 30px; }
.article-info dl{ display: grid; grid-template-columns: 120px 1fr; gap: 12px 20px; margin: 0; }
.article-info dt{ font-size: .8rem; color: var(--ink-soft); }
.article-info dd{ margin: 0; font-size: .92rem; }

.faq-list{ display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.faq-item{ background: var(--white); padding: 24px 28px; }
.faq-q{ font-size: .98rem; font-weight: 600; display: flex; gap: 10px; margin-bottom: 10px; }
.faq-q::before{ content: "Q"; color: var(--red); font-family: var(--serif); }
.faq-a{ font-size: .88rem; color: var(--ink-soft); display: flex; gap: 10px; padding-left: 20px; }
.faq-a::before{ content: "A"; color: var(--rose); font-family: var(--serif); flex-shrink: 0; }

@media (max-width: 980px){
  .nandemo-hero{ padding: 130px 0 56px; }
  .task-grid{ grid-template-columns: repeat(2, 1fr); }
  .watch-grid{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: 1fr; }
  .news-row{ grid-template-columns: 50px 1fr; padding-right: 30px; }
  .news-row p{ grid-column: 1 / 3; }
  .news-row::after{ content: "→"; top: 26px; right: 4px; transform: none; font-size: 1rem; }
}
@media (max-width: 640px){
  .task-grid{ grid-template-columns: 1fr; }
  .k-grid{ grid-template-columns: repeat(2, 1fr); }
  .plan-banner{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px){
  .container{ padding: 0 20px; }
  .header-inner{ padding: 14px 20px; }
  .operator-text{ display: none; }
  .operator-badge{ padding-left: 12px; gap: 0; }
  .hero-content{ padding: 100px 20px 40px; }
  .hero-search{ padding: 20px; }
  .hero-thumbs{ margin-left: 0; width: 100%; }
  .area-grid{ grid-template-columns: 1fr; }
  .features-grid{ grid-template-columns: 1fr; }
  .feature-main{ grid-column: auto; }
  .prop-cats{ grid-template-columns: repeat(2, 1fr); }
  .sns-grid{ grid-template-columns: 1fr; }
  .experience-grid{ grid-template-columns: 1fr; }
  .trial-fields{ grid-template-columns: 1fr; }
  .news-body{ grid-template-columns: 1fr; }
  .article-info dl{ grid-template-columns: 1fr; gap: 4px 0; }
  .article-info dt{ margin-top: 10px; }
  .article-photo img{ height: 220px; }
  .footer-links{ gap: 30px; }
  .category-grid{ grid-template-columns: 1fr; }
  .news-hero-grid .life-photo-stack{ flex-direction: column; }
}

/* ==========================================================================
   仕事を探す → 暮らしに合う働き方を探す（トップ #jobs ／ jobs/ 下層ページ）
   ========================================================================== */
.jobs-photo-wide{ min-height: 400px; }
.work-message{ max-width: 760px; margin: 72px auto 56px; text-align: center; }
.work-message-eyebrow{ font-size: .78rem; letter-spacing: .14em; color: var(--pink); margin-bottom: 16px; }
.work-message h3{ font-size: clamp(1.4rem, 2.8vw, 2.1rem); line-height: 1.7; margin-bottom: 0; }
.work-message h3 .strike{ color: var(--ink-soft); font-weight: 500; }
.work-message p{ color: var(--ink-soft); line-height: 2.1; margin: 0 0 18px; font-size: .98rem; }
.work-styles{ list-style: none; padding: 0; margin: 28px auto; display: inline-flex; flex-direction: column; gap: 10px; text-align: left; }
.work-styles li{ font-family: var(--serif); font-size: 1.05rem; letter-spacing: .06em; display: flex; gap: 12px; align-items: baseline; }
.work-styles li::before{ content: "◇"; color: var(--pink); font-size: .9em; }
.work-message .work-close{ margin-top: 28px; color: var(--ink); font-family: var(--serif); font-size: 1.08rem; }
.work-message .work-close strong{ color: var(--pink); font-weight: 600; }

.work-cards{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.work-card{ background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.work-card-img{ aspect-ratio: 4 / 3; overflow: hidden; }
.work-card-img img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.work-card:hover .work-card-img img{ transform: scale(1.04); }
.work-card-body{ padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.work-card-eyebrow{ font-size: .68rem; letter-spacing: .1em; color: var(--ink-soft); }
.work-card h4{ font-size: 1.15rem; }
.work-card-body > p:not(.work-card-eyebrow){ font-size: .84rem; color: var(--ink-soft); line-height: 1.8; margin: 0; }
.work-card .link-more{ margin-top: auto; align-self: flex-start; }
.work-card-body .link-more{ margin-top: 14px; }
.work-card-green{ background: var(--green); border-color: var(--green); color: var(--white); }
.work-card-green .work-card-eyebrow,
.work-card-green .work-card-body > p:not(.work-card-eyebrow){ color: rgba(255,255,255,.85); }

/* 下層ページ */
.work-hero{ display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.work-hero-catch{ font-family: var(--serif); color: var(--pink); font-size: clamp(1.1rem, 2vw, 1.4rem); letter-spacing: .08em; margin: 18px 0 14px; }
.work-hero-photo{ border-radius: 4px; overflow: hidden; aspect-ratio: 4 / 3; }
.work-hero-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.work-block-title{ font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 28px; }
.work-check{ list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.work-check li{ padding: 18px 0; border-bottom: 1px solid var(--line); display: flex; gap: 14px; font-family: var(--serif); font-size: 1rem; line-height: 1.7; }
.work-check li::before{ content: "◇"; color: var(--pink); }
.work-items{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.work-item{ background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 24px; }
.work-item h3{ font-size: 1.05rem; margin-bottom: 10px; }
.work-item p{ font-size: .85rem; color: var(--ink-soft); line-height: 1.8; margin: 0; }
.work-note{ margin-top: 22px; font-size: .85rem; color: var(--ink-soft); }
.work-steps{ list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.work-steps li{ position: relative; padding: 26px 22px 24px; background: var(--milky-white); border-top: 2px solid var(--pink); }
.work-steps li::before{ counter-increment: step; content: "STEP 0" counter(step); display: block; font-size: .72rem; letter-spacing: .12em; color: var(--pink); margin-bottom: 10px; }
.work-steps h3{ font-size: 1.02rem; margin-bottom: 8px; }
.work-steps p{ font-size: .84rem; color: var(--ink-soft); line-height: 1.8; margin: 0; }
.work-faq{ max-width: 820px; }
.work-faq dt{ font-family: var(--serif); font-weight: 600; font-size: 1.02rem; padding-top: 22px; display: flex; gap: 12px; }
.work-faq dt::before{ content: "Q."; color: var(--pink); }
.work-faq dd{ margin: 10px 0 0; padding: 0 0 22px 30px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: .92rem; line-height: 1.9; }
.work-others{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.work-others a{ display: flex; justify-content: space-between; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 20px 22px; font-family: var(--serif); font-weight: 600; transition: border-color .2s; }
.work-others a:hover{ border-color: var(--pink); }
.work-others a .arrow{ color: var(--red); font-family: var(--sans); }

@media (max-width: 980px){
  .work-cards{ grid-template-columns: 1fr 1fr; }
  .work-hero{ grid-template-columns: 1fr; gap: 28px; }
  .work-items, .work-steps{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .work-message{ margin: 48px auto 40px; text-align: left; }
  .work-cards, .work-items, .work-steps, .work-check, .work-others{ grid-template-columns: 1fr; }
  .jobs-photo-wide{ min-height: 360px; }
}

/* 働き方バナー（トップ #jobs → work/） */
.work-banner{ position: relative; display: block; margin: 56px 0 40px; border-radius: 4px; overflow: hidden; min-height: 340px; color: var(--ink); }
.work-banner img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 30%; transition: transform .8s ease; }
.work-banner:hover img{ transform: scale(1.03); }
.work-banner::before{ content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(253,252,248,.94) 0%, rgba(253,252,248,.82) 34%, rgba(253,252,248,0) 62%); }
.work-banner-text{ position: relative; z-index: 2; padding: 56px 52px; max-width: 560px; }
.work-banner-eyebrow{ font-size: .78rem; letter-spacing: .14em; color: var(--pink); margin-bottom: 14px; }
.work-banner h3{ font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.7; margin-bottom: 24px; }
.work-banner h3 .strike{ color: var(--ink-soft); font-weight: 500; }
@media (max-width: 640px){
  .work-banner{ min-height: 420px; margin: 40px 0 28px; }
  .work-banner img{ object-position: 72% 50%; }
  .work-banner::before{ background: linear-gradient(180deg, rgba(253,252,248,.95) 0%, rgba(253,252,248,.85) 45%, rgba(253,252,248,0) 75%); }
  .work-banner-text{ padding: 32px 24px; }
}

/* WORK ページ（仮） */
.work-page-hero{ position: relative; border-radius: 4px; overflow: hidden; min-height: 420px; display: flex; align-items: center; }
.work-page-hero img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 30%; }
.work-page-hero::before{ content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(253,252,248,.95) 0%, rgba(253,252,248,.85) 36%, rgba(253,252,248,0) 64%); }
.work-page-hero .inner{ position: relative; z-index: 2; padding: 56px 52px; max-width: 700px; }
.work-page-hero h1{ font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.6; margin: 10px 0 0; }
.work-page-hero h1 .strike{ color: var(--ink-soft); font-weight: 500; }
.work-draft{ display: inline-block; font-size: .72rem; background: var(--pink-soft); color: var(--red-dark); padding: 4px 12px; border-radius: 12px; margin-bottom: 18px; }
@media (max-width: 640px){
  .work-page-hero{ min-height: 460px; align-items: flex-start; }
  .work-page-hero::before{ background: linear-gradient(180deg, rgba(253,252,248,.95) 0%, rgba(253,252,248,.85) 50%, rgba(253,252,248,0) 80%); }
  .work-page-hero .inner{ padding: 32px 24px; }
}
