/* =====================================================
  TSUMUGIYA MASTER CSS
  version: 1.0
  base-width: mobile-first
  author: つむぎや
  note:
  ・palette = 色変更
  ・core = 構造
  ・theme = 意匠
  ・style = 最終調整
===================================================== */

/* =====================================================
  style.css（つむぎや：統合版）
  -----------------------------------------------------
  ★ここを触ればOK（最優先で上に置く）
  1) 色を変えたい：palette.css の --btn-green / --btn-green2（電話/CTAの緑）
  2) 余白を変えたい：このファイルの :root --content-pad
  3) sp-menu 高さ：palette.css の --sp-menu-h
  4) トップバー背景色：core.css の --topbar-bg-rgb / --ratio-topbar-alpha
     ※トップバー背景色は忘れられやすいので、ここでは触らない
===================================================== */

@import url("core2.css");
@import url("palette2.css");
@import url("theme2.css");

/* =====================================================
  このページ専用の「足りないクラス」を補う
  （HTML側は古いtable中心なので、CSSで整える）
===================================================== */

/* -------------------------
  本文の左右余白（読みやすさ）
------------------------- */
:root{
  --content-pad: 14px;   /* 基準。スマホは下で16pxにする */
}

/* 本文 */
p{
  margin-left: var(--content-pad);
  margin-right: var(--content-pad);
  line-height: 1.9;
}

/* 箇条書き */
ul, ol{
  margin-left: var(--content-pad);
  margin-right: var(--content-pad);
  padding-left: 1.4em;
  line-height: 1.8;
}

/* 見出しも本文と同じ左右ラインへ寄せる */
h2, h3, h4{
  margin-left: var(--content-pad) !important;
  margin-right: var(--content-pad) !important;
}

/* スマホは少しだけ余白を広げる */
@media screen and (max-width: 768px){
  :root{ --content-pad: 16px; }
}

/* -------------------------
  トップ画像（pasokon.jpg）
------------------------- */
.hero{
  text-align: center;
}
.hero-img{
  width: 94%;
  height: auto;
  display: inline-block;
}

/* -------------------------
  prose 系（本文の見せ方）
------------------------- */
.prose-emphasis{
  margin-left: var(--content-pad);
  margin-right: var(--content-pad);
  padding: 10px 12px;
  background: color-mix(in srgb, var(--base-sub) 50%, #fff);
  border: 0px solid var(--border-main);
  border-radius: 10px;
  line-height: 1.8;
}

.prose-lead{
  margin-left: var(--content-pad);
  margin-right: var(--content-pad);
  padding: 10px 12px;
  border-left: 4px solid var(--accent-color);
  background: color-mix(in srgb, var(--base-sub) 88%, #fff);
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.8;
}

.prose-list{
  margin-left: var(--content-pad);
  margin-right: var(--content-pad);
  padding-left: 1.5em;
}

/* =====================================================
  スマホ用メニュー（2列×3段）
  ・緑にしない（和モダン）
  ・palette.css の変数を使う
===================================================== */

table.sp-menu{
  width:100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: var(--sp-menu-bg);
}

table.sp-menu td{
  width:50%;
  height: var(--sp-menu-h);
  text-align:center;
  vertical-align:middle;

  border-bottom: 1px solid var(--sp-menu-border);
  border-right: 1px solid var(--sp-menu-border);
  background: var(--sp-menu-bg);
}

table.sp-menu td + td{
  border-left:1px solid var(--sp-menu-border);
}

table.sp-menu tr:last-child td{
  border-bottom: 2px solid #3A2C22; /* 一番下を締める */
}

table.sp-menu a{
  display:block;
  width:100%;
  height:var(--sp-menu-h);
  line-height:var(--sp-menu-h);

  color: var(--sp-menu-text);
  text-decoration:none;
  font-weight:700;

  background: transparent; /* 元の世界観 */
}

table.sp-menu a:active{
  background: var(--sp-menu-hover);
}


/* =====================================================
  ヘッダー緑TEL：電話番号の「見た目重心」を少し左へ補正
  -----------------------------------------------------
  ・中央揃えは維持
  ・tel-num だけを 1?3px 左へ（スマホの視覚補正）
  ・ここだけ触ればOK：--tel-num-shift
===================================================== */

:root{
  --tel-num-shift: -4px;  /* ←ここだけ調整OK（-1px?-4pxくらい） */
}

a.header-telbtn .tel-num{
  display: block !important;
  width: 100% !important;
  text-align: center !important;

  position: relative;
  left: var(--tel-num-shift); /* ←見た目補正 */
}



/* =====================================================
  ヘッダー：ロゴ60% / 電話40%（追従なし）
  ★ヘッダーの電話ボタンは緑（押されやすい）
===================================================== */





.header-wrap{
  width: 100%;
  display: flex;
  align-items: stretch;
}

.header-logo{ width: 60%; }
.header-telbtn{ width: 40%; }

/* ロゴ側 */
.header-logo{
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo img{
  max-width: 100%;
  height: auto;
}

/* 電話ボタン（安心グリーン） */
a.header-telbtn{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  box-sizing: border-box;
  padding: 12px 12px;
  margin: 10px 10px 10px 0;

  border-radius: 18px;
  background: linear-gradient(180deg, var(--btn-green) 0%, var(--btn-green2) 100%);
  border: 1px solid var(--btn-border);

  /* 既存影＋やさしい発光 */
  box-shadow:
    0 12px 20px var(--btn-shadow),
    inset 0 1px 0 var(--btn-glow),
    0 0 0 0 rgba(77,183,159,.0);

  text-decoration: none;
  color: var(--btn-text);
  text-align: center;

  overflow: hidden;
  position: relative;

  transition:
    transform .15s ease,
    box-shadow .25s ease,
    filter .2s ease;
}

/* 角のハイライト（上品に薄く） */
a.header-telbtn::before{
  content:"";
  position:absolute;
  left: -20%;
  top: -60%;
  width: 140%;
  height: 120%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.28) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
}

/* 3行を確実に縦並び */
a.header-telbtn .tel-title,
a.header-telbtn .tel-num,
a.header-telbtn .tel-staff{
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  color: var(--btn-text) !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.18);
}

/* タイトル：1行固定（折れると崩れる） */
a.header-telbtn .tel-title{
  font-size: clamp(11px, 2.5vw, 13px);
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
  line-height: 1.15;
}

/* 電話番号：主役。折り返さない */
a.header-telbtn .tel-num{
  font-size: clamp(16px, 4.3vw, 20px);
  font-weight: 900;
  letter-spacing: .03em;
  white-space: nowrap;
  line-height: 1.15;
}

/* 担当：必要なら2行になってOK */
a.header-telbtn .tel-staff{
  font-size: clamp(10px, 2.3vw, 12px);
  font-weight: 800;
  opacity: .95;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.15;
}

/* ★ふわっと呼吸する安心発光 */
@keyframes telGlow{
  0%{
    box-shadow:
      0 12px 20px var(--btn-shadow),
      inset 0 1px 0 var(--btn-glow),
      0 0 0 0 rgba(77,183,159,.00);
  }
  50%{
    box-shadow:
      0 12px 22px var(--btn-shadow),
      inset 0 1px 0 var(--btn-glow),
      0 0 18px 2px rgba(77,183,159,.18);
  }
  100%{
    box-shadow:
      0 12px 20px var(--btn-shadow),
      inset 0 1px 0 var(--btn-glow),
      0 0 0 0 rgba(77,183,159,.00);
  }
}

/* 常時ゆっくり発光（安心誘導） */
a.header-telbtn{
  animation: telGlow 4.5s ease-in-out infinite;
}

/* 押した感 */
a.header-telbtn:active{
  animation: none;
  transform: translateY(1px);
  filter: brightness(.98);
  box-shadow:
    0 7px 14px var(--btn-shadow),
    inset 0 1px 0 rgba(255,255,255,.18);
}

/* フォーカス */
a.header-telbtn:focus{
  outline: none;
  box-shadow: 0 0 0 3px var(--btn-focus), 0 12px 20px var(--btn-shadow);
}

/* かなり狭い端末だけ縮める */
@media screen and (max-width: 360px){
  a.header-telbtn{
    padding: 9px 8px;
  }
}

/* =====================================================
  ★ここだけ緑：CTAボタン（お問い合わせ）
  ※トップバー等は触らない
===================================================== */

.contact-cta a.btn-contact{
  background: linear-gradient(180deg, var(--btn-green) 0%, var(--btn-green2) 100%) !important;
  color: var(--btn-text) !important;
  border: 1px solid var(--btn-border) !important;

  box-shadow:
    0 10px 18px var(--btn-shadow),
    inset 0 1px 0 var(--btn-glow) !important;

  transition: transform .08s ease, filter .12s ease, box-shadow .12s ease;
}

.contact-cta a.btn-contact:active{
  transform: translateY(1px);
  filter: brightness(.98);
  box-shadow:
    0 6px 12px var(--btn-shadow),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.contact-cta a.btn-contact:focus{
  outline: none;
  box-shadow: 0 0 0 3px var(--btn-focus), 0 10px 18px var(--btn-shadow) !important;
}

.contact-cta a.btn-contact .arrow{
  border-left-color: #fff !important;
}

/* =====================================================
  ページトップへ戻る（gotop）
  ※HTMLからCSSを移動して重複を削除
===================================================== */

.gotop{
  display: block;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  background: #FFF;
  border: 1px solid #999;
  padding-top: 30px;
  text-align: center;
  letter-spacing: -1px;
  font-size: 85%;
  text-decoration: none;
  color: #333;
  opacity: 0.5;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}
.gotop::before{
  content: "";
  display: block;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  width: 25%;
  height: 25%;
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transform: rotate(-45deg);
}
.gotop:hover{ opacity: 1; }
html{ scroll-behavior: smooth; }

/* =====================================================
  フォーム部品（otoiawase.html等でも使えるように）
  ※HTMLの<style>群をここへ統合
===================================================== */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea{
  font-size: 100%;
  background:#f1f1f1;
  border: 1px solid #cccccc;
  border-radius: 6px;
  padding:10px;
}

input[type="radio"]{
  font-size: 150%;
}

input[type="checkbox"]{
  font-size: 150%;
  background:#f5f5f5;
}

input[type="button"],
input[type="submit"]{
  font-size: 150%;
  background:#ff6600;
  box-shadow: 4px 4px 6px #d0d0d0;
  color:#ffffff;
  border: 2px solid #f5f5f5;
  border-radius: 6px;
  padding:20px;
}

/* =====================================================
  スマホ：角丸・半透明メニューボタン（上部だけ表示）
  ※緑にしない（ブラウン半透明）
===================================================== */

.sp-fab-menu{
  position: fixed;
  right: 10px;
  top: 117px;
  z-index: 20000;
  display: block;
}

.sp-fab-btn{
  appearance: none;
  -webkit-appearance: none;

  width: 52px;
  height: 44px;
  border-radius: 12px;

  background: rgba(58,44,34,.35);
  border: 1px solid rgba(255,255,255,.35);

  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  cursor: pointer;
  padding: 0;

  transition: transform .08s ease, box-shadow .12s ease, filter .12s ease;
}

.sp-fab-btn::before{
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: rgba(255,255,255,.92);
  box-shadow:
    0 -7px 0 rgba(255,255,255,.92),
    0  7px 0 rgba(255,255,255,.92);
}

.sp-fab-btn:active{
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.20);
  filter: brightness(.98);
}

.sp-fab-panel{
  position: absolute;
  right: 0;
  top: 52px;

  width: 190px;
  padding: 8px;

  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);

  display: none;
}

.sp-fab-menu.active .sp-fab-panel{
  display: block;
}

.sp-fab-panel a{
  display: block;
  padding: 12px 12px;
  text-decoration: none;

  color: #3A2C22;
  font-weight: bold;
  font-size: 15px;

  border-radius: 10px;
}

.sp-fab-panel a + a{
  border-top: 1px solid rgba(58,44,34,.12);
}

.sp-fab-panel a:active,
.sp-fab-panel a:hover{
  background: rgba(216,158,36,.14);
}

@media screen and (min-width: 769px){
  .sp-fab-menu{ display:none; }
}

/* =====================================================
  tel-fab（電話の丸ボタン）
  ※現状HTMLにあるがCSSが無かったので最低限追加
===================================================== */

.tel-fab{
  position: fixed;
  left: 14px;
  bottom: 18px;
  z-index: 21000;

  width: 54px;
  height: 54px;
  border-radius: 999px;

  background: linear-gradient(180deg, var(--btn-green) 0%, var(--btn-green2) 100%);
  box-shadow: 0 10px 18px var(--btn-shadow), inset 0 1px 0 var(--btn-glow);

  text-decoration: none;
}

.tel-fab::before{
  content: "TEL";
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--btn-text);
  font-weight: 900;
  letter-spacing: .05em;
  font-size: 12px;
}

/* PCは非表示（スマホだけで十分） */
@media screen and (min-width: 769px){
  .tel-fab{ display:none; }
}



/* =====================================================
  よくある質問（h4.q）
  本文と同じ左位置にそろえる
===================================================== */

h4.q{
  margin-left: var(--indent-h2-body) !important;
  margin-right: var(--indent-h2-body) !important;

  padding-left: 0 !important;   /* ←ズレ原因を除去 */
}

/* =====================================================
  作成の流れ（flow）
  見出しと本文を同じ左ラインへ
===================================================== */

/* 見出し */

/* 見出し */
.flow h4{
  width: 100%;
  margin: 0 auto !important;
}

/* 本文 */
.flow > li p{
  width: 100%;
  margin: 0 auto !important;
}



@media screen and (max-width: 768px){
  .flow{
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}




/* =========================================
   スマホで横に広がりすぎるのを防ぐ
========================================= */
@media screen and (max-width: 768px){

  /* 全体の横はみ出し防止 */
  html, body{
    overflow-x: hidden;
  }

  /* 画像のはみ出し防止 */
  img{
    max-width: 100% !important;
    height: auto !important;
  }

  /* 料金表を縦並びにする */
  table.price-table,
  table.price-table tbody,
  table.price-table tr,
  table.price-table td{
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }

  table.price-table{
    max-width: 100% !important;
    border-spacing: 8px !important;
  }

  table.price-table td{
    margin-bottom: 8px;
  }

  /* サイドバー + 本文の2列を1列にする */
  table.layout-main,
  table.layout-main tbody,
  table.layout-main tr,
  table.layout-main td{
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }

  table.layout-main iframe{
    width: 100% !important;
    height: 900px !important;
    display: block;
  }

  /* 比較表は横スクロール */
  .table-scroll{
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll table{
    min-width: 700px;
  }
}




/* =====================================
  CTA全体の外枠
  → セクション全体の余白
===================================== */
.tsumugiya-cta {
  padding: 48px 20px;
}

/* =====================================
  CTAの白いカード部分
  → 真ん中の箱（背景・影・角丸）
===================================== */
.tsumugiya-cta .cta-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 36px 28px;
  background: #f7f4ef;
  border: 1px solid #e5ddd2;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(58, 44, 34, 0.08);
  text-align: center;
}

/* =====================================
  上の小さいラベル
  → 「相談はこちら」みたいな帯
===================================== */
.tsumugiya-cta .cta-label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 14px;
  background: #eeeae7;
  color: #3a2c22;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
}

/* =====================================
  メインタイトル
  → 一番大きい見出し
===================================== */

.tsumugiya-cta .cta-title {
  margin: 0 0 24px;
  padding: 20px 22px;

  background: linear-gradient(135deg, #3a2c22 0%, #5a4638 100%);
  color: #ffffff;

  font-size: 1.9rem;
  line-height: 1.6;
  font-weight: 700;

  border-radius: 14px;

  box-shadow: 0 6px 16px rgba(58, 44, 34, 0.15);
}





/* =====================================
  説明文
  → タイトルの下の文章
===================================== */
.tsumugiya-cta .cta-text {
  margin: 0 auto 28px;
  max-width: 760px;
  color: #5f534b;
  font-size: 1.2rem;
  line-height: 1.9;
}

/* =====================================
  ボタン全体の並び
  → 横並び＆中央寄せ
===================================== */
.tsumugiya-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* =====================================
  ボタン共通
  → サイズ・余白・中央揃え
===================================== */
.tsumugiya-cta .cta-btn {
  width: 100%;
  max-width: 340px;
  min-height: 140px;
  padding: 22px 18px;
  border-radius: 20px;
  text-decoration: none;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

/* =====================================
  ホバー（マウス乗せたとき）
  → 少し浮く
===================================== */
.tsumugiya-cta .cta-btn:hover {
  transform: translateY(-4px);
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(58, 44, 34, 0.14);
}

/* =====================================
  ボタン内テキスト（上）
  → 「お急ぎの方はこちら」
===================================== */
.tsumugiya-cta .cta-btn-small {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.9;
}

/* =====================================
  ボタン内テキスト（中央）
  → 「電話で相談する」
===================================== */
.tsumugiya-cta .cta-btn-main {
  display: block;
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

/* =====================================
  ボタン内テキスト（下）
  → 受付時間など
===================================== */
.tsumugiya-cta .cta-btn-note {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
}

/* =====================================
  電話ボタン（メイン）
  → 強い緑（行動用）
===================================== */
.tsumugiya-cta .cta-btn-tel {
  background: linear-gradient(180deg, #3fb89c 0%, #2c9a80 100%);
  color: #ffffff;
  border: 1px solid #2a8f77;

  box-shadow:
    0 12px 22px rgba(44, 154, 128, 0.30),
    inset 0 1px 0 rgba(255,255,255,.25);
}

/* =====================================
  メールボタン（サブ）
  → やさしいオレンジ（相談しやすい）
===================================== */
.tsumugiya-cta .cta-btn-mail {
  background: linear-gradient(180deg, #e6b36b 0%, #d89e24 100%);
  color: #ffffff;
  border: 1px solid #c48a1c;

  box-shadow:
    0 10px 18px rgba(216, 158, 36, 0.25),
    inset 0 1px 0 rgba(255,255,255,.25);
}

/* =====================================
  スマホ調整
  → 文字・余白を少し小さく
===================================== */
@media (max-width: 767px) {
  .tsumugiya-cta {
    padding: 32px 16px;
  }

  .tsumugiya-cta .cta-inner {
    padding: 28px 18px;
    border-radius: 18px;
  }

  .tsumugiya-cta .cta-title {
    font-size: 1.45rem;
  }

  .tsumugiya-cta .cta-text {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .tsumugiya-cta .cta-btn {
    max-width: 100%;
    min-height: 120px;
    padding: 20px 16px;
  }

  .tsumugiya-cta .cta-btn-main {
    font-size: 1.25rem;
  }
}


/* =========================
  外枠
========================= */
.example-hero2{
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

/* =========================
  背景画像
========================= */
.example-hero2 img{
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
  文章の箱（下配置・透過0.85）
========================= */
.hero-copy2{
  position: absolute;

  bottom: 8%;     /* ← 下に寄せる */
  top: auto;      /* ← 上指定を無効化（重要） */

  left: 5%;
  right: 5%;

  background: rgba(255,255,255,0.85);
  padding: 14px 16px;
  box-sizing: border-box;

  text-align: left;
}

/* =========================
  本文（0.85ベース）
========================= */
.hero-line2{
  margin: 0 0 6px 0;
  color: #000000;
  font-weight: 700;

  font-size: 0.85rem;   /* ← 固定 */

  line-height: 1.5;
}

.hero-line2:last-child{
  margin-bottom: 0;
}

/* =========================
  色アクセント
========================= */
.accent2{ color:#D0941F; }
.accent3{ color:#B97814; }
.accent4{ color:#9A6410; }

/* =========================
  スマホ調整
========================= */
@media screen and (max-width: 768px){

  .hero-copy2{
    bottom: 5%;
    left: 3%;
    right: 3%;
    padding: 10px 12px;
  }

  .hero-line2{
    margin-bottom: 5px;
    font-size: clamp(0.85rem, 3.6vw, 1.1rem);
    line-height: 1.4;
  }
}


/* フォーム全体の共通設定（他に影響させないために囲う） */
.contact-form{}

/* 見出し行（氏名・メールなどの左線） */
.contact-form .form-label{
  padding: 1px; /* 内側余白を最小に */
  line-height: 150%; /* 行間 */
  border-left: 4px solid #C9BBAA; /* 左のライン */
}

/* 入力欄の行（見出しと同じ線で統一） */
.contact-form .form-input{
  padding: 1px; /* 内側余白 */
  line-height: 150%; /* 行間 */
  border-left: 4px solid #C9BBAA; /* 左ライン */
}

/* テキスト入力（氏名・メール） */
.contact-form input[type="text"]{
  width: 92%; /* 横幅を画面に合わせる */
  max-width: 100%; /* はみ出し防止 */
  padding: 10px 12px; /* 高さを出して押しやすく */
  font-size: 16px; /* スマホで拡大されないサイズ */
  border: 1px solid #C9BBAA; /* 枠線 */
  border-radius: 6px; /* 少し丸くしてやわらかく */
  box-sizing: border-box; /* padding込みで幅計算 */
  background: #fff; /* 背景白 */
}

/* テキストエリア（お問い合わせ内容） */
.contact-form textarea{
  width: 92%; /* 横幅 */
  max-width: 100%; /* はみ出し防止 */
  padding: 10px 12px; /* 内側余白 */
  font-size: 16px; /* 読みやすさ */
  line-height: 1.6; /* 行間 */
  border: 1px solid #C9BBAA; /* 枠線 */
  border-radius: 6px; /* 丸み */
  box-sizing: border-box; /* 幅調整 */
  background: #fff; /* 背景 */
  resize: vertical; /* 縦だけ伸ばせる */
}

/* スマホ時の微調整 */
@media screen and (max-width: 640px){
  .contact-form input[type="text"],
  .contact-form textarea{
    width: 96%; /* 少し広げる */
  }
}




h2{
  /* 外側の余白を消す（全幅にする） */
  margin-left: 0 !important;
  margin-right: 0 !important;

  /* 内側の余白（文字の位置）は残す */
  padding-left: var(--content-pad);
  padding-right: var(--content-pad);

  /* 幅をフルに */
  width: 100%;

  /* box-sizingを指定（はみ出し防止） */
  box-sizing: border-box;
}











