/* ============================================================
   リセット
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================================
   全体レイアウト
   背景色: #1a1a1a  アクセント色: #eb5424（オレンジ）
   ============================================================ */
body {
  font-family: 'Raleway', 'Noto Sans JP', sans-serif;
  background-color: #1a1a1a;
  color: #cccccc;
  min-height: 100vh;
  padding: 0 0 4rem;
}

.wrapper {
  max-width: 1020px;               /* 幅を広げてゆったりに */
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ============================================================
   ヘッダー（ロゴエリア）
   ロゴ画像のパスは src="quasar.png" のまま、
   HTMLと同じフォルダに quasar.png を置いてください
   ============================================================ */
.site-header {
  background-color: #111111;
  border-bottom: 1px solid #2a2a2a;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

/* ロゴ画像 */
.site-logo {
  height: 50px;        /* ロゴの高さ：必要に応じて変更してください */
  width: auto;
  display: block;
}

/* ヘッダー右側のラベル */
.header-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #eb5424;
  border: 1px solid #eb5424;
  padding: 4px 12px;
}

/* ============================================================
   ヒーローセクション
   ============================================================ */
.hero {
  border: 1px solid #2e2e2e;
  border-top: 3px solid #eb5424;
  background-color: #111111;
  padding: 4rem 4rem 3.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

/* 右下の装飾コーナー */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100px;
  height: 100px;
  border-right: 1px solid #2e2e2e;
  border-bottom: 1px solid #2e2e2e;
  pointer-events: none;
}

/* ターゲット表示 */
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

/* メインキャッチコピー */
.hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 700;
  line-height: 1.55;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

/* <em>タグで囲った部分がオレンジ強調になります */
.hero-title em {
  font-style: normal;
  color: #eb5424;
}

/* ヒーロー本文 */
.hero-body {
  font-size: 13px;
  line-height: 2;
  color: #888888;
  max-width: 520px;
}

/* ============================================================
   セクション見出し共通
   ============================================================ */
.section-head {
  margin-bottom: 1.75rem;
}

.section-head h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.section-head .underline {
  width: 36px;
  height: 2px;
  background-color: #eb5424;
  display: block;
}

/* ============================================================
   サービスカード（2列グリッド）
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

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

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

.card {
  background-color: #111111;
  border: 1px solid #2e2e2e;
  border-top: 2px solid #eb5424;
  padding: 2rem 1.75rem;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

/* アイコン枠 */
.icon-box {
  width: 42px;
  height: 42px;
  border: 1px solid #eb5424;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box svg { width: 20px; height: 20px; }

/* カードタイトル */
.card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* カードサブタイトル */
.card-sub {
  font-size: 11px;
  color: #eb5424;
  letter-spacing: 0.04em;
  margin-top: 3px;
}

/* 区切り線 */
.card-hr {
  border: none;
  border-top: 1px solid #2a2a2a;
  margin: 0.75rem 0 1rem;
}

/* カード本文 */
.card-desc {
  font-size: 12.5px;
  color: #888888;
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* タグリスト */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.tag {
  font-size: 10px;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border: 1px solid #333333;
  color: #777777;
  font-weight: 600;
}

/* 料金表示エリア */
.card-price {
  border-top: 1px solid #2a2a2a;
  padding-top: 1rem;
  margin-top: 0.25rem;
}

.card-price-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555555;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-price-value {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #eb5424;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.card-price-note {
  font-size: 10.5px;
  color: #555555;
  margin-top: 3px;
  line-height: 1.6;
}

/* ============================================================
   お悩みセクション
   ============================================================ */
.worry-section {
  background-color: #111111;
  border: 1px solid #2e2e2e;
  padding: 2.5rem 2.5rem;
  margin-bottom: 2.5rem;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

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

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

.worry-item { display: flex; flex-direction: column; gap: 6px; }

.worry-num {
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #eb5424;
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 4px;
}

.worry-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #dddddd;
  line-height: 1.5;
}

.worry-body {
  font-size: 11.5px;
  color: #666666;
  line-height: 1.75;
}

/* ============================================================
   ご利用の流れセクション
   ============================================================ */
.flow-section { margin-bottom: 2.5rem; }

.flow-row { display: flex; align-items: flex-start; }

.flow-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0.25rem;
}

/* ステップ番号の四角 */
.flow-num {
  width: 38px;
  height: 38px;
  background-color: #eb5424;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.flow-label {
  font-size: 11px;
  color: #777777;
  line-height: 1.6;
}

.flow-arrow {
  color: #eb5424;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 10px;
  padding: 0 2px;
}

/* ============================================================
   CTAセクション
   ============================================================ */
.cta-box {
  background-color: #111111;
  border: 1px solid #2e2e2e;
  border-top: 3px solid #eb5424;
  padding: 2.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 12px;
  color: #777777;
  line-height: 1.85;
}

/* お問い合わせボタン */
/* ボタンのリンク先は href="#" の部分を変更してください */
.cta-button {
  display: inline-block;
  background-color: #eb5424;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background-color: #c94010;
  color: #ffffff;
  text-decoration: none;
}

/* ============================================================
   フッター
   ============================================================ */
.site-footer {
  border-top: 1px solid #2a2a2a;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-logo {
  height: 22px;
  width: auto;
  opacity: 0.5;
}

/* 注釈テキスト */
.note {
  font-size: 10.5px;
  color: #444444;
  line-height: 2;
  letter-spacing: 0.04em;
}

/* ============================================================
   スマートフォン対応（600px以下）
   ============================================================ */
@media (max-width: 600px) {
  .site-header { padding: 1rem 1.25rem; }

  .hero { padding: 2.25rem 1.75rem 2rem; }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem 1.5rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
