@charset "UTF-8";
/* ============================================================
   CSS カスタムプロパティ（色・レイアウト値：実行時に使用）
   ============================================================ */
:root {
  --c-cream: #FFF6DF;
  --c-cream-alt: #FAF0D5;
  --c-amber: #FCBE61;
  --c-dark: #5F3700;
  --c-white: #FFFFFF;
  --c-coral: #F77567;
  --c-sand: #E4B88A;
  --color-bg: var(--c-cream);
  --color-primary: var(--c-amber);
  --color-text: var(--c-dark);
  --color-text-sub: rgba(95, 55, 0, 0.60);
  --color-white: var(--c-white);
  --color-btype: var(--c-sand);
  --color-btype-bg: rgba(228, 184, 138, 0.22);
  --color-gh: var(--c-coral);
  --color-gh-bg: rgba(247, 117, 103, 0.10);
  --font-main: 'Zen Maru Gothic', sans-serif;
  --font-serif: 'Zen Maru Gothic', sans-serif;
  --left-panel-w: 280px;
  --transition: 0.35s ease;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(95, 55, 0, 0.10);
  --shadow-hover: 0 8px 32px rgba(95, 55, 0, 0.18);
}

/* ============================================================
   リセット & ベース
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}
a:hover {
  opacity: 0.75;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ============================================================
   ユーティリティ
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 140px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-en {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--c-amber);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--color-text);
}

/* ============================================================
   左パネル：ロゴ＋ナビ
   ============================================================ */
.left-panel {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--left-panel-w);
  height: 100svh;
  z-index: 999;
  display: flex;
  flex-direction: column;
  background: rgba(255, 246, 223, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 0 0 16px 0;
  box-shadow: inset -3px 0 6px rgba(95, 55, 0, 0.08), 4px 0 24px rgba(95, 55, 0, 0.15);
  transition: height 0.4s ease, border-radius 0.4s ease, box-shadow 0.4s ease;
}
body.hero-passed .left-panel {
  height: auto;
  border-radius: 0 0 12px 0;
  box-shadow: 2px 4px 12px rgba(95, 55, 0, 0.12);
}

.logo-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 24px;
  text-decoration: none;
  border-bottom: 1px solid rgba(95, 55, 0, 0.1);
  flex-shrink: 0;
  transition: opacity var(--transition), border-color 0.3s ease;
}
.logo-link:hover {
  opacity: 0.75;
}
body.hero-passed .logo-link {
  border-bottom-color: transparent;
  padding: 13px 24px;
}

.logo-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 12px;
  max-height: 300px;
  opacity: 1;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
}
body.hero-passed .logo-img {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: var(--c-amber);
  font-weight: 700;
  text-transform: uppercase;
  max-height: 40px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
body.hero-passed .logo-sub {
  max-height: 0;
  opacity: 0;
  margin: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--c-dark);
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin: 0;
}

.global-nav {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 1;
  max-height: 1000px;
  transition: opacity 0.3s ease, max-height 0.4s ease;
}
body.hero-passed .global-nav {
  opacity: 0;
  pointer-events: none;
  max-height: 0;
}
.global-nav ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 8px 0;
}
.global-nav a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 900;
  color: var(--c-dark);
  padding: 14px 24px;
  letter-spacing: 0.04em;
  position: relative;
  transition: background var(--transition);
}
.global-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 55%;
  background: var(--c-amber);
  border-radius: 0 3px 3px 0;
  transition: transform var(--transition);
}
.global-nav a:hover {
  opacity: 1;
  background: rgba(252, 190, 97, 0.12);
}
.global-nav a:hover::before {
  transform: translateY(-50%) scaleY(1);
}

.nav-en {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--c-amber);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

/* ============================================================
   右上ヘッダー（スクロール後に出現）
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
body.hero-passed .site-header {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-nav {
  background: rgba(255, 246, 223, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 0 0 0 14px;
  box-shadow: -2px 4px 16px rgba(95, 55, 0, 0.12);
}
.header-nav ul {
  display: flex;
}
.header-nav a {
  display: block;
  padding: 16px 22px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-dark);
  letter-spacing: 0.06em;
  position: relative;
  transition: background var(--transition);
}
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 22px;
  right: 22px;
  height: 2px;
  background: var(--c-amber);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.header-nav a:hover {
  opacity: 1;
}
.header-nav a:hover::after {
  transform: scaleX(1);
}

/* ============================================================
   ハンバーガー（モバイルのみ）
   ============================================================ */
.nav-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
  flex-direction: column;
  gap: 5px;
  background: var(--c-cream);
  padding: 10px;
  border-radius: 8px;
  box-shadow: inset 2px 2px 4px rgba(95, 55, 0, 0.12), 0 2px 8px rgba(95, 55, 0, 0.15);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   ヒーローセクション
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  margin-left: var(--left-panel-w);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #5F3700 0%, #9C6020 30%, #E4B88A 65%, #FCBE61 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(95, 55, 0, 0.3) 0%, rgba(95, 55, 0, 0.52) 55%, rgba(95, 55, 0, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--c-white);
  padding: 0 24px;
  max-width: 820px;
}

.hero-catch {
  font-size: clamp(0.875rem, 2vw, 1rem);
  letter-spacing: 0.4em;
  margin-bottom: 16px;
  opacity: 0.85;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-desc {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.9;
  margin-bottom: 52px;
  opacity: 0.9;
  font-weight: 400;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.7));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
}

/* ============================================================
   あすなろについて
   ============================================================ */
.about {
  background: var(--c-cream);
}

.about-text {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 2;
  font-size: 1.125rem;
  color: var(--color-text-sub);
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-card {
  display: block;
  padding: 48px 40px;
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: var(--shadow);
  text-align: center;
}
.about-card:hover {
  opacity: 1;
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.about-card.card-btype {
  background: var(--color-btype-bg);
}
.about-card.card-grouphome {
  background: var(--color-gh-bg);
}

.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}
.card-icon svg {
  width: 100%;
  height: 100%;
}
.card-btype .card-icon {
  color: var(--c-dark);
}
.card-grouphome .card-icon {
  color: var(--c-coral);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.5;
  color: var(--c-dark);
}

.card-text {
  font-size: 1.125rem;
  color: var(--color-text-sub);
  line-height: 1.8;
  margin-bottom: 20px;
}

.card-link {
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
}
.card-btype .card-link {
  color: var(--c-dark);
}
.card-grouphome .card-link {
  color: var(--c-coral);
}

/* ============================================================
   サービスを選ぶ（帯レイアウト）
   ============================================================ */
.services {
  padding: 140px 0;
  background: var(--c-cream-alt);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.services::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: rgba(95, 55, 0, 0.06);
  pointer-events: none;
  z-index: -1;
}

.service-bands {
  margin-top: 56px;
}

.service-band {
  display: flex;
  min-height: 340px;
  transition: filter var(--transition);
}
.service-band:hover {
  opacity: 1;
  filter: brightness(0.97);
}
.service-band--btype {
  background: rgba(228, 184, 138, 0.3);
}
.service-band--gh {
  background: rgba(247, 117, 103, 0.12);
}

.service-band__image {
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: var(--c-sand);
}
.service-band__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-band:hover .service-band__image img {
  transform: scale(1.04);
}

.service-band--btype .service-band__image {
  clip-path: polygon(0 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
}

.service-band--gh .service-band__image {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 80px 100%);
}

.service-band__content {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 52px clamp(32px, 5vw, 64px);
}

.service-band__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-band__row1 {
  display: flex;
  align-items: center;
  gap: 24px;
}

.service-band__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.service-band__icon svg {
  width: 100%;
  height: 100%;
}
.service-band--btype .service-band__icon {
  color: var(--c-dark);
}
.service-band--gh .service-band__icon {
  color: var(--c-coral);
}

.service-band__en {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.service-band--btype .service-band__en {
  color: var(--c-dark);
  opacity: 0.5;
}
.service-band--gh .service-band__en {
  color: var(--c-coral);
}

.service-band__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--c-dark);
  line-height: 1.2;
}

.service-band__row2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-left: 76px;
}

.service-band__text {
  font-size: 1.125rem;
  color: var(--color-text-sub);
  line-height: 1.85;
  flex: 1;
}

.service-band__link {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  border: 1.5px solid;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--transition);
}
.service-band--btype .service-band__link {
  color: var(--c-dark);
  border-color: var(--c-dark);
}
.service-band--gh .service-band__link {
  color: var(--c-coral);
  border-color: var(--c-coral);
}

.service-band:hover .service-band__link {
  color: var(--c-white);
}

.service-band--btype:hover .service-band__link {
  background: var(--c-dark);
}

.service-band--gh:hover .service-band__link {
  background: var(--c-coral);
}

@media (max-width: 768px) {
  .service-band {
    flex-direction: column;
    min-height: auto;
  }
  .service-band__image {
    width: 100%;
    height: 220px;
  }
  .service-band__content {
    width: 100%;
    padding: 36px 24px;
  }
  .service-band__row2 {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    gap: 16px;
  }
}
/* ============================================================
   挨拶（画像を画面端まで広げる）
   ============================================================ */
.greeting {
  background: var(--c-cream-alt);
  overflow: hidden;
  padding: 140px 0;
  position: relative;
  isolation: isolate;
}
.greeting::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: rgba(95, 55, 0, 0.06);
  pointer-events: none;
  z-index: -1;
}

.greeting-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  min-height: 560px;
}

.greeting-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--c-sand) 0%, rgba(252, 190, 97, 0.35) 100%);
  min-height: 480px;
  border-radius: 0 48px 48px 0;
  margin-left: calc(-24px - max(0px, (100vw - 1100px) / 2));
}
.greeting-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.greeting--reverse .greeting-inner {
  direction: rtl;
}
.greeting--reverse .greeting-body {
  direction: ltr;
}
.greeting--reverse .greeting-image {
  border-radius: 48px;
  margin-left: 0;
  margin-right: clamp(24px, 4vw, 48px);
}

.greeting-body {
  display: flex;
  align-items: center;
  padding: clamp(20px, 3vw, 40px) clamp(24px, 3vw, 40px) clamp(20px, 3vw, 40px) 0;
}

.greeting-body__inner {
  width: 100%;
  max-width: 35vw;
  padding: 56px clamp(32px, 4vw, 48px);
  background: var(--c-white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.greeting-title {
  margin-bottom: 32px;
}

.greeting-text {
  font-size: 1.125rem;
  line-height: 2;
  color: var(--color-text-sub);
  margin-bottom: 16px;
}
.greeting-text:last-of-type {
  margin-bottom: 24px;
}

.greeting-sign {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-dark);
  text-align: right;
  padding-top: 12px;
  border-top: 1px solid rgba(95, 55, 0, 0.1);
}

/* ============================================================
   お知らせ
   ============================================================ */
.news {
  background: var(--c-cream);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.news::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: rgba(228, 184, 138, 0.12);
  pointer-events: none;
  z-index: -1;
}

.news-list {
  margin: 0 auto 40px;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 0 40px;
  box-shadow: var(--shadow);
}

.news-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(95, 55, 0, 0.1);
  flex-wrap: wrap;
}
.news-item:first-child {
  border-top: 1px solid rgba(95, 55, 0, 0.1);
}

.news-date {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  white-space: nowrap;
  font-feature-settings: "tnum";
}

.news-tag {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 500;
}
.news-tag.tag-info {
  background: rgba(252, 190, 97, 0.22);
  color: var(--c-dark);
}
.news-tag.tag-btype {
  background: rgba(228, 184, 138, 0.35);
  color: var(--c-dark);
}
.news-tag.tag-grouphome {
  background: rgba(247, 117, 103, 0.18);
  color: var(--c-coral);
}

.news-title {
  font-size: 1.125rem;
  font-weight: 400;
  flex: 1;
  min-width: 200px;
  transition: color var(--transition);
}
.news-title:hover {
  color: var(--c-coral);
  opacity: 1;
}

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

.btn-more {
  display: inline-block;
  padding: 14px 40px;
  border: 1.5px solid var(--c-dark);
  border-radius: 40px;
  font-size: 0.875rem;
  color: var(--c-dark);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.btn-more:hover {
  opacity: 1;
  background: var(--c-dark);
  color: var(--c-white);
}
.btn-more--circle {
  width: 120px;
  height: 120px;
  padding: 0;
  border-radius: 50%;
  border-color: var(--c-dark);
  background: var(--c-dark);
  color: var(--c-cream);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.btn-more--circle:hover {
  background: var(--c-amber);
  border-color: var(--c-amber);
  color: var(--c-dark);
}

/* ============================================================
   SNS
   ============================================================ */
.sns {
  background: var(--c-cream);
}

.sns-desc {
  text-align: center;
  color: var(--color-text-sub);
  margin-bottom: 48px;
  font-size: 1rem;
}

.sns-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.sns-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  border-radius: var(--radius);
  background: var(--c-white);
  box-shadow: var(--shadow);
  min-width: 280px;
  transition: all var(--transition);
}
.sns-card:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.sns-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--c-coral);
}
.sns-icon svg {
  width: 100%;
  height: 100%;
}

.sns-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sns-name {
  font-size: 0.7rem;
  color: var(--color-text-sub);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.sns-handle {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-dark);
}

.sns-action {
  font-size: 0.75rem;
  color: var(--c-coral);
  font-weight: 500;
}

/* ============================================================
   お問合せ
   ============================================================ */
.contact {
  background: var(--c-dark);
  padding: 140px 0;
}

.contact-inner {
  text-align: center;
}

.section-header--light .section-en {
  color: var(--c-amber);
}
.section-header--light .section-title {
  color: var(--c-white);
}

.contact-desc {
  color: rgba(255, 246, 223, 0.8);
  margin-bottom: 40px;
  font-size: 1.125rem;
}

.contact-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 500;
  transition: all var(--transition);
}
.contact-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.btn-tel {
  background: var(--c-amber);
  color: var(--c-dark);
}
.btn-tel:hover {
  background: var(--c-sand);
}

.btn-form {
  border: 2px solid rgba(255, 246, 223, 0.55);
  color: var(--c-cream);
}
.btn-form:hover {
  background: rgba(255, 246, 223, 0.12);
}

/* ============================================================
   フッター
   ============================================================ */
.site-footer {
  background: var(--c-dark);
  color: rgba(255, 246, 223, 0.6);
  padding: 64px 0 0;
  border-top: 1px solid rgba(228, 184, 138, 0.25);
}

.footer-inner {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
}
.footer-logo .logo-text {
  color: var(--c-cream);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 900;
}
.footer-logo .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(228, 184, 138, 0.6);
}

.footer-nav {
  display: flex;
  gap: 48px;
  flex: 1;
  flex-wrap: wrap;
}

.footer-nav-col {
  min-width: 140px;
}
.footer-nav-col ul li {
  margin-bottom: 8px;
}
.footer-nav-col a {
  font-size: 1.125rem;
  color: rgba(255, 246, 223, 0.5);
  transition: color var(--transition);
}
.footer-nav-col a:hover {
  color: var(--c-amber);
  opacity: 1;
}

.footer-nav-heading {
  font-size: 0.875rem;
  color: var(--c-cream);
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(228, 184, 138, 0.15);
  padding: 20px 0;
  text-align: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 246, 223, 0.35);
}

/* ============================================================
   活動記録
   ============================================================ */
.activity {
  background: var(--c-cream);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.activity::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: rgba(228, 184, 138, 0.12);
  pointer-events: none;
  z-index: -1;
}

.activity-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: stretch;
}

.activity-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.activity-intro__texts {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  flex: 1;
}

.activity-intro .news-more {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-intro__en {
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--c-amber);
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}

.activity-intro__title {
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--c-dark);
  letter-spacing: 0.15em;
  flex-shrink: 0;
}

.activity-intro__desc {
  writing-mode: vertical-rl;
  font-size: 1.125rem;
  line-height: 2.2;
  color: var(--color-text-sub);
  flex-shrink: 0;
  overflow: hidden;
}

.activity-main {
  width: 100%;
  position: relative;
}

.activity-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-dark);
  color: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  transition: background var(--transition), opacity var(--transition);
  z-index: 10;
  cursor: pointer;
}
.activity-nav svg {
  width: 20px;
  height: 20px;
}
.activity-nav:hover {
  background: var(--c-amber);
  color: var(--c-dark);
}
.activity-nav--prev {
  opacity: 0;
  pointer-events: none;
}

.activity-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  width: calc(100% + 24px + max(0px, (100vw - 1100px) / 2));
  scrollbar-width: none;
}
.activity-grid::-webkit-scrollbar {
  display: none;
}

.activity-spacer {
  flex: 0 0 50vw;
  pointer-events: none;
}

.activity-card {
  flex: 0 0 calc((100% - 56px) / 5);
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--c-cream);
  border-radius: var(--radius);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.activity-card:hover {
  transform: translateY(-6px);
}
.activity-card:hover .activity-card__thumb img {
  transform: scale(1.05);
}

.activity-card__thumb {
  display: block;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.activity-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.activity-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-sand) 0%, rgba(252, 190, 97, 0.4) 100%);
}

.activity-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--c-white);
  border: 1.5px solid rgba(95, 55, 0, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.activity-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.activity-card__meta time {
  font-size: 0.75rem;
  color: var(--color-text-sub);
  font-feature-settings: "tnum";
}

.activity-tag {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  white-space: nowrap;
}
.activity-tag.tag-btype {
  background: rgba(228, 184, 138, 0.35);
  color: var(--c-dark);
}
.activity-tag.tag-grouphome {
  background: rgba(247, 117, 103, 0.18);
  color: var(--c-coral);
}

.activity-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
}
.activity-card__title a {
  color: var(--c-dark);
  transition: color var(--transition);
}
.activity-card__title a:hover {
  opacity: 1;
  color: var(--c-coral);
}

.activity-card__excerpt {
  font-size: 1.125rem;
  color: var(--color-text-sub);
  line-height: 1.75;
  flex: 1;
}

/* ============================================================
   商品紹介
   ============================================================ */
.products {
  background: var(--c-cream-alt);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.products::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: rgba(95, 55, 0, 0.06);
  pointer-events: none;
  z-index: -1;
}

.products-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 5vw, 64px);
  align-items: stretch;
}

.products-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.products-intro__texts {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  flex: 1;
}

.products-intro .news-more {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-intro__en {
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--c-amber);
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}

.products-intro__title {
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--c-dark);
  letter-spacing: 0.15em;
  flex-shrink: 0;
}

.products-intro__desc {
  writing-mode: vertical-rl;
  font-size: 1.125rem;
  line-height: 2.2;
  color: var(--color-text-sub);
  flex-shrink: 0;
  overflow: hidden;
}

.products-main {
  width: 100%;
  position: relative;
}

.products-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-dark);
  color: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  transition: background var(--transition), opacity var(--transition);
  z-index: 10;
  cursor: pointer;
}
.products-nav svg {
  width: 20px;
  height: 20px;
}
.products-nav:hover {
  background: var(--c-amber);
  color: var(--c-dark);
}
.products-nav--prev {
  opacity: 0;
  pointer-events: none;
}

.products-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.products-grid::-webkit-scrollbar {
  display: none;
}

.products-spacer {
  flex: 0 0 24px;
  pointer-events: none;
}

.product-card {
  flex: 0 0 calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.product-card:hover .product-card__thumb img {
  transform: scale(1.05);
}

.product-card__thumb {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card__img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-sand) 0%, rgba(252, 190, 97, 0.4) 100%);
}

.product-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.5;
  padding: 12px 14px;
  text-align: center;
}

/* ============================================================
   スクロールアニメーション
   ============================================================ */
.anim-target {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-card:nth-child(2).anim-target {
  transition-delay: 0.12s;
}

.sns-card:nth-child(2).anim-target {
  transition-delay: 0.12s;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
/* ---- 900px：タブレット横 ---- */
@media (max-width: 900px) {
  .activity-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .activity-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .activity-intro__texts {
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
  }
  .activity-intro__en,
  .activity-intro__title,
  .activity-intro__desc {
    writing-mode: horizontal-tb;
  }
  .activity-intro__desc {
    display: none;
  }
  .activity-intro .news-more {
    align-self: flex-start;
    flex: 0 0 auto;
  }
  .activity-nav {
    display: none;
  }
  .activity-card {
    flex: 0 0 calc((100% - 56px) / 2.5);
  }
  .activity-spacer {
    flex-basis: 24px;
  }
}
/* ---- 768px：タブレット縦・スマートフォン ---- */
@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }
  .section {
    padding: 80px 0;
  }
  /* ナビゲーション */
  .hero {
    margin-left: 0;
  }
  .left-panel {
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    height: 100svh !important;
    border-radius: 0 16px 16px 0;
  }
  .left-panel.open {
    transform: translateX(0);
  }
  .site-header {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  /* About */
  .about-cards {
    grid-template-columns: 1fr;
  }
  .about-card {
    padding: 36px 28px;
  }
  /* ご挨拶 */
  .greeting-inner {
    grid-template-columns: 1fr;
  }
  .greeting-image {
    min-height: 300px;
    border-radius: 0 24px 24px 0;
  }
  .greeting-body {
    padding: 16px 0;
  }
  .greeting-body__inner {
    max-width: 100%;
    padding: 36px 24px;
    border-radius: 16px;
  }
  /* 活動記録 */
  .activity-card {
    flex: 0 0 calc((100% - 28px) / 1.5);
  }
  /* お知らせ */
  .news-list {
    padding: 0 20px;
  }
  .news-item {
    gap: 10px;
  }
  .news-title {
    width: 100%;
    flex: none;
  }
  /* SNS */
  .sns-cards {
    flex-direction: column;
    align-items: center;
  }
  .sns-card {
    width: 100%;
    max-width: 360px;
  }
  /* フッター */
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
  .footer-nav {
    gap: 32px;
  }
}
/* ---- 480px：スマートフォン小 ---- */
@media (max-width: 480px) {
  .section {
    padding: 64px 0;
  }
  .container {
    padding: 0 16px;
  }
  .greeting-image {
    border-radius: 0 16px 16px 0;
  }
  .greeting-body__inner {
    padding: 28px 20px;
    border-radius: 12px;
  }
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  .contact-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/*# sourceMappingURL=style.css.map */
