:root {
  --theme-dark: #5c161e;
  --theme-mid: #7e1e29;
  --theme-main: #8e1f2b; /* 茜色・エンジ系 */
  --theme-light: #b04351;
  --theme-pale: #fdf5f5;
  --theme-mist: #fffaf9;
  --accent-bg: #f9f2f2;
  --accent-bg-light: #fdfafa;
  --accent-bg-mid: #ecdada;
  --white: #fafafa;
  --cream: #fafafa;
  --text-dark: #333333;
  --text-mid: #555555;
  --text-light: #999999;
  --border: #e0e0e0;
  --gold: #8b6914;
  --gold-light: #c9a227;
  --gold-premium: #b3914a; /* より上品なアンティークゴールド */
  --line-green: #06C755;
  --line-premium: #05a344; /* 少し落ち着いたLINEグリーン */
  --contact-tel: var(--theme-main);
  --contact-web: var(--gold-premium);
  --contact-line: var(--line-premium);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Serif JP', serif;
  color: var(--text-dark);
  background: var(--white);
  font-weight: 400;
  line-height: 2.1;
}

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


/* HEADER */
/* STICKY TOP HEADER */
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: white;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  /* PCは最初から表示 */
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.sticky-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.sticky-nav a {
  font-size: 0.78rem;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: color 0.3s;
}

/* SCROLLED STATE */
.is-scrolled .header-sticky {
  transform: translateY(0);
}

.sticky-cta {
  background: var(--theme-main);
  color: white !important;
  padding: 0.5rem 1.4rem;
  border-radius: 4px;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  font-weight: 700;
}

.sticky-cta:hover {
  background: var(--theme-dark) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(142, 31, 43, 0.2);
}

/* SP HEADER (HIDDEN ON DESKTOP) */
.header-sp {
  display: none;
}

.sp-menu {
  display: none;
}

/* HERO */
.hero {
  min-height: 100vh;
  min-height: 100dvh; /* Changed from 60vh to full screen */
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-video-bg.is-sp {
  display: none;
}

@media (max-width: 768px) {
  .hero-video-bg.is-pc {
    display: none;
  }
  .hero-video-bg.is-sp {
    display: block;
  }
}

.hero-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 100%);
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3rem 2rem 8%;
}

.hero-logo-block {
  margin-bottom: 0;
}

.hero-logo-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-points-modern {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.modern-point {
  font-size: 0.9rem;
  color: #666666;
  letter-spacing: 0.05em;
  padding-left: 2rem;
  position: relative;
  font-weight: 500;
}

.modern-point::before {
  content: '✻';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    padding: 2rem;
    order: -1;
  }

  .hero-left {
    padding: 2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-outline {
    width: 100%;
    text-align: center;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  background: var(--theme-main);
  color: white;
  padding: 1.4rem 3.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: 1px solid var(--theme-main);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
}

.btn-primary:hover {
  background: var(--text-dark);
  border-color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  background: transparent;
  color: var(--text-dark);
  padding: 1.4rem 3.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: 1px solid var(--text-dark);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
}

.btn-outline:hover {
  background: var(--text-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Right - Vertical Catchcopy */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem 8% 2rem 2rem;
}

.hero-v-heading {
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--theme-dark);
  letter-spacing: 0.35em;
  line-height: 1.4;
  text-align: start;
}

/* 豕｢邏・scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  z-index: 2;
}

.scroll-hint span {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--text-light);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--theme-main), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* SECTION BASE */
section {
  padding: 7rem 0;
}

/* Standard container used globally */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-en {
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1.2rem;
  display: block;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--theme-dark);
  letter-spacing: 0.15em;
  line-height: 1.6;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 2.2;
  margin-top: 2rem;
  letter-spacing: 0.05em;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--text-dark);
  margin: 2.5rem auto;
}

/* WORRY */
.worry-section {
  background: #fbf9f2;
  position: relative;
  overflow: hidden;
}

.worry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 4rem auto 0;
}

.worry-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 1rem;
  border-bottom: 1px solid var(--accent-bg-mid);
}

.worry-item:nth-child(odd) {
  border-right: 1px solid var(--accent-bg-mid);
}

.worry-index {
  font-family: 'Sawarabi Mincho', serif;
  font-size: 0.7rem;
  color: var(--theme-mid);
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.worry-text {
  font-size: 0.95rem;
  color: #2c3e2c;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.worry-resolve-yaegaki {
  margin-top: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 3.5rem;
}

.hanko-seal {
  width: 72px;
  height: 72px;
  border: 2px solid #b22d35;
  border-radius: 50%;
  color: #b22d35;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sawarabi Mincho', serif;
  font-weight: 700;
  font-size: 1rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  padding: 4px;
  margin-bottom: 0;
  position: relative;
  transform: rotate(-10deg);
  flex-shrink: 0;
}

.hanko-seal::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(178, 45, 53, 0.3);
  border-radius: 50%;
}

.worry-resolve-text p {
  font-size: 1.1rem;
  color: #2c3e2c;
  line-height: 2.2;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  font-family: 'Noto Serif JP', serif;
}

.worry-resolve-headline {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--theme-dark);
  margin: 5rem 0 4rem;
  line-height: 1.6;
  position: relative;
}

@media (max-width: 768px) {
  .worry-resolve-headline {
    font-size: 1.45rem;
    margin: 4rem 0 3rem;
  }
}

.worry-resolve-headline::after {
  content: "✻";
  display: block;
  font-size: 1rem;
  color: var(--theme-main);
  opacity: 0.5;
  margin-top: 1rem;
  font-weight: 400;
}

.worry-resolve-text strong {
  font-weight: 700;
  color: var(--theme-dark);
}

@media (max-width: 768px) {
  .worry-grid {
    grid-template-columns: 1fr;
  }

  .worry-item:nth-child(odd) {
    border-right: none;
  }

  .worry-item {
    padding: 0.5rem;
  }
}

/* ABOUT */
.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-image-area {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--theme-mist);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 12px,
      rgba(61, 122, 53, 0.04) 12px,
      rgba(61, 122, 53, 0.04) 13px);
}

.about-img-kanji {
  font-family: 'Noto Serif JP', serif;
  font-size: 5rem;
  color: var(--theme-pale);
  font-weight: 900;
  z-index: 1;
  position: relative;
}

.about-img-frame {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80%;
  height: 80%;
  border: 2px solid var(--theme-pale);
  z-index: -1;
}

.about-content .section-header {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-content .divider {
  margin: 1.2rem 0;
}

.about-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 2;
  letter-spacing: 0.02em;
}

/* SERVICES */
.services-section {
  background-color: var(--theme-pale);
  background-image: 
    linear-gradient(225deg, rgba(253, 245, 245, 0) 0%, rgba(253, 245, 245, 1) 80%),
    linear-gradient(45deg, rgba(142, 31, 43, 0.04) 25%, transparent 25%, transparent 75%, rgba(142, 31, 43, 0.04) 75%, rgba(142, 31, 43, 0.04)),
    linear-gradient(45deg, rgba(142, 31, 43, 0.04) 25%, transparent 25%, transparent 75%, rgba(142, 31, 43, 0.04) 75%, rgba(142, 31, 43, 0.04));
  background-size: 100% 100%, 100px 100px, 100px 100px;
  background-position: 0 0, 0 0, 50px 50px;
  position: relative;
  padding: 8rem 0;
}

/* PRICING POLICY */
.pricing-policy {
  max-width: 800px;
  margin: 3rem auto 5rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 2.5rem;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.policy-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  color: var(--theme-dark);
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.policy-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 2;
  text-align: left;
  max-width: 650px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing-policy {
    padding: 2.5rem 1.5rem;
    margin: 2rem 0 4rem;
  }
  .policy-title {
    font-size: 1.2rem;
  }
  .policy-text {
    font-size: 0.9rem;
    line-height: 1.8;
  }
}

/* PRICING MENU LIST */
.pricing-menu {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 4rem;
  background: white;
  padding: 4rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dotted var(--border);
  padding-bottom: 0.8rem;
}

.item-name {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

.item-price {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: var(--theme-dark);
  font-size: 1.1rem;
  white-space: nowrap;
}

.pricing-notes {
  margin-top: 2.5rem;
  text-align: center;
}

.pricing-notes p {
  font-size: 0.9rem;
  color: var(--text-dark); /* 視認性を高めるために濃い色に変更 */
  line-height: 1.8;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.pricing-cta {
  margin-top: 4rem;
  text-align: center;
}

@media (max-width: 992px) {
  .pricing-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
  }
}

.pricing-section {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 7rem 0;
}

.pricing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88); /* 0.5から0.88に上げて背景を白く飛ばし、文字を読みやすくする */
  z-index: 1;
}

.services-layout-v3 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 5rem;
}

/* Card 1: Full Width */
.service-card-full {
  background: white;
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-full:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.service-img-full {
  flex: 0 0 42%;
  overflow: hidden;
  position: relative;
}

.service-img-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-full:hover .service-img-full img {
  transform: scale(1.05);
}

.service-body-full {
  flex: 1;
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
}

/* Sub Grid (Cards 2-4) */
.services-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1100px) {
  .service-body-full {
    padding: 2.5rem;
  }
}

@media (max-width: 992px) {
  .service-card-full {
    flex-direction: column;
  }
  .service-img-full {
    flex: 0 0 auto;
    aspect-ratio: 16/10;
  }
  .services-sub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-sub-grid {
    grid-template-columns: 1fr;
  }
}

.service-card-v2 {
  background: white;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-img-v2 {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-img-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-v2:hover .service-img-v2 img {
  transform: scale(1.05);
}

.service-num-v2 {
  writing-mode: vertical-rl;
  font-family: 'Sawarabi Mincho', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--theme-main);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  line-height: 1;
  position: relative;
}

.service-num-v2::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: var(--theme-main);
  opacity: 0.3;
  margin-top: 10px;
}

.service-body-v2 {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title-v2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--theme-dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.service-text-v2 {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-sub-text {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.6;
}

.service-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.menu-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.menu-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 0.6rem;
  background: var(--theme-pale);
  border: 1px solid var(--border);
}

.menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.menu-item:hover .menu-img img {
  transform: scale(1.1);
}

.menu-item p {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--theme-dark);
  margin: 0;
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .service-menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .menu-item p {
    font-size: 0.75rem;
  }
}

.service-cta-v2 {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-small-outline {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: 1px solid var(--theme-main);
  color: var(--theme-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: transparent;
}

.btn-small-outline:hover {
  background: var(--theme-main);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(142, 31, 43, 0.15);
}

@media (max-width: 992px) {
  .services-grid-v2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* FLOW */
.flow-section {
  padding: 100px 0;
  background-color: #fbfaf5; /* 鳥の子色（温かみのあるクリーム） */
  background-image: 
    linear-gradient(225deg, rgba(251, 250, 245, 0) 0%, rgba(251, 250, 245, 1) 80%),
    radial-gradient(circle at 50% 50%, transparent 45%, rgba(139, 105, 20, 0.07) 46%, rgba(139, 105, 20, 0.07) 50%, transparent 51%),
    radial-gradient(circle at 0 0, transparent 45%, rgba(139, 105, 20, 0.07) 46%, rgba(139, 105, 20, 0.07) 50%, transparent 51%),
    radial-gradient(circle at 100% 0, transparent 45%, rgba(139, 105, 20, 0.07) 46%, rgba(139, 105, 20, 0.07) 50%, transparent 51%),
    radial-gradient(circle at 0 100%, transparent 45%, rgba(139, 105, 20, 0.07) 46%, rgba(139, 105, 20, 0.07) 50%, transparent 51%),
    radial-gradient(circle at 100% 100%, transparent 45%, rgba(139, 105, 20, 0.07) 46%, rgba(139, 105, 20, 0.07) 50%, transparent 51%);
  background-size: 100% 100%, 60px 60px, 60px 60px, 60px 60px, 60px 60px, 60px 60px;
  position: relative;
}

.flow-container {
  max-width: 1100px; /* 900pxから拡張 */
  margin: 0 auto;
  position: relative;
  padding-left: 100px;
}

/* Timeline vertical line */
.flow-container::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--accent-bg-main);
  opacity: 0.3;
}

.flow-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.flow-item:last-child {
  margin-bottom: 0;
}

.flow-step-wrap {
  position: absolute;
  left: -100px;
  top: 0;
  width: 80px;
  height: 80px;
  background: white;
  border: 1px solid var(--accent-bg-main);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.flow-step {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-bg-main);
  letter-spacing: 0.1em;
  line-height: 1;
}

.flow-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-bg-main);
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
  margin-top: 4px;
}

.flow-content {
  background: #fdfdfd;
  padding: 3rem;
  border: 1px solid var(--border);
  width: 100%;
  transition: all 0.3s ease;
}

.flow-item:hover .flow-content {
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-color: var(--accent-bg-main);
}

.flow-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--theme-dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.flow-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.flow-note {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.flow-flex {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.flow-text-part {
  flex: 1;
}

.flow-img-part {
  flex: 0 0 300px;
}

.flow-img-part img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  display: block;
}


@media (max-width: 768px) {
  .flow-container {
    padding-left: 0;
  }
  
  .flow-container::before {
    display: none; /* スマホでは縦線を非表示にしてスッキリさせる */
  }
  
  .flow-item {
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
  }
  
  .flow-step-wrap {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: -30px; /* カードに少し重ねる */
    width: 70px;
    height: 70px;
  }
  
  .flow-num {
    font-size: 1.3rem;
  }
  
  .flow-content {
    padding: 3.5rem 1.5rem 2.5rem; /* 上部にアイコンが重なるための余白 */
    text-align: center;
  }
  
  .flow-title {
    font-size: 1.25rem;
    text-align: center; /* タイトルは中央 */
  }

  .flow-text, .flow-note {
    text-align: left; /* 文章は左揃え */
  }

  .flow-flex {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .flow-img-part {
    flex: none;
    width: 100%;
  }

  .flow-img-part img {
    height: auto;
    aspect-ratio: 16/9;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--theme-main);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.service-v-wrap {
  padding: 0 2rem 0 0.5rem;
  border-right: 1px solid var(--theme-pale);
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.service-v-title {
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--theme-dark);
  letter-spacing: 0.3em;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.85;
  letter-spacing: 0.02em;
  text-align: left;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2.5rem 1.5rem;
  }

  .service-v-title {
    font-size: 1.15rem;
  }
}

/* SERVICES SLIDER */
.services-slider-fullwidth {
  width: 100%;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

.services-slider-container {
  width: 100%;
  overflow: hidden;
}

.services-slider-track {
  display: flex;
  width: calc(320px * 24); /* 12枚 × 2セット = 24枚分 */
  animation: scrollSlider 60s linear infinite; /* 距離が倍になったため時間を調整 */
}

.services-slide {
  width: 320px;
  flex-shrink: 0;
  padding: 0 5px;
}

.services-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: opacity 0.3s, transform 0.3s;
}

.services-slide img:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

@keyframes scrollSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-320px * 12)); } /* 12枚分移動でリセット */
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
  padding: 2rem;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* REPAIR CASES */
.cases-section {
  padding: 8rem 0;
  background-color: var(--theme-pale);
  position: relative;
}

.case-slider-fullwidth {
  width: 100%;
  max-width: 100%;
  margin: 4rem 0;
  padding: 0 80px; /* 矢印が重ならないように左右に余白を確保 */
  position: relative;
}

.case-slider-container {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.case-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.case-slide {
  flex: 0 0 33.333%; /* 3枚表示 */
  padding: 0 10px;
  transition: opacity 0.4s;
}

.case-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
}

.case-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.case-num {
  font-family: 'Sawarabi Mincho', serif;
  font-size: 1rem;
  color: var(--theme-main);
  opacity: 0.7;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--theme-main);
  flex-shrink: 0;
}

.case-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
}

.case-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.case-img-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  flex-direction: column; /* ラベルと画像を縦に並べる */
}

.case-img-box img {
  width: 100%;
  height: 350px; /* 100%幅表示に合わせて高さを最適化 */
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.case-slide:hover .case-img-box img {
  transform: scale(1.02);
}

.case-label {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  padding: 5px 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  z-index: 5;
  letter-spacing: 0.1em;
}

.case-label.before { background: #555; }
.case-label.after { background: var(--theme-main); }

/* Controls */
.case-controls {
  position: absolute;
  top: 50%;
  left: 15px; /* 画面端から15pxの位置に配置 */
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.case-prev, .case-next {
  width: 50px;
  height: 50px;
  background: white;
  border: 1px solid var(--theme-main); /* 枠線を追加して視認性アップ */
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 0.9rem;
  color: var(--theme-main);
}

.case-prev:hover, .case-next:hover {
  background: var(--theme-main);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(142, 31, 43, 0.2);
}

/* Category Grid */
.case-categories-intro {
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 3rem;
}

.case-categories-intro p {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--theme-dark);
  letter-spacing: 0.15em;
  display: inline-block;
  position: relative;
  padding: 0 50px;
}

.case-categories-intro p::before,
.case-categories-intro p::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--theme-main);
  opacity: 0.6;
}

.case-categories-intro p::before { left: 0; }
.case-categories-intro p::after { right: 0; }

.case-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 0;
}

.case-cat-item {
  display: block;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.case-cat-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.case-cat-item:hover {
  transform: translateY(-8px);
  box-shadow: none;
}

.case-cat-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .case-slide {
    flex: 0 0 50%; /* タブレットでは2枚表示 */
  }
  .case-comparison {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .case-img-box img {
    height: 350px;
  }
  .case-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .case-card {
    padding: 1.5rem;
  }
  .case-item-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .case-slider-fullwidth {
    padding: 0 15px;
  }
  .case-slide {
    flex: 0 0 100%; /* スマホでは1枚表示 */
  }
  .case-slider-container {
    padding: 0 10px;
  }
  .case-controls {
    position: static;
    transform: none;
    justify-content: center;
    gap: 30px;
    margin-top: 2rem;
    pointer-events: auto;
  }
  .case-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .case-comparison {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .case-img-box img {
    height: auto;
    aspect-ratio: 4/3;
  }
  .case-categories-grid {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }
}

/* REASONS */
.reasons-section {
  background: var(--accent-bg-light);
  padding: 7rem 0;
}

.relative-z {
  position: relative;
  z-index: 2;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
}

.reason-card {
  background: white;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
  border-color: var(--theme-main);
}

.reason-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}

.reason-card-body {
  padding: 3rem 2.2rem;
  position: relative;
}

.reason-card-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.25em;
  margin-bottom: 1.2rem;
  display: block;
}

.reason-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--theme-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.reason-card-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 2;
}

@media (max-width: 992px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* PRICING */
.pricing-section .section-en {
  color: var(--theme-main);
}

.pricing-section .section-desc {
  color: var(--text-mid);
}

.pricing-section .divider {
  background: var(--theme-main);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.2s;
}

.pricing-card:hover {
  border-color: var(--theme-main);
  transform: translateY(-3px);
}

.pricing-type {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--theme-pale);
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.pricing-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--theme-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.pricing-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}

.pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-row-label {
  font-size: 0.78rem;
  color: var(--text-mid);
}

.pricing-row-price {
  font-size: 0.88rem;
  color: var(--theme-main);
  font-weight: 700;
}

.pricing-tag {
  display: inline-block;
  padding: 0.3em 1em;
  background: var(--theme-main);
  color: white;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  border-radius: 2px;
}

/* VOICE */
.voice-section {
  background: var(--accent-bg-light);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.voice-card {
  background: white;
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  position: relative;
}

.voice-card::before {
  content: '\201C';
  font-family: 'Noto Serif JP', serif;
  font-size: 4rem;
  color: var(--theme-pale);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
  font-weight: 900;
}

.voice-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--theme-main);
  margin-bottom: 1rem;
  font-weight: 500;
}

.voice-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.9;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.voice-stars {
  margin-top: 1rem;
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.voice-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.btn-outline-green {
  display: inline-block;
  padding: 1.1rem 3.5rem;
  border: 1px solid var(--theme-main);
  color: var(--theme-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-width: 280px;
  background: white;
  text-align: center;
}

.btn-outline-green:hover {
  background: var(--theme-main);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(142, 31, 43, 0.2);
}


/* MESSAGE */
.message-section {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 7rem 0;
}

.message-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.message-img-area {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.message-img-main {
  width: 88%;
  position: relative;
  z-index: 2;
}

.message-img-main img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
}

.message-img-sub {
  width: 58%;
  position: absolute;
  bottom: -12%;
  right: -12%;
  z-index: 3;
}

.message-img-sub img {
  width: 100%;
  display: block;
  border: 4px solid white;
  box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.08);
}

.message-img-frame {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 65%;
  height: 85%;
  border: 1px solid var(--theme-mid);
  z-index: 1;
  opacity: 0.3;
}

.message-content {
  padding-left: 1rem;
}

.message-quote {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--theme-dark);
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding-left: 1.5rem;
  border-left: 3px solid var(--theme-main);
}

.message-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 2;
  letter-spacing: 0.02em;
  margin-top: 1.5rem;
}

.message-sign {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.message-sign-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--theme-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.message-sign-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  color: var(--theme-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  display: block;
}

.message-sign-title {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .message-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem; /* 隙間を広げる */
  }

  .message-img-area {
    margin-bottom: 2rem; /* 下のテキストとの距離を確保 */
  }

  .message-img-sub {
    right: 0; /* 右へのはみ出しをリセット */
    bottom: -10%; /* 下へのはみ出しを抑える */
    width: 50%; /* 少し小さくしてバランス調整 */
  }

  .message-img-frame {
    display: none;
  }

  .message-content {
    padding-left: 0; /* PC版のパディングをリセット */
  }
}

/* SHOP INFO */
#shopinfo .section-header {
  margin-bottom: 4rem;
}
.shopinfo-section {
  background: var(--accent-bg-light);
  border-top: 1px solid var(--border);
}

.shopinfo-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.shopinfo-left, .shopinfo-right {
  display: flex;
  flex-direction: column;
}

.shopinfo-table, .shopinfo-map {
  height: 100%;
}

.shopinfo-left .section-header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.shopinfo-left .divider {
  margin: 1rem 0;
}

.shopinfo-map {
  width: 100%;
  position: relative;
  border: 4px double var(--accent-bg-mid);
  overflow: hidden;
  min-height: 400px;
  height: 100%;
}

.shopinfo-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.shopinfo-table {
  background: white;
  border-top: 3px solid var(--theme-dark);
  padding: 3rem 2.5rem;
  height: 100%;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--accent-bg-mid);
}

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

.info-label {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.65rem;
  color: white;
  background: var(--theme-mid);
  padding: 0.4em 0.8em;
  min-width: 80px;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 500;
  position: relative;
}

.info-value {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* CTA SECTION */
.cta-section {
  background: var(--theme-mid);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 20px,
      rgba(255, 255, 255, 0.03) 20px,
      rgba(255, 255, 255, 0.03) 21px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 20px,
      rgba(255, 255, 255, 0.03) 20px,
      rgba(255, 255, 255, 0.03) 21px);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner .section-en {
  color: rgba(255, 255, 255, 0.4);
}

.cta-inner .section-title {
  color: white;
  font-size: 1.7rem;
}

.cta-inner .section-desc {
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 1rem auto;
}

.cta-inner .divider {
  background: rgba(255, 255, 255, 0.3);
}

.cta-buttons {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  background: white;
  color: var(--text-dark);
  padding: 1.4rem 3.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: 1px solid white;
  transition: all 0.4s;
  font-weight: 500;
}

.btn-white:hover {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  background: transparent;
  color: white;
  padding: 1.4rem 3.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s;
  font-weight: 500;
}

.btn-white-outline:hover {
  background: white;
  color: var(--text-dark);
  border-color: white;
  transform: translateY(-2px);
}

.cta-phone {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  font-family: 'Noto Serif JP', serif;
}

.cta-phone-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2em;
  display: block;
  margin-top: 0.3rem;
}

/* FOOTER */
footer {
  background: var(--theme-dark);
  padding: 5rem 0 0; /* 下パディングはfooter-bottomで調整 */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
  text-align: center;
  padding-bottom: 4rem;
}

.footer-logo-img {
  max-width: 240px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  filter: brightness(0) invert(1); /* 黒いロゴを白に反転 */
}

.footer-address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  font-weight: 300;
  line-height: 1.8;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  text-align: center;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.25s;
}

.delay-3 {
  animation-delay: 0.4s;
}

.delay-4 {
  animation-delay: 0.55s;
}

/* REVEAL SYSTEM */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.is-active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.is-active {
  opacity: 1;
  transform: translateX(0);
}

/* HERO ENTRANCE */
.hero-v-heading {
  opacity: 0;
  animation: verticalReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.5s;
}

@keyframes verticalReveal {
  from { opacity: 0; transform: translateY(20px); letter-spacing: 0.8em; }
  to { opacity: 1; transform: translateY(0); letter-spacing: 0.35em; }
}

.hero-main-img img {
  opacity: 0;
  transform: scale(1.1);
  animation: heroScaleIn 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroScaleIn {
  to { opacity: 1; transform: scale(1); }
}


/* MOBILE */
@media (max-width: 768px) {
  body {

  }

  .container,
  .container-narrow {
    padding: 0 1.5rem !important;
  }

  section {
    padding: 5rem 0 !important;
  }

  .message-quote {
    font-size: 1.3rem !important;
    padding-left: 0 !important;
    text-align: center;
  }
  .worry-resolve-text p {
    font-size: 1.0rem;
    line-height: 1.8;
  }
  .section-title {
    font-size: 2.0rem;
    line-height: 1.4;
  }
  .section-header {
    margin-bottom: 3rem !important;
  }

  /* WORRY RESOLVE FOR MOBILE */
  .worry-resolve-yaegaki {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hanko-seal {
    margin-bottom: 1.5rem;
  }


  .nav-initial {
    display: none !important;
  }

  .header-sticky {
    display: none !important;
  }

  .header-sp {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    background: white;
    height: calc(70px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 1.5rem 0;
    align-items: center;
    border-bottom: 1px solid var(--border);
    /* スマホ版のみ初期状態は隠す */
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
  }

  /* FVを過ぎた時（is-scrolled）のみ表示 */
  .is-scrolled .header-sp {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header-sp-inner {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }

  .header-sp-logo img {
    height: 48px;
    width: auto;
    display: block;
  }

  .sp-menu-toggle {
    position: absolute;
    right: 0;
    cursor: pointer;
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .sp-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
  }

  /* SP MENU OVERLAY */
  .sp-menu {
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 4000;
    display: none;
    /* Controlled by JS */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .sp-menu.is-active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .sp-menu-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: calc(70px + env(safe-area-inset-top)) 2rem env(safe-area-inset-bottom);
    position: relative;
    overflow-y: auto;
  }

  .sp-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .sp-nav-link {
    font-size: 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.15em;
    font-weight: 500;
  }

  .sp-cta {
    background: var(--theme-main);
    color: white !important;
    padding: 1.2rem 3rem;
    border-radius: 2px;
    margin-top: 1.5rem;
  }

  .sp-menu-close {
    position: absolute;
    top: calc(20px + env(safe-area-inset-top));
    right: 30px;
    font-size: 2.5rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
  }

  /* ABOUT TOP SECTION ADJUSTMENT (No Parallax) */
  .parallax-top {
    height: auto !important;
    aspect-ratio: 16/9;
    background-attachment: scroll !important;
    background-size: cover;
  }

  /* ABOUT SECTION PADDING */
  .about-section {
    margin-top: 0;
  }

  .about-v-heading {
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
  }

  .hero-right {
    padding: 2rem;
    order: -1;
  }

  .hero-left {
    padding: 2rem;
  }

  .about-grid,
  .message-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .worry-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-v-heading {
    font-size: 2.2rem;
  }

  .shopinfo-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .shopinfo-table {
    padding: 2.5rem 1rem; /* 左右余白を1remに */
  }

  .info-row {
    gap: 0.8rem; /* 隙間を1.5remから0.8remへ */
  }

  .info-label {
    min-width: 65px; /* ラベル幅を80pxから65pxへ */
    font-size: 0.6rem;
    padding: 0.4em 0.5em;
  }

  .info-value {
    font-size: 0.85rem; /* 文字をわずかに小さく */
  }

  .shopinfo-map {
    aspect-ratio: 4/3;
    min-height: auto;
  }

  /* 譁咎≡繧ｻ繧ｯ繧ｷ繝ｧ繝ｳ縺ｮ繝代Λ繝ｩ繝・け繧ｹ鬚ｨ險ｭ螳・(SP) - iOS Safari蟇ｾ蠢懊・蝣・欧縺ｪ螳溯｣・*/
  .pricing-section {
    background-image: none !important;
    background-attachment: scroll !important;
    position: relative;
    clip-path: inset(0);
    z-index: 1;
  }
  .pricing-section::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../img/priceback.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
  }
}

.sp-only {
  display: none;
}

  /* CONTACT BUTTONS COLOR (All Devices) */
  .btn-tel {
    background: white !important;
    color: var(--theme-main) !important;
    border-color: white !important;
  }

  .btn-tel:hover {
    background: var(--theme-dark) !important;
    color: white !important;
    border-color: var(--theme-dark) !important;
  }

  .btn-web {
    background: var(--contact-web) !important;
    color: white !important;
    border-color: var(--contact-web) !important;
  }

  .btn-web:hover {
    background: #8e7035 !important;
    border-color: #8e7035 !important;
  }

  .btn-line {
    background: var(--contact-line) !important;
    color: white !important;
    border-color: var(--contact-line) !important;
  }

  .btn-line:hover {
    background: #048a39 !important;
    border-color: #048a39 !important;
  }

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  /* CONTACT BUTTONS MOBILE LAYOUT */
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    max-width: 320px;
    margin: 2.5rem auto 0;
  }

  .cta-buttons .btn-white {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {

  .worry-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-v-heading {
    font-size: 1.8rem;
  }
}

.parallax-section {
  height: 600px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* SP逕ｨ繝代Λ繝ｩ繝・け繧ｹ菫ｮ豁｣: iOS Safari縺ｧ縺ｮ陦ｨ遉ｺ蟠ｩ繧後→蜍穂ｽ應ｸ崎憶繧定ｧ｣豸・*/
@media (max-width: 768px) {
  .parallax-section {
    height: 35vh !important;
    background-image: none !important;
    background-attachment: scroll !important;
    clip-path: inset(0);
    z-index: 1;
  }

  .parallax-section:not(.video-parallax-container)::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../img/parallax02.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
  }
}

.video-parallax-container {
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0);
}

.parallax-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  min-width: 100%;
  min-height: 100%;
}


/* ABOUT YAEGAKI STYLE */
.about-section {
  background: white;
  padding: 7rem 0;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-yaegaki {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-v-heading {
  writing-mode: vertical-rl;
  /* Safariの縦書き記号の位置を安定させる設定 */
  font-family: "Hiragino Mincho ProN", "MS Mincho", 'Sawarabi Mincho', serif;
  font-feature-settings: "pkna" 1;
  -webkit-font-feature-settings: "pkna" 1;
  text-orientation: mixed;
  font-weight: 700;
  letter-spacing: 0.35em;
  line-height: 1.6;
  margin-bottom: 15rem; /* 15remに増やして重なりを防ぐ */
  display: inline-block;
  text-align: left;
  color: #333; /* フォールバック用の色 */
}

.about-v-heading span {
  display: block;
  /* 動くグラデーションの設定 */
  background: linear-gradient(135deg, #333 0%, var(--theme-main) 25%, #333 50%, var(--theme-main) 75%, #333 100%);
  background-size: 400% 400%; /* アニメーションのために背景サイズを拡大 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shineGradient 8s linear infinite; /* 8秒かけてループ */
}

@keyframes shineGradient {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* 文字サイズの強弱と配置のズレ（リズム） */
.v-line-1 { font-size: 3.8rem; transform: translateY(0); }
.v-line-2 { font-size: 2.2rem; transform: translateY(7rem); margin-right: -0.5rem; opacity: 0.8; }
.v-line-3 { font-size: 3.8rem; transform: translateY(6rem); }
.v-line-4 { font-size: 2.2rem; transform: translateY(13rem); margin-right: 4rem; opacity: 0.8; }
.v-line-5 { font-size: 2.8rem; transform: translateY(15rem); margin-right: 1.5rem; }


.about-label-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  width: 100%;
  justify-content: center;
}

.about-line {
  height: 1px;
  width: 30px;
  background: #333;
}

.about-label-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  color: #333;
  letter-spacing: 0.15em;
}

.about-content-yaegaki {
  max-width: 600px;
  font-size: 0.95rem;
  color: #444;
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
}

.about-cta-yaegaki {
  margin-top: 1rem;
}

.btn-yaegaki {
  display: inline-block;
  border: 1px solid var(--theme-main);
  color: var(--theme-main);
  padding: 1.2rem 4rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.btn-yaegaki:hover {
  background: var(--theme-main);
  border-color: var(--theme-main);
  color: white;
}

.contact-group-mini {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top: 3rem;
}

.btn-mini {
  display: block;
  width: 200px;
  padding: 12px 20px;
  background: white;
  border: 1px solid var(--theme-main);
  color: var(--theme-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
}

.btn-mini:hover {
  background: var(--theme-main);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(142, 31, 43, 0.2);
}

.btn-mini.web {
  border-color: var(--contact-web);
  color: var(--contact-web);
}

.btn-mini.web:hover {
  background: var(--contact-web);
  color: white;
  box-shadow: 0 5px 15px rgba(179, 145, 74, 0.2);
}

.btn-mini.line {
  border-color: var(--contact-line);
  color: var(--contact-line);
}

.btn-mini.line:hover {
  background: var(--contact-line);
  color: white;
  box-shadow: 0 5px 15px rgba(5, 163, 68, 0.2);
}

@media (max-width: 768px) {
  .contact-group-mini {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
  }
  .btn-mini {
    width: auto;
    min-width: 110px;
    font-size: 0.8rem;
    padding: 10px 15px;
  }
}

@media (max-width: 768px) {
  .about-v-heading {
    font-size: 1rem; /* ベースをリセットしてspanで制御 */
    margin-bottom: 10rem; /* 下の要素と被らないようマージンを増やす */
    line-height: 1.4;
  }
  .v-line-1 { font-size: 2.2rem; transform: translateY(0); }
  .v-line-2 { font-size: 1.5rem; transform: translateY(4rem); margin-right: -0.2rem; opacity: 0.8; }
  .v-line-3 { font-size: 2.2rem; transform: translateY(4rem); }
  .v-line-4 { font-size: 1.5rem; transform: translateY(8rem); margin-right: 1.8rem; opacity: 0.8; }
  .v-line-5 { font-size: 1.8rem; transform: translateY(10rem); margin-right: 0.5rem; }

  .about-content-yaegaki {
    font-size: 0.88rem;
  }
}

.about-v-heading {
  text-align: start;
}

.about-section {
  background-color: var(--theme-pale);
  background-image: 
    linear-gradient(225deg, rgba(253, 245, 245, 0) 0%, rgba(253, 245, 245, 1) 55%),
    radial-gradient(circle at 100% 150%, var(--theme-mist) 24%, rgba(142, 31, 43, 0.55) 25%, rgba(142, 31, 43, 0.55) 28%, var(--theme-mist) 29%, var(--theme-mist) 36%, rgba(142, 31, 43, 0.55) 36%, rgba(142, 31, 43, 0.55) 40%, transparent 40%),
    radial-gradient(circle at 0 150%, var(--theme-mist) 24%, rgba(142, 31, 43, 0.55) 25%, rgba(142, 31, 43, 0.55) 28%, var(--theme-mist) 29%, var(--theme-mist) 36%, rgba(142, 31, 43, 0.55) 36%, rgba(142, 31, 43, 0.55) 40%, transparent 40%),
    radial-gradient(circle at 50% 100%, var(--theme-mist) 24%, rgba(142, 31, 43, 0.55) 25%, rgba(142, 31, 43, 0.55) 28%, var(--theme-mist) 29%, var(--theme-mist) 36%, rgba(142, 31, 43, 0.55) 36%, rgba(142, 31, 43, 0.55) 40%, transparent 40%),
    radial-gradient(circle at 100% 50%, var(--theme-mist) 24%, rgba(142, 31, 43, 0.55) 25%, rgba(142, 31, 43, 0.55) 28%, var(--theme-mist) 29%, var(--theme-mist) 36%, rgba(142, 31, 43, 0.55) 36%, rgba(142, 31, 43, 0.55) 40%, transparent 40%),
    radial-gradient(circle at 0 50%, var(--theme-mist) 24%, rgba(142, 31, 43, 0.55) 25%, rgba(142, 31, 43, 0.55) 28%, var(--theme-mist) 29%, var(--theme-mist) 36%, rgba(142, 31, 43, 0.55) 36%, rgba(142, 31, 43, 0.55) 40%, transparent 40%);
  background-size: 100% 100%, 60px 30px, 60px 30px, 60px 30px, 60px 30px, 60px 30px;
  background-repeat: no-repeat, repeat, repeat, repeat, repeat, repeat;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85); /* パターンが見える程度に不透明度を調整 */
  z-index: 1;
}

.about-section .container-narrow {
  position: relative;
  z-index: 2;
}

.about-section .container-narrow {
  position: relative;
  z-index: 2;
}


.about-section {
  background-attachment: scroll !important;
}

.about-section {
  padding: 7rem 0;
}

/* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 54px;
  height: 54px;
  background: var(--theme-mid);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--theme-dark);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.back-to-top-arrow {
  font-size: 1.6rem;
  line-height: 1;
  margin-top: -2px;
}

@media (max-width: 768px) {
  .back-to-top {
    right: 20px;
    bottom: 80px; /* Adjust for sticky cta height */
    width: 48px;
    height: 48px;
  }
}

/* SP STICKY CTA */
.sp-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 1500;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.sp-cta-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  gap: 8px;
}

.sp-cta-item.tel {
  background: var(--theme-mid);
  color: white;
}

.sp-cta-item.web {
  background: var(--contact-web);
  color: white;
}

.sp-cta-item.line {
  background: var(--contact-line);
  color: white;
}

.sp-cta-item .icon {
  font-size: 1.1rem;
}

.sp-cta-item.line .icon {
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .sp-sticky-cta {
    display: flex;
    transform: translateY(120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s, visibility 0.4s;
  }

  /* FVを見終わったら（is-scrolledがついたら）表示 */
  .is-scrolled .sp-sticky-cta {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  /* Add padding to footer to prevent overlap */
  footer {
    padding-bottom: 84px !important;
  }
}

/* SP MENU CONTACT */
.sp-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px 30px;
  margin-top: 20px;
}

.sp-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}

.sp-contact-btn.tel {
  background: var(--theme-mid);
  color: white;
}

.sp-contact-btn.web {
  background: var(--contact-web);
  color: white;
}

.sp-contact-btn.line {
  background: var(--contact-line);
  color: white;
}

/* CHECK SECTION */
.check-section {
  padding: 7rem 0;
  background-color: var(--white);
}

.check-inner {
  background: white;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
}

.check-content {
  padding: 4.5rem;
}

.check-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.9rem;
  color: var(--theme-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}

.check-lead {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
  margin-bottom: 3rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.check-list li::before {
  content: '✻';
  position: absolute;
  left: 0;
  color: var(--theme-main);
  font-weight: 400;
}

.check-note {
  padding: 1.8rem;
  background: var(--theme-mist);
  border-left: 3px solid var(--theme-main);
}

.check-note p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0;
}

.check-image {
  position: relative;
  overflow: hidden;
}

.check-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .check-inner {
    grid-template-columns: 1fr;
  }
  .check-image {
    order: -1;
    height: 300px;
  }
  .check-content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 576px) {
  .check-content {
    padding: 3rem 1.2rem;
  }
  .check-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .check-title {
    font-size: 1.45rem;
    line-height: 1.3;
  }
}

/* PAYMENT SECTION */
.payment-section {
  padding: 8rem 0;
  background-color: var(--white);
}

.payment-intro {
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.1rem;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 5rem;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  transition: transform 0.3s ease;
}

.payment-item:hover {
  transform: translateY(-5px);
}

.payment-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  /* subtle drop shadow for depth */
  filter: drop-shadow(0 5px 12px rgba(0,0,0,0.06));
}

.payment-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.payment-conditions {
  max-width: 800px;
  margin: 0 auto;
}

.condition-box {
  background: var(--accent-bg-light);
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  text-align: center;
  border: 1px solid var(--border);
}

.condition-box p {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 2;
  font-weight: 500;
  margin-bottom: 0;
}

.payment-notes {
  border-top: 1px dashed var(--border);
  padding-top: 2rem;
}

.payment-notes p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.4rem;
  position: relative;
}

@media (max-width: 992px) {
  .payment-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .payment-section {
    padding: 5rem 0;
  }
  .payment-grid {
    gap: 2rem 1rem;
  }
  .payment-item {
    width: calc(33.333% - 1rem);
  }
  .payment-item img {
    width: 65px;
    height: 65px;
  }
  .payment-item span {
    font-size: 0.8rem;
  }
  .condition-box {
    padding: 1.8rem 1.2rem;
    text-align: left;
  }
  .condition-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .payment-item {
    width: calc(50% - 1rem);
  }
}

/* PRECAUTIONS SECTION */
.notes-section {
  padding: 8rem 0;
  background-color: #fbfaf5; /* 鳥の子色（温かみのあるクリーム） */
  background-image: linear-gradient(225deg, rgba(251, 250, 245, 0) 0%, rgba(251, 250, 245, 1) 80%);
  position: relative;
}

.notes-intro {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.8;
}

.notes-list {
  max-width: 1000px;
  margin: 0 auto;
}

.note-card {
  margin-bottom: 2rem;
}

.note-card-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  height: 100%;
}

.note-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #f0f0f0;
}

.note-icon-m {
  font-size: 2rem;
  color: var(--theme-main);
  line-height: 1;
}

.note-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.note-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.note-body ul {
  padding-left: 0;
  list-style: none;
}

.note-body ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.note-body ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--theme-main);
  font-weight: bold;
}

.note-flex {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.note-flex.is-reverse {
  flex-direction: row-reverse;
}

.note-text-area {
  flex: 1;
}

.note-img-area {
  width: 300px;
  flex-shrink: 0;
}

.note-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.note-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.note-important .note-card-inner {
  border: 1px solid var(--theme-main);
  background-color: var(--theme-pale);
}

.note-important .note-card-title {
  color: var(--theme-main);
}

@media (max-width: 992px) {
  .note-flex, .note-flex.is-reverse {
    flex-direction: column;
    gap: 1.5rem;
  }
  .note-img-area {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .notes-section {
    padding: 5rem 0;
  }
  .note-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .note-card-inner {
    padding: 1.5rem;
  }
  .note-card-title {
    font-size: 1.15rem;
  }
}

/* SHIPPING SECTION */
.shipping-section {
  padding: 6rem 0;
  background-color: #fbfaf5; /* 鳥の子色（温かみのあるクリーム） */
  background-image: linear-gradient(225deg, rgba(251, 250, 245, 0) 0%, rgba(251, 250, 245, 1) 80%);
  position: relative;
}

.shipping-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.shipping-card {
  display: flex;
  background: #f9f9f9;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  align-items: center;
  gap: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shipping-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.shipping-icon-area {
  width: 70px;
  flex-shrink: 0;
}

.shipping-icon {
  font-size: 3.2rem;
  color: var(--theme-main);
  display: block;
  text-align: center;
}

.shipping-text-area p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 0;
  font-weight: 500;
}

@media (max-width: 992px) {
  .shipping-card {
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .shipping-icon-area {
    width: 60px;
  }
}

@media (max-width: 768px) {
  .shipping-section {
    padding: 5rem 0;
  }
  .shipping-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .shipping-card {
    flex-direction: column;
    text-align: left; /* 左揃えに変更 */
    align-items: center; /* アイコン等の要素は中央寄せを維持 */
    gap: 1.2rem;
  }
  .shipping-text-area p {
    font-size: 0.95rem;
    text-align: left; /* 文章を左揃えに確定 */
  }
}



/* PROFILE SECTION */
.profile-section {
  padding: 8rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--border);
}

.profile-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.profile-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-bottom: 5rem;
  align-items: flex-start;
}

.profile-title-sub {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--theme-main);
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.profile-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--theme-dark);
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}

.en-name {
  display: block;
  font-size: 0.9rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.15em;
  margin-top: 0.3rem;
}

.profile-titles {
  font-size: 0.95rem;
  color: var(--theme-dark);
  font-weight: 600;
  line-height: 1.8;
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--theme-pale);
}

.profile-intro p {
  font-size: 1rem;
  line-height: 2.2;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}

.profile-history {
  background: white;
  padding: 4rem 5rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.history-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  color: var(--theme-dark);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.history-title::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: var(--border);
}

.history-list {
  list-style: none;
  padding: 0;
}

.history-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 1.2rem 0;
  border-bottom: 1px dotted var(--border);
  align-items: baseline;
}

.history-list li:last-child {
  border-bottom: none;
}

.history-list .year {
  font-weight: 700;
  color: var(--theme-dark);
  font-size: 0.95rem;
}

.history-list .event {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .profile-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .profile-history {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .profile-section {
    padding: 5rem 0;
  }
  .profile-name {
    font-size: 2rem;
  }
  .history-list li {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .profile-history {
    padding: 2.5rem 1.5rem;
  }
  .history-title {
    font-size: 1.4rem;
  }
}

/* QA SECTION (FAQ Accordion) */
.qa-section {
  padding: 8rem 0;
  background-color: var(--accent-bg-light);
}

.qa-container {
  max-width: 900px;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.qa-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.qa-item:hover {
  border-color: var(--theme-main);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.qa-question {
  padding: 1.8rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.q-icon {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--theme-main);
  line-height: 1;
}

.q-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  flex-grow: 1;
  padding-right: 2rem;
  line-height: 1.5;
}

.qa-toggle-icon {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}

.qa-toggle-icon::before,
.qa-toggle-icon::after {
  content: '';
  position: absolute;
  background: var(--text-light);
  transition: all 0.3s ease;
}

.qa-toggle-icon::before {
  width: 100%;
  height: 2px;
  top: 6px;
  left: 0;
}

.qa-toggle-icon::after {
  width: 2px;
  height: 100%;
  left: 6px;
  top: 0;
}

/* Open state for toggle icon */
.qa-item.is-open .qa-toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.qa-item.is-open .qa-toggle-icon::before {
  background: var(--theme-main);
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--accent-bg-light);
}

.qa-item.is-open .qa-answer {
  max-height: 1500px;
}

.a-inner {
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.a-icon {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-light);
  line-height: 1;
}

.a-text {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .qa-section {
    padding: 5rem 0;
  }
  .qa-question {
    padding: 1.5rem;
    gap: 1rem;
  }
  .q-text {
    font-size: 1rem;
    padding-right: 1.5rem;
  }
  .qa-toggle-icon {
    right: 1.5rem;
  }
  .a-inner {
    padding: 1.5rem;
    gap: 1rem;
  }
  .a-text {
    font-size: 0.95rem;
  }
}
/* VIDEO SECTION */
.video-section {
  padding: 8rem 0;
  background-color: var(--white);
  background-image: linear-gradient(to bottom, var(--white), var(--accent-bg-light));
}

.video-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 4px solid white; /* ホワイトフレームで高級感を演出 */
}

.promo-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-caption {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--theme-dark);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .video-section {
    padding: 5rem 0;
  }
  .video-wrapper {
    border-radius: 8px;
    border-width: 2px;
  }
  .video-caption {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
}

/* SNS icons in Shop Info */
.shopinfo-sns {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-top: 0.2rem;
}

.shopinfo-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.shopinfo-sns a:hover {
  transform: translateY(-3px);
  opacity: 0.7;
}

.shopinfo-sns img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* =========================================
   LOADING SCREEN
========================================= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.is-loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-logo img {
  width: 200px;
  height: auto;
  opacity: 0;
  animation: pulseLogo 2s ease-in-out infinite;
}

@keyframes pulseLogo {
  0% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.4; transform: scale(0.95); }
}

/* ヒーローエリアの初期非表示（ローディング完了後に表示） */
body:not(.is-ready) .hero-left,
body:not(.is-ready) .hero-right {
  opacity: 0;
  transform: translateY(15px);
}

body.is-ready .hero-left,
body.is-ready .hero-right {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.5s ease 0.3s, transform 1.5s ease 0.3s;
}
