@charset "UTF-8";

/* ============================================================
   MISE+ ホームページ スタイル

   【色を変えたいとき】
   すぐ下の「色の設定」の値だけを直せば、サイト全体の色が変わります。
   ============================================================ */

/* ---------- 色の設定 ---------- */
:root {
  --orange:       #ea7c2b;   /* アクセント1：オレンジ（ボタンなど） */
  --orange-dark:  #d2681a;   /* オレンジの濃い版（ボタンを押したとき） */
  --orange-pale:  #fdf3e9;   /* オレンジのごく薄い版（背景） */
  --green:        #3f8e63;   /* アクセント2：グリーン */
  --green-dark:   #2f7150;
  --green-pale:   #eef6f1;
  --line-green:   #06c755;   /* LINEの色 */
  --line-green-dark: #05a948;

  --text:         #2f3336;   /* 本文の文字色 */
  --text-sub:     #62696e;   /* 補足の文字色 */
  --bg:           #ffffff;   /* 背景（白ベース） */
  --bg-tint:      #faf8f5;   /* うっすら色のついた背景 */
  --border:       #e6e2db;   /* 枠線 */

  --radius:       14px;      /* 角の丸み */
  --shadow:       0 2px 16px rgba(60, 50, 40, .07);
  --shadow-lg:    0 6px 28px rgba(60, 50, 40, .12);

  --maxw:         1080px;    /* 中身の最大幅 */
}

/* ---------- 全体の土台 ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  /* 日本語を文節の切れ目で改行する。Chrome以外では無視されるだけなので安全 */
  word-break: auto-phrase;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 17px;          /* 文字は大きめ */
  line-height: 1.9;         /* 行間もゆったり */
  color: var(--text);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-dark); }

h1, h2, h3 { line-height: 1.5; margin: 0; }

p { margin: 0 0 1em; }

ul, ol { margin: 0; padding: 0; list-style: none; }

/* 中身を中央に置く箱 */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 760px; }

/* スマホだけで改行させたいときに使う */
.br-sp { display: inline; }

/* ============================================================
   ボタン
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(234, 124, 43, .3);
}
.btn--primary:hover { background: var(--orange-dark); }

.btn--line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(6, 199, 85, .3);
}
.btn--line:hover { background: var(--line-green-dark); }

.btn--lg { font-size: 18px; padding: 20px 34px; }
.btn--sm { font-size: 14px; padding: 10px 18px; }
.btn--block { display: flex; width: 100%; }

.btn { max-width: 100%; white-space: nowrap; word-break: normal; }
.btn__icon { display: inline-flex; align-items: center; flex-shrink: 0; }

@media (max-width: 700px) {
  .btn--lg { font-size: 16px; padding: 18px 24px; }
  .demo__text .btn--line { display: flex; width: 100%; }
}

/* ============================================================
   ヘッダー（画面上に固定）
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo { text-decoration: none; color: var(--text); display: flex; align-items: center; flex-shrink: 0; }
.logo__image { width: 160px; height: 80px; object-fit: contain; }
.logo__mark { font-size: 24px; font-weight: 800; letter-spacing: .02em; }
.logo__plus { color: var(--orange); }
.logo__sub  { font-size: 12px; color: var(--text-sub); }

/* スマホではヘッダーのボタンを隠す（画面下の追いかけボタンに任せる） */
@media (max-width: 700px) {
  .header__cta { display: none; }
}

/* ============================================================
   1. ファーストビュー
   ============================================================ */
.hero {
  background: linear-gradient(180deg, var(--orange-pale) 0%, #ffffff 100%);
  padding: 48px 0 56px;
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 28px;
  align-items: center;
}
.hero__brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--orange-dark);
  margin-bottom: .6em;
}
.hero__title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: .01em;
  margin-bottom: .5em;
}
.hero__lead {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: .8em;
}
.hero__desc { color: var(--text-sub); margin-bottom: 1.6em; }

.hero__area {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 1.6em;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-sub);
}
.hero__area-icon { color: var(--green); flex: 0 0 auto; margin-top: 4px; }

.hero__image { text-align: center; }
.hero__image img { margin: 0 auto; width: 100%; max-width: 340px; border-radius: var(--radius); }

/* ============================================================
   セクション共通
   ============================================================ */
.section { padding: 64px 0; }
.section--tint { background: var(--bg-tint); }

.section__title {
  font-size: 27px;
  font-weight: 800;
  text-align: center;
  margin-bottom: .5em;
}
/* 見出しの下の短い線 */
.section__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: var(--orange);
  margin: 18px auto 0;
}
.section__lead {
  text-align: center;
  color: var(--text-sub);
  margin: 1.4em 0 2em;
}

.lead-note {
  margin-top: 2em;
  padding: 20px;
  background: var(--green-pale);
  border-radius: var(--radius);
  text-align: center;
  font-size: 16px;
}

.note-small { font-size: 14px; color: var(--text-sub); }

/* 見出しの下に置く、横長の写真 */
.section__photo { margin: 28px 0 8px; }
.section__photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* ============================================================
   カード
   ============================================================ */
.cards { display: grid; gap: 20px; margin-top: 32px; }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}
.card__title {
  font-size: 19px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .8em;
}
.card__sub { color: var(--text-sub); font-size: 15px; margin-bottom: 1em; }
.card__icon { color: var(--green); display: inline-flex; flex: 0 0 auto; }
.card__icon--lg {
  display: inline-flex;
  width: 52px; height: 52px;
  align-items: center; justify-content: center;
  background: var(--green-pale);
  border-radius: 50%;
  margin-bottom: 14px;
}
.card--service { position: relative; padding-top: 30px; }

/* カードの上に置く写真 */
.card__photo { margin: -26px -22px 18px; }
.card__photo img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  display: block;
}
.card--service .card__photo { margin-top: -30px; }
.card__num {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--orange);
  margin-bottom: 6px;
}

/* チェックマーク付きのリスト */
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: .7em;
  line-height: 1.8;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid var(--green);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: .85em;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}
.checklist--boxed {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px 14px;
  margin: 1.2em 0 1.4em;
}

/* ============================================================
   3. 無料診断
   ============================================================ */
.split { display: grid; gap: 28px; margin-top: 32px; }
.split__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}
.strong-lead { font-size: 20px; font-weight: 800; line-height: 1.7; }

.free-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  padding: 12px 22px;
  border-radius: 999px;
  margin: .4em 0 1.2em;
}

/* ============================================================
   4. 実際に触ってみてください（一番大事な部分）
   ============================================================ */
.demo {
  background: linear-gradient(160deg, #10322a 0%, #1d5442 100%);
  color: #fff;
  padding: 64px 0;
}
.demo__label {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #9fdcbb;
  margin-bottom: .6em;
}
.demo__title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 1.4em;
}
.demo__body {
  display: grid;
  gap: 32px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.demo__text p { color: #e6f2ec; }
.demo__push { font-weight: 700; color: #fff !important; margin-top: 1.4em; }
.demo__hint { font-size: 14px; color: #a9c9bc !important; margin-top: .8em; }

.demo__qr {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  margin: 0 auto;
}
.demo__qr img { width: 100%; max-width: 220px; margin: 0 auto; }
.demo__qr-cap {
  font-size: 13px;
  color: var(--text-sub);
  margin: 14px 0 0;
  line-height: 1.7;
}

/* ============================================================
   6. 4つの理由
   ============================================================ */
.reasons { display: grid; gap: 20px; margin-top: 32px; }
.reason {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.reason__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: .3em;
}
.reason__title { font-size: 20px; font-weight: 800; margin-bottom: .8em; }
.reason p:last-child { margin-bottom: 0; }

/* ============================================================
   7. 考え方の流れ
   ============================================================ */
.flow { display: grid; gap: 16px; margin-top: 8px; counter-reset: none; }
.flow__item {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.flow__step {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}
.flow__title { font-size: 18px; font-weight: 800; margin-bottom: .4em; }
.flow__item p { font-size: 15px; color: var(--text-sub); margin: 0; }

/* ============================================================
   8. 料金
   ============================================================ */
.monitor-box {
  background: var(--orange-pale);
  border: 2px dashed var(--orange);
  border-radius: var(--radius);
  padding: 24px 22px;
  margin: 32px 0 28px;
  text-align: center;
}
.monitor-box__title { font-size: 19px; font-weight: 800; margin-bottom: .8em; }
.monitor-box p:last-child { margin-bottom: 0; }

.price-list { display: grid; gap: 14px; }
.price-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.price-item--main { border: 2px solid var(--orange); }
.price-item__name { font-size: 17px; font-weight: 800; margin-bottom: .5em; }
.price-item__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin: 0; }
.price-was {
  font-size: 15px;
  color: var(--text-sub);
  text-decoration: line-through;
}
.price-now { font-size: 21px; font-weight: 800; color: var(--orange-dark); }
.price-item__note { font-size: 14px; color: var(--text-sub); margin: .5em 0 0; }

.price-notes { margin-top: 24px; font-size: 14px; color: var(--text-sub); }
.price-notes li { padding-left: 1.2em; text-indent: -1.2em; margin-bottom: .4em; }
.price-notes li::before { content: "※ "; }

/* ============================================================
   9. ご依頼の流れ
   ============================================================ */
.steps { margin-top: 32px; position: relative; }
.step {
  display: flex;
  gap: 18px;
  padding-bottom: 26px;
  position: relative;
}
/* ステップ同士をつなぐ縦線 */
.step::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.step:last-child { padding-bottom: 0; }
.step:last-child::before { display: none; }

.step__num {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  position: relative;
  z-index: 1;
}
.step__body { padding-top: 6px; }
.step__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: .3em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.step__free {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  padding: 3px 10px;
  border-radius: 999px;
}
.step__body p { margin: 0; color: var(--text-sub); font-size: 15px; }

/* ============================================================
   10. プロフィール
   ============================================================ */
.profile { display: grid; gap: 26px; margin-top: 32px; }
.profile__photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.profile__name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: .8em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
.profile__brand { font-size: 13px; font-weight: 500; color: var(--text-sub); }

/* ============================================================
   11. よくあるご質問
   ============================================================ */
.faq { margin-top: 32px; display: grid; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 20px 52px 20px 22px;
  font-weight: 700;
  font-size: 17px;
  position: relative;
}
.faq__q::-webkit-details-marker { display: none; }
/* 右端の開閉マーク（プラスとマイナス） */
.faq__q::before,
.faq__q::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  background: var(--orange);
  transition: transform .2s ease, opacity .2s ease;
}
.faq__q::before { width: 16px; height: 2px; margin-top: -1px; }
.faq__q::after  { width: 2px; height: 16px; margin-top: -8px; margin-right: 7px; }
.faq__item[open] .faq__q::after { opacity: 0; transform: rotate(90deg); }
.faq__q:focus-visible { outline: 3px solid var(--green); outline-offset: -3px; }

.faq__a { padding: 0 22px 20px; border-top: 1px solid var(--border); }
.faq__a p { margin: 16px 0 0; color: var(--text-sub); }

/* ============================================================
   12. 最後のボタン
   ============================================================ */
.final-cta {
  position: relative;
  padding: 72px 0;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(rgba(24, 40, 33, .78), rgba(24, 40, 33, .78)), url("../images/shop-evening.jpg");
  background-size: cover;
  background-position: center;
}
.final-cta__title { font-size: 26px; font-weight: 800; margin-bottom: .6em; }
.final-cta__lead { font-size: 18px; margin-bottom: 1.6em; }
.final-cta__note { font-size: 14px; color: #d8e4de; margin: 1.4em 0 0; }

/* ============================================================
   フッター
   ============================================================ */
.footer {
  background: #2f3336;
  color: #cfd4d7;
  padding: 40px 0 100px;   /* 下は追いかけボタンのぶん余白をとる */
  font-size: 14px;
  text-align: center;
}
.footer__logo { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: .4em; }
.footer__brand { display: block; width: 200px; margin: 0 auto 20px; border-radius: var(--radius); overflow: hidden; background: #fff; }
.footer__brand img { width: 100%; }
.footer__read { font-size: 12px; font-weight: 500; color: #cfd4d7; }
.footer__desc { margin-bottom: 1.2em; }
.footer__area { line-height: 1.9; }
.footer__copy { margin: 1.6em 0 0; font-size: 12px; color: #8e9599; }

/* 事業者情報（フッターの一覧） */
.footer__info {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  font-size: 13px;
  line-height: 1.8;
}
.footer__info dt {
  font-weight: 700;
  color: #fff;
  margin-top: 12px;
}
.footer__info dd { margin: 0; }

@media (min-width: 561px) {
  .footer__info { display: grid; grid-template-columns: 8em 1fr; column-gap: 16px; }
  .footer__info dt { margin-top: 8px; }
  .footer__info dd { margin-top: 8px; }
}

/* ============================================================
   画面下の追いかけボタン（スマホ用）
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  transform: translateY(120%);
  transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { font-size: 16px; padding: 15px 20px; }

/* パソコンの画面では追いかけボタンを出さない（ヘッダーにボタンがあるため） */
@media (min-width: 701px) {
  .sticky-cta { display: none; }
  .footer { padding-bottom: 40px; }
}

/* ============================================================
   画面が広いとき（タブレット・パソコン）のレイアウト
   ============================================================ */
@media (min-width: 701px) {
  body { font-size: 17px; }
  .br-sp { display: none; }   /* スマホ用の改行を消す */

  .section { padding: 88px 0; }
  .section__title { font-size: 32px; }

  .hero { padding: 72px 0 88px; }
  .hero__title { font-size: 46px; }
  .hero__image img { max-width: 380px; }

  .cards--2 { grid-template-columns: 1fr 1fr; }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }

  .card__photo img { height: 190px; }
  .section__photo img { height: 300px; }

  .split__image img { max-height: 420px; }

  .demo { padding: 88px 0; }
  .demo__title { font-size: 34px; }
  .demo__qr img { max-width: 260px; }

  .reasons { grid-template-columns: 1fr 1fr; }

  .flow { grid-template-columns: repeat(4, 1fr); gap: 14px; }

  .profile__photo img { width: 220px; height: 220px; }

  .final-cta { padding: 96px 0; }
  .final-cta__title { font-size: 34px; }
}

/* 写真・画像と文章はタブレットまで縦並び。広い画面だけ横並びにする */
@media (min-width: 1025px) {
  .hero__inner { grid-template-columns: 1.15fr .85fr; gap: 40px; }
  .hero__image img { max-width: 100%; }
  .split { grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .demo__body { grid-template-columns: 1.2fr .8fr; gap: 48px; }
  .demo__qr { max-width: 100%; }
  .profile { grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
}

/* ============================================================
   動きを減らす設定にしている方への配慮
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
