@import url("core.css");
@import url("palette.css");
@import url("theme.css");

/* =====================================
  メインコンテンツの外枠
  → 左右にうすい縦ラインを入れる
  → ページ全体の「囲み感」を出す
===================================== */
.main-content-frame{

  /* コンテンツの横幅（サイトの基本幅） */
  width: 800;

  /* 左右の余白（文字がラインにくっつかないようにする） */
  padding: 0 20px;

  /* 背景にラインを描画（画像ではなくCSSで作っている） */
  background:

    /* 左側の縦ライン */
    linear-gradient(
      to right,          /* 左→右方向に描画 */
      #e5ddd7 0,         /* 開始位置：色あり */
      transparent 5px    /* 5pxで透明に（＝細いラインになる） */
    ),

    /* 右側の縦ライン */
    linear-gradient(
      to left,           /* 右→左方向に描画 */
      #e5ddd7 0,
      transparent 5px
    );
}


/* =====================================
  このページ専用（900px用）
===================================== */
.main-content-frame-wide{
  width: 100%;
  padding: 0 20px;
  background:
    linear-gradient(to right, #e5ddd7 0, transparent 5px),
    linear-gradient(to left,  #e5ddd7 0, transparent 5px);
  box-sizing: border-box;
}




/* =====================================
  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;
  }
}


/* -------------------------
  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;
}






.example {/*親div*/
  position: relative;/*相対配置*/
  }





.example pp {
  position: absolute;
  color: black;/*文字は黒に*/
  font-weight: bold; /*太字に*/

  font-size: 1.5em;/*サイズ2倍*/
  font-family :Quicksand, sans-serif;/*Google Font*/
  top: 30px;
  left: 3%;

  }
.example ppp {
  position: absolute;
  color: black;/*文字は黒に*/
  font-weight: bold; /*太字に*/

  font-size: 1.5em;/*サイズ2倍*/
  font-family :Quicksand, sans-serif;/*Google Font*/
  top: 80px;
  left: 3%;

  }
.example pppp {
  position: absolute;
  color: black;/*文字は黒に*/
  font-weight: bold; /*太字に*/

  font-size: 1.5em;/*サイズ2倍*/
  font-family :Quicksand, sans-serif;/*Google Font*/
  top: 130px;
  left: 3%;

  }

.example ppppp {
  position: absolute;
  color: black;/*文字は黒に*/
  font-weight: bold; /*太字に*/
  font-size: 2.3em;/*サイズ2倍*/
  font-family :Quicksand, sans-serif;/*Google Font*/

  top: 220px;
  left: 15%;
  }

.example pppppp {
  position: absolute;
  color: black;/*文字は黒に*/
  font-weight: bold; /*太字に*/

  font-size: 2.9em;/*サイズ2倍*/
  font-family :Quicksand, sans-serif;/*Google Font*/

  top: 320px;
  left: 5%;
  }


.example ppppppp {
  position: absolute;
  color: black;/*文字は黒に*/
  font-weight: bold; /*太字に*/

  font-size: 2.9em;/*サイズ2倍*/
  font-family :Quicksand, sans-serif;/*Google Font*/
  top: 410px;
  left: 4%;


  }


.example pppppppp {
  position: absolute;
  color: black;/*文字は黒に*/
  font-weight: bold; /*太字に*/

  font-size: 2.3em;/*サイズ2倍*/
  font-family :Quicksand, sans-serif;/*Google Font*/

  top: 510px;
  left: 13%;
  }


.example ppppppppp {
  position: absolute;
  color: black;/*文字は黒に*/
  font-weight: bold; /*太字に*/

  font-size: 2.9em;/*サイズ2倍*/
  font-family :Quicksand, sans-serif;/*Google Font*/

  top: 610px;
  left: 7%;
  }


.example pppppppppp {
  position: absolute;
  color: black;/*文字は黒に*/
  font-weight: bold; /*太字に*/

  font-size: 2.9em;/*サイズ2倍*/
  font-family :Quicksand, sans-serif;/*Google Font*/

  top: 400px;
  left: 64%;
  }


.example td{
    vertical-align: top;
}




.profile-img{
  width:150px;

  border-radius:12px;

  /* 影をほぼ消す */
  box-shadow:0 4px 12px rgba(0,0,0,0.05);

  /* 枠をうっすらだけ */
  border:1px solid rgba(0,0,0,0.05);
}




