/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #2c2c2c;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1140px; width: 90%; margin: 0 auto; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.label {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8b7e6a;
  margin-bottom: 12px;
}
.label--light { color: rgba(255,255,255,0.7); }
.section-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 30px;
}
.section-heading--light { color: #fff; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #8b7e6a;
  transition: gap 0.3s;
}
.btn-more:hover { gap: 20px; }
.btn-more__arrow {
  display: block;
  width: 40px;
  height: 1px;
  background: #8b7e6a;
  position: relative;
  transition: width 0.3s;
}
.btn-more__arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 8px; height: 8px;
  border-top: 1px solid #8b7e6a;
  border-right: 1px solid #8b7e6a;
  transform: rotate(45deg);
}
.btn-more--light { color: rgba(255,255,255,0.9); }
.btn-more--light .btn-more__arrow { background: rgba(255,255,255,0.7); }
.btn-more--light .btn-more__arrow::after { border-color: rgba(255,255,255,0.7); }

.btn-border {
  display: inline-block;
  padding: 15px 50px;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  transition: all 0.3s;
}
.btn-border:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 50px;
  height: 80px;
  display: flex;
  align-items: center;
  transition: all 0.4s;
}
.header.scrolled {
  background: rgba(20, 30, 28, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
.header__inner {
  display: flex;
  align-items: center;
  width: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.header__logo img {
  width: 32px;
  filter: brightness(0) invert(1);
}
.header__nav {
  margin-left: auto;
  margin-right: 30px;
}
.header__nav ul {
  display: flex;
  gap: 32px;
}
.header__nav a {
  color: rgba(255,255,255,0.85);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: #fff;
  transition: width 0.3s;
}
.header__nav a:hover { color: #fff; }
.header__nav a:hover::after { width: 100%; }
.header__cta {
  padding: 8px 28px;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.header__cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.header__burger {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 24px;
  cursor: pointer;
  position: relative;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.4s;
}
.header__burger span:first-child { top: 4px; }
.header__burger span:last-child { bottom: 4px; width: 70%; }
.header__burger.open span:first-child { top: 50%; transform: translateY(-50%) rotate(45deg); }
.header__burger.open span:last-child { bottom: 50%; width: 100%; transform: translateY(50%) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(20, 30, 28, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav ul { text-align: center; }
.mobile-nav li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav a {
  display: block;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  letter-spacing: 0.2em;
  padding: 20px 60px;
  transition: background 0.3s;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.05); }

@media (max-width: 900px) {
  .header { padding: 0 20px; height: 65px; }
  .header__nav, .header__cta { display: none; }
  .header__burger { display: block; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero__slider {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.5s ease, transform 8s ease;
}
.hero__slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15,25,23,0.3) 0%,
    rgba(15,25,23,0.15) 40%,
    rgba(15,25,23,0.4) 100%
  );
  z-index: 1;
}
.hero__content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: #fff;
}
.hero__logo-mark {
  width: 60px;
  margin: 0 auto 28px;
  opacity: 0.9;
}
.hero__logo-mark img { filter: brightness(0) invert(1); }
.hero__catch {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.6rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: 18px;
}
.hero__sub {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  opacity: 0.85;
}
.hero__line {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.4);
  margin: 35px auto 0;
}
.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.2em;
}
.hero__scroll-bar {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-bar::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.8);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

.hero__service-area {
  position: absolute;
  bottom: 24px;
  right: 32px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.hero__service-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.hero__service-link:hover {
  opacity: 0.85;
}
.hero__service-link-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.hero__service-link-logo {
  height: 56px;
  width: auto;
  display: block;
}
.hero__service-link-btn {
  display: inline-block;
  background: #346528;
  font-family: 'Noto Serif JP', serif;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
  margin-top: -8px;
  position: relative;
  z-index: 1;
}
.hero__sns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  color: #2c2c2c;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.hero__sns-icon:hover {
  background: #fff;
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .hero__catch { font-size: 3.6rem; }
  .hero__sub { font-size: 1.3rem; }
  .hero__service-link-logo { height: 46px; }
  .hero__service-link-btn { font-size: 1.1rem; padding: 5px 14px; margin-top: -7px; }
  .hero__sns-icon { width: 36px; height: 36px; }
  .hero__sns-icon svg { width: 18px; height: 18px; }
}
@media (max-width: 480px) {
  .hero__catch { font-size: 2.8rem; }
  .hero__service-area {
    bottom: 16px;
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
  .hero__service-link {
    align-items: flex-start;
  }
  .hero__service-link-logo { height: 38px; }
  .hero__service-link-card { padding: 8px 14px; border-radius: 10px; }
  .hero__service-link-btn { font-size: 1rem; padding: 4px 12px; margin-top: -6px; }
  .hero__sns-icon { width: 32px; height: 32px; }
  .hero__sns-icon svg { width: 16px; height: 16px; }
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  padding: 140px 0;
  background: #faf9f7;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro__heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}
.intro__desc {
  font-size: 1.4rem;
  line-height: 2.2;
  color: #666;
  margin-bottom: 35px;
}
.intro__img {
  border-radius: 6px;
  overflow: hidden;
}
.intro__img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s;
}
.intro__img:hover img { transform: scale(1.03); }

@media (max-width: 900px) {
  .intro { padding: 80px 0; }
  .intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro__heading { font-size: 2.4rem; }
  .intro__img img { height: 300px; }
}

/* ============================================
   SERVICE PREVIEW
   ============================================ */
.service-preview {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.service-preview__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.service-preview__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,25,23,0.82);
}
.service-preview .container { position: relative; z-index: 1; }
.service-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.service-preview__card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.4s;
  color: #fff;
}
.service-preview__card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-preview__card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.service-preview__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  opacity: 0.85;
}
.service-preview__card:hover .service-preview__card-img img {
  transform: scale(1.08);
  opacity: 1;
}
.service-preview__card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 20px 20px 6px;
  letter-spacing: 0.03em;
}
.service-preview__card p {
  font-size: 1.2rem;
  padding: 0 20px 22px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.section-cta-wrap { text-align: center; }

@media (max-width: 900px) {
  .service-preview { padding: 80px 0; }
  .service-preview__bg { background-attachment: scroll; }
  .service-preview__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .service-preview__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MESSAGE PREVIEW
   ============================================ */
.message-preview {
  padding: 140px 0;
  background: #fff;
}
.message-preview__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 70px;
  align-items: center;
}
.message-preview__img {
  border-radius: 6px;
  overflow: hidden;
}
.message-preview__img img {
  width: 100%;
  border-radius: 6px;
}
.message-preview__text {
  font-size: 1.4rem;
  line-height: 2.2;
  color: #666;
  margin-bottom: 30px;
}
.message-preview__name {
  margin-bottom: 30px;
}
.message-preview__position {
  display: block;
  font-size: 1.2rem;
  color: #999;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.message-preview__nametext {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.0rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .message-preview { padding: 80px 0; }
  .message-preview__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .message-preview__img { max-width: 260px; margin: 0 auto; }
}

/* ============================================
   FAMILY SECTION
   ============================================ */
.family-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.family-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.family-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,25,23,0.6);
}
.family-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.family-section__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}
.family-section__text {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.8);
  line-height: 2;
  margin-bottom: 35px;
}

@media (max-width: 900px) {
  .family-section { height: 400px; }
  .family-section__bg { background-attachment: scroll; }
  .family-section__heading { font-size: 3.4rem; }
}

/* ============================================
   COMPANY PREVIEW
   ============================================ */
.company-preview {
  padding: 140px 0;
  background: #faf9f7;
}
.company-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.company-preview__dl {
  margin-bottom: 30px;
}
.company-preview__dl dt {
  font-size: 1.2rem;
  font-weight: 700;
  color: #8b7e6a;
  letter-spacing: 0.06em;
  padding-top: 16px;
  border-top: 1px solid #e5e2dc;
}
.company-preview__dl dd {
  font-size: 1.4rem;
  color: #555;
  padding-bottom: 16px;
  line-height: 1.8;
}
.company-preview__img {
  border-radius: 6px;
  overflow: hidden;
}
.company-preview__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.6s;
}
.company-preview__img:hover img { transform: scale(1.03); }

@media (max-width: 900px) {
  .company-preview { padding: 80px 0; }
  .company-preview__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .company-preview__img img { height: 250px; }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,25,23,0.65);
}
.cta-section__content {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 20px;
  transition: background 0.3s;
}
.cta-section__content:hover { background: rgba(255,255,255,0.05); }
.cta-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.cta-section__text {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 35px;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .cta-section__bg { background-attachment: scroll; }
  .cta-section__content { padding: 80px 20px; }
  .cta-section__title { font-size: 2.8rem; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #141e1c;
  padding: 60px 50px 30px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 12px;
}
.footer__logo {
  width: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer__company {
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.footer__nav ul {
  display: flex;
  gap: 28px;
}
.footer__nav a {
  color: rgba(255,255,255,0.5);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer__nav a:hover { color: rgba(255,255,255,0.9); }
.footer__sns a {
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer__sns a:hover { color: rgba(255,255,255,0.9); }
.footer__copy {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .footer { padding: 40px 20px 20px; }
  .footer__inner {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  .footer__nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}

/* ============================================
   SUBPAGE: PAGE HERO
   ============================================ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,25,23,0.5);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.page-hero__sub {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
}

@media (max-width: 900px) {
  .page-hero { height: 45vh; min-height: 300px; }
  .page-hero__title { font-size: 3.4rem; }
}

/* ============================================
   SUBPAGE: THOUGHTS
   ============================================ */
.thoughts-content {
  padding: 120px 0;
  background: #faf9f7;
}
.thoughts-content__inner {
  max-width: 780px;
  margin: 0 auto;
}
.thoughts-content__heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}
.thoughts-content__text {
  font-size: 1.5rem;
  line-height: 2.4;
  color: #555;
  margin-bottom: 30px;
}
.thoughts-content__img {
  margin: 50px 0;
  border-radius: 6px;
  overflow: hidden;
}
.thoughts-content__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .thoughts-content { padding: 60px 0; }
  .thoughts-content__inner { width: 90%; }
  .thoughts-content__heading { font-size: 2.0rem; }
  .thoughts-content__img img { height: 250px; }
}

/* ============================================
   SUBPAGE: SERVICE
   ============================================ */
.service-content {
  padding: 120px 0;
  background: #fff;
}
.service-content__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.service-content__item:nth-child(even) {
  direction: rtl;
}
.service-content__item:nth-child(even) > * {
  direction: ltr;
}
.service-content__item:last-child { margin-bottom: 0; }
.service-content__img {
  border-radius: 6px;
  overflow: hidden;
}
.service-content__img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.6s;
}
.service-content__img:hover img { transform: scale(1.03); }
.service-content__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(139,126,106,0.3);
  line-height: 1;
  margin-bottom: 10px;
}
.service-content__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.service-content__text {
  font-size: 1.4rem;
  line-height: 2.2;
  color: #666;
}

@media (max-width: 900px) {
  .service-content { padding: 60px 0; }
  .service-content__item {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 60px;
  }
  .service-content__item:nth-child(even) { direction: ltr; }
  .service-content__img img { height: 240px; }
  .service-content__num { font-size: 3.6rem; }
  .service-content__title { font-size: 1.8rem; }
}

/* ============================================
   SUBPAGE: MESSAGE
   ============================================ */
.message-content {
  padding: 120px 0;
  background: #faf9f7;
}
.message-content__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 70px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.message-content__photo {
  border-radius: 6px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}
.message-content__photo img {
  width: 100%;
  border-radius: 6px;
}
.message-content__text {
  font-size: 1.5rem;
  line-height: 2.4;
  color: #555;
  margin-bottom: 25px;
}
.message-content__sign {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e5e2dc;
}
.message-content__sign-position {
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 5px;
}
.message-content__sign-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .message-content { padding: 60px 0; }
  .message-content__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 90%;
  }
  .message-content__photo {
    max-width: 240px;
    margin: 0 auto;
    position: static;
  }
}

/* ============================================
   SUBPAGE: COMPANY
   ============================================ */
.company-content {
  padding: 120px 0;
  background: #fff;
}
.company-content__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 70px;
  align-items: start;
}
.company-content table {
  width: 100%;
  border-collapse: collapse;
}
.company-content table tr {
  border-bottom: 1px solid #e5e2dc;
}
.company-content table th,
.company-content table td {
  padding: 20px 12px;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
}
.company-content table th {
  width: 130px;
  font-weight: 700;
  color: #8b7e6a;
  white-space: nowrap;
}
.company-content table td {
  color: #555;
}
.company-content__img {
  border-radius: 6px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}
.company-content__img img {
  width: 100%;
  border-radius: 6px;
}
.company-content__map {
  margin-top: 60px;
}
.company-content__map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .company-content { padding: 60px 0; }
  .company-content__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
  }
  .company-content__img { position: static; }
  .company-content table th { width: 100px; }
}

/* ============================================
   SUBPAGE: MEMBER
   ============================================ */
.member-intro {
  padding: 50px 0;
  background: #fff;
  text-align: center;
}
.member-intro__text {
  font-size: 1.5rem;
  color: #666;
  line-height: 2;
}
.member-grid-section {
  padding: 80px 0 120px;
  background: #faf9f7;
}
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.member-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}
.member-card__img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.member-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.member-card__img img.no-image {
  object-fit: contain;
  object-position: center;
  padding: 30px;
  background: #f5f3ef;
}
.member-card:hover .member-card__img img { transform: scale(1.05); }
.member-card__body { padding: 25px; }
.member-card__position {
  font-size: 1.1rem;
  color: #8b7e6a;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.member-card__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 3px;
}
.member-card__name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #bbb;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.member-card__message {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #777;
}
.member-card__tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.member-card__tag {
  padding: 3px 12px;
  background: #f5f3ef;
  border-radius: 20px;
  font-size: 1.1rem;
  color: #8b7e6a;
}

@media (max-width: 1024px) {
  .member-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}
@media (max-width: 600px) {
  .member-grid-section { padding: 50px 0 80px; }
  .member-grid { grid-template-columns: 1fr; }
  .member-card__img { height: 250px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
