@charset "utf-8";
/* =========================================================
   Reset by meyerweb (v2.0)
========================================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote::before, blockquote::after,
q::before, q::after { content: ''; }
table { border-collapse: collapse; border-spacing: 0; }

/* =========================================================
   Base
========================================================= */
:root {
  --text: #696868;
  --brand: #ffc414;
  --brand-2: #20c000;
  --bg: #fff;
}

*,
*::before,
*::after { box-sizing: border-box; } /* はみ出し/横スクロール防止 */

html { scroll-behavior: smooth; }
body {
  line-height: 1.5;
  color: var(--text);
  background: #fff;
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none !important;
  color: var(--text) !important;
}

img {
  display: block;           /* CLS対策：インライン隙間解消 */
  max-width: 100%;
  height: auto;             /* width/height属性はHTML側で指定済み */
  vertical-align: bottom;
}

/* 画面幅に応じて .pc / .mb を切替 */
.pc { display: block; }
.mb { display: none; }

@media (max-width: 768px) {
  .pc { display: none; }
  .mb { display: block; }
}

/* アクセシビリティ：スクリーンリーダー専用テキスト */
.screen-reader-text {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* =========================================================
   トップバー
========================================================= */
.top { width: 100%; }
.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: 20%;
  margin-top: 1.6rem;
  margin-left: 2rem;
  min-width: 160px;
}
.top-flex2 {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  align-items: center;
  margin-right: 1rem;
}
.top-tel { width: 50%; margin-top: 2.5rem; }
.top-cta { width: 50%; padding: 1rem; }

@media (max-width: 1024px) {
  .logo { width: 22%; margin-left: 1rem; }
  .top-tel, .top-cta { width: 48%; }
}
@media (max-width: 768px) {
  .logo, .top-tel, .top-cta { width: 100%; margin: 0; padding: 0; }
  .top-flex { align-items: flex-start; }
}

/* =========================================================
   KV / ヒーロー
========================================================= */
.kv picture, .kv img { width: 100%; }
.kv img { object-fit: cover; }

/* =========================================================
   CTAエリア（共通）
========================================================= */
.cta-area { width: 100%; background-color: var(--brand); }
.cta-in,
.cta-in2 {
  width: 80%;
  margin: auto;
  padding: 2rem 0;
}
.cta3 { background-color: #fff; width: 100%; }
.cta3-in { width: 40%; margin: auto; }

@media (max-width: 1024px) {
  .cta-in, .cta-in2 { width: 90%; }
  .cta3-in { width: 60%; }
}
@media (max-width: 768px) {
  .cta3-in { width: 84%; }
}

/* 既存のネガティブマージンはSPで無効化して安全に */
.cta-in2 { margin-top: -5rem; }
@media (max-width: 1024px) {
  .cta-in2 { margin-top: -2rem; }
}
@media (max-width: 768px) {
  .cta-in2 { margin-top: 0; }
}

/* =========================================================
   背景ドット/ストライプ（PCセクション用）
========================================================= */
.dot,
.koe {
  width: 100%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-position: top center;
  background-size: auto;   /* パターンが伸びない */
  padding: 48px 0;         /* 背景が見える余白 */
}

.dot { background-image: url(../image/dot.webp); }
.koe { background-image: url(../image/stripe.webp); }

/* 画像を少し縮めて中央に。左右にも背景を出す */
.dot .img,
.koe .img {
  max-width: 1100px;   /* お好みで 1000～1200px に調整可 */
  width: 92%;
  margin: 0 auto;
}

/* SPは全幅のまま。上下の余白だけ背景を見せる */
@media (max-width: 768px) {
  .dot,
  .koe { padding: 32px 0; }
  .dot .img,
  .koe .img { width: 94%; max-width: none; }
}

/* =========================================================
   回収までの流れ（オーバーレイボタン）
========================================================= */
.step { position: relative; }
.step-tel {
  position: absolute;
  top: 46%;
  left: 9%;
  width: 42%;
}
.step-cta {
  position: absolute;
  top: 45%;
  right: 9%;
  width: 24%;
}
@media (max-width: 1200px) {
  .step-tel { top: 47%; left: 7%; width: 46%; }
  .step-cta { top: 46%; right: 7%; width: 28%; }
}
@media (max-width: 1024px) {
  .step-tel, .step-cta { position: static; width: 100%; margin: 1rem 0 0; }
  .step { text-align: center; }
}

/* =========================================================
   お問い合わせフォーム
   （ズレ/横スクロール/CLS 対策込み）
========================================================= */
.contact-section {
  width: 100%;
  background-color: #fff;
	padding-top: 0 !important;
}
.hp-form { width: 90%; margin: auto; }
.hp-form table { width: 100%; }
.trtr { width: 100%; }

/* ラベル行：左寄せ＋間隔（space-betweenを廃止） */
.thth,
.thth p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .5rem;
  width: 100%;
  font-weight: bold;
  margin: 0.5 0 .75rem 0;
}

/* 「必須」バッジを安定表示（はみ出さない） */
.thth span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2em;
  padding: .15rem .4rem;
  border-radius: .3rem;
  font-size: .65rem;
  line-height: 1;
  background: #e30e03;
  color: #fff;
}

/* 入力欄の幅ズレを防止 */
.tdtd input,
.tdtd textarea {
  width: 100%;
  max-width: 100%;
  padding: .85rem .9rem;
  border: 2px solid #000;
  background-color: #efefef;
  font-size: 16px; /* iOS ズーム抑制 */
}

/* フォーカス見やすく */
.tdtd input:focus,
.tdtd textarea:focus {
  outline: 3px solid rgba(32,192,0,.25);
  background: #fff;
}

/* 送信ボタン */
.hp-form-btn { text-align: center; }
.hp-form-btn input {
  width: min(560px, 90%);
  padding: 1.2rem 0;
  margin: 1rem auto 0;
  border: 2px solid #000;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0px 2px 2px rgba(0,0,0,.35), inset 0 -3px 6px rgba(0,0,0,.2);
  background: linear-gradient(var(--brand), #fdf0c8);
  cursor: pointer;
}

@media (max-width: 768px) {
  .hp-form { width: 94%; margin: 0 auto; background: #fff; padding: 12px; }
  .trtr { width: 100%; display: block; padding: 10px 0; }
  .contact-area { background: var(--brand); padding: 12px 0 88px; } /* 下部固定ボタン分の余白 */
}

/* reCAPTCHA バッジを非表示（サイトポリシー等で要リンク掲示） */
.grecaptcha-badge { visibility: hidden; }
/* ===== 「お問い合わせ内容」をテキストエリアの左上に揃える ===== */
@media (min-width: 769px) {
.hp-form table {
table-layout: fixed;
width: 100%;
border-collapse: separate;
border-spacing: 0 14px;
}
  /* 行・セルを本来のテーブル表示に（念のため上書き） */
  .hp-form .trtr   { display: table-row !important; }
  .hp-form th.thth { display: table-cell !important; }
  .hp-form td.tdtd { display: table-cell !important; }

  /* 上揃え＋左列の幅を固定（必要なら数値を調整してください） */
  .hp-form th.thth,
  .hp-form td.tdtd { vertical-align: top; }
  .hp-form th.thth { width: 28%; padding-top: .35rem; white-space: nowrap; }
  .hp-form td.tdtd { width: 72%; }

  /* th に付いている余白系は無効化（ズレ防止） */
  .hp-form .thth { margin: 0; }
}

/* =========================================================
   ラストフッター（会社情報 NAP）
========================================================= */
#company {
    width: 100%;
    background-color: var(--brand-2);
    padding: 1rem 0 2rem;
    font-size: 0.8rem;
    color: #000000;
}
#company table {
  width: 50%;
  min-width: 320px;
  max-width: 840px;
  margin: 0 auto;
}
#company th,
#company td {
  padding: .7rem .8rem;
  font-weight: bold;
  text-align: left;
}
#company th { width: 30%; }
#company a { color: #000000 !important; text-decoration: underline; }

small {
  display: block;
  text-align: center;
  padding-top: 1rem;
  font-weight: bold;
  color: #fff;
}
#company p { position: absolute; z-index: -1; }

@media (max-width: 1024px) {
  #company table { width: 60%; }
}
@media (max-width: 768px) {
  #company table { width: 94%; min-width: 0; }
  #company th { width: 40%; }
	#company th, #company td {
    padding: .0rem .0rem !important;
}
    #company tr {
        margin-top: 1rem !important;
    }
}
/* =========================================================
   プライバシーポリシー枠
========================================================= */
.privacy-area {
  width: 100%;
  height: 150px;
  overflow-x: hidden !important;
  overflow-y: auto;
  border: 3px solid #ebebeb;
  background-color: #fafafa;
  margin-top: 2rem;
  padding: .5rem .75rem;
  border-radius: 6px;
}
.privacy-area h3 {
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  padding: .5rem 0 1rem;
}
.privacy-area h4 {
  font-weight: bold;
  padding: 1rem 0 .5rem;
}
.privacy-area p { line-height: 1.6rem; }
.doui { text-align: center; margin-top: 1.5rem; }
.new-btn { text-align: center; margin-top: 1rem; }

/* =========================================================
   細かいユーティリティ
========================================================= */
[aria-label] { cursor: pointer; } /* タップ領域の示唆 */
.anchor-offset {
  display: block;
  position: relative;
  top: -100px; /* ヘッダー分のオフセット */
  visibility: hidden;
}