@charset "UTF-8";
/* ======================================
   Base
====================================== */
:root {
  --toso-primary: #48890F;
  --toso-primary-dark: #6BA439;
  --toso-text: #111;
  --toso-muted: #667085;
  --toso-bg: #f6f7fb;
  --toso-card: #ffffff;
  --toso-border: rgba(17, 24, 39, .12);
  --toso-shadow: 0 18px 55px rgba(0,0,0,.12);
  --toso-radius: 18px; }

html {
  scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--toso-text);
  background: #fff; }

/* =========================
   LP Header
========================= */
.toso-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between; }

/* ← ネスト禁止 */
.toso-header .headercta {
  display: flex; }

.toso-header .headercta a {
  display: block;
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 10px; }

.toso-header .headercta a span {
  display: block; }

.toso-header .headercta a img {
  max-width: 40px; }

.toso-header .headercta a.ctatel {
  background: #0040a9; }

.toso-header .headercta a.ctamail {
  background: #911f21; }

@media (max-width: 768px) {
  .toso-header .headercta {
    display: none; } }
.toso-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  width: 100%; }

.toso-header__logo {
  margin: 0; }
  .toso-header__logo img {
    width: auto;
    display: block;
    max-width: 250px; }

.toso-header__nav {
  margin-left: auto; }
  .toso-header__nav ul {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0; }
  .toso-header__nav a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    font-weight: 500;
    color: #222;
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    text-decoration: none;
    color: inherit;
    padding-bottom: 4px; }
    .toso-header__nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 1px;
      background: #538C22;
      opacity: 0;
      transition: opacity .2s ease; }
    .toso-header__nav a:hover::after {
      opacity: 1; }

.toso-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  cursor: pointer;
  position: relative;
  z-index: 10020;
  /* これで被りに勝つ */
  pointer-events: auto; }
  .toso-burger span {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #222;
    transform: translateX(-50%);
    transition: .25s ease; }
  .toso-burger span:nth-child(1) {
    top: 15px; }
  .toso-burger span:nth-child(2) {
    top: 21px; }
  .toso-burger span:nth-child(3) {
    top: 27px; }
  .toso-burger.is-open span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg); }
  .toso-burger.is-open span:nth-child(2) {
    opacity: 0; }
  .toso-burger.is-open span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg); }

/* drawer overlay */
.toso-drawer {
  position: fixed;
  inset: 0;
  z-index: 10010;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease; }
  .toso-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100%;
    background: #fff;
    transform: translateX(12px);
    transition: transform .25s ease;
    overflow: auto;
    padding: 86px 20px 20px;
    box-sizing: border-box; }
  .toso-drawer ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .toso-drawer li {
    margin: 0 0 14px; }
  .toso-drawer a {
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: #222; }
  .toso-drawer .contact a {
    background: #48890F;
    color: #fff; }
  .toso-drawer .tel a {
    color: #48890F;
    font-weight: 900;
    background: rgba(72, 137, 15, 0.06); }
  .toso-drawer.is-open {
    opacity: 1;
    pointer-events: auto; }
    .toso-drawer.is-open .toso-drawer__panel {
      transform: translateX(0); }

.toso-drawer__close {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  cursor: pointer;
  z-index: 2;
  /* パネル内で最前面 */
  display: grid;
  place-items: center; }
  .toso-drawer__close span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: #222; }
  .toso-drawer__close span:nth-child(1) {
    transform: rotate(45deg); }
  .toso-drawer__close span:nth-child(2) {
    transform: rotate(-45deg); }

/* lock scroll */
html.is-spnav-open,
html.is-spnav-open body {
  overflow: hidden; }

/* SP: show burger, hide pc nav */
@media (max-width: 1024px) {
  .toso-header__nav {
    display: none; }

  .toso-burger {
    display: block;
    margin-left: auto; } }
/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
  .lp-header__nav {
    display: none; }

  .lp-header__icon {
    display: none; }

  .lp-burger {
    display: inline-block; } }
@media (max-width: 1180px) {
  .lp-header__inner {
    padding: 12px 16px; } }
/* LPの中身は 1300px で統一（Heroだけ全幅） */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px; }

/* セクションの“でかさ”＝LP感 */
section {
  padding: 88px 0; }

@media (max-width: 768px) {
  section {
    padding: 64px 0; }

  .container {
    padding: 0 16px; } }
/* 見出し周り（LPっぽく強め） */
.section-title {
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1.25;
  letter-spacing: .04em;
  margin: 0 0 18px; }

.section-lead {
  margin: 0 0 34px;
  color: var(--toso-muted);
  font-size: 16px;
  line-height: 1.9; }

/* 共通ボタン */
.btn-primary {
  background: linear-gradient(135deg, #ff8a00, #ff5e00);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 24px rgba(255, 94, 0, 0.35);
  transition: all .25s ease; }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(255, 94, 0, 0.45); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff; }

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px); }

/* ======================================
   Hero
====================================== */
.hero-toso__bg {
  position: absolute;
  inset: 0;
  z-index: 0; }

.hero-toso__bg-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out, transform 6s linear; }

/* 初期表示 */
.hero-toso__bg-slide.is-active {
  opacity: 1;
  transform: scale(1); }

.hero-toso__bg-slide.is-1 {
  background-image: url("../img/hero_back01.jpg"); }

.hero-toso__bg-slide.is-2 {
  background-image: url("../img/hero_back02.jpg"); }

.hero-toso__bg-slide.is-3 {
  background-image: url("../img/hero_back03.jpg"); }

.hero-toso {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: 30px !important;
  padding-bottom: 30px;
  align-items: start;
  background: url("../img/hero_back.jpg") center/cover no-repeat; }
  .hero-toso__bg {
    position: absolute;
    inset: 0;
    background: url("../img/hero.jpg") center/cover no-repeat;
    z-index: 0; }
  .hero-toso__inner {
    position: relative;
    z-index: 1;
    width: min(1100px, 92vw);
    padding: 0px 40px 44px;
    color: #333; }
  .hero-toso__logo img {
    width: min(650px, 86%);
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.28));
    transform: translateY(0); }
  .hero-toso__lead {
    margin: 0 0 16px;
    font-size: 20px;
    letter-spacing: .12em;
    color: #fff;
    font-weight: 600;
    position: relative;
    display: inline-block;
    z-index: 1; }
    .hero-toso__lead::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 2px;
      transform: translateX(-50%) rotate(0deg);
      width: 110%;
      height: 14px;
      background: #f39800;
      opacity: .9;
      border-radius: 20px;
      z-index: -1; }
  .hero-toso__title {
    margin: 10px auto 30px auto;
    font-size: clamp(26px, 3vw, 44px);
    line-height: 1.3;
    letter-spacing: .04em;
    font-weight: 700;
    background: #538C22;
    color: #fff;
    padding: 10px 20px;
    max-width: 70%; }
  .hero-toso__cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px; }
  .hero-toso:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 78%);
    z-index: 1;
    pointer-events: none; }
  .hero-toso__ceo {
    position: absolute;
    right: -180px;
    bottom: 0;
    z-index: 1; }
    .hero-toso__ceo img {
      height: 650px;
      width: auto;
      display: block; }

@media (max-width: 768px) {
  .hero-toso {
    min-height: 40vh;
    padding-top: 92px; }
    .hero-toso__inner {
      padding: 40px 14px 28px; }
    .hero-toso__title {
      font-size: 20px; } }
@media (max-width: 768px) {
  .hero-toso__inner {
    padding: 60px 0 0; }
  .hero-toso__ceo {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 24px;
    text-align: center; }
    .hero-toso__ceo img {
      height: 300px;
      margin: 0 auto; } }
/* ======================================
   Sell LP blocks
====================================== */
.sell-lp {
  background: #fff; }

.sell-lp__intro {
  position: relative;
  background: #6BA439;
  padding: 56px 0 0 0;
  overflow: visible; }

.sell-lp__intro__inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1; }

.sell-lp__intro__arrow {
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 100%;
  height: 80px;
  line-height: 0;
  z-index: 2;
  pointer-events: none; }

.sell-lp__intro__arrow svg {
  display: block;
  width: 100%;
  height: 100%; }

.sell-lp__intro__arrow polygon {
  fill: #6BA439; }

.sell-lp__intro__inner {
  position: relative;
  z-index: 1;
  width: min(1300px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center; }

.sell-lp__intro__eyebrow {
  display: inline-block;
  margin: 0 0 15px;
  padding: 10px 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: clamp(18px, 1.8vw, 30px);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 4px; }

.sell-lp__intro__title {
  margin: 0 0 28px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-size: clamp(28px, 3.2vw, 44px); }

.sell-lp__intro__bubbles {
  width: min(1300px, 100%);
  margin: 0 auto; }

.sell-lp__intro__bubbles-img {
  display: block;
  width: 100%;
  height: auto; }

/* SP調整 */
@media (max-width: 767px) {
  .sell-lp__intro {
    padding: 44px 0 78px; }
    .sell-lp__intro::after {
      border-top-width: 52px; }

  .sell-lp__intro__title {
    margin-bottom: 18px; } }
.introh3 {
  margin-top: 100px;
  width: min(1300px, calc(100% - 40px));
  margin: 30px auto 0 auto;
  text-align: center; }
  .introh3 h3 {
    font-size: clamp(22px, 4vw, 40px);
    color: #3E770C; }
    .introh3 h3 .h3logo {
      max-width: 200px; }

@media (max-width: 768px) {
  .introh3 {
    margin-top: 50px; }
    .introh3 h3 {
      font-size: 20px; } }
@media (min-width: 769px) {
  .sp {
    display: none !important; } }
@media (max-width: 900px) {
  .worries {
    grid-template-columns: 1fr; } }
/* ========================================
    sell-lp__about
======================================== */
.sell-lp__about {
  padding: 64px 0 100px 0;
  position: relative; }
  @media (max-width: 768px) {
    .sell-lp__about {
      padding: 48px 0; } }
  .sell-lp__about::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100vw;
    height: 100px;
    background: url("../img/sec_back.png") center bottom/contain repeat-x;
    pointer-events: none; }

@media (min-width: 769px) {
  .about-title {
    margin-bottom: 100px; } }
@media (max-width: 768px) {
  .introh3 {
    padding-bottom: 0 !important; }

  .sell-lp__about {
    padding-top: 0 !important; } }
/* タイトル（迫力版） */
.about-title {
  position: relative;
  text-align: center;
  padding: 18px 0; }
  .about-title__en {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(56px, 10vw, 130px);
    font-weight: 900;
    letter-spacing: .08em;
    color: rgba(83, 140, 34, 0.08);
    white-space: nowrap;
    pointer-events: none; }
  .about-title__jp {
    position: relative;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: .05em; }

/* 横長画像 */
.about-hero {
  margin: 0 auto 22px;
  overflow: hidden; }
  .about-hero img {
    width: 100%;
    height: auto;
    display: block; }

/* 説明テキスト */
.about-lead {
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.9;
  text-align: center;
  margin: 50px auto;
  max-width: 920px; }

.about-lead strong {
  color: #538C22;
  font-weight: 800;
  background: linear-gradient(transparent 60%, rgba(83, 140, 34, 0.15) 60%); }

/* 強み3ブロック */
.about-strengths {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }
  @media (max-width: 768px) {
    .about-strengths {
      grid-template-columns: 1fr;
      gap: 14px; } }

.strength {
  background: #538C22;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  color: #fff;
  text-align: center;
  margin-bottom: 20px; }
  .strength__title {
    margin: 0 0 8px;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: .04em; }
  .strength__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.7; }
  .strength__ico img {
    max-width: 100px; }

/* ========================================
    sell-lp__strength
======================================== */
/* ===== セクション余白 ===== */
.sell-lp__strength {
  padding: 72px 0;
  background: #f6fbf2; }
  @media (max-width: 768px) {
    .sell-lp__strength {
      padding: 52px 0; } }

/* ===== 迫力タイトル ===== */
.strength-title {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
  padding: 18px 0; }
  .strength-title__en {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 900;
    letter-spacing: .08em;
    color: rgba(83, 140, 34, 0.08);
    white-space: nowrap;
    pointer-events: none; }
  .strength-title__jp {
    position: relative;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: .05em; }

/* ===============================
   2列2段 グリッド
=============================== */
.strength-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: min(1300px, 98%);
  margin: 0 auto; }
  @media (max-width: 768px) {
    .strength-cards {
      grid-template-columns: 1fr;
      gap: 16px; } }

.strength-card--hero {
  aspect-ratio: 16 / 10; }

/* ===============================
   カード本体（スクショ風）
=============================== */
.strength-card--hero {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background: #000;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1); }

/* ===============================
   画像
=============================== */
.strength-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02); }

/* ===============================
   暗幕（全体）
=============================== */
.strength-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  text-align: left;
  color: #fff;
  z-index: 1; }

/* 下側だけ暗くする */
.strength-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 25, 0, 0.75) 0%, rgba(0, 25, 0, 0.45) 50%, rgba(0, 25, 0, 0) 80%); }

/* ===============================
   テキスト配置
=============================== */
.strength-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  z-index: 1; }

/* 小見出し */
.strength-card__eyebrow {
  margin: 0 0 14px;
  font-size: 15px;
  letter-spacing: .22em;
  opacity: .85;
  position: relative;
  display: inline-block; }

.strength-card__eyebrow::after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6); }

/* タイトル */
.strength-card__title {
  margin: 15px 0;
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.25; }

/* 説明文 */
.strength-card__text {
  margin: 0;
  max-width: 450px;
  font-size: 17px;
  line-height: 1.5;
  opacity: .92; }

/* ===============================
   SP調整
=============================== */
@media (max-width: 768px) {
  .strength-card--hero {
    min-height: 260px; }

  .strength-card__body {
    padding: 22px 18px 20px; }

  .strength-card__title {
    font-size: 20px; }

  .strength-card__text {
    font-size: 13px; } }
.sell-lp__about .linkcontainer {
  text-align: center;
  display: block;
  margin: 30px 0; }
  .sell-lp__about .linkcontainer a {
    text-decoration: none;
    color: #666;
    transition: 0.3s; }
    .sell-lp__about .linkcontainer a:hover {
      opacity: 0.8; }

@media (max-width: 1100px) {
  .cards.cards--4 {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .cards.cards--4 {
    grid-template-columns: 1fr; }

  .card {
    padding: 22px 18px; } }
/* ===============================
   ご相談
=============================== */
.consult-section {
  padding: 40px 0 40px 0;
  width: 100%; }
  .consult-section__head {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto 40px; }
  .consult-section__en {
    font-size: 12px;
    letter-spacing: .2em;
    color: #777;
    margin-bottom: 8px; }
  .consult-section__title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700; }

/* grid */
.consult-grid {
  width: min(1300px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; }

/* card */
.consult-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center; }
  .consult-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05)); }
  .consult-card__content {
    position: relative;
    z-index: 1;
    padding: 26px;
    color: #fff; }
  .consult-card__title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px; }
  .consult-card__text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px; }

.consult-cta {
  text-align: center;
  margin-top: 40px; }

.consult-cta img {
  max-width: 1300px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; }

@media (max-width: 768px) {
  .consult-cta {
    padding: 0 20px; } }
/* background images */
.consult-card--sale {
  background-image: url("../img/hero_back01.jpg"); }

.consult-card--line {
  background-image: url("../img/hero_back01.jpg"); }
  .consult-card--line .consult-card__btn {
    background: #06c755;
    color: #fff; }

.consult-card--akiya {
  background-image: url("../img/hero_back01.jpg"); }

/* responsive */
@media (max-width: 768px) {
  .consult-grid {
    grid-template-columns: 1fr; }

  .consult-card {
    height: 300px; } }
/* ===============================
   フロー
=============================== */
.sell-lp__flow {
  background: var(--toso-bg); }

/* ===== FLOW ===== */
.sell-lp__flow {
  padding: 80px 0;
  background: #f8faf7; }
  .sell-lp__flow h2 {
    font-size: clamp(26px, 2.2vw, 35px);
    font-weight: 600;
    margin: 0 0 28px;
    color: #404040;
    position: relative;
    padding-bottom: 12px; }
    .sell-lp__flow h2:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 80px;
      height: 3px;
      background: #538C22;
      border-radius: 999px; }
  .sell-lp__flow p {
    margin: 5px auto; }

.steps {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative; }

/* 横ライン */
.steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 78px;
  height: 3px;
  background: rgba(83, 140, 34, 0.25); }

/* ===== 各STEP ===== */
.step {
  position: relative;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
  transition: .3s; }

/* ホバーで少し浮く（PCのみ） */
@media (hover: hover) {
  .step:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.1); } }
/* ===== 丸番号 ===== */
.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: #538C22;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 12px 26px rgba(83, 140, 34, 0.22), 0 0 0 8px rgba(83, 140, 34, 0.12);
  position: relative;
  z-index: 2; }

/* ===== アイコン ===== */
.step__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center; }

/* 画像サイズ */
.step__icon img {
  width: 100%;
  height: auto;
  display: block; }

/* タイトル */
.step__title {
  margin: 0;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: .04em; }

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr; } }
/* =====================================
   CONTACT CTA
===================================== */
.contact-cta {
  width: 100%;
  background: #00552e;
  color: #fff;
  padding: 0 0 0 0; }

/* ======================
   上段（タイトル＋リード）
====================== */
.contact-cta__top {
  padding: 60px 20px 40px;
  text-align: center; }

.contact-cta__heading {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 700;
  letter-spacing: .08em; }

.contact-cta__en {
  display: block;
  font-size: 14px;
  letter-spacing: .25em;
  opacity: .6;
  margin-bottom: 10px; }

.contact-cta__lead {
  margin-top: 16px;
  font-size: 15px;
  opacity: .85; }

/* ======================
   下段2列
====================== */
.contact-cta__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr; }

/* ======================
   各CTAブロック
====================== */
.contact-cta__item {
  position: relative;
  display: block;
  min-height: 260px;
  text-decoration: none;
  color: #fff;
  overflow: hidden; }

.contact-cta__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform .6s ease;
  z-index: 0; }

.contact-cta__item--tel::before {
  background-image: url("../img/cta_tel.jpg"); }

.contact-cta__item--mail::before {
  background-image: url("../img/cta_mail.jpg"); }

/* ホバーで拡大 */
.contact-cta__item:hover::before {
  transform: scale(1.08); }

/* 暗幕 */
.contact-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: .3s;
  z-index: 1; }

.contact-cta__item:hover .contact-cta__overlay {
  background: rgba(0, 0, 0, 0.6); }

/* ======================
   中央コンテンツ
====================== */
.contact-cta__body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px; }

.contact-cta__body h3 {
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.2; }

/* 電話番号 */
.contact-cta__tel {
  margin: 0;
  font-size: clamp(18px, 2.3vw, 35px);
  font-weight: 700;
  letter-spacing: .05em; }

/* メールボタン */
.contact-cta__btn {
  margin: 0;
  display: inline-block;
  padding: 10px 22px;
  background: #538C22;
  color: #fff;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  transition: .3s ease; }

.contact-cta__item:hover .contact-cta__btn {
  background: #6ea92e;
  transform: translateY(-2px); }

/* SP */
@media (max-width: 768px) {
  .contact-cta__bottom {
    grid-template-columns: 1fr; }

  .contact-cta__item {
    min-height: 200px; } }
/* ======================
   SP
====================== */
@media (max-width: 768px) {
  .contact-cta__bottom {
    grid-template-columns: 1fr; }

  .contact-cta__item {
    min-height: 200px; }

  .contact-cta__top {
    padding: 50px 20px 30px; } }
/* ========================================
   LP FOOTER
======================================== */
.footer--lp {
  color: #404040;
  padding: 70px 0 20px;
  /* SP */ }
  .footer--lp .footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    align-items: start;
    margin-bottom: 50px; }
  .footer--lp .footer__menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px; }
  .footer--lp .footer__col--logo img {
    width: 260px;
    height: auto;
    display: block; }
  .footer--lp .footer__col--info .footer__info {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    opacity: .85; }
  .footer--lp .footer__col--menu .footer__menu {
    list-style: none;
    padding: 0;
    margin: 0; }
    .footer--lp .footer__col--menu .footer__menu li {
      margin-bottom: 10px; }
    .footer--lp .footer__col--menu .footer__menu a {
      color: #404040;
      text-decoration: none;
      font-size: 18px;
      opacity: .8;
      transition: .3s;
      position: relative; }
      .footer--lp .footer__col--menu .footer__menu a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -4px;
        transform: translateX(-50%);
        width: 0;
        height: 1px;
        background: #538C22;
        transition: .35s ease; }
      .footer--lp .footer__col--menu .footer__menu a:hover::after {
        width: 100%; }
  .footer--lp .footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    opacity: .6; }
    .footer--lp .footer__bottom .footer__copyright {
      font-size: 12px;
      letter-spacing: 2px; }
  @media (max-width: 768px) {
    .footer--lp .footer__top {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center; }
    .footer--lp .footer__col--logo img {
      margin: 0 auto; } }

/* SP固定CTA（下メニュー） */
.menuFixedSP--lp {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(0, 0, 0, 0.08); }

.menuFixedSP--lp ul {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 10px 12px;
  list-style: none; }

.menuFixedSP--lp a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 10px;
  border-radius: 999px;
  background: #0a66c2;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px; }

@media (min-width: 901px) {
  .menuFixedSP--lp {
    display: none; } }
/* PageTop */
.page_top {
  position: fixed;
  right: 24px;
  bottom: 120px;
  width: 48px;
  height: 48px;
  background: #0a66c2;
  border-radius: 50%;
  z-index: 999; }

.page_top a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative; }

.page_top a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-50%, -30%) rotate(45deg); }

/* =========================
  Bukken Grid (5列2段)
========================= */
.bukken-section {
  padding: 24px 0; }
  .bukken-section h2 {
    font-size: clamp(26px, 2.2vw, 35px);
    font-weight: 600;
    margin: 0 0 28px;
    color: #404040;
    position: relative;
    padding-bottom: 12px; }
  .bukken-section h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: #538C22;
    border-radius: 999px; }

.bukken-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px; }

.bukken-card {
  background: #fff;
  overflow: hidden; }

.bukken-card__thumb {
  aspect-ratio: 4 / 3;
  background: #f5f5f5; }
  .bukken-card__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; }

.bukken-card__body {
  padding: 12px 12px 14px;
  display: grid;
  gap: 8px; }

.bukken-card__term {
  display: inline-flex;
  align-self: start;
  width: fit-content;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #984801;
  line-height: 1; }

.bukken-card__place {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #222; }

.bukken-card__price {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #984801; }
  .bukken-card__price.is-empty {
    font-size: 14px;
    font-weight: 700;
    color: #984801; }

.bukken-card__actions {
  margin-top: 4px; }

.bukken-card__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #984801;
  background: #fff;
  color: #984801;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: .2s;
  letter-spacing: 1px;
  box-sizing: border-box; }
  .bukken-card__btn:hover {
    background: #984801;
    color: #fff; }

@media (max-width: 1100px) {
  .bukken-grid {
    grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) {
  .bukken-grid {
    grid-template-columns: repeat(2, 1fr); } }
/* ==========================
   CF7 - TOSO Form
========================== */
.toso-form {
  --accent: #48890F;
  --accent2: #984801;
  --border: rgba(17,24,39,.14);
  --muted: #667085; }
  .toso-form * {
    box-sizing: border-box; }

.toso-form__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px 18px; }

.toso-field.col-6 {
  grid-column: span 6; }

.toso-field.col-12 {
  grid-column: span 12; }

@media (max-width: 768px) {
  .toso-field.col-6 {
    grid-column: span 12; } }
.toso-field {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 16px 14px; }

.toso-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 17px; }

.toso-label .req {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(152, 72, 1, 0.12);
  color: var(--accent2);
  font-weight: 900; }

.toso-sub {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 8px;
  font-weight: 700; }

.toso-input,
.toso-textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 16px;
  outline: none;
  background: #fff; }

.toso-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.8; }

.toso-input:focus,
.toso-textarea:focus {
  border-color: rgba(72, 137, 15, 0.55);
  box-shadow: 0 0 0 4px rgba(72, 137, 15, 0.12); }

.wpcf7-not-valid-tip {
  font-size: 13px;
  margin-top: 8px; }

.wpcf7 form .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 14px; }

.toso-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px; }

.toso-choice .wpcf7-list-item {
  margin: 0 !important; }

.toso-choice .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 14px;
  transition: .2s;
  margin-right: 10px; }

.toso-choice input[type="radio"],
.toso-choice input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent); }

.toso-choice .wpcf7-list-item label:hover {
  border-color: rgba(72, 137, 15, 0.35);
  background: rgba(72, 137, 15, 0.06); }

.toso-address {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 12px; }

@media (max-width: 768px) {
  .toso-address {
    grid-template-columns: 1fr; } }
.toso-form__submit {
  margin-top: 20px;
  text-align: center; }

.toso-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(520px, 100%);
  padding: 18px 22px;
  border-radius: 999px;
  background: var(--accent2);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: .25s; }

.toso-submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px); }

.toso-form__privacy {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7; }

.toso-form__privacy a {
  color: var(--accent2);
  font-weight: 800;
  text-decoration: none; }

.toso-form__privacy a:hover {
  text-decoration: underline; }

/* ==========================
   実績
========================== */
.seiyaku-section {
  padding: 50px 0 !important;
  position: relative;
  /* SOLD */ }
  .seiyaku-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/jisseki_back.jpg") center/cover no-repeat;
    opacity: 0.2;
    z-index: 0; }
  .seiyaku-section .container h2 {
    font-size: clamp(26px, 2.2vw, 35px);
    font-weight: 600;
    margin: 0 0 28px;
    color: #404040;
    position: relative;
    padding-bottom: 12px; }
    .seiyaku-section .container h2:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 80px;
      height: 3px;
      background: #538C22;
      border-radius: 999px; }
  .seiyaku-section .jisseki-item__thumb {
    position: relative;
    overflow: hidden; }
    .seiyaku-section .jisseki-item__thumb img {
      width: 100%;
      height: auto;
      display: block; }
  .seiyaku-section .jisseki-item__sold {
    position: absolute;
    top: 14px;
    left: -40px;
    background: #538C22;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    padding: 6px 60px;
    transform: rotate(-45deg);
    text-align: center; }
  .seiyaku-section .jisseki-item__thumb--ph {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f2f2f2;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #666; }
  .seiyaku-section .jisseki-item__address,
  .seiyaku-section .jisseki-item__baika {
    margin: 0 0 5px 0;
    font-size: 14px;
    line-height: 1.3; }
  .seiyaku-section .jisseki-item__baika {
    margin-bottom: 0;
    font-weight: 700;
    color: #984801;
    font-size: 17px; }

.contacth2 {
  font-size: clamp(26px, 2.2vw, 35px);
  font-weight: 600;
  margin: 0 0 28px;
  color: #404040;
  position: relative;
  padding-bottom: 12px; }
  .contacth2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: #538C22;
    border-radius: 999px; }

.contacttext {
  margin: 40px 0;
  line-height: 2;
  font-size: 17px; }

.jisseki-item__syubetsu {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 10px; }

.syubetsu-cyuko {
  background: #eef3f7;
  color: #3c5f7b; }

.syubetsu-shinchiku {
  background: #eaf7ef;
  color: #2d7a45; }

.syubetsu-tochi {
  background: #f7efe8;
  color: #8a5a2b; }

.syubetsu-mansion {
  background: #f1ecf8;
  color: #5b3b73; }

/* =====================================
   CF7 ボタンデザイン
===================================== */
.wpcf7-form {
  /* ===== 送信ボタン（メイン） ===== */
  /* ===== 戻るボタン（サブ） ===== */
  /* ===== 並び調整 ===== */ }
  .wpcf7-form .wpcf7-submit,
  .wpcf7-form .wpcf7-previous {
    appearance: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 16px 40px;
    border-radius: 50px;
    transition: all .3s ease; }
  .wpcf7-form .wpcf7-submit {
    background: linear-gradient(135deg, #538C22, #6ea92e);
    color: #fff;
    box-shadow: 0 8px 18px rgba(83, 140, 34, 0.3); }
    .wpcf7-form .wpcf7-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 22px rgba(83, 140, 34, 0.45); }
    .wpcf7-form .wpcf7-submit:active {
      transform: translateY(0);
      box-shadow: 0 6px 14px rgba(83, 140, 34, 0.25); }
  .wpcf7-form .wpcf7-previous {
    background: #f2f2f2;
    color: #333;
    margin-right: 15px; }
    .wpcf7-form .wpcf7-previous:hover {
      background: #e6e6e6; }
  .wpcf7-form .wpcf7-submit + .wpcf7-previous,
  .wpcf7-form .wpcf7-previous + .wpcf7-submit {
    margin-left: 15px; }

/* ===== PC：右追従バナー ===== */
.line-floating {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 300px;
  z-index: 999;
  transition: transform .2s ease; }

.line-floating img {
  width: 100%;
  height: auto;
  display: block; }

.line-floating:hover {
  transform: translateY(-4px); }

/* ===== SP：下固定バナー ===== */
@media (max-width: 768px) {
  .line-floating {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%; }

  .line-floating img {
    width: 100%; } }
@media (max-width: 768px) {
  footer {
    padding-bottom: 100px !important; } }
@media (max-width: 768px) {
  .line-floating {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px; }

  .line-floating img {
    width: 100%;
    height: 100%;
    object-fit: cover; } }
.ceo {
  padding: 80px 0;
  background: #f7f7f7; }
  .ceo__inner {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: center; }
  .ceo__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; }
  .ceo__lead {
    font-size: clamp(26px, 2.4vw, 36px);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 28px; }
  .ceo__company {
    font-size: 14px;
    letter-spacing: .15em;
    color: #777;
    margin-bottom: 6px; }
  .ceo__name {
    font-size: 25px;
    font-weight: 700;
    margin: 0; }
  .ceo__text {
    font-size: 17px;
    line-height: 1.9;
    color: #333; }

/* SP */
@media (max-width: 768px) {
  .ceo {
    padding: 60px 0; }
    .ceo__inner {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center; }
    .ceo__lead {
      font-size: 24px; } }
.line-message {
  position: relative;
  background: #06C755;
  color: #fff;
  padding: 20px 0; }
  .line-message__title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 3px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 0; }
  .line-message__text {
    font-size: clamp(15px, 1.6vw, 20px); }

.line-message__inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  position: relative; }

.line-message__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto; }

/* 社長 */
.line-message__ceo {
  position: absolute;
  right: -100px;
  bottom: -200px;
  z-index: 3; }

.line-message__ceo img {
  height: 550px;
  width: auto;
  display: block; }

@media (max-width: 768px) {
  .line-message {
    padding-bottom: 0; }

  .line-message__content {
    text-align: center; }

  .line-message__ceo {
    position: relative;
    /* absolute解除 */
    right: auto;
    bottom: auto;
    text-align: center;
    /* 中央 */
    margin-top: 30px; }

  .line-message__ceo img {
    height: 260px;
    width: auto;
    margin: 0 auto;
    /* 念のため中央 */
    display: block; }

  .line-message__title {
    font-size: 3rem; }
  .line-message__text {
    font-size: 1.5rem; } }
.seiyaku-section {
  overflow: hidden; }

.jisseki-slider-wrap {
  position: relative;
  padding: 0 8px 28px; }

.jisseki-slider {
  overflow: hidden; }

.jisseki-slider .swiper-wrapper {
  align-items: stretch; }

.jisseki-slider .swiper-slide {
  height: auto; }

.jisseki-item {
  height: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  overflow: hidden;
  box-sizing: border-box; }
  .jisseki-item__title {
    padding: 18px 18px 8px;
    margin: 0;
    font-size: 20px;
    line-height: 1.5; }
  .jisseki-item__syubetsu {
    display: inline-block;
    margin: 0 18px 12px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.4;
    background: #f3f3f3; }
  .jisseki-item__thumb {
    position: relative; }
    .jisseki-item__thumb img {
      display: block;
      width: 100%;
      height: auto; }
  .jisseki-item__sold {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #111;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 999px; }
  .jisseki-item__address, .jisseki-item__baika, .jisseki-item__comment {
    padding: 0 18px;
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.8; }
  .jisseki-item__comment {
    padding-bottom: 18px; }

.jisseki-slider-wrap .swiper-button-prev,
.jisseki-slider-wrap .swiper-button-next {
  width: 40px;
  height: 40px;
  margin-top: 0;
  top: 42%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  color: #333;
  z-index: 10; }
  .jisseki-slider-wrap .swiper-button-prev::after,
  .jisseki-slider-wrap .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700; }
.jisseki-slider-wrap .swiper-button-prev {
  left: 0; }
.jisseki-slider-wrap .swiper-button-next {
  right: 0; }
.jisseki-slider-wrap .swiper-pagination {
  bottom: 0 !important; }

@media (max-width: 767px) {
  .jisseki-item__title {
    padding: 14px 14px 6px;
    font-size: 16px; }
  .jisseki-item__syubetsu {
    margin: 0 14px 10px;
    font-size: 11px; }
  .jisseki-item__address, .jisseki-item__baika, .jisseki-item__comment {
    padding: 0 14px;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.65; }
  .jisseki-item__comment {
    padding-bottom: 14px; }
  .jisseki-item__sold {
    top: 8px;
    left: 8px;
    font-size: 10px;
    padding: 5px 8px; }

  .jisseki-slider-wrap .swiper-button-prev,
  .jisseki-slider-wrap .swiper-button-next {
    width: 34px;
    height: 34px; }
    .jisseki-slider-wrap .swiper-button-prev::after,
    .jisseki-slider-wrap .swiper-button-next::after {
      font-size: 12px; } }
