/* ══════════════════════════════════════════════════
   CONTACT PAGE — contact.css
══════════════════════════════════════════════════ */

/* ── Hero ── */
.ct-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 20px 48px;
  overflow: hidden;
}
.ct-hero-bg {
  position: absolute; inset: 0;
  background: center center / cover no-repeat;
  background-color: var(--navy);
  z-index: 0;
}
.ct-hero-overlay {
  position: absolute; inset: 0;
  background: none;
  z-index: 1;
}
.ct-hero-inner {
  position: relative; z-index: 2;
  max-width: 700px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px 28px;
  border-radius: var(--rd);
}
.ct-breadcrumb {
  font-family: var(--en); font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; color: rgba(26,26,46,0.6);
  margin-bottom: 16px;
}
.ct-breadcrumb a { color: rgba(26,26,46,0.6); transition: color 0.2s; }
.ct-breadcrumb a:hover { color: var(--yellow); }
.ct-breadcrumb span { color: var(--navy); }
.ct-hero-eyebrow {
  display: inline-flex; align-items: center;
  font-family: var(--en); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--yellow);
  background: rgba(255,210,51,0.12);
  border: 1px solid rgba(255,210,51,0.25);
  padding: 6px 18px; border-radius: var(--rd-pill);
  margin-bottom: 16px; text-transform: uppercase;
}
.ct-hero-h1 {
  font-size: clamp(28px, 7vw, 52px);
  font-weight: 900; line-height: 1.25;
  color: var(--navy); margin-bottom: 16px;
}
.ct-hero-h1 em { font-style: italic; color: var(--teal); }
.ct-hero-sub {
  font-size: 14px; color: rgba(26,26,46,0.75);
  line-height: 2; margin-bottom: 20px;
}
.ct-hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.ct-hero .badge.glass {
  background: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(26,26,46,0.15);
  color: var(--navy);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 700;
  padding: 7px 18px; border-radius: var(--rd-pill);
}
.ct-hero-btns { display: flex; flex-direction: column; gap: 10px; }
.ct-hero-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--yellow); color: var(--navy);
  font-size: 14px; font-weight: 700;
  padding: 16px 36px; border-radius: var(--rd-pill);
  font-family: var(--sans); transition: all 0.25s;
  box-shadow: 0 6px 28px rgba(255,210,51,0.4);
  width: 100%; max-width: 320px;
}
.ct-hero-btn:hover {
  background: var(--yellow-dark); transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255,210,51,0.5);
}
.ct-hero-btn svg { flex-shrink: 0; }

/* ── Contact Cards ── */
.ct-channels {
  display: flex; flex-direction: column; gap: 16px; margin-top: 32px;
}
.ct-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-top: 3px solid var(--teal);
  border-radius: var(--rd);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ct-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,180,166,0.08); }
.ct-card.primary { border-top-color: #06C755; }
.ct-card-tag {
  font-family: var(--en); font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em; color: var(--teal); text-transform: uppercase;
}
.ct-card.primary .ct-card-tag { color: #06C755; }
.ct-card-name {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 900; color: var(--navy); letter-spacing: 0.03em;
}
.ct-card-desc {
  font-size: 13px; color: var(--gray); line-height: 1.9;
}
.ct-card-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 8px; padding: 14px 24px;
  border-radius: var(--rd-pill);
  font-size: 13px; font-weight: 700;
  transition: all 0.2s;
}
.ct-line-btn {
  background: #06C755; color: var(--white);
  box-shadow: 0 4px 16px rgba(6,199,85,0.25);
}
.ct-line-btn:hover { background: #05b04c; transform: translateY(-2px); }
.ct-ig-btn {
  background: var(--white); color: var(--navy);
  border: 2px solid var(--border);
}
.ct-ig-btn:hover { border-color: var(--teal); color: var(--teal); }

/* ── Contact Info List ── */
.ct-info-list {
  margin-top: 40px;
  border-top: 2px solid var(--border);
}
.ct-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  gap: 16px;
}
.ct-info-label {
  font-family: var(--en); font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; color: var(--gray-light); text-transform: uppercase;
  min-width: 88px; flex-shrink: 0;
}
.ct-info-value {
  font-size: 13px; font-weight: 700; color: var(--navy); text-align: right;
}

/* ── Quote Block ── */
.quote-block {
  position: relative;
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--rd) var(--rd) 0;
  padding: 24px 28px;
  margin-top: 32px;
}
.quote-block p {
  font-size: 14px; color: var(--navy); line-height: 2.1; font-weight: 700;
}

/* ── Flow Steps ── */
.flow-steps {
  display: flex; flex-direction: column; gap: 0;
  max-width: 640px;
}
.flow-step {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.flow-step:last-child { border-bottom: none; }
.flow-n {
  font-family: var(--en); font-size: 24px; font-weight: 900;
  color: var(--teal); flex-shrink: 0; width: 40px; line-height: 1;
}
.flow-title {
  font-size: 15px; font-weight: 900; color: var(--navy); margin-bottom: 4px;
}
.flow-body {
  font-size: 13px; color: var(--gray); line-height: 1.8;
}

/* ── FAQ 2列カード（ベーススタイルは service.css 定義済み） */

/* ── CTA ── */
.ct-cta-btns {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-top: 32px;
}
.ct-cta-line {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #06C755; color: var(--white);
  font-size: 16px; font-weight: 900;
  padding: 18px 44px; border-radius: var(--rd-pill);
  transition: all 0.25s; box-shadow: 0 4px 20px rgba(6,199,85,0.3);
}
.ct-cta-line:hover {
  background: #05b04c; transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(6,199,85,0.4);
}
.ct-cta-line svg { flex-shrink: 0; fill: currentColor; }
.ct-cta-back {
  font-size: 13px; color: var(--gray); font-weight: 600;
  border-bottom: 1px dashed var(--border); padding-bottom: 2px;
  transition: color 0.2s;
}
.ct-cta-back:hover { color: var(--teal); }
.ct-cta-note {
  margin-top: 16px; font-size: 12px; color: var(--gray-light); text-align: center;
}
.ct-cta-login { margin-top: 12px; text-align: center; }
.ct-cta-login-link {
  font-size: 12px; color: var(--gray-light);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.ct-cta-login-link:hover { color: var(--teal); }

/* ══ PC ══ */
@media (min-width: 768px) {
  .ct-hero { padding: 0 6% 64px; }
  .ct-hero-h1 { font-size: clamp(36px, 4.5vw, 52px); }
  .ct-hero-sub { font-size: 16px; }
  .ct-hero-btn { width: auto; max-width: none; }
  .ct-channels { flex-direction: row; }
  .ct-card { flex: 1; }
  .ct-cta-line { font-size: 18px; padding: 20px 56px; }
  /* FAQ: PC 2列グリッド（intro / coding と同様） */
  .faq-list2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 1100px; align-items: stretch; }
  .faq-list2 .faq-item2 { height: 100%; }
}

/* ══ SP ══ */
@media (max-width: 767px) {
  .ct-hero { padding: 0 16px 32px; min-height: 70svh; }
  .ct-hero-bg { background-position: 60% center; }
  .ct-hero-inner { max-width: 280px; margin-left: 0; margin-right: auto; padding: 22px 20px; border-radius: 18px; background: rgba(255,255,255,.10); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .ct-hero-h1 { font-size: clamp(24px, 7vw, 36px); }
  .ct-hero-eyebrow { font-size: 9px; padding: 4px 14px; }
  .ct-hero-sub { font-size: 12px; }
  .ct-hero .badge.glass { font-size: 10px; padding: 5px 14px; }
  .ct-hero-btn { font-size: 13px; padding: 12px 28px; max-width: 280px; }
  .ct-info-value { font-size: 12px; }
  .ct-cta-line { font-size: 14px; padding: 14px 32px; }
}

/* ===== Section Padding ===== */
/* coding / design / movie / retouch / intro と統一（service.css の 64px を上書き） */
.sec{padding-top:44px;padding-bottom:44px}
@media (min-width: 768px) {
  .sec{padding-top:68px;padding-bottom:68px}
}
@media (min-width: 1200px) {
  .sec{padding-top:80px;padding-bottom:80px}
}
@media (max-width: 767px) {
  .sec{padding-top:32px;padding-bottom:32px}
}
