@charset "UTF-8";

/* =========================================================
   リモートサポートページ専用CSS
   /support/remote/remote.css
   設計：スマホファースト @media(min-width: 768px) 1箇所のみ
   既存 support.css のCSS変数を継承（--ink, --blue, --gray, --gray-lt, --white）
   ========================================================= */

/* HERO */
.rs-hero {
  text-align: center;
  padding: 36px 20px 28px;
}
.rs-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin-bottom: 12px;
}
.rs-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.rs-lead {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--gray);
}
.rs-br-pc { display: none; }

/* 重要なお願い（注意ボックス） */
.rs-notice {
  background: #FFF8E6;
  border: 1.5px solid #F0C84A;
  border-radius: 14px;
  padding: 22px 20px;
  margin: 8px 0 36px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.rs-notice-icon {
  color: #B88200;
  flex-shrink: 0;
  margin-top: 2px;
}
.rs-notice-body { flex: 1; min-width: 0; }
.rs-notice-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #6B4A00;
  margin-bottom: 12px;
}
.rs-notice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rs-notice-list li {
  font-size: 0.82rem;
  line-height: 1.8;
  color: #5A3F00;
  padding-left: 16px;
  position: relative;
}
.rs-notice-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: #B88200;
  border-radius: 50%;
}
.rs-notice-list strong { color: #4A3300; font-weight: 700; }

/* 一般セクション */
.rs-section {
  margin-bottom: 40px;
}
.rs-h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-lt);
  position: relative;
}
.rs-h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--blue);
}
.rs-text {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--gray);
  margin-bottom: 14px;
}
.rs-text:last-child { margin-bottom: 0; }

/* ステップリスト */
.rs-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rs-step {
  background: white;
  border: 1.5px solid var(--gray-lt);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rs-step:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(43, 143, 200, 0.08);
}
.rs-step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}
.rs-step-body { flex: 1; min-width: 0; }
.rs-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.5;
}
.rs-step-desc {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--gray);
}
.rs-step-desc strong { color: var(--ink); font-weight: 700; }

/* ダウンロードCTA */
.rs-download {
  background: var(--ink);
  border-radius: 18px;
  padding: 36px 24px;
  margin: 8px 0 40px;
  text-align: center;
}
.rs-download-inner {
  max-width: 520px;
  margin: 0 auto;
}
.rs-download-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}
.rs-download-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
}
.rs-download-desc {
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
}
.rs-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(43, 143, 200, 0.35);
}
.rs-download-btn:hover {
  background: #1F7CB0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 143, 200, 0.45);
  color: white;
  text-decoration: none;
}
.rs-download-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
}

/* 安全のためのお願い：4枚カード */
.rs-safety-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rs-safety-card {
  background: white;
  border: 1.5px solid var(--gray-lt);
  border-radius: 14px;
  padding: 22px 20px;
}
.rs-safety-icon {
  width: 44px;
  height: 44px;
  background: #EAF4FB;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 14px;
}
.rs-safety-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.5;
}
.rs-safety-desc {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--gray);
}
.rs-safety-desc strong { color: var(--ink); font-weight: 700; }

/* お困りのときは */
.rs-contact {
  background: #F5F8FB;
  border-radius: 18px;
  padding: 32px 24px;
  margin-top: 8px;
  text-align: center;
}
.rs-contact-inner {
  max-width: 520px;
  margin: 0 auto;
}
.rs-contact-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.rs-contact-desc {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 22px;
}
.rs-contact-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.rs-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.rs-contact-btn:hover { transform: translateY(-2px); text-decoration: none; }
.rs-contact-btn-line {
  background: #06C755;
  color: white;
}
.rs-contact-btn-line:hover { background: #05A847; color: white; }
.rs-contact-btn-mail {
  background: white;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.rs-contact-btn-mail:hover { background: var(--blue); color: white; }

/* =========================================================
   PC（768px以上）
   ========================================================= */
@media (min-width: 768px) {

  .rs-hero {
    padding: 64px 0 48px;
  }
  .rs-title { font-size: 2.4rem; }
  .rs-lead { font-size: 1rem; }
  .rs-br-pc { display: inline; }

  .rs-notice {
    padding: 28px 32px;
    gap: 20px;
    margin-bottom: 56px;
  }
  .rs-notice-title { font-size: 1.1rem; }
  .rs-notice-list li { font-size: 0.92rem; }

  .rs-section { margin-bottom: 64px; }
  .rs-h2 { font-size: 1.45rem; margin-bottom: 28px; }
  .rs-text { font-size: 0.95rem; }

  .rs-steps { gap: 16px; }
  .rs-step {
    padding: 26px 28px;
    gap: 22px;
  }
  .rs-step-num {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .rs-step-title { font-size: 1.05rem; }
  .rs-step-desc { font-size: 0.9rem; }

  .rs-download {
    padding: 56px 40px;
    margin-bottom: 64px;
  }
  .rs-download-title { font-size: 1.6rem; }
  .rs-download-desc { font-size: 0.92rem; }
  .rs-download-btn {
    font-size: 1.05rem;
    padding: 18px 48px;
  }

  .rs-safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .rs-safety-card { padding: 28px 26px; }
  .rs-safety-title { font-size: 1.05rem; }
  .rs-safety-desc { font-size: 0.88rem; }

  .rs-contact {
    padding: 48px 40px;
  }
  .rs-contact-title { font-size: 1.3rem; }
  .rs-contact-desc { font-size: 0.92rem; }
  .rs-contact-btns {
    flex-direction: row;
    justify-content: center;
    gap: 14px;
  }
  .rs-contact-btn { min-width: 200px; }
}
