html{
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body{
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Helvetica Neue",
    "Yu Gothic",
    "游ゴシック体",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  margin: 0;
  background: #fff;
  font-size: 0.95rem;     /* 約15.2px */
  line-height: 1.75;
  color:#0f172a;
}

/* フォーム要素も同じフォント */
input, textarea, button{
  font-family: inherit;
}

/* =========================
   TOP BAR（3枚横並び・高さズレ＆CLS対策）
   - 横比率：左849 / 中央569 / 右200（= 4.245fr / 2.845fr / 1fr）
   - 高さは3枚とも揃える
   - 余白なし
========================= */
.lp-header3{
  display: grid;
  grid-template-columns: 4.245fr 2.845fr 1fr;
  width: 100%;
  max-width: 640px;  /* PC時 */
  margin: 0 auto;
  padding: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;

  /* ✅ 3枚合計の比率で行の高さを先に確保（CLS対策）
     (849+569+200) : 200 = 1618 : 200 */
  aspect-ratio: 1618 / 200;
}

.lp-header3 a{
  display: block;
  height: 100%;
}

.lp-header3 img{
  width: 100%;
  height: 100%;        /* ✅ 3枚とも同じ高さに揃える */
  display: block;

  /* ✅ 全体を途切れずに見せたいなら contain
     ✅ 端までピッタリ埋めたいなら cover（今の要望は「余白なし」なので cover 推奨） */
  object-fit: cover;
  object-position: center;
}

/* スマホ時 */
@media (max-width: 640px){
  .lp-header3{
    max-width: 100%;
  }
}


/* =========================
   LP
========================= */
/* LP共通画像 */
.lp-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 640px; /* PCでもスマホ幅 */
  margin: 0 auto;   /* 中央寄せだけ */
}

/* =========================
   アクションボタン
========================= */
.actions-container{
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto 15px;
  box-sizing: border-box;
}

/* ✅ 高さを先に予約（1000×713 用） */
.actions-container::before{
  content: "";
  display: block;
  padding-top: 71.3%;   /* ← 713 / 1000 × 100 */
}

/* 背景画像 */
.all-actions-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;  /* 画像が切れない */
}

/* ボタン共通 */
.action-btn img{
  display: block;
  width: 100%;
  height: auto;
}

.action-btn{
  -webkit-tap-highlight-color: transparent;
}

/* 電話ボタン */
.call-btn{
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translateX(-50%);
  width: 84%;
}

/* LINE & メール */
.action-btns-row{
  position: absolute;
  top: 77%;
  left: 50%;
  transform: translateX(-50%);
  width: 84%;
  display: flex;
  gap: 8px;
}

.action-btns-row .action-btn{
  flex: 1;
}

/* =========================
   お悩み（外枠なしバージョン）
========================= */
.worry{
  background:#444444;
  padding: 30px 0 26px;
}

.worry-inner{
  max-width: 640px;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
  display: grid;
  gap: 35px;
}

/* カード外枠を完全に削除 */
.worry-card{
  position: relative;
  border: 2px solid rgba(255,255,255,0.92);
  overflow: visible;   /* ← 重要 */
}

/* 写真枠のみ残す */
.worry-photo{
  position: relative;
}

/* 画像 */
.worry-photo img{
  width: 100%;
  height: auto;
  display: block;
}

/* 黒オーバーレイ（より濃く） */
.worry-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.5);
  pointer-events:none;
  z-index:1;
}

/* タイトル（枠線に重なる） */
.worry-title{
  position:absolute;
  top:0;
  left:50%;
  transform:translate(-50%, -50%);
  margin:0;
  z-index:3;
}

.worry-title span{
  display:inline-block;
  white-space:nowrap;
  background:#fff;
  font-size:1.3rem;
  font-weight:900;
  padding:8px 24px;
  border-radius:999px;
}

/* リスト（画像上） */
.worry-list{
  position:absolute;
  left:16px;
  right:16px;
  top:30px;
  margin:0;
  padding:0;
  list-style:none;
  color:#ffffff;
  font-weight:800;
  font-size:1.02rem;
  line-height:1.7;
  z-index:3;
}

.worry-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:8px 0;
  text-shadow:0 2px 12px rgba(0,0,0,0.7);
}

/* 黄色チェック */
.worry-list li::before{
  content:"✓";
  color:#FFED00;
  font-weight:900;
  font-size:1.2rem;
  line-height:1;
  flex:0 0 auto;
  text-shadow:0 2px 12px rgba(0,0,0,0.8);
}

/* ===== お任せくださいセクション ===== */
.omakase{
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 12px;
  text-align: center;
  box-sizing: border-box;
  background: #ffffff;
}

/* メイン強調 */
.omakase-main{
  margin: 0;
  font-size: 1.8rem;    /* 大きめ */
  line-height: 1.5;
  font-weight: 900;
  color: #1743A8;       /* 指定カラー */
  letter-spacing: .02em;
}

/* =========================
   ご依頼例（CASE）
========================= */
.case{
  background: #1f6fd6;
  padding: 18px 0 26px;
}

.case-inner{
  max-width: 640px;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
  display: grid;
  gap: 16px;
}

/* カード */
.case-card{
  background: #ffffff;
    border: 8px solid #ffffff;
    box-shadow: 0 10px 22px rgba(5, 18, 48, .22);
    box-sizing: border-box;
}

/* 上部：バッジ＋タイトル（黄色帯風） */
.case-head{
  position: relative;
  padding: 16px 12px 14px 84px;           /* 左にバッジ分 */
  background: #FFED00;                     /* 黄色 */
  overflow: hidden;
}

/* 右上に向かって少し傾いた帯っぽさ（好みでOFF可） */
.case-head::after{
  content:"";
  position:absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.0) 0%, rgba(255,255,255,.0) 58%, rgba(255,255,255,.22) 58%, rgba(255,255,255,.22) 100%);
  pointer-events:none;
}

.case-badge{
  position: absolute;
  left: 0px;
  top: 12px;
  width: 70px;
  background: #2B8BD6;
  color: #fff;
  text-align: center;
  padding: 8px 6px;
  box-sizing: border-box;
}

.case-badge__top{
  display:block;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.1;
}

.case-badge__num{
  display:block;
  font-weight: 900;
  font-size: 2.1rem;
  line-height: 1.0;
  margin-top: 4px;
}

.case-title{
  margin: 0;
  color: #0f172a;
  font-weight: 900;
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: .01em;
  position: relative;
  z-index: 1;
}

/* 作業情報 */
.case-meta{
  padding: 12px 12px 10px;
  background: #ffffff;
  box-sizing: border-box;
  display: grid;
  gap: 10px;
}

.case-row{
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  background: #EEF7FF;
  border: 1px solid rgba(15,23,42,.08);
}

.case-label{
  background: #2B8BD6;
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
  padding: 10px 12px;
  white-space: nowrap;
}

.case-value{
  color: #D6281E;
  font-weight: 900;
  font-size: 1.75rem;
  padding: 0px 12px;
  white-space: nowrap;
  text-align: center;
}

/* 写真 */
.case-photo{
  margin: 0;
}

.case-photo img{
  width: 100%;
  height: auto;
  display: block;
}

/* 文章（青背景＋白文字） */
.case-body{
  background: #1743A8;
  color: #fff;
  padding: 14px 14px 16px;
  box-sizing: border-box;
}

.case-body p{
  margin: 0;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.8;
}

/* 小さい端末だけ少し詰める */
@media (max-width: 360px){
  .case-title{ font-size: 1.45rem; }
  .case-value{ font-size: 1.55rem; }
  .case-body p{ font-size: 0.92rem; }
}

/* ===== 対応エリア ===== */
.area-accordion{
  max-width: 640px;
  margin: 0 auto;
  padding: 12px 12px;
  box-sizing: border-box;
}

.area-item{
  margin: 0 0 10px;
  border-radius: 6px;
  overflow: hidden;
}

.area-title{
  width: 100%;
  background: #1743a8;
  color: #fff;
  padding: 10px 12px;    /* px OK */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  border: 0;
  text-align: left;
  box-sizing: border-box;
}

.area-name{
  font-size: 1.125rem;   /* 18px相当 */
  font-weight: 800;
}

.area-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
}

.icon{
  font-size: 1.375rem;   /* 22px相当 */
  font-weight: 900;
  line-height: 1;
}

.area-content{
  padding: 12px;         /* px OK */
  background: #f9fafb;
  line-height: 1.8;
  font-size: 0.85rem;    /* 12〜13px相当 */
  color: #0f172a;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

/* アイコン切替（open時） */
.area-item .minus{ display: none; }
.area-item.is-open .plus{ display: none; }
.area-item.is-open .minus{ display: inline; }

/* ボタンのフォーカス（高齢者にも分かりやすく） */
.area-title:focus-visible{
  outline: 3px solid rgba(255, 237, 0, 0.55);
  outline-offset: 2px;
}

/* ===== 対応エリア説明（リード文） ===== */
.area-lead{
  max-width: 640px;
  margin: 0 auto;
  padding: 0 12px 20px;
  box-sizing: border-box;
}

.area-lead__text{
  margin: 0;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 700;
}

/* ===== 料金表セクション ===== */
.price-section{
  background:#1743A8;
  padding:16px 0 18px;
}

/* PCでもスマホ幅で中央 */
.price-wrap{
  max-width:640px;
  margin:0 auto;
  padding:0 12px;
  box-sizing:border-box;
  display:grid;
  gap:14px;
}

/* カード */
.price-card{
  background:#ffffff;
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 10px 22px rgba(5, 18, 48, .28);
}

/* 見出し（黄色＋文字 #1743A8） */
.price-title{
  margin:0;
  padding:12px 12px;
  background:#FFED00;           /* 画像っぽい黄色 */
  color:#1743A8;                 /* 指定どおり */
  font-weight:900;
  font-size:1.6rem;
  letter-spacing:.02em;
  text-align:center;
}

/* リスト */
.price-list{
  list-style:none;
  margin:0;
  padding:10px 12px 12px;
  background:#ffffff;
}

/* 行 */
.price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:12px 12px;
  border-radius:8px;
}

/* 交互背景（白ベースで、青＆黄色に馴染む薄色） */
.price-row:nth-child(odd){
  background:#F4F8FF; /* 薄いブルー */
}
.price-row:nth-child(even){
  background:#FFF9E6; /* 薄いイエロー */
}

/* 左テキスト */
.price-item{
  color:#0f172a;
  font-weight:800;
  font-size:0.9rem;
  line-height:1.35;
}

/* 右 金額（オレンジ系） */
.price-fee{
  flex:0 0 auto;
  color:#F46A1E;       /* オレンジベース */
  font-weight:900;
  font-size:1.0rem;
  letter-spacing:.01em;
  white-space:nowrap;
}

/* 小さめ端末で少し詰める */
@media (max-width:360px){
  .price-title{ font-size:1.125rem; }
  .price-item{ font-size:0.875rem; }
  .price-fee{ font-size:1.0625rem; }
}

/* =========================
   お客様の声
========================= */
.voice{
  background:#eaf6ff;           /* やさしい水色 */
  padding: 0px 0 18px;         /* セクション上下だけ */
}

/* 見出し画像（voices.webp） */
.voice .lp-img{
  display:block;
  width:100%;
  max-width:640px;
  margin:0 auto;
  height:auto;
}

/* =========================
   テキストカード（星付きの声）
========================= */
.voice-card{
  max-width: 640px;
  width: calc(100% - 24px); /* ← ここ重要 */
  margin: 0 auto 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, .12);
  box-shadow: 0 6px 18px rgba(15, 23, 42, .12);
  padding: 14px 14px 12px;
  box-sizing: border-box;
}

.voice-top{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px 12px;
  align-items:center;
}

.voice-titlebox{
  background:#1d4ed8;
  color:#fff;
  border-radius:10px;
  padding:10px 12px;
  line-height:1.2;
}

.voice-title{
  font-weight:900;
  font-size:1.2rem;
}

.voice-stars{
  margin-top:6px;
  font-weight:900;
  letter-spacing:.06em;
  color:#fbbf24;                /* 星：黄色 */
  font-size:1rem;
}

.voice-meta{
  display:grid;
  gap:2px;
  justify-items:start;
  align-content:center;
  color:#0f172a;
  font-weight:800;
  font-size:.95rem;
}

.voice-avatar{
  grid-column:2;
  grid-row:1 / span 2;
  width:76px;
  height:76px;
  border-radius:999px;
  overflow:hidden;
  background:#f1f5f9;
  border:1px solid rgba(15,23,42,.12);
  justify-self:end;
}

.voice-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.voice-body{
  margin-top:10px;
  /*background:#f8fafc;
  border:1px solid rgba(15,23,42,.10);
  border-radius:10px;
  padding:12px;*/
  color:#0f172a;
  line-height:1.8;
  font-size:.9rem;
}

/* =========================
   画像アンケート：横スライド
========================= */
.voice-inner{
  max-width:640px;
  margin:0 auto;
  padding: 6px 0 0;
}

.voice-block{
  padding:10px 0 14px;
}

.voice-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding:0 20px 8px;
}

.voice-h{
  margin:0;
  font-size:1.2rem;
  font-weight:900;
  color:#0f172a;
}

.voice-hint{
  font-size:.7rem;
  color:#475569;
  white-space:nowrap;
}

.voice-slider{
  position:relative;
  padding:0;                    /* 横paddingなし */
}

/* 横スクロール領域 */
.voice-track{
  display:flex;
  gap:10px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  padding:0 10px;               /* 最小の余白 */
  scrollbar-width:none;
}
.voice-track::-webkit-scrollbar{ display:none; }

.voice-item{
  flex:0 0 88%;
  scroll-snap-align:center;
  margin:0;
}

.voice-item img{
  width:100%;
  height:auto;
  display:block;
  border-radius:0;              /* 角丸なし */
  background:#f1f5f9;
}

/* 前後ボタン */
.voice-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(3px);
  color:#0f172a;
  font-size:26px;
  font-weight:900;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:2;
}

.voice-nav.prev{ left:6px; }
.voice-nav.next{ right:6px; }

.voice-nav:active{
  transform:translateY(-50%) scale(.98);
}

/* ドット */
.voice-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  padding:10px 0 0;
}

.voice-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(15,23,42,.22);
}

.voice-dot.is-active{
  background:rgba(29,95,191,.95);
}

@media (min-width:520px){
  .voice-item{ flex-basis:70%; }
}

/* =========================
   QAデザイン
========================= */
.qa{
  max-width: 640px;
  width: 90%;
  margin: 0 auto;
  padding: 20px 0px;
}

.qa-item + .qa-item{
  margin-top: 12px;
}

.qa-q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 16px;
  background: #0693E3;
  color: #fff;

  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;

  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;

  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  box-sizing: border-box;
}

.qa-q:focus-visible{
  outline: 3px solid rgba(6,147,227,.45);
  outline-offset: 2px;
}

.qa-q:active{
  background: #0693E3;
}

.qa-num{
  flex-shrink: 0;
  background: rgba(255,255,255,0.2);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  margin-right: 8px;
}

.qa-q__text{
  flex: 1;
  min-width: 0;
}

.qa-icon{
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.ic{
  width: 22px;
  height: 22px;
  fill: #fff;
  display: block;
}

.qa-q[aria-expanded="true"] .plus{
  display: none;
}
.qa-q[aria-expanded="false"] .minus{
  display: none;
}

.qa-a{
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  margin-top: 8px;

  font-size: 15px;
  line-height: 1.7;
  color: #222;

  transition: opacity .2s ease;
}

.qa-a[hidden]{
  display: block;
  height: 0;
  padding: 0 16px;
  border-width: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
}

/* =========================
   お問い合わせフォーム
========================= */
.contact-section{
  background:#8ed1fc;
  padding: 20px 20px;
}

/* PCでもスマホ幅で中央寄せ */
.contact-inner{
  max-width: 640px;
  margin: 0 auto;
  background:#fff;
  border-radius: 6px;
  padding: 1.5rem 1.2rem 1.8rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}

/* タイトル */
.contact-title{
  font-size: 1.18rem;
  font-weight: 800;
  margin: 0 0 1.2rem;
  text-align: left;
}

/* 各行 */
.contact-form .form-row{
  margin-bottom: 0.95rem;
}

/* ラベル */
.contact-form label{
  display:block;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: .35rem;
}

/* 必須マーク */
.required{
  color:#e60033;
  font-size: .9rem;
  font-weight: 800;
}

/* 入力欄 */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea{
  width:100%;
  box-sizing:border-box;
  padding: .85rem .85rem;
  border: 2px solid #d0d7e2;
  border-radius: 6px;
  font-size: 1rem;
  outline:none;
  background:#fff;
}

/* フォーカス時 */
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus{
  border-color:#2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.22);
}

/* テキストエリア */
.contact-form textarea{
  resize: vertical;
  min-height: 9.5rem;
}

/* reCAPTCHA行 */
.recaptcha-row{
  margin-top: .6rem;
}

.recaptcha-error{
  color:#e60033;
  font-size: .95rem;
  margin-top: .4rem;
  font-weight: 700;
}

/* 送信ボタン */
.btn-submit{
  display:block;
  width:100%;
  padding: .95rem 0;
  background:#1d5fbf;
  color:#fff;
  font-size: 1.05rem;
  font-weight: 900;
  border:none;
  border-radius: 10px;
  cursor:pointer;
  text-align:center;
  letter-spacing: .02em;
}

.btn-submit:hover{
  opacity: .92;
}

.btn-submit:active{
  transform: translateY(1px);
}

/* スマホ余白 */
@media (max-width: 480px){
  .contact-inner{
    padding: 1.2rem 1rem 1.4rem;
  }
  .contact-title{
    font-size: 1.12rem;
  }
}

/* =========================
   固定ボタンエリア
========================= */
.fixed-buttons{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  /* 上50%透明・下50%白（85%） */
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0.85) 100%
  );

  padding: 4px 0;
}

/* PCでは固定ボタン非表示 */
@media (min-width: 768px){
  .fixed-buttons{ display:none; }
}

/* =========================
   上段ステータス：吹き出し化
========================= */
#todayStatus{
  position: relative;
  display: block;
  width: 90%;
  max-width: calc(100% - 16px);
  margin: 0 auto;
  padding: 0 16px;
  background: #fff;
  border: 3px solid #1743A8;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  text-align: center;
  box-sizing: border-box;

  /* ✅CLS対策：2行ぶん予約（ここだけでOK） */
  min-height: calc(1.35em * 2);
}

/* 下の三角（枠線） */
#todayStatus::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-14px;
  transform:translateX(-50%);
  width:0;height:0;
  border-left:14px solid transparent;
  border-right:14px solid transparent;
  border-top:14px solid #1743A8;
}

/* 下の三角（内側白） */
#todayStatus::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:-9px;
  transform:translateX(-50%);
  width:0;height:0;
  border-left:11px solid transparent;
  border-right:11px solid transparent;
  border-top:11px solid #fff;
}

/* 区切り */
#todayStatus .status-sep{
  margin: 0 6px;
  opacity: .65;
}

/* 強調 */
#todayStatus .highlight,
#todayStatus .status-urgent{
  color:#e60033;
  font-weight:800;
}

/* ボタンエリア */
.fixed-inner{
  margin-top: 4px;
  margin-bottom: -9px;
  text-align: center;
}

.fixed-inner .btn-main{
  width: 90%;
  max-width: 520px;
  height: auto;
  display: inline-block;
}

/* iPhoneホームバー対策 */
@supports (padding-bottom: env(safe-area-inset-bottom)){
  .fixed-buttons{
    padding-bottom: calc(6px + env(safe-area-inset-bottom));
  }
}

/* =========================
   フッター
========================= */
.lp-footer{
  background:#1d5fbf;
  color:#fff;
  padding: 1.4rem 1rem 1.6rem;
  padding-bottom: 150px;
}

.lp-footer-inner{
  max-width: 640px;
  margin: 0 auto;
}

.lp-footer-box{
  border-top: 1px solid rgba(255,255,255,.55);
  padding: 1rem 1rem;
}

.lp-footer-title{
  margin:0 0 .7rem;
  font-size: 1.05rem;
  font-weight: 900;
}

.lp-footer-text{
  margin:0;
  font-size: .95rem;
  line-height: 1.85;
  opacity:.98;
}

.lp-footer-list{
  margin:0;
  padding:0;
  list-style:none;
  font-size: .95rem;
  line-height: 1.85;
}

.lp-footer-list li{
  margin-bottom: .55rem;
  opacity:.98;
}

.lp-footer a{
  color:#fff;
  text-decoration: underline;
}

.lp-footer-top{
  display:block;
  text-align:center;
  padding: .95rem 0 .7rem;
  font-weight: 900;
  font-size: 1rem;
}

.lp-footer-bottom{
  border-top: 1px solid rgba(255,255,255,.55);
  padding: .95rem 1rem 0;
  text-align:center;
}

.lp-footer-bottom .copy{
  margin:0 0 .7rem;
  font-size: .9rem;
  opacity:.95;
}

/* reCAPTCHA 表記 */
.recaptcha-notice{
  font-size: .7rem;
  color: rgba(255,255,255,0.90);
  line-height: 1.75;
  margin:0;
}

.recaptcha-notice a{
  color:#cfe6ff;
  text-decoration: underline;
}

/* reCAPTCHA v3 バッジ非表示 */
.grecaptcha-badge{
  visibility:hidden;
}