@charset "utf-8";

:root {
  --lbeige: #f7f4ea;
  --deepgreen: #11483d;
  --lp-navy: #17354b;
  --green: #0f7a65;
  --goldorange:#c8941f;
}

/**************************************************
CTA
**************************************************/
.lp-cta-button-wrap {
  padding: 46px 0;
  text-align: center;
  /* background: #fff; */
}

.lp-cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: min(92%, 720px);
  min-height: 126px;
  padding: 30px 88px 26px 34px;
  border-radius: 22px;
  text-decoration: none;
  color: #fff;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.58) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, #f4c21f 0%, #e2a600 48%, #c98500 100%);
  box-shadow:
    0 12px 22px rgba(95, 69, 0, .28),
    inset 0 2px 4px rgba(255,255,255,.65),
    inset 0 -4px 8px rgba(103, 69, 0, .24);
  overflow: visible;
}

.lp-cta-button::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.38);
  pointer-events: none;
}

.lp-cta-button__sub {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 360px;
  padding: 7px 28px 8px;
  background: #fff;
  color: var(--deepgreen);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

.lp-cta-button__sub::before,
.lp-cta-button__sub::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 2px;
  background: var(--deepgreen);
  vertical-align: middle;
}

.lp-cta-button__sub::before {
  margin-right: 14px;
  transform: rotate(50deg);
}

.lp-cta-button__sub::after {
  margin-left: 14px;
  transform: rotate(-50deg);
}

.lp-cta-button__icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fffdf2;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(17,72,61,.12);
  position: relative;
}

.lp-cta-button__icon::before {
  content: "✉";
  color: var(--deepgreen);
  font-size: 42px;
  line-height: 1;
}

.lp-cta-button__icon::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 20px;
  width: 18px;
  height: 18px;
  border-top: 3px solid #f1b500;
  border-left: 3px solid #f1b500;
  transform: rotate(16deg);
}

.lp-cta-button__text {
  position: relative;
  display: inline-block;
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .08em;
  text-shadow: 0 2px 4px rgba(75, 45, 0, .22);
  font-family: serif;
}

.lp-cta-button__text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(
    90deg,
    rgba(255,255,255,.95) 0 42%,
    transparent 42% 58%,
    rgba(255,255,255,.95) 58% 100%
  );
  background-size: 10px 2px;
  opacity: .7;
}

.lp-cta-button__arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translateY(-50%);
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 50%;
}

.lp-cta-button__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.lp-cta-button:hover {
  /* opacity: 0.5; */
  box-shadow: 0 0 15px #000;
}

@media (max-width: 767px) {
  .lp-cta-button-wrap {
    padding: 36px 0;
  }

  .lp-cta-button {
    width: 92%;
    min-height: 100px;
    gap: 16px;
    padding: 28px 58px 22px 18px;
    border-radius: 18px;
  }

  .lp-cta-button__sub {
    min-width: 280px;
    font-size: 11px;
    padding: 6px 16px;
    top: -15px;
    letter-spacing: .06em;
  }

  .lp-cta-button__sub::before,
  .lp-cta-button__sub::after {
    width: 9px;
    margin-inline: 8px;
  }

  .lp-cta-button__icon {
    width: 58px;
    height: 58px;
  }

  .lp-cta-button__icon::before {
    font-size: 30px;
  }

  .lp-cta-button__icon::after {
    top: 9px;
    left: 14px;
    width: 13px;
    height: 13px;
  }

  .lp-cta-button__text {
    font-size: clamp(22px, 7vw, 30px);
    letter-spacing: .04em;
  }

  .lp-cta-button__arrow {
    right: 16px;
    width: 38px;
    height: 38px;
  }

  .lp-cta-button__arrow::before {
    width: 11px;
    height: 11px;
    border-width: 2px;
  }
}




/**************************************************
FV
**************************************************/
.dm-fv {
  background: var(--lbeige);
  color: #173c34;
  padding: 0;
}

.dm-fv__bg {
  min-height: 640px;
  background-size: cover;
  background-position: center right;
  position: relative;
  display: flex;
  align-items: center;
}

.dm-fv__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 244, 234, 0.35) 0%,
    rgba(247, 244, 234, 0.18) 42%,
    rgba(247, 244, 234, 0) 72%
  );
}

.dm-fv__inner {
  width: min(92%, 1020px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 78px 0 62px;
}

.dm-fv__label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 34px;
  color: #2b5a52;
  background: rgba(255,255,255,.88);
  padding: 6px 14px;
}

.dm-fv__title {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.55;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--lp-navy);
  font-family: serif;
  position: relative;

  /* 白いぼかし影 */
  text-shadow:
    0 0 12px rgba(255,255,255,.95),
    0 0 24px rgba(255,255,255,.88),
    0 6px 20px rgba(255,255,255,.72);
}

/* .dm-fv__title::after {
  content: "";
  position: absolute;
  left: -28px;
  right: -40px;
  bottom: -12px;
  height: 58%;
  background: rgba(255,255,255,.72);
  filter: blur(18px);
  z-index: -1;
} */

.dm-fv__subtitle span {
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.55;
  letter-spacing: 0.06em;
  background-color: var(--deepgreen);
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 3px 10px;
  margin-bottom: 5px;
}

.dm-fv__lead {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 2.05;
  letter-spacing: .06em;
  margin: 0 0 36px;
  color: var(--lp-navy);
  font-weight: bold;
  padding: 5px 10px;
}

.dm-fv__points {
  display: flex;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: nowrap;
}

.dm-fv__points li {
  max-width: 176px;
  min-height: 88px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(211, 176, 92, .45);
  border-radius: 4px;
  padding: 12px 14px 10px 14px !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  /* display: flex; */
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  width: 100%;
  text-align: center; /* ←追加 */
}


.dm-fv__points-iconinner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.dm-fv__points-text {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  width: fit-content;
  margin-inline: auto;
}

.dm-fv__point-icon {
  /* position: absolute; */
  position: relative;
  /* left: 14px; */
  /* top: 14px; */
  color: #d5a733;
  font-size: 22px;
  line-height: 1;
}

.dm-fv__point-label {
  display: block;
  /* padding-left: 36px; */
  min-height: 34px;
  font-size: 11px;
  line-height: 1.45;
  color: #333;
  font-weight: 600;
  text-align: center; /* ←追加 */
}

.dm-fv__points strong {
  display: inline-block;
  margin-top: 8px;
  font-size: 34px;
  line-height: 1;
  color: #d49a23;
  font-family: serif;
  font-weight: 600;
  letter-spacing: .03em;
}

.dm-fv__points small {
  margin-left: 5px;
  color: #7a5a17;
  font-size: 13px;
}

.dm-fv__catch {
  background: linear-gradient(135deg, #123a50 0%, #15543a 100%);
  color: #fff;
  padding: 36px 0 42px;
}

.dm-fv__catch-inner {
  width: min(92%, 1020px);
  margin: 0 auto;
  color: #fff;
}

.dm-fv__catch h2 {
  font-size: clamp(32px, 4vw, 49px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  color: #fff;
  font-family: serif;
  text-align: left;
}

.dm-fv__catch p {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.9;
  letter-spacing: .04em;
  margin: 0 0 4px;
  color: rgba(255,255,255,.92);
  text-align: left;
}

.dm-fv__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(92%, 560px);
  margin: 26px auto 0;
  padding: 18px 28px;
  background: linear-gradient(90deg, #e5a900 0%, #f2d95b 100%);
  color: #fff;
  text-decoration: none;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  font-family: serif;
}

@media (max-width: 767px) {
  .dm-fv__bg {
    min-height: auto;
    background-position: center right;
  }

  .dm-fv__bg::before {
    background: rgba(247, 244, 234, 0.78);
  }

  .dm-fv__inner {
    padding: 58px 0 54px;
  }

  .dm-fv__title {
    font-size: 27px;
  }

  .dm-fv__points {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .dm-fv__points li {
    width: 100%;
  }

  .dm-fv__catch {
    padding: 34px 0 40px;
  }

  .dm-fv__catch h2,
  .dm-fv__catch p {
    text-align: center;
  }

  .dm-fv__btn {
    width: 100%;
    font-size: 24px;
  }
}

@media screen and (min-width:525px) and (max-width:767px) {
  .dm-fv__points {
    flex-direction: row;
  }

.dm-fv__points li {
  width: 30%;
}
}


/**************************************************
こんなお悩みありませんか？
**************************************************/

.lp-worries {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #aaa 100%
  );
  overflow: hidden;
  position: relative;
  padding: 0;
}

.lp-worries__inner {
  width: min(92%, 1020px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.lp-worries__image {
  width: 100%;
  opacity: 0.78;
  align-self: flex-end;
  position: absolute;
  top: 0;
  height: 100%;
}

.lp-worries__image img {
  width: 100%;
  height: 100%;
  /* display: block; */
  object-fit: cover;
}

.lp-worries__content {
  width: 58%;
  padding: 0 0 100px 0;
}

.lp-worries__title {
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 36px;
  color: #111;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
  margin-top: 100px;
}

.lp-worries__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lp-worries__item {
  background: #f8faf8;
  backdrop-filter: blur(4px);
  padding: 20px 28px;
  line-height: 1.4;
  color: var(--deepgreen);
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.24);
}

.lp-worries__item strong {
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 500;
  color: #35524c;
  font-family: serif;
}

.lp-worries__item span {
  font-size: clamp(20px, 1.5vw, 30px);
}

.lp-worries__item .small {
  font-size: 22px;
}

/* SP */
@media (max-width: 767px) {

  .lp-worries__inner {
    flex-direction: column;
    gap: 0;
  }

  .lp-worries__image {
    width: 100%;
    /* max-width: 420px; */
    /* margin-top: 40px; */
    opacity: .4;
    /* margin-bottom: -60px; */
    height: 100%;
  }

  .lp-worries__content {
    width: 100%;
    padding: 40px 0 70px;
    position: relative;
    z-index: 2;
  }

  .lp-worries__title {
    text-align: center;
    margin-bottom: 28px;
    font-size: 26px;
  }

  .lp-worries__item {
    padding: 18px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .lp-worries__item strong {
    font-size: 28px;
  }

  .lp-worries__item span,
  .lp-worries__item .small {
    font-size: 16px;
  }
}

@media screen and (max-width:425px) {
  .lp-worries__item strong {
        font-size: 19px;
    }
}

/**************************************************
手書きDMが選ばれる理由
**************************************************/
.lp-reason {
  /* background: var(--lbeige); */
  padding: 90px 0 80px;
  color: #173c34;
  overflow: hidden;
}

.lp-reason__inner {
  width: min(92%, 1020px);
  margin: 0 auto;
}

.lp-reason__head {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: start;
  gap: 48px;
  position: relative;
}

.lp-reason__en {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #31584f;
  margin: 0 0 18px;
}

.lp-reason__en::before,
.lp-reason__en::after {
  content: "";
  width: 46px;
  height: 1px;
  background: #31584f;
}

.lp-reason__title {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 38px;
  color: var(--deepgreen);
  font-family: serif;
}

.lp-reason__copy {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.65;
  letter-spacing: 0.06em;
  margin: 0 0 30px;
  color: #203b36;
  font-family: serif;
  font-weight: bold;
}

.lp-reason__copy span {
  color: var(--goldorange);
  font-size: 1.15em;
}

.lp-reason__lead {
  font-size: clamp(15px, 2vw,22px);
  line-height: 2.1;
  margin: 0 0 18px;
  color: var(--deepgreen);
  font-weight: 700;
}

.lp-reason__visual {
  position: relative;
  padding-top: 10px;
}

.lp-reason__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.lp-reason__voice {
  margin: 70px auto 0;
  background: #f8faf8;
  border: 1px solid rgba(23, 60, 52, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  padding: 34px 40px 28px;
  max-width: 960px;
  text-align: center;
}

.lp-reason__voice-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--deepgreen);
  margin: 0 0 26px;
  font-weight: 600;
}

.lp-reason__voice-title::before {
  content: "♟";
  font-size: 22px;
  color: var(--deepgreen);
}

.lp-reason__voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
}

.lp-reason__voice-item {
  background: #fff;
  border: 1px solid rgba(23, 60, 52, 0.08);
  padding: 24px 18px 22px;
  min-height: 132px;
}

.lp-reason__icon {
  width: 32px;
  height: 32px;
  background: #2f8b6f;
  border-radius: 50%;
  margin: 0 auto 14px;
  position: relative;
}

.lp-reason__icon::before {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.lp-reason__voice-item p {
  margin: 0;
  font-size: 22px;
  line-height: 1.8;
  color: var(--deepgreen);
  font-style: italic;
  text-align: center !important;
}

.lp-reason__voice-bottom {
  font-size: 14px;
  margin: 24px 0 0;
  color: #314540;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .lp-reason {
    padding: 70px 0 60px;
  }

  .lp-reason__head {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lp-reason__text {
    order: 2;
  }

  .lp-reason__visual {
    order: 1;
    height: 100%;
    max-height: 250px;
  }

  .lp-reason__en {
    justify-content: center;
  }

  .lp-reason__title,
  .lp-reason__copy {
    text-align: center;
  }

  .lp-reason__voice {
    margin-top: 48px;
    padding: 28px 18px 24px;
  }

  .lp-reason__voice-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lp-reason__voice-item {
    min-height: auto;
  }

  .sp-only {
    display: block;
  }
}

/**************************************************
実際に届いた声と数字で見る変化
**************************************************/
.lp-results {
  background: var(--lbeige);
  padding: 90px 0;
  color: #173c34;
}

.lp-results__inner {
  width: min(92%, 1020px);
  margin: 0 auto;
}

.lp-results__head {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}

.lp-results__en {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #31584f;
  margin: 0 0 18px;
}

.lp-results__en::before,
.lp-results__en::after {
  content: "";
  width: 46px;
  height: 1px;
  background: #31584f;
}

.lp-results__title {
  font-size: clamp(30px, 5vw, 64px);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin: 0 0 20px;
  color: var(--deepgreen);
  font-family: serif;
}

.lp-results__lead {
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

.lp-results__house img {
  width: 100%;
  display: block;
}

.lp-results__case {
  background: #fff;
  border: 1px solid rgba(23, 60, 52, 0.16);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
}

.lp-results__case-head {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--deepgreen);
  color: #fff;
  padding: 16px 24px;
}

.lp-results__case-head span {
  background: #fff;
  color: var(--deepgreen);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
}

.lp-results__case-head p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  letter-spacing: .04em;
}

.lp-results__case-body {
  padding: 34px 36px 38px;
}

.lp-results__summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.lp-results__summary > p {
  font-size: 21px;
  line-height: 1.9;
  margin: 0;
  font-weight: 600;
}

.lp-results__summary span {
  color: var(--goldorange);
  font-size: 1.2em;
}

.lp-results__memo {
  background: #f6f1df;
  border: 1px solid #d8c17b;
  /* transform: rotate(-2deg); */
  padding: 20px 22px;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.lp-results__memo p {
  margin: 0;
  font-size: 20px;
  text-align: center !important;
  line-height: 1.8;
}

.lp-results__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr 180px;
  gap: 20px;
  align-items: stretch;
}

.lp-results__before,
.lp-results__after {
  border: 1px solid rgba(23, 60, 52, 0.14);
  background: #fbfcfb;
}

.lp-results__before h3,
.lp-results__after h3 {
  margin: 0;
  padding: 12px;
  font-size: 16px;
  text-align: center;
  color: #fff;
}

.lp-results__before h3 {
  background: #6e776f;
}

.lp-results__after h3 {
  background: var(--green);
}

.lp-results__before dl,
.lp-results__after dl {
  margin: 0;
  padding: 18px 20px;
}

.lp-results__before dl div,
.lp-results__after dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(23, 60, 52, 0.08);
}

.lp-results__before dl div:last-child,
.lp-results__after dl div:last-child {
  border-bottom: 0;
}

.lp-results__before dt,
.lp-results__after dt {
  font-size: 14px;
}

.lp-results__before dd,
.lp-results__after dd {
  margin: 0;
  font-size: 14px;
}

.lp-results__before dd strong,
.lp-results__after dd strong {
  font-size: 34px;
  font-family: serif;
  font-weight: 600;
}

.lp-results__after dd strong {
  color: var(--goldorange);
}

.lp-results__rate {
  width: 138px;
  height: 138px;
  border: 4px solid #d4a534;
  border-radius: 50%;
  aspect-ratio: auto;
  display: grid;
  place-content: center;
  text-align: center;
  align-self: center;
  justify-content: center;
  background: #fffdf6;
}

.lp-results__rate p {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--deepgreen);
}

.lp-results__rate strong {
  font-size: 30px;
  line-height: 1;
  color: var(--goldorange);
  font-family: serif;
}

.lp-results__rate strong span {
  font-size: 15px;
}

.lp-results__rate small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

@media screen and (max-width:768px) {
  .lp-results__memo p {
    text-align: left !important;
    font-size: 16px;
  }

  .lp-results__summary {
    grid-template-columns: 1fr;
  }

   .lp-results__head {
    grid-template-columns: 1fr;
  }

  .lp-results__numbers {
    
  }



}

@media (max-width: 767px) {
  .lp-results {
    padding: 64px 0;
  }

  .lp-results__case-head {
    display: block;
    padding: 18px;
  }

  .lp-results__case-head span {
    display: inline-block;
    margin-bottom: 10px;
  }

  .lp-results__case-head p {
    font-size: 16px;
    line-height: 1.6;
  }

  .lp-results__numbers {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lp-results__before dl,
  .lp-results__after dl {
    padding: 14px 18px;
  }

  .lp-results__before dl div,
  .lp-results__after dl div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .lp-results__before dt,
  .lp-results__after dt {
    writing-mode: horizontal-tb;
    font-size: 15px;
  }

  .lp-results__before dd,
  .lp-results__after dd {
    writing-mode: horizontal-tb;
  }

  .lp-results__rate {
    margin: 8px auto 0;
    width: 136px;
    height: 136px;
  }
}


/* ----------------------
 発送後の反響
---------------------- */

.lp-results__notice {
  background: linear-gradient(
    135deg,
    #f7f3e8 0%,
    #f3ecdb 100%
  );
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 34px 0 40px;
}

.lp-results__notice-icon {
  width: 58px;
  height: 58px;
  border: 3px solid #1d6455;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d6455;
  font-size: 30px;
  font-weight: 700;
  flex-shrink: 0;
}

.lp-results__notice p {
  margin: 0;
  font-size: clamp(24px, 2vw, 40px);
  line-height: 1.6;
  color: #222;
  font-family: serif;
}

.lp-results__notice span {
  color: #d68c19;
  font-size: 1.18em;
  font-weight: 700;
}


/* ----------------------
 切り替えタブ
---------------------- */

.lp-results__tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 0;
}

.lp-results__tab {
  appearance: none;
  border: 1px solid rgba(23, 60, 52, 0.18);
  background: #fff;
  color: var(--deepgreen);
  padding: 13px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.lp-results__tab.is-active {
  background: var(--deepgreen);
  color: #fff;
}

.lp-results__case {
  display: none;
}

.lp-results__case.is-active {
  display: block;
}

.lp-results-trust {
  margin-top: 48px;
}

.lp-results__case-text {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 2;
  font-weight: 600;
  color: #173c34;
}

.lp-results__case-text span {
  color: var(--goldorange);
  font-size: 1.08em;
}

.lp-results__simple-result {
  /* background: #fbfcfb;
  border: 1px solid rgba(23, 60, 52, 0.14);
  padding: 24px 28px;*/
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 0 28px;
}

.lp-results__simple-result h3 {
  /* margin: 0 0 16px;
  padding: 10px 16px;
  display: inline-block; */
  display: block;
  margin: 0;
  padding: 12px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: var(--green);
}

.lp-results__simple-result ul {
  /* padding: 0; */
  margin: 0;
  padding: 18px 20px;
  list-style: none;
  border: 1px solid rgba(23, 60, 52, 0.14);
  background: #fbfcfb;
}

.lp-results__simple-result li {
  /* padding: 10px 0; */
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(23, 60, 52, 0.08);
  font-size: 14px;
}

.lp-results__simple-result li:last-child {
  border-bottom: 0;
}

.lp-results__simple-result strong {
  color: var(--goldorange);
  /* font-size: 1.4em;
  font-family: serif; */
  font-size: 34px;
  line-height: 1;
  font-family: serif;
  font-weight: 600;
}

.lp-results__memo--wide {
  max-width: 680px;
  margin: 0 auto;
  /* transform: rotate(-1deg); */
}

@media (max-width: 767px) {
  .lp-results__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-results__tab {
    padding: 12px 8px;
    font-size: 13px;
  }

  .lp-results__case-body {
    padding: 26px 18px 30px;
  }

  .lp-results__case-text {
    font-size: 16px;
  }

  .lp-results__rate {
    width: 128px;
    height: 128px;
  }
}

/* ----------------------
 信頼関係ブロック
---------------------- */

.lp-results-trust {
  background: #fff;
  border: 1px solid #e7dfd0;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,.05);
  padding: 60px 50px 50px;
}

.lp-results-trust__title {
  text-align: center;
  margin: 0 0 50px;
  font-size: clamp(32px, 3vw, 54px);
  line-height: 1.8;
  font-weight: 500;
  color: #1f5349;
  font-family: serif;
}

.lp-results-trust__title span {
  text-decoration: underline;
  text-decoration-color: #c7d4cb;
  text-underline-offset: 8px;
}

.lp-results-trust__voices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lp-results-trust__voice {
  background: #fff;
  border: 1px solid #e8e6df;
  border-radius: 20px;
  min-height: 160px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.lp-results-trust__icon {
  width: 70px;
  flex-shrink: 0;
}

.lp-results-trust__icon span {
  font-size: 56px;
  color: #356c5d;
}

.lp-results-trust__icon span i {
  color: var(--deepgreen);
}

.lp-results-trust__text strong {
  display: block;
  font-size: clamp(24px, 1.8vw, 36px);
  line-height: 1.7;
  font-family: serif;
  color: #1e544a;
  font-weight: bold;
}

.lp-results-trust__text small {
  display: block;
  margin-top: 8px;
  text-align: right;
  font-size: 18px;
  color: #444;
}

.lp-results-trust__arrow {
  width: 0;
  height: 0;
  margin: 42px auto;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-top: 30px solid #efe7d0;
}

.lp-results-trust__bottom {
  border-top: 1px solid #ece7d8;
  padding-top: 44px;
  text-align: center;
}

.lp-results-trust__bottom p {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 48px);
  line-height: 1.9;
  font-family: serif;
  font-weight: bold;
}

.lp-results-trust__bottom span {
  color: var(--goldorange);
  font-size: 1.15em;
}

/* .lp-results-trust__line {
  width: 220px;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--goldorange) 0%,
    #d7bc77 100%
  );
  border-radius: 999px;
  margin: 26px auto 0;
} */


/* ----------------------
Case02・03 レイアウト改善
---------------------- */

.lp-results__case-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 32px;
}

.lp-results__case-image {
  overflow: hidden;
  min-height: 340px;
  background: #eee;
}

.lp-results__case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 結果ボックスを縦中央寄せ */
.lp-results__simple-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 横長感を軽減 */
.lp-results__simple-result ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 数字を少し目立たせる */
.lp-results__simple-result li {
  align-items: center;
  font-size: 15px;
}

.lp-results__simple-result strong {
  min-width: 54px;
  text-align: right;
}

/* SP */
@media (max-width: 767px) {

  .lp-results__notice {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .lp-results-trust {
    padding: 36px 22px;
  }

  .lp-results-trust__title {
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .lp-results-trust__voices {
    grid-template-columns: 1fr;
  }

  .lp-results-trust__voice {
    min-height: auto;
    padding: 24px 20px;
    gap: 16px;
  }

  .lp-results-trust__icon span {
    font-size: 42px;
  }

  .lp-results-trust__text small {
    text-align: left;
  }

  .lp-results-trust__bottom p {
    line-height: 1.7;
  }

  .lp-results__case-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lp-results__case-image {
    min-height: 220px;
  }
}

/**************************************************
なぜ反響につながるのか？
**************************************************/
.lp-why-response {
  background: #edf4f2;
  color: #173c34;
}

.lp-why-response__title-area {
  background: linear-gradient(90deg, var(--deepgreen) 0%, #102d45 100%);
  padding: 28px 20px 30px;
  text-align: center;
}

.lp-why-response__title-area h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.4;
  letter-spacing: .08em;
  font-family: serif;
  font-weight: 600;
}

.lp-why-response__visual {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: #eaf1ef;
}

.lp-why-response__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(237, 244, 242, 0) 0%,
    rgba(237, 244, 242, 0.2) 28%,
    rgba(237, 244, 242, 0.88) 45%,
    rgba(237, 244, 242, 1) 100%
  );
  pointer-events: none;
}

.lp-why-response__visual img {
  width: 62%;
  height: 530px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lp-why-response__copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 42%;
}

.lp-why-response__copy p {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 56px);
  line-height: 1.8;
  color: #173c34;
  letter-spacing: .08em;
  font-family: serif;
  font-weight: 600;
  text-shadow: 0 0 30px #fff;
}

.lp-why-response__copy span {
  font-size: 1.00em;
  display: inline-block;
  padding: 0px 15px;
  background: #FFF;
  border-bottom: 3px solid var(--deepgreen);
  color: var(--deepgreen);
}

.lp-why-response__inner {
  width: min(92%, 1020px);
  margin: 0 auto;
  padding: 46px 0 80px;
}

.lp-why-response__lead p {
  margin: 0 0 30px;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 2;
}

.lp-why-response__worry-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.lp-why-response__worry {
  background: #fff;
  border: 2px solid #78908b;
  min-height: 116px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 1.35;
  color: var(--deepgreen);
  font-family: serif;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 20px 0;
}

.lp-why-response__note {
  margin: 0 0 40px;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.8;
}

.lp-why-response__box {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.94) 100%),
    url("../img/why-response-bg.jpg");
  background-size: cover;
  background-position: center;
  border: 2px solid #b68b28;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(88, 66, 14, .12);
  padding: 44px 42px 42px;
  text-align: center;
  overflow: hidden;
}

.lp-why-response__box::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -60px;
  height: 150px;
  background: rgba(209, 224, 213, .7);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.lp-why-response__box > * {
  position: relative;
  z-index: 1;
}

.lp-why-response__box-top {
  margin: 0 0 16px;
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.8;
  color: #173c34;
  letter-spacing: .08em;
  font-family: serif;
}

.lp-why-response__icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 32px;
  box-shadow: 0 0 0 1px rgba(23, 60, 52, .18);

  display: none;
}

.lp-why-response__icon i {
  color: var(--deepgreen);
}

/* .lp-why-response__icon::before,
.lp-why-response__icon::after {
  content: "";
  position: absolute;
  top: 96px;
  width: 28%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b68b28, transparent);
}

.lp-why-response__icon::before {
  left: 18%;
}

.lp-why-response__icon::after {
  right: 18%;
} */

.lp-why-response__main-message {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.45;
  color: var(--deepgreen);
  font-family: serif;
  font-weight: 600;
  letter-spacing: .06em;
}

.lp-why-response__sub-message {
  margin: 8px 0 22px;
  font-size: clamp(20px, 2vw, 34px);
  line-height: 1.6;
  color: #222;
  font-family: serif;
  font-weight: 600;
}

.lp-why-response__green-message {
  display: inline-block;
  margin: 0;
  padding: 16px 52px;
  background: linear-gradient(90deg, #0f4f3d 0%, #0a4638 100%);
  color: #fff;
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1.35;
  font-family: serif;
  font-weight: 600;
  letter-spacing: .05em;
  transform: skewX(-5deg);
  box-shadow: 0 4px 0 #d2ae4c;
}

.lp-why-response__bottom {
  margin: 22px 0 0;
  font-size: clamp(20px, 2vw, 34px);
  line-height: 1.6;
  color: #222;
  font-family: serif;
  font-weight: 600;
}

/* SP */
@media (max-width: 767px) {
  .lp-why-response__title-area {
    padding: 22px 16px;
  }

  .lp-why-response__visual {
    min-height: 420px;
  }

  .lp-why-response__visual img {
    width: 100%;
    height: 420px;
    opacity: .38;
  }

  .lp-why-response__visual::after {
    background: rgba(237, 244, 242, .55);
  }

  .lp-why-response__copy {
    width: 90%;
    right: 5%;
    text-align: center;
  }

  .lp-why-response__copy p {
    font-size: 6.8vw;
    line-height: 1.75;
  }

  .lp-why-response__inner {
    padding: 36px 0 60px;
  }

  .lp-why-response__worry-list {
    grid-template-columns: 1fr;
  }

  .lp-why-response__worry {
    min-height: 88px;
    font-size: 26px;
  }

  .lp-why-response__box {
    padding: 34px 18px 36px;
  }

  .lp-why-response__icon::before,
  .lp-why-response__icon::after {
    display: none;
  }

  .lp-why-response__green-message {
    display: block;
    padding: 14px 16px;
    font-size: 29px;
  }
}

/**************************************************
こんなエリア・案件にお勧め
**************************************************/
.lp-recommend {
  background: #edf4f2;
  padding: 72px 0 78px;
  color: #173c34;
  background: var(--deepgreen);
}

.lp-recommend__inner {
  width: min(92%, 1020px);
  margin: 0 auto;
  /* background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 35%),
    linear-gradient(135deg, #0d4739 0%, #072f27 100%); */
  /* border-radius: 18px; */
  /* padding: 46px 34px 34px; */
  /* box-shadow:
    0 16px 34px rgba(0,0,0,.16),
    inset 0 0 0 1px rgba(255,255,255,.14); */
  position: relative;
}

.lp-recommend__title {
  position: relative;
  text-align: center;
  color: #fff;
  margin: 0 0 36px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.4;
  letter-spacing: .08em;
  font-family: serif;
  font-weight: 600;
}

.lp-recommend__title::before,
.lp-recommend__title::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background: var(--goldorange);
  vertical-align: middle;
}

.lp-recommend__title::before {
  margin-right: 22px;
}

.lp-recommend__title::after {
  margin-left: 22px;
}

.lp-recommend__title span {
  color: #d7a732;
}

.lp-recommend__title span::after {
  /* content: ""; */
  /* position: absolute; */
  /* left: 50%; */
  /* bottom: -22px; */
  /* width: 180px; */
  /* height: 1px; */
  /* background: var(--goldorange); */
  /* transform: translateX(-50%); */
}

.lp-recommend__inner::after {
  /* content: ""; */
  /* position: absolute; */
  /* top: 124px; */
  /* left: 50%; */
  /* width: 22px; */
  /* height: 22px; */
  /* border-right: 2px solid var(--goldorange); */
  /* border-bottom: 2px solid var(--goldorange); */
  /* transform: translateX(-50%) rotate(45deg); */
  /* background: #0d4739; */
  /* z-index: 2; */
}

.lp-recommend__box {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  box-shadow:
    inset 0 0 18px rgba(23,60,52,.06),
    0 8px 20px rgba(0,0,0,.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16), inset 0 0 0 1px rgba(255, 255, 255, .14);
}

.lp-recommend__item {
  min-height: 150px;
  display: grid;
  grid-template-columns: 44px 1fr 70px;
  align-items: center;
  gap: 18px;
  padding: 24px 36px;
  border-bottom: 1px dashed #d8d8d0;
}

.lp-recommend__item:nth-child(odd) {
  border-right: 1px dashed #d8d8d0;
}

.lp-recommend__item:nth-last-child(-n + 2) {
  border-bottom: none;
}

.lp-recommend__check {
  width: 44px;
  height: 44px;
  background: var(--deepgreen);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  flex-shrink: 0;
}

.lp-recommend__item p {
  margin: 0;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.45;
  color: #143f36;
  font-family: serif;
  font-weight: 600;
  letter-spacing: .04em;
}

.lp-recommend__icon {
  justify-self: end;
  color: #6e8d82;
  font-size: 58px;
  line-height: 1;
  opacity: .95;
}

.lp-recommend__icon i {
  color: var(--deepgreen);
}

/* SP */
@media (max-width: 767px) {
  .lp-recommend {
    padding: 56px 0 60px;
  }

  .lp-recommend__inner {
    padding: 34px 16px 18px;
    border-radius: 14px;
  }

  .lp-recommend__title {
    margin-bottom: 30px;
  }

  .lp-recommend__title::before,
  .lp-recommend__title::after {
    width: 32px;
  }

  .lp-recommend__title::before {
    margin-right: 10px;
  }

  .lp-recommend__title::after {
    margin-left: 10px;
  }

  .lp-recommend__title span::after,
  .lp-recommend__inner::after {
    display: none;
  }

  .lp-recommend__box {
    grid-template-columns: 1fr;
  }

  .lp-recommend__item {
    grid-template-columns: 38px 1fr 58px;
    min-height: 112px;
    padding: 20px 18px;
    gap: 12px;
    border-right: none !important;
    border-bottom: 1px dashed #d8d8d0;
  }

  .lp-recommend__item:nth-last-child(-n + 2) {
    border-bottom: 1px dashed #d8d8d0;
  }

  .lp-recommend__item:last-child {
    border-bottom: none;
  }

  .lp-recommend__check {
    width: 38px;
    height: 38px;
    font-size: 23px;
  }

  .lp-recommend__item p {
    font-size: 20px;
  }

  .lp-recommend__icon {
    font-size: 40px;
  }
}

/**************************************************
ワンパッケージ
**************************************************/

.lp-package {
  background: var(--lbeige);
  padding: 86px 0 90px;
  color: #173c34;
}

.lp-package__inner {
  width: min(92%, 1020px);
  margin: 0 auto;
}

.lp-package__head {
  text-align: center;
  margin-bottom: 46px;
}

.lp-package__head h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.45;
  color: var(--deepgreen);
  font-family: serif;
  font-weight: 600;
  letter-spacing: .08em;
}

.lp-package__head p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.lp-package__flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
}

.lp-package__flow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(17,72,61,.18) 0%,
    rgba(17,72,61,.45) 50%,
    rgba(17,72,61,.18) 100%);
  opacity: 1;
}

.lp-package__item {
  position: relative;
  background: #fff;
  /* border: 1px solid rgba(23, 60, 52, .14); */
  /* border-radius: 16px; */
  padding: 26px 5px 24px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.lp-package__num {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  background: var(--deepgreen);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  position: relative;
  z-index: 1;
  font-family: 'Roboto', sans-serif;
}

.lp-package__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 18px;
  background: #dce9e4;
  color: var(--deepgreen);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 50px;
  box-shadow: inset 0 0 0 1px rgba(17,72,61,.12),
    0 6px 18px rgba(17,72,61,.08);
}

.lp-package__icon i {
    color: var(--deepgreen);
}

.lp-package__item h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--deepgreen);
  font-family: serif;
  font-weight: bold;
  letter-spacing: .06em;
}

.lp-package__item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #333;
  text-align: center !important;
}

.lp-package__message {
  margin: 46px auto 0;
  max-width: 760px;
  background: #fff;
  border: 1px solid #d9c077;
  border-radius: 12px;
  padding: 24px 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.lp-package__message p {
  margin: 0;
  font-size: 20px;
  line-height: 1.9;
  font-family: serif;
  color: var(--deepgreen);
}

.lp-package__message span {
  color: var(--goldorange);
}

/* タブレット時は3列×2段 */
@media (max-width: 1024px) {
  .lp-package__flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-package__flow::before {
    display: none;
  }
}

/* SP */
@media (max-width: 767px) {
  .lp-package {
    padding: 64px 0 70px;
  }

  .lp-package__head {
    margin-bottom: 34px;
  }

  .lp-package__head p {
    text-align: left;
  }

  .lp-package__flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-package__flow::before {
    display: none;
  }

  .lp-package__item {
    display: grid;
    grid-template-columns: 46px 64px 1fr;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 18px;
    row-gap: 0;
  }

  .lp-package__num {
    margin: 0;
  }

  .lp-package__icon {
    width: 58px;
    height: 58px;
    margin: 0;
    font-size: 28px;
  }

  .lp-package__item h3 {
    margin-bottom: 4px;
    font-size: 21px;
  }

  .lp-package__item p {
    grid-column: 3 / 4;
    text-align: left !important;
  }

  .lp-package__message {
    padding: 22px 18px;
  }

  .lp-package__message p {
    font-size: 18px;
  }
}


/**************************************************
まずはお気軽にご相談ください
**************************************************/
#contact.lp-contact-message {
  background: #fff;
  color: #173c34;
  padding: 0;
  background: var(--lbeige);
}

.lp-contact-message__visual {
  position: relative;
  height: 430px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.lp-contact-message__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  position: absolute;
  top: 0;
}

.lp-contact-message__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 65, 49, .96) 0%,
    rgba(8, 65, 49, .88) 42%,
    rgba(8, 65, 49, .35) 68%,
    rgba(255, 255, 255, .50) 100%
  );
}

.lp-contact-message__title {
  position: absolute;
  /* left: 8%; */
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  position: relative;
  z-index: 5;
  top: 50%;
  max-width: 1020px;
  margin: 0 auto;
  left: 0;
}

.lp-contact-message__title h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 70px);
  line-height: 1.45;
  letter-spacing: .08em;
  font-family: serif;
  color: #fff;
  font-weight: 600;
}

.lp-contact-message__title span {
  color: #d5ad55;
}

.lp-contact-message__line {
  position: relative;
  width: 520px;
  max-width: 100%;
  height: 1px;
  background: #b9953f;
  margin-top: 28px;
}

.lp-contact-message__line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  background: #d5ad55;
  transform: translate(-50%, -50%) rotate(45deg);
}

.lp-contact-message__questions {
  position: relative;
  z-index: 2;
  width: min(92%, 1180px);
  margin: -1px auto 0;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  clip-path: polygon(0 0, 96% 0, 100% 50%, 96% 100%, 0 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.lp-contact-message__question {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px 28px;
}

.lp-contact-message__question:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: #c9b98c;
}

.lp-contact-message__question span {
  width: 48px;
  height: 40px;
  border: 3px solid #9b7a2b;
  border-radius: 50%;
  display: block;
  margin-bottom: 14px;
  position: relative;
}

.lp-contact-message__question span::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-right: 3px solid #9b7a2b;
  border-bottom: 3px solid #9b7a2b;
  transform: rotate(35deg);
}

.lp-contact-message__question p {
  margin: 0;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.7;
  color: #111;
  font-family: serif;
  font-weight: 600;
  letter-spacing: .04em;
}

.lp-contact-message__body {
  padding: 48px 0px 70px;
  text-align: center;
  width: 92%;
  max-width: 1020px;
  margin: 0 auto;
}

.lp-contact-message__body > p {
  margin: 0 0 46px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.8;
  font-family: serif;
  font-weight: 600;
  color: #222;
}

.lp-contact-message__body > p span {
  color: var(--deepgreen);
  border-bottom: 2px solid rgba(23, 72, 63, .25);
}

.lp-contact-message__message {
  border-top: 1px solid #e4e0d6;
  padding-top: 44px;
}

.lp-contact-message__message p {
  margin: 0 0 28px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.9;
  font-family: serif;
  font-weight: 600;
  color: #222;
}

.lp-contact-message__message p:last-child {
  margin-bottom: 0;
  font-size: clamp(18px, 1.5vw, 26px);
}

.lp-contact-message__message strong {
  color: #9b7a2b;
  font-weight: 600;
}

.lp-contact-message__message span {
  color: var(--deepgreen);
}

/* SP */
@media (max-width: 767px) {
  .lp-contact-message__visual {
    height: 300px;
  }

  .lp-contact-message__overlay {
    background: rgba(8, 65, 49, .78);
  }

  .lp-contact-message__title {
    left: 6%;
    right: 6%;
  }

  .lp-contact-message__title h2 {
        font-size: 8vw;
    }

  .lp-contact-message__questions {
    grid-template-columns: 1fr;
    clip-path: none;
    width: 92%;
  }

  .lp-contact-message__question {
    min-height: 130px;
  }

  .lp-contact-message__question:not(:last-child)::after {
    right: 24px;
    left: 24px;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
  }

  .lp-contact-message__body {
    padding: 40px 20px 56px;
  }
}


@media screen and (max-width:425px) {
  .lp-contact-message__visual {
    height: 200px;
  }
}





/**************************************************
お問い合わせフォーム
**************************************************/

.lp-contact-form {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px;
  /* background: #fbfaf4; */
  /* border: 1px solid rgba(32, 78, 58, 0.16);
  border-radius: 24px; */
  box-shadow: 0 18px 45px rgba(20, 50, 38, 0.08);
}

.lp-contact-form__lead {
  margin-bottom: 32px;
  padding: 20px 24px;
  background: #eef5ee;
  border-left: 5px solid #204e3a;
  border-radius: 12px;
}

.lp-contact-form__lead p {
  margin: 0;
  color: #204e3a;
  font-weight: 600;
  line-height: 1.8;
}

.lp-contact-form__row {
  margin-bottom: 24px;
}

.lp-contact-form__row label {
  display: block;
  margin-bottom: 10px;
  color: #204e3a;
  font-weight: 700;
  font-size: 15px;
}

.lp-contact-form__row label span {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  color: #fff;
  background: #204e3a;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
}

.lp-contact-form input[type="text"],
.lp-contact-form input[type="email"],
.lp-contact-form input[type="tel"],
.lp-contact-form select,
.lp-contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  background: #fff;
  border: 1px solid rgba(32, 78, 58, 0.22);
  border-radius: 10px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  box-sizing: border-box;
}

.lp-contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.lp-contact-form input:focus,
.lp-contact-form select:focus,
.lp-contact-form textarea:focus {
  outline: none;
  border-color: #204e3a;
  box-shadow: 0 0 0 3px rgba(32, 78, 58, 0.12);
}

.lp-contact-form__privacy {
  margin: 28px 0;
  color: #444;
  font-size: 14px;
  line-height: 1.8;
}

.lp-contact-form__privacy .wpcf7-list-item {
  margin: 0;
}

.lp-contact-form__submit {
  text-align: center;
}

.lp-contact-form input[type="submit"] {
  min-width: 280px;
  padding: 18px 40px;
  background: #204e3a;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(32, 78, 58, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lp-contact-form input[type="submit"]:hover {
  background: #163a2b;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(32, 78, 58, 0.34);
}

.lp-contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #b94a3a;
  font-size: 13px;
}

.lp-contact-form .wpcf7-response-output {
  margin: 28px 0 0;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .lp-contact-form {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .lp-contact-form__lead {
    padding: 16px;
    margin-bottom: 24px;
  }

  .lp-contact-form__row {
    margin-bottom: 20px;
  }

  .lp-contact-form input[type="submit"] {
    width: 100%;
    min-width: auto;
    padding: 16px 24px;
    font-size: 16px;
  }
}

/**************************************************
LP専用フッター
**************************************************/
.lp-dm-footer {
  background: linear-gradient(135deg, #0d4739 0%, #082f27 100%);
  color: #fff;
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}

.lp-dm-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 30%),
    radial-gradient(circle at 86% 18%, rgba(200,148,31,.18) 0%, rgba(200,148,31,0) 26%);
  pointer-events: none;
}

.lp-dm-footer__inner {
  position: relative;
  z-index: 1;
  width: min(92%, 1020px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 44px;
}

.lp-dm-footer__brand {
  flex: 0 1 420px;
}

.lp-dm-footer__logo {
  display: inline-flex;
  align-items: center;
  max-width: 220px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  transition: transform .25s ease, opacity .25s ease;
  display: none;
}

.lp-dm-footer__logo:hover {
  opacity: .9;
  transform: translateY(-2px);
}

.lp-dm-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-dm-footer__tagline {
  margin: 18px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .08em;
  display: none;
}

.lp-dm-footer__content {
  flex: 0 1 420px;
  padding-left: 40px;
  border-left: 1px solid rgba(255,255,255,.22);
}

.lp-dm-footer__company {
  margin: 0 0 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .08em;
  font-family: serif;
}

.lp-dm-footer__address {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-style: normal;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .04em;
}

.lp-dm-footer__tel {
  margin: 0 auto;
  padding: 0;
}

.lp-dm-footer__tel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 0;
  margin: 0;
  color: var(--deepgreen);
  color: #fff;
  /* border: 1px solid rgba(255,255,255,.75); */
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .04em;
  /* box-shadow: 0 8px 20px rgba(0,0,0,.14); */
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

/* .lp-dm-footer__tel a:hover {
  background: #f7f4ea;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
} */

.lp-dm-footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.16);
  padding: 18px 20px;
  text-align: center;
  background: rgba(0,0,0,.12);
}

.lp-dm-footer__bottom small {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  letter-spacing: .05em;
}

@media (max-width: 767px) {
  .lp-dm-footer {
    padding-top: 42px;
  }

  .lp-dm-footer__inner {
    display: block;
    padding-bottom: 34px;
    text-align: center;
  }

  .lp-dm-footer__logo {
    max-width: 190px;
    padding: 14px 18px;
  }

  .lp-dm-footer__tagline {
    margin-top: 16px;
    font-size: 13px;
  }

  .lp-dm-footer__content {
    margin-top: 0;
    padding: 26px 0 0;
    border-left: none;
    /* border-top: 1px solid rgba(255,255,255,.2); */
  }

  .lp-dm-footer__company {
    font-size: 18px;
    text-align: center !important;
  }

  .lp-dm-footer__address {
    font-size: 13px;
  }

  .lp-dm-footer__tel a {
    width: 100%;
    min-width: auto;
    /* max-width: 320px; */
    font-size: 16px;
  }
}

.lp-dm-footer {
    padding-top: 42px;
  }

  .lp-dm-footer__inner {
    display: block;
    padding-bottom: 34px;
    text-align: center;
  }

  .lp-dm-footer__logo {
    max-width: 190px;
    padding: 14px 18px;
  }

  .lp-dm-footer__tagline {
    margin-top: 16px;
    font-size: 13px;
  }

  .lp-dm-footer__content {
    margin-top: 0;
    padding: 26px 0 0;
    border-left: none;
    /* border-top: 1px solid rgba(255,255,255,.2); */
  }

  .lp-dm-footer__company {
    font-size: 18px;
    text-align: center !important;
  }

  .lp-dm-footer__address {
    font-size: 13px;
  }

  .lp-dm-footer__tel a {
    width: 100%;
    min-width: auto;
    /* max-width: 320px; */
    font-size: 16px;
  }