@charset "UTF-8";

/* ==========================================================================
   丸投出品代行 サービスサイト
   デザインは Aizoon合同会社の名刺に準拠（ブラウンの面／グリーンの差し色／白地）
   ========================================================================== */

:root {
  --brown: #4e3d33;
  --brown-dark: #3a2d26;
  --brown-light: #6b564a;
  --green: #6e8f4e;
  --green-dark: #587340;
  --green-pale: #eef2e7;
  --cream: #faf7f2;
  --white: #fff;
  --text: #2b2320;
  --text-mute: #6b615c;
  --line: #e4ddd4;
  --shadow: 0 2px 14px rgba(78, 61, 51, .08);
  --radius: 10px;
  --wrap: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; }
a { color: var(--green-dark); }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

/* --- 見出し共通 ------------------------------------------------------- */
.section { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--green { background: var(--green-pale); }

.section-head { text-align: center; margin-bottom: 44px; }

.section-head__en {
  display: block;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 6px;
}

.section-head__ja {
  font-size: clamp(23px, 4.4vw, 31px);
  font-weight: 800;
  margin: 0;
  letter-spacing: .04em;
}

.section-head__lead {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--text-mute);
  font-size: 15px;
}

/* --- ヘッダー --------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.logo { display: flex; align-items: baseline; gap: 10px; text-decoration: none; color: var(--text); }
.logo__name { font-size: 20px; font-weight: 800; letter-spacing: .06em; }
.logo__by { font-size: 11px; color: var(--text-mute); letter-spacing: .08em; }

.header__nav { display: flex; align-items: center; gap: 22px; }
.header__nav a { color: var(--text); text-decoration: none; font-size: 14px; font-weight: 700; }
.header__nav a:hover { color: var(--green-dark); }

.header__tel {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-decoration: none;
  color: var(--brown);
  padding: 6px 16px;
  border: 2px solid var(--brown);
  border-radius: 999px;
}
.header__tel span { font-size: 10px; letter-spacing: .1em; }
.header__tel strong { font-size: 17px; letter-spacing: .02em; }

/* --- ヒーロー --------------------------------------------------------- */
.hero { background: var(--cream); padding: 68px 0 60px; border-bottom: 1px solid var(--line); }

.hero__badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(30px, 6.4vw, 52px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .02em;
  margin: 0 0 8px;
}
.hero__title em { font-style: normal; color: var(--green-dark); }


.hero__service {
  font-size: clamp(20px, 3.6vw, 27px);
  font-weight: 800;
  color: var(--brown);
  letter-spacing: .12em;
  margin: 0 0 20px;
}

.hero__lead { font-size: clamp(15px, 2.2vw, 17px); max-width: 640px; margin: 0 0 26px; }

.hero__malls { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hero__mall {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 700;
}

.hero__points { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 0 0 30px; padding: 0; list-style: none; }
.hero__points li { font-weight: 700; font-size: 15px; }
.hero__points li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 7px; }

/* --- ボタン ----------------------------------------------------------- */
.btns { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 15px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.35;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-2px); }
.btn small { font-size: 11px; font-weight: 700; letter-spacing: .1em; opacity: .85; }
.btn strong { font-size: 20px; letter-spacing: .02em; }

.btn--tel { background: var(--brown); color: var(--white); }
.btn--mail { background: var(--white); color: var(--brown); border: 2px solid var(--brown); }
.btn--mail strong { font-size: 16px; }

/* --- 課題 ------------------------------------------------------------- */
.problems { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.problem {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.problem__icon { width: 46px; height: 46px; margin: 0 auto 14px; color: var(--green); }
.problem__title { font-size: 17px; font-weight: 800; margin: 0 0 8px; }
.problem__desc { font-size: 14px; color: var(--text-mute); margin: 0; }

.problems-answer {
  margin-top: 36px;
  text-align: center;
  font-size: clamp(19px, 3.4vw, 26px);
  font-weight: 900;
  letter-spacing: .04em;
}
.problems-answer em { font-style: normal; color: var(--green-dark); }

/* --- サービス内容 ----------------------------------------------------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.service {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.service__no {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--white);
  background: var(--green);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
}
.service__title { font-size: 16px; font-weight: 800; margin: 0 0 6px; }
.service__desc { font-size: 13.5px; color: var(--text-mute); margin: 0; }

.services-note {
  margin-top: 26px;
  background: var(--white);
  border-left: 4px solid var(--green);
  padding: 16px 20px;
  font-size: 14.5px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* --- 選ばれる理由 ----------------------------------------------------- */
.reasons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.reason {
  display: flex;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.reason__num {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
}
.reason__title { font-size: 17px; font-weight: 800; margin: 0 0 6px; }
.reason__desc { font-size: 14px; color: var(--text-mute); margin: 0; }

/* --- 料金 ------------------------------------------------------------- */
.price-table-wrap { overflow-x: auto; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 460px;
}
.price-table th, .price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--brown); color: var(--white); font-size: 14px; letter-spacing: .06em; }
.price-table thead th:last-child { text-align: center; width: 34%; }
.price-table tbody th { font-weight: 700; font-size: 15px; }
.price-table td { text-align: center; font-weight: 800; font-size: 18px; color: var(--green-dark); }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:nth-child(odd) { background: #fcfaf7; }

.price-basis {
  margin-top: 26px;
  background: var(--white);
  border: 2px solid var(--brown);
  border-radius: var(--radius);
  padding: 24px;
}
.price-basis__title { font-size: 16px; font-weight: 800; margin: 0 0 10px; }
.price-basis__title::before { content: "▍"; color: var(--green); margin-right: 4px; }
.price-basis p { margin: 0 0 14px; font-size: 15px; }
.price-basis p:last-child { margin-bottom: 0; }

.calc { background: var(--cream); border-radius: 8px; padding: 18px 20px; }
.calc__title { font-size: 13px; font-weight: 800; letter-spacing: .08em; color: var(--green-dark); margin: 0 0 10px; }
.calc__row { display: flex; justify-content: space-between; gap: 12px; font-size: 15px; padding: 4px 0; }
.calc__row--sum { border-top: 1px dashed var(--brown-light); margin-top: 8px; padding-top: 10px; font-weight: 700; }
.calc__row--result {
  border-top: 2px solid var(--brown);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 900;
  font-size: 18px;
  color: var(--brown);
}

.price-include { margin-top: 26px; }
.price-include__title { font-size: 16px; font-weight: 800; margin: 0 0 12px; }
.price-include__list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.price-include__list li {
  background: var(--white);
  border: 1px solid var(--green);
  color: var(--green-dark);
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 16px;
}

.price-notes { margin: 22px 0 0; padding-left: 1.2em; font-size: 13.5px; color: var(--text-mute); }
.price-notes li { margin-bottom: 4px; }

/* --- 流れ ------------------------------------------------------------- */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }

.flow__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  position: relative;
}
.flow__step {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--green);
  margin-bottom: 8px;
}
.flow__title { font-size: 16px; font-weight: 800; margin: 0 0 8px; }
.flow__desc { font-size: 13.5px; color: var(--text-mute); margin: 0; }

/* --- エリア ----------------------------------------------------------- */
.areas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.area {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow);
}
.area__pref { font-size: 18px; font-weight: 800; margin: 0 0 14px; color: var(--brown); }
.area__pref::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 2px;
  margin-right: 10px;
}
.area__list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.area__list li {
  background: var(--green-pale);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 14.5px;
  font-weight: 700;
}
.area-note { margin-top: 20px; text-align: center; font-size: 14px; color: var(--text-mute); }

/* --- FAQ -------------------------------------------------------------- */
.faq-list { max-width: 820px; margin-inline: auto; }

.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__q {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-weight: 800;
  font-size: 15.5px;
  position: relative;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "＋";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-weight: 900;
}
.faq[open] .faq__q::after { content: "−"; }
.faq__a { padding: 0 22px 20px; margin: 0; font-size: 14.5px; color: var(--text-mute); }

/* --- 運営会社 --------------------------------------------------------- */
.company { max-width: 840px; margin-inline: auto; }

.company__table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.company__table th, .company__table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: top; }
.company__table th { width: 34%; background: #fcfaf7; font-weight: 700; color: var(--brown); white-space: nowrap; }
.company__table tr:last-child th, .company__table tr:last-child td { border-bottom: none; }
.company__table a { text-decoration: none; font-weight: 700; }

/* --- お問い合わせ ----------------------------------------------------- */
.contact { background: var(--brown); color: var(--white); padding: 66px 0; text-align: center; }
.contact__title { font-size: clamp(23px, 4.4vw, 31px); font-weight: 900; margin: 0 0 10px; letter-spacing: .04em; }
.contact__lead { margin: 0 auto 30px; max-width: 620px; font-size: 15px; opacity: .92; }
.contact .btns { justify-content: center; }
.contact .btn--tel { background: var(--white); color: var(--brown); }
.contact .btn--mail { background: transparent; color: var(--white); border-color: var(--white); }
.contact__hours { margin: 24px 0 0; font-size: 13.5px; opacity: .8; }

/* --- フッター --------------------------------------------------------- */
.footer { background: var(--brown-dark); color: rgba(255, 255, 255, .8); padding: 30px 0; font-size: 13px; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; align-items: center; }
.footer__tagline { letter-spacing: .16em; font-size: 12px; }

/* --- ヒーロー2カラム / 写真 ------------------------------------------- */
.hero__inner { display: grid; grid-template-columns: 1fr 0.86fr; gap: 44px; align-items: center; }
.hero__body { min-width: 0; }
.hero__visual { min-width: 0; }
.hero__visual img {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(78, 61, 51, .16);
}

.photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 34px; }
.photo { margin: 0; }
.photo img {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.photo figcaption {
  margin-top: 10px; font-size: 13.5px; font-weight: 700; color: var(--brown);
  text-align: center; letter-spacing: .02em;
}

/* --- 導入実績 --------------------------------------------------------- */
.results { background: var(--brown); color: var(--white); padding: 58px 0; }
.results__head { text-align: center; margin-bottom: 30px; }
.results__label {
  display: inline-block; padding: 5px 16px; border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .14em; margin-bottom: 14px;
}
.results__title { font-size: clamp(20px, 3.4vw, 27px); font-weight: 900; margin: 0 0 8px; letter-spacing: .03em; }
.results__period { margin: 0; font-size: 14px; opacity: .95; }
.results__period strong { font-weight: 900; border-bottom: 1px solid rgba(255, 255, 255, .6); }

.results__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.result {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius); padding: 24px 20px; text-align: center;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.result--accent { background: var(--cream); border-color: var(--cream); color: var(--text); }
.result__cap { font-size: 12.5px; font-weight: 700; opacity: .85; line-height: 1.5; }
.result--accent .result__cap { opacity: 1; color: var(--brown); }
.result__num { font-size: 17px; font-weight: 700; letter-spacing: .02em; }
.result__num strong { font-size: 44px; font-weight: 900; margin: 0 2px; line-height: 1; }
.result--accent .result__num strong { color: var(--green-dark); }
.result__sub {
  font-size: 13px; font-weight: 700; padding-top: 8px; margin-top: 2px;
  border-top: 1px dashed rgba(78, 61, 51, .3);
}
.results__note { margin: 20px 0 0; font-size: 13px; line-height: 1.8; opacity: .95; text-align: center; }

/* --- 丸投げ査定（シリーズ紹介） --------------------------------------- */
.satei { background: var(--green-pale); }
.satei__main { display: grid; grid-template-columns: 1fr 0.72fr; gap: 40px; align-items: start; }
.satei__body { min-width: 0; }

.satei__badge {
  display: inline-block; background: var(--green-dark); color: var(--white);
  padding: 5px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: .1em; margin-bottom: 14px;
}
.satei__name {
  margin: 0 0 6px; font-size: clamp(26px, 5vw, 36px); font-weight: 900;
  color: var(--brown); letter-spacing: .06em;
}
.satei__catch { margin: 0 0 16px; font-size: clamp(17px, 2.6vw, 21px); font-weight: 800; line-height: 1.5; }
.satei__catch em { font-style: normal; color: var(--green-dark); }
.satei__lead { margin: 0 0 22px; font-size: 15px; }

.satei__points { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.satei__points li { font-size: 14.5px; padding-left: 26px; position: relative; }
.satei__points li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green-dark); font-weight: 900;
}

.satei__price {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 20px 24px; margin-bottom: 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 30px;
}
.satei__price-main { display: flex; align-items: baseline; gap: 4px; color: var(--brown); }
.satei__price-cap { font-size: 14px; font-weight: 800; }
.satei__price-num { font-size: 46px; font-weight: 900; line-height: 1; color: var(--green-dark); }
.satei__price-unit { font-size: 15px; font-weight: 800; }
.satei__price-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.satei__price-list li { font-size: 13.5px; font-weight: 700; color: var(--text-mute); }
.satei__price-list li::before { content: "・"; }

.btn--satei { background: var(--green-dark); color: var(--white); }
.btn--satei strong { font-size: 17px; }

.satei__note { margin: 16px 0 0; font-size: 13px; color: var(--text-mute); line-height: 1.7; }

.satei__visual { min-width: 0; position: sticky; top: 90px; }

/* 査定の会話イメージ */
.chat {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 34px rgba(78, 61, 51, .16);
}
.chat__head {
  background: var(--brown); color: var(--white);
  padding: 12px 16px; font-size: 13px; font-weight: 800; letter-spacing: .06em;
}
.chat__body { background: #eceff0; padding: 16px 14px; display: grid; gap: 12px; }

.chat__row { display: flex; }
.chat__row--in { justify-content: flex-start; }
.chat__row--out { justify-content: flex-end; }

.chat__bubble {
  max-width: 84%; padding: 11px 14px; border-radius: 14px;
  font-size: 13.5px; line-height: 1.65; background: var(--white); color: var(--text);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}
.chat__bubble--photo { padding: 5px; max-width: 62%; }
.chat__bubble--photo img { display: block; width: 100%; height: auto; border-radius: 10px; }

.chat__bubble--ai { background: var(--green-pale); border: 1px solid #d5e0c5; }
.chat__ai {
  display: block; font-size: 10.5px; font-weight: 800; letter-spacing: .1em;
  color: var(--green-dark); margin-bottom: 6px;
}
.chat__price { color: var(--green-dark); font-size: 15px; }

.chat__bubble--slot { display: flex; flex-wrap: wrap; gap: 7px; }
.chat__slot {
  background: var(--white); border: 1px solid var(--green-dark); color: var(--green-dark);
  border-radius: 999px; padding: 5px 12px; font-size: 12px; font-weight: 800;
}

.chat__note { margin: 12px 2px 0; font-size: 11.5px; line-height: 1.7; color: var(--text-mute); }

/* PCでのみ改行するための要素（スマホでは無効化） */
.br-pc { display: inline; }

/* --- レスポンシブ ----------------------------------------------------- */
@media (max-width: 900px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .header__nav { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__visual { order: -1; }
  .satei__main { grid-template-columns: 1fr; gap: 28px; }
  .satei__visual { position: static; order: -1; }
  .br-pc { display: none; }
}

@media (max-width: 700px) {
  .section { padding: 54px 0; }
  .problems { grid-template-columns: 1fr; }
  .reasons { grid-template-columns: 1fr; }
  .areas { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .btn { min-width: 100%; }
  .header__inner { height: 60px; gap: 8px; }
  .logo__name { font-size: 17px; letter-spacing: .02em; white-space: nowrap; }
  .logo__by { display: none; }
  .header__tel { padding: 4px 12px; }
  .header__tel span { font-size: 9px; }
  .header__tel strong { font-size: 15px; white-space: nowrap; }
  .company__table th, .company__table td { display: block; width: 100%; }
  .company__table th { border-bottom: none; padding-bottom: 0; background: var(--white); }
  .hero__points { gap: 6px 18px; }

  /* 料金表は横スクロールさせず2列を必ず収める（手数料が初見で見えることを優先） */
  .price-table { min-width: 0; }
  .price-table th, .price-table td { padding: 12px 12px; }
  .price-table thead th { font-size: 12.5px; }
  .price-table tbody th { font-size: 13.5px; }
  .price-table td { font-size: 17px; }
  .price-table thead th:last-child { width: 30%; }
  .hero__title { font-size: clamp(27px, 8.2vw, 34px); }

  .hero { padding: 40px 0 48px; }
  .hero__visual img { aspect-ratio: 16 / 10; object-fit: cover; }
  .photos { grid-template-columns: 1fr; gap: 16px; }
  .results__grid { grid-template-columns: 1fr; }
  .result__num strong { font-size: 40px; }
  .satei__price { padding: 18px 18px; gap: 12px 20px; }
  .satei__price-num { font-size: 40px; }
}
