@charset "utf-8";
/* ベースレイアウト */
.page-first-time {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 16px 80px;
  box-sizing: border-box;
  color: #333;
  line-height: 1.9;
}
.page-first-time .page-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e3e3e3;
}
.page-first-time h1 {
  font-size: 2.375rem; /* 約38px */
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 16px;
}
.page-first-time .lead {
  font-size: 1.5rem; /* 約24px */
  line-height: 1.8;
}
/* 通常の本文も基本24px相当に */
.page-first-time p {
  font-size: 1.5rem; /* 約24px */
  margin: 0 0 1.2em;
}
/* 小さめ注釈用（必要な場合だけクラスを付ける） */
.page-first-time .text-small {
  font-size: 1.25rem; /* 約20px */
}
/* --------------------

   見出し

-------------------- */
.page-first-time h2 {
  font-size: 1.75rem; /* 約28px */
  margin: 0 0 16px;
  padding-left: 12px;
  border-left: 4px solid #0076b8;
  font-weight: 700;
}
.page-first-time h3 {
  font-size: 1.5rem; /* 約24px */
  margin: 24px 0 8px;
  font-weight: 700;
}
/* --------------------

   セクション

-------------------- */
.page-first-time .section {
  padding: 32px 0;
  border-bottom: 1px solid #f0f0f0;
}
.page-first-time .section:last-of-type {
  border-bottom: none;
}
/* テキスト＋画像の2カラム想定

   （画像を入れるときは .section-inner, .section-body, .section-media を

    HTML側に付けてもらうとキレイに並びます） */
.page-first-time .section-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.page-first-time .section-body {
  flex: 1 1 auto;
}
.page-first-time .section-media {
  flex: 0 0 40%;
}
/* 画像共通：横幅は最大500pxで抑える */
.page-first-time img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}
/* セクション内で画像を左寄せにしたい場合 */
.page-first-time .section-media img {
  margin: 0;
}
/* --------------------

   リスト

-------------------- */
.page-first-time ul, .page-first-time ol {
  padding-left: 1.6em;
  margin: 0 0 1.4em;
  font-size: 1.5rem; /* 約24px */
}
.page-first-time li {
  margin: 0 0 0.5em;
}
/* チェック風リストにする場合：<ul class="check-list"> */
.page-first-time .check-list {
  list-style: none;
  padding-left: 0;
}
.page-first-time .check-list li {
  position: relative;
  padding-left: 1.8em;
}
.page-first-time .check-list li::before {
  content: "&#10004;";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1.1em;
  color: #0076b8;
}
/* --------------------

   ボックス・強調

-------------------- */
/* 強調ボックス：説明やメリットまとめなどに */
.page-first-time .point-box {
  border-radius: 12px;
  border: 1px solid #e0eef7;
  background: #f6fbff;
  padding: 20px 20px 16px;
  margin: 16px 0 24px;
}
.page-first-time .point-box-title {
  font-size: 1.5rem; /* 約24px */
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-first-time .point-box-title::before {
  content: "●";
  font-size: 0.7em;
  color: #0076b8;
}
/* 注意書き */
.page-first-time .note {
  font-size: 1.25rem; /* 約20px */
  color: #666;
}
/* 強調テキスト */
.page-first-time .em {
  font-weight: 700;
  color: #c94a1e;
}
/* --------------------

   ご利用の流れ（ステップ表示用）

   HTML側で .flow, .flow-item などがあれば適用されます

-------------------- */
.page-first-time .flow {
  margin: 24px 0;
}
.page-first-time .flow-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px dashed #ddd;
}
.page-first-time .flow-item:last-of-type {
  border-bottom: 1px dashed #ddd;
}
.page-first-time .flow-step-no {
  flex: 0 0 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #0076b8;
  font-weight: 700;
  font-size: 1.25rem; /* 約20px */
}
.page-first-time .flow-body {
  flex: 1 1 auto;
}
/* --------------------

   よくある質問（FAQ）

-------------------- */
.page-first-time .faq {
  margin-top: 16px;
}
.page-first-time .faq-item {
  padding: 16px 0;
  border-top: 1px solid #eee;
}
.page-first-time .faq-item:first-of-type {
  border-top: none;
}
.page-first-time .faq-q {
  font-weight: 700;
  margin-bottom: 4px;
}
.page-first-time .faq-q::before {
  content: "Q.";
  margin-right: 6px;
  color: #0076b8;
  font-weight: 700;
}
.page-first-time .faq-a::before {
  content: "A.";
  margin-right: 6px;
  color: #c94a1e;
  font-weight: 700;
}
/* --------------------

   フッター風の締めブロック

-------------------- */
.page-first-time .page-footer-message {
  margin-top: 40px;
  padding: 24px 20px;
  border-radius: 12px;
  background: #f8f8f8;
  text-align: center;
}
/* ================================

   レスポンシブ調整

================================ */
/* タブレット以下 */
@media (max-width: 959px) {
  .page-first-time {
    padding: 32px 12px 56px;
  }
  .page-first-time .section-inner {
    flex-direction: column;
  }
  .page-first-time .section-media {
    flex-basis: auto;
    width: 100%;
  }
  .page-first-time img {
    max-width: 100%; /* 画面幅に合わせて縮小 */
  }
}
/* スマホ（&#12316;767px）フォント少しだけ縮小 */
@media (max-width: 767px) {
  .page-first-time h1 {
    font-size: 2rem; /* 約32px */
  }
  .page-first-time .lead, .page-first-time p, .page-first-time ul, .page-first-time ol {
    font-size: 1.375rem; /* 約22px */
  }
  .page-first-time h2 {
    font-size: 1.5rem; /* 約24px */
  }
  .page-first-time h3 {
    font-size: 1.375rem; /* 約22px */
  }
  .page-first-time .flow-item {
    flex-direction: row;
  }
  .page-first-time .flow-step-no {
    flex: 0 0 56px;
    height: 56px;
    font-size: 1.125rem;
  }
}
/* テキスト部分だけ幅を少し狭める */
.page-first-time .section-body {
  max-width: 780px; /* お好みで 720&#12316;820pxくらい */
}
/* ================================

   first-time の h1 / h2 を about と同じ #103669 に統一

================================ */
.page-first-time h1 {
  color: #103669 !important;
}
.page-first-time h2 {
  color: #103669 !important;
  border-left-color: #103669 !important;
}
/* 基本の解凍ステップ直下のリスト内 strong を強調 */
.page-first-time h3 + ul li strong {
  display: inline-block;
  padding: 2px 6px;
  margin-right: 2px;
  border-radius: 4px;
  background: #fff5e9; /* うっすらオレンジ背景 */
  color: #c94a1e; /* 注意・あたたかさ系の色 */
  font-weight: 700;
}
/* 解凍まわりの小見出し（注意点・ちぢみ） */
.page-first-time .defrost-subtitle {
  margin: 24px 0 8px;
  padding: 6px 10px;
  background: #f5f8ff;
  border-left: 4px solid #103669; /* about と同じブルー */
  color: #103669;
  font-weight: 700;
  font-size: 1.5rem; /* ≒24px */
}
.page-first-time #about-shop ul {
  list-style: none; /* デフォルトの点を消す */
  padding-left: 0;
  margin: 16px 0 24px;
}
.page-first-time #about-shop ul li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 0.6em;
  font-size: 1.5rem; /* ≒24px（本文と揃える） */
  line-height: 1.7;
}
/* チェックマーク（福一ブルー） */
.page-first-time #about-shop ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1.1em;
  color: #103669; /* about と統一の見出しカラー */
  font-weight: 700;
}
.page-first-time .ft-main-visual img {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: 0 auto 24px;
  border-radius: 10px;
}