/* ============================================================
   CRIT LAB — Kyoto & Osaka Travel Photography
   Main Stylesheet — Mobile-First, Editorial Luxury
   ============================================================ */

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* ① 横スクロール対策 */
  overflow-x: hidden;
  /* 100vwはスクロールバー幅込みのため max-width で制御 */
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background: #fafaf8;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  /* ① 横スクロール対策 */
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

ul {
  list-style: none;
}

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

.sp{display: inherit;}
.pc{display: none;}

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --burnt-orange: #C95D2A;
  --burnt-orange-dark: #A84820;
  --burnt-orange-light: #E8723D;
  --deep-red: #9B2335;
  --ivory: #fafaf8;
  --warm-beige: #F5F0E8;
  --warm-sand: #EDE4D3;
  --charcoal: #1a1a1a;
  --dark-bg: #111111;
  --dark-card: #1c1c1c;
  --muted: #6b6b6b;
  --border: #e8e2d8;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --container: 1200px;
  --section-v: 100px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.section-h2.center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burnt-orange);
  margin-bottom: 1rem;
}

.section-label.light { color: #E8723D; }

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.section-intro.center {
  margin-left: auto;
  margin-right: auto;
}

p { line-height: 1.75; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-light  { background: var(--ivory); }
.section-dark   { background: var(--dark-bg); color: #e8e2d8; }
.section-warm   { background: var(--warm-beige); }

.center { text-align: center; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--burnt-orange);
  color: #fff;
  border: 2px solid var(--burnt-orange);
}

.btn-primary:hover {
  background: var(--burnt-orange-dark);
  border-color: var(--burnt-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,93,42,0.38);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline.light {
  color: #fff;
  border-color: #fff;
}

.btn-outline.light:hover {
  background: #fff;
  color: var(--charcoal);
}

.btn-lg {
  padding: 1rem 2.4rem;
  font-size: 0.95rem;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all var(--transition);
  background: #000;
  /* ① 横スクロール対策: 100vw→100% (スクロールバー幅分のはみ出しを防ぐ) */
  width: 100%;
  left: 0;
  right: 0;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  padding: 0.7rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  width: 40px;
  height: auto;
  z-index: 9999;
}

.nav-links {
  display: none;
  align-items: center;
}

.nav-links li a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

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

.nav-links .nav-cta {
  background: var(--burnt-orange);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.nav-links .nav-cta:hover {
  background: var(--burnt-orange-dark);
}
.language-select{
position:relative;
width:94px;
}

.language-select select{

width:100%;
padding:0.5rem 1.2rem;

font-size:10px;
letter-spacing:0.08em;
font-weight: bold;

color:#fff;
background:#000;

border:0px;
border-radius:4px;

appearance:none;
-webkit-appearance:none;
-moz-appearance:none;

cursor:pointer;

font-family:'Outfit', sans-serif;

}

/* 矢印 */

.language-select::after{

font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f107";

position:absolute;

right:18px;
top:50%;

transform:translateY(-50%);

font-size:10px;
color:#fff;

pointer-events:none;

}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
  border-radius: 2px;
  z-index: 9999;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  align-items: stretch;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.98);
  justify-content: center;
  align-items: center;
  z-index: 999;
  /* ① 横スクロール対策: 100vw→100% */
  width: 100%;
  height: 100vh;
  padding: 0 24px;
}
.nav-links.open li {
      padding: 32px 0;
      width: 100%;
    text-align: center;
    border-bottom: 1px solid #FAFAF8A6;
}

.nav-links.open li:last-of-type {
    border-bottom: 0px ;
}

.nav-links.open li a {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.nav-links.open li .nav-cta{
  padding: 20px;
font-weight: 500;
font-size: 17px;
line-height: 100%;
display: block;
text-transform: uppercase;

}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Mosaic background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 3px;
}

.mosaic-img {
  overflow: hidden;
}

.mosaic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.mosaic-img:hover img {
  transform: scale(1.06);
}

.hero-content {
  position: relative;
  z-index: 2;
padding: 8rem 2rem;
  color: #fff;
  max-width: 780px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(201,93,42,0.22);
  border: 1px solid rgba(201,93,42,0.6);
  color: #ffb38a;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-h1 {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
      text-align: center;
}
.hero-h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.08;
  color: #9E9E9E;
  letter-spacing: -0.02em;
      text-align: center;
}

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.25rem;
}


.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.hero-btn {
  font-size: 1rem;
  padding: 1.1rem 2.6rem;
}

.hero-microtext {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.hero-microtext i {
  margin-right: 0.35rem;
  color: var(--burnt-orange-light);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
}

.stat-plus {
  font-size: 1.5rem;
  color: var(--burnt-orange-light);
}

.stat-label {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  animation: bounce 2s infinite;
  transition: color var(--transition);
}

.hero-scroll-hint:hover { color: #fff; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── BRAND POSITIONING ───────────────────────────────────── */
.brand-positioning {
  padding: var(--section-v) 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.pillar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.pillar-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pillar-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(201,93,42,0.2);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--warm-sand), var(--warm-beige));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--burnt-orange);
  margin-bottom: 1.1rem;
}

.pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── WHY LOCAL ───────────────────────────────────────────── */
.why-local {
  padding: var(--section-v) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.why-content-col{
order: 1;
display: flex;
flex-direction: column;
align-items: center;
}

.why-image-col{
order: 2;
}

.why-content-col .btn{
  margin: 20px 0;
}
.why-image-stack{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:2rem;
}


.why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-right:3rem;
}

.why-img-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.why-img-shift{
  margin-right:0rem;
  margin-left:3rem;
}

.why-badge-float {
  position: absolute;
  top: 1.5rem;
  left: -0.5rem;
  background: var(--burnt-orange);
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.why-content-col .section-h2 {
  color: #e8e2d8;
  margin-bottom: 1.1rem;
}

.why-intro {
  color: rgba(232,226,216,0.7);
  margin-bottom: 2rem;
  font-size: 0.97rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-list li {
  display: flex;
  gap: 1rem;
      align-items: center;
    flex-direction: column;
}

.why-list-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(201,93,42,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burnt-orange-light);
  font-size: 0.9rem;
  margin-top: 2px;
}

.why-list li strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}

.why-list li p {
  font-size: 0.88rem;
  color: rgba(232,226,216,0.65);
  line-height: 1.7;
}

.why-list li div {
  display: flex;
  flex-direction: column;
  align-items: center;

}
/* ── LOCATIONS ───────────────────────────────────────────── */
.locations {
  padding: var(--section-v) 0;
}

.location-city-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
}

.location-city-label::before,.location-city-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--burnt-orange);
}

.location-city-label div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-city-label span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burnt-orange);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-city-label strong {
  font-size: 1.5rem;
  font-weight: 700;

}

.location-city-label.osaka span { color: #7a4a9e; }
.location-city-label.osaka::before,.location-city-label.osaka::after { background: #7a4a9e;; }

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
.locations-grid > *{
min-width:0;
}

.location-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  width: 100%;
}

.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.location-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

.location-card:hover .location-img-wrap img {
  transform: scale(1.06);
}

.location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
}

.location-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.location-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.location-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.location-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  background: var(--warm-beige);
  border-radius: 20px;
  color: var(--muted);
}

.plan-section{
display:flex;
align-items:center;
justify-content:space-between;
flex-direction: column;
gap:2rem;
padding:20px 0px;
grid-column: span 1;
}

.plan-text{
font-family:var(--font-serif);
font-size:20px;
line-height:1.4;
color:#1a1a1a;
flex-shrink:0;
white-space:nowrap;
text-align: center;
}

.plan-section .plan-btn{
  flex:1;
}
/* ── SOCIAL PROOF ────────────────────────────────────────── */
.social-proof {
  padding: var(--section-v) 0;
}

.trust-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin: 2rem 0 3.5rem;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.trust-stat { text-align: center; }

.trust-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--burnt-orange);
  line-height: 1;
}

.trust-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.testimonial-card.featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #e8e2d8;
}

.testimonial-card.featured blockquote { color: rgba(232,226,216,0.85); }
.testimonial-card.featured .testimonial-author strong { color: #fff; }
.testimonial-card.featured .testimonial-author span { color: rgba(255,255,255,0.45); }

.testimonial-stars {
  color: #F5A623;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--burnt-orange);
}

.testimonial-card.featured blockquote {
  border-left-color: var(--burnt-orange-light);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burnt-orange), var(--deep-red));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

.proof-note {
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.proof-note i {
  margin-right: 0.4rem;
  color: var(--burnt-orange);
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing {
  padding: var(--section-v) 0;
}

/* ②-A pricing-grid: 全幅スクロールカルーセル
   - overflow-x: hidden の親要素を貫通させるために
     position 基点に対して負 margin + 100vw を使う
   - ただし html/body に overflow-x:hidden があるので
     右側ギャップが出ないよう max-width を 100vw でキャップ */
.pricing-grid {
  /* 左端を画面端まで広げる */
  margin-left: calc(50% - 50vw);
  /* 幅は 100vw（スクロールバーがない環境では = 100%）*/
  width: 100vw;
  max-width: 100vw; /* ← 右側ギャップ防止 */

  display: flex;
  gap: 24px;

  overflow-x: auto;
  /* ②-B: 初期スクロール位置は CSS では制御せず JS で行う
     (scrollIntoView の代替は main.js 参照) */
  padding: 40px 32px;

  scroll-snap-type: x mandatory;
  /* モバイル: スクロールバー非表示 */
  scrollbar-width: none;
}

/* モバイル: WebKit 系もスクロールバー非表示 */
.pricing-grid::-webkit-scrollbar {
  display: none;
}

/* ── PC（768px以上）: スクロールバーを表示 ── */
@media (min-width: 768px) {
  .pricing-grid {
    scrollbar-width: thin;               /* Firefox */
    scrollbar-color: #C95D2A #F5F0E8;   /* Firefox: thumb track */
  }

  .pricing-grid::-webkit-scrollbar {
    display: block;
    height: 6px;                         /* バーの太さ */
  }

  .pricing-grid::-webkit-scrollbar-track {
    background: #F5F0E8;
    border-radius: 99px;
  }

  .pricing-grid::-webkit-scrollbar-thumb {
    background: #C95D2A;
    border-radius: 99px;
  }

  .pricing-grid::-webkit-scrollbar-thumb:hover {
    background: #A84820;
  }
}

/* カード本体 */
.pricing-card {
  flex: 0 0 280px;
  max-width: 280px;

  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  background: #fff;
  border: 1px solid #f5f0e8;
  margin-top: 45px;

  scroll-snap-align: center;
}

.pricing-card.featured {
  border: 1.5px solid var(--burnt-orange);
  margin-top: 0;
}

/* 上部 */
.featured.most {
  font-family: Inter, sans-serif;
  background-color: var(--burnt-orange);
  color: #F5F0E8;
  font-weight: bold;
  font-size: 0.8125rem;
  line-height: 100%;
  letter-spacing: .1;
  padding: 16px 12px;
  border-radius: 16px 16px 0 0;
  display: block;
  text-align: center;
  width: 100%;
  top: -45px;
}

.card-top {
  position: relative;
  height: 100px;
  border-radius: 16px 16px 0 0;
  overflow: visible;
}

.featured .card-top {
  border-radius: 0;
}

.plan-top-fill {
  height: 100%;
  width: 100%;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tone-gray .plan-top-fill    { background: #EFEFF1; }
.tone-gray2 .plan-top-fill   { background: #F5F0E8; }
.tone-beige .plan-top-fill   { background: #F3DFBE; }
.tone-beige2 .plan-top-fill  { background: #DAC299; }
.tone-featured .plan-top-fill {
  background: #F5F0E8;
  border-radius: 0;
}

.plan-top-label {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
}

/* 左上の円 */
.plan-circle {
  position: absolute;
  left: 22px;
  top: -35px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #C6B38E;
  z-index: 2;
  box-shadow: 2px -1px 4px 0px #0000000D;
}

/* 本文 */
.card-body {
  background: #fff;
  padding: 28px 32px 28px;
  border-radius: 0 0 16px 16px;
  display: flex;
  flex-direction: column;
  min-height: 545px;
}

.plan-name {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  line-height: 1.05;
  font-weight: 400;
  text-align: center;
  color: #1f1f1f;
}

.plan-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.price-from {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  line-height: 1;
  color: #1f1f1f;
}

.plan-note {
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F5F0E8;
}

.plan-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  line-height: 1.35;
  color: #242424;
}

.plan-features li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--burnt-orange);
  font-weight: 700;
}

.plan-features small {
  font-size: 0.78em;
  color: #6f6b65;
}

/* ボタン */
.plan-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  min-height: 52px;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.pricing-card.featured:hover {
  transform: translateY(-5px);
}

.pricing-note {
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.pricing-note i {
  margin-right: 0.4rem;
  color: var(--burnt-orange);
}

.pricing-note a {
  color: var(--burnt-orange);
  font-weight: 500;
}

.pricing-note a:hover { color: var(--burnt-orange-dark); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq {
  padding: var(--section-v) 0;
}

.faq .section-h2 { color: #e8e2d8; }
.faq .section-intro { color: rgba(232,226,216,0.65); }

.faq-list {
  max-width: 800px;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 500;
  color: #e8e2d8;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question:hover { color: #fff; }

.faq-question[aria-expanded="true"] { color: var(--burnt-orange-light); }

.faq-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--burnt-orange);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 0 1.5rem;
  font-size: 0.92rem;
  color: rgba(232,226,216,0.68);
  line-height: 1.8;
}

/* ── FINAL CTA ───────────────────────────────────────────── */
.final-cta {
  position: relative;
  padding: var(--section-v) 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.65) 60%,
    rgba(0,0,0,0.8) 100%
  );
}

.final-cta-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.final-h2 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-family: var(--font-serif);
  color: #fff;
  margin-bottom: 1.1rem;
}

.final-body {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 1.8rem;
  line-height: 1.85;
}

.final-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 3rem;
}

.final-features span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.final-features span i {
  color: var(--burnt-orange-light);
}

/* ── INQUIRY FORM ────────────────────────────────────────── */
.wpcf7 form {
  width: 100%;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  margin-top: 20px;
  border-radius: var(--radius);
}

.inquiry-form-wrap {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  max-width: 720px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.req { color: var(--burnt-orange-light); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group select option { background: #222; color: #fff; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burnt-orange-light);
  background: rgba(255,255,255,0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

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

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}

.form-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.form-note i {
  margin-right: 0.3rem;
  color: rgba(255,255,255,0.3);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(39,174,96,0.15);
  border: 1px solid rgba(39,174,96,0.4);
  border-radius: var(--radius);
  color: #7dcea0;
  font-size: 0.9rem;
}

.form-success i { color: #27ae60; font-size: 1.2rem; }

.form-error {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(231,76,60,0.12);
  border: 1px solid rgba(231,76,60,0.35);
  border-radius: var(--radius);
  color: #f1948a;
  font-size: 0.9rem;
}

.form-error i { color: #e74c3c; font-size: 1.2rem; }

.hidden {
  display: none !important;
}

.multi-select {
  position: relative;
  width: 100%;
}

.multi-select-trigger {
  width: 100%;
  padding: 0.85rem 1rem;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);

  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 0.95rem;
  cursor: pointer;
}

.multi-select-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  display: none;
  z-index: 9999;

  margin-top: 6px;

  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);

  padding: 18px;

  max-height: 320px;
  overflow: auto;
}

.multi-select.open .multi-select-dropdown {
  display: block;
}

.multi-group {
  margin-bottom: 16px;
}

.multi-title {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #aaa;

  margin-bottom: 8px;
  padding-bottom: 6px;

  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.multi-option {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 0;

  border-bottom: 1px solid rgba(255,255,255,0.08);

  cursor: pointer;
}

.multi-option input {
  width: 16px;
  height: 16px;
}

.multi-option span {
  color: #fff;
  font-size: 0.95rem;
}

.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.location-tag {
  display: flex;
  align-items: center;
  gap: 6px;

  padding: 6px 10px;

  background: rgba(255,255,255,0.12);
  border-radius: 999px;

  font-size: 0.85rem;
  color: #fff;
}

.location-tag button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  opacity: 0.7;
}

.location-tag button:hover {
  opacity: 1;
}

/* 人数カウンター */
.people-counter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.counter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.counter-label {
  font-size: 0.95rem;
  color: #fff;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.counter-btn {
  width: 34px;
  height: 34px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);

  background: rgba(255,255,255,0.08);
  color: #fff;

  font-size: 1.2rem;
  cursor: pointer;
}

.counter-btn:hover {
  background: rgba(255,255,255,0.16);
}

.counter-value {
  min-width: 24px;
  text-align: center;
  font-size: 1rem;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #0a0a0a;
  color: rgba(232,226,216,0.65);
  padding: 4rem 0 0;
}

.container.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 1rem;
  width: 54px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(232,226,216,0.55);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--burnt-orange-light); }

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232,226,216,0.6);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.social-icons a:hover {
  background: var(--burnt-orange);
  border-color: var(--burnt-orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(232,226,216,0.35);
  line-height: 1.6;
}

.footer-bottom {
  padding: 1.25rem 0;
}

.footer-bottom .container,
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(232,226,216,0.3);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.footer-legal a {
  color: rgba(232,226,216,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(232,226,216,0.85);
}

.footer-legal-sep {
  color: rgba(232,226,216,0.2);
  font-size: 0.7rem;
}

.footer-seo {
  font-size: 0.72rem !important;
  color: rgba(232,226,216,0.15) !important;
  letter-spacing: 0.04em;
}

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ── TABLET ── 768px ─────────────────────────────────────── */
@media (min-width: 768px) {
  .sp { display: none; }
  .pc { display: inherit; }

  .nav-logo { width: 64px; }

  .nav-links {
    display: flex;
    gap: 2rem;
  }

  .nav-toggle { display: none; }

  .hero-content { padding-top: 10rem; padding-bottom: 5rem; }

  .hero-cta-wrap {
    flex-direction: row;
    align-items: center;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 30px;
  }

  .hero-scroll-hint { bottom: 8rem; }

  .language-select select { border: 1px solid #fff; }

  .pillars-grid { grid-template-columns: repeat(2, 1fr); }

  .why-content-col { order: 2; }
  .why-image-col   { order: 1; }

  .why-img-main img { height: 460px; }
  .why-img-accent { width: 48%; }
  .why-img-accent img { height: 220px; }

  .why-list li {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  .why-list li div { align-items: flex-start; }

  .why-content-col .btn { margin: 20px 0 20px auto; }

  .locations-grid { grid-template-columns: 1fr 1fr; }

  .location-card { width: auto; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .testimonial-card.featured { grid-column: span 2; }

  .pricing-grid {
    /* ②-C タブレット以上: カードを画面中央寄せで表示
       padding を使って中央カードが自然に中央に見えるよう調整 */
    padding: 40px calc((100vw - 320px * 3 - 24px * 2) / 2);
    /* 3枚未満のビューポートでは最低 32px の余白を確保 */
    padding-left: max(32px, calc((100vw - 320px * 3 - 24px * 2) / 2));
    padding-right: max(32px, calc((100vw - 320px * 3 - 24px * 2) / 2));
  }

  .pricing-card {
    flex: 0 0 320px;
    max-width: 320px;
  }

  .form-row { grid-template-columns: 1fr 1fr; }

  .inquiry-form-wrap { padding: 2.5rem; }

  .form-submit-row {
    flex-direction: row;
    align-items: center;
  }

  .container.footer-inner { grid-template-columns: 2fr 1fr 1fr; }

  .footer-brand { align-items: flex-start; }

  .footer-bottom .container,
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
  }
}

/* ── DESKTOP ── 1024px ───────────────────────────────────── */
@media (min-width: 1024px) {
  :root { --section-v: 120px; }

  .hero {
    padding-top: 100px;
    margin-top: 50px;
  }

  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }

  .why-img-main img { height: 540px; }

  .locations-grid { grid-template-columns: repeat(3, 1fr); }

  .locations-grid.osaka {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 200px;
  }

  .plan-section {
    align-items: flex-end;
    flex-direction: row;
    grid-column: span 2;
  }

  .plan-text {
    font-size: 1.8rem;
    text-align: left;
  }

  .testimonials-grid { grid-template-columns: 1fr 1.15fr 1fr; }

  .testimonial-card.featured { grid-column: span 1; }

  .location-img-wrap { height: 260px; }
}

/* ── LARGE DESKTOP ── 1280px ─────────────────────────────── */
@media (min-width: 1280px) {
  .container { padding: 0 2rem; }
  .hero-content { max-width: 1140px; padding-bottom: 200px; gap: 3.375rem; }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-scroll-hint { animation: none; }
  .mosaic-img img { transition: none; }
}

/* ==================================================
   PRIVACY POLICY PAGE
================================================== */
.privacy-page {
  background: var(--ivory);
  padding-top: 140px;
  padding-bottom: 120px;
  font-family: var(--font-sans);
  color: #4a4a4a;
}

.privacy-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
}

.privacy-title {
  font-family: var(--font-serif);
  font-size: 36px;
  text-align: center;
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: .02em;
}

.privacy-lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 60px;
  color: #6a6a6a;
}

.privacy-content { font-size: 16px; line-height: 1.9; }

.privacy-content h2 {
  font-family: var(--font-sans);
  font-size: 24px;
  margin-top: 56px;
  margin-bottom: 18px;
  font-weight: 600;
  color: #3c3c3c;
}

.privacy-content p { margin-bottom: 20px; color: #555; }

.privacy-content ul {
  margin: 16px 0 28px 18px;
  padding: 0;
  list-style: disc;
}

.privacy-content li { margin-bottom: 10px; }

@media (max-width: 768px) {
  .privacy-page { padding-top: 110px; padding-bottom: 80px; }
  .privacy-title { font-size: 28px; }
  .privacy-content { font-size: 15px; }
  .privacy-content h2 { font-size: 20px; margin-top: 40px; }
}

/* ================================
   THANK YOU PAGE
================================ */
.thanks-page {
  background: var(--ivory);
  padding-top: 140px;
  padding-bottom: 120px;
  font-family: var(--font-sans);
  text-align: center;
}

.thanks-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.thanks-label {
  color: var(--burnt-orange);
  font-size: 12px;
  letter-spacing: .18em;
  margin: 0 auto 1rem 0;
  font-weight: 600;
}

.thanks-title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 20px;
}

.thanks-lead {
  color: #666;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 60px;
}

.next-box {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
  margin-bottom: 60px;
  background-color: #fff;
}

.next-box h3 { color: var(--burnt-orange); font-size: 22px; margin-bottom: 18px; }
.next-box ul { padding-left: 18px; line-height: 1.9; }
.next-box li { margin-bottom: 10px; }

.reply-help h3 { font-size: 24px; margin-bottom: 10px; }
.reply-help p { color: #666; margin-bottom: 6px; }
.reply-help a { color: #444; border-bottom: 1px solid #999; text-decoration: none; }
.reply-help a:hover { opacity: .7; }

@media (max-width: 768px) {
  .thanks-page { padding-top: 110px; }
  .thanks-title { font-size: 30px; }
  .thanks-lead { font-size: 16px; }
  .next-box { padding: 24px; }
}

/* ================================
   404 PAGE
================================ */
.error-page {
  background: var(--ivory);
  padding-top: 160px;
  padding-bottom: 140px;
  text-align: center;
  font-family: var(--font-sans);
}

.error-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.error-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 28px;
}

.error-text { color: #666; font-size: 18px; margin-bottom: 40px; }

.error-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #444;
  color: #444;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
  transition: all .25s;
}

.error-btn:hover { background: #444; color: #fff; }

@media (max-width: 768px) {
  .error-title { font-size: 32px; }
  .error-text { font-size: 16px; }
}
