/* ==================================================
   ファーストビュー
================================================== */

/* ========================================
   サービスページ共通
   ファーストビュー
======================================== */

.service-hero,
.service-hero *,
.service-hero *::before,
.service-hero *::after {
  box-sizing: border-box;
}


.service-hero {
  --service-accent: #18A36E;
  --service-accent-dark: #137E57;

  --service-text: #24342F;
  --service-subtext: #68766F;

  --service-border: #DDE8E3;
  --service-light: #F4F8F6;

  --service-font:
    "Noto Sans JP",
    "UD Digi Kyokasho NK-R",
    "UD Digi Kyokasho N-R",
    "Yu Gothic",
    "YuGothic",
    sans-serif;

  position: relative;

  width: 100%;

  overflow: hidden;

  color: var(--service-text);

  background:
    linear-gradient(
      135deg,
      #FFFFFF 0%,
      #FFFFFF 47%,
      #F8FAF9 72%,
      #F1F7F4 100%
    );

  font-family: var(--service-font);

  isolation: isolate;
}


.service-hero * {
  font-family: var(--service-font);
}


/* ========================================
   背景番号
======================================== */

.service-hero__background-number {
  position: absolute;

  z-index: -2;

  top: -55px;
  right: -10px;

  color:
    rgba(24, 163, 110, 0.045);

  font-size:
    clamp(260px, 27vw, 440px);

  font-weight: 400;
  line-height: 1;

  letter-spacing: -0.075em;

  pointer-events: none;
  user-select: none;
}


/* ========================================
   背景グリッド
======================================== */

.service-hero__background-grid {
  position: absolute;

  z-index: -3;

  top: 0;
  right: 0;

  width: 46%;
  height: 100%;

  opacity: 0.45;

  background-image:
    linear-gradient(
      rgba(24, 163, 110, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(24, 163, 110, 0.055) 1px,
      transparent 1px
    );

  background-size:
    48px
    48px;

  pointer-events: none;
}


/* ========================================
   インナー
======================================== */

.service-hero__inner {
  position: relative;

  z-index: 2;

  width:
    min(1320px, calc(100% - 80px));

  min-height: 720px;

  margin:
    0
    auto;

  padding:
    30px
    0
    clamp(58px, 6vw, 82px);
}


/* ========================================
   パンくず
======================================== */

.service-hero__breadcrumb {
  margin-bottom:
    clamp(52px, 5vw, 72px);
}


.service-hero__breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 9px;

  margin: 0;
  padding: 0;

  list-style: none;
}


.service-hero__breadcrumb li {
  display: flex;
  align-items: center;

  gap: 9px;

  color: #8D9893;

  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;

  letter-spacing: 0.04em;
}


.service-hero__breadcrumb li:not(:last-child)::after {
  content: "/";

  color: #C2CBC6;
}


.service-hero__breadcrumb a {
  color: inherit;

  text-decoration: none;

  transition:
    color 0.25s ease;
}


@media (hover: hover) {

  .service-hero__breadcrumb a:hover {
    color:
      var(--service-accent);
  }

}


/* ========================================
   メインレイアウト
======================================== */

.service-hero__main {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(430px, 0.95fr);

  align-items: start;

  gap:
    clamp(54px, 6vw, 88px);
}


/* ========================================
   左側
======================================== */

.service-hero__content {
  position: relative;

  z-index: 4;

  min-width: 0;

  padding-top: 6px;
}


/* ========================================
   英字
======================================== */

.service-hero__eyebrow {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 21px;
}


.service-hero__eyebrow-line {
  display: block;

  flex: 0 0 auto;

  width: 42px;
  height: 1px;

  background:
    var(--service-accent);
}


.service-hero__en {
  margin: 0;

  color:
    var(--service-accent);

  font-size: 10px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.2em;
}


/* ========================================
   カテゴリ
======================================== */

.service-hero__category {
  margin:
    0
    0
    13px;

  color:
    var(--service-subtext);

  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;

  letter-spacing: 0.07em;
}


/* ========================================
   タイトル
======================================== */

.service-hero__title-area {
  position: relative;

  width: fit-content;

  max-width: 100%;
}


.service-hero__title {
  position: relative;

  z-index: 3;

  margin: 0;

  color:
    var(--service-text);

  font-size:
    clamp(34px, 3.55vw, 52px);

  font-weight: 500;
  line-height: 1.4;

  letter-spacing: 0.035em;

  white-space: nowrap;
}


.service-hero__title span {
  display: inline;

  margin-left: 0.16em;

  font-size: 0.46em;
  font-weight: 400;

  letter-spacing: 0.03em;
}


/* ========================================
   タイトル横 座標装飾
======================================== */

.service-hero__coordinate {
  position: absolute;

  z-index: 1;

  top: 52%;
  right: -112px;

  width: 138px;
  height: 76px;

  transform:
    translateY(-50%);

  pointer-events: none;
}


.service-hero__coordinate-x,
.service-hero__coordinate-y {
  position: absolute;

  display: block;

  background:
    rgba(24, 163, 110, 0.42);
}


.service-hero__coordinate-x {
  top: 50%;
  left: 0;

  width: 138px;
  height: 1px;
}


.service-hero__coordinate-y {
  top: 0;
  left: 72%;

  width: 1px;
  height: 76px;
}


.service-hero__coordinate-dot {
  position: absolute;

  top: 50%;
  left: 72%;

  width: 7px;
  height: 7px;

  border:
    1px solid var(--service-accent);

  border-radius: 50%;

  background:
    #FFFFFF;

  transform:
    translate(-50%, -50%);
}


.service-hero__coordinate-number {
  position: absolute;

  top: -3px;
  left:
    calc(72% + 8px);

  color:
    var(--service-accent);

  font-size: 7px;
  font-weight: 400;

  letter-spacing: 0.08em;

  opacity: 0.65;
}


/* ========================================
   サービス定義
======================================== */

.service-hero__definition {
  position: relative;

  margin:
    clamp(27px, 2.8vw, 36px)
    0
    0;

  padding-left: 18px;

  color:
    var(--service-accent-dark);

  font-size:
    clamp(15px, 1.35vw, 18px);

  font-weight: 400;
  line-height: 1.75;

  letter-spacing: 0.04em;
}


.service-hero__definition::before {
  content: "";

  position: absolute;

  top: 5px;
  bottom: 5px;
  left: 0;

  width: 2px;

  background:
    var(--service-accent);
}


/* ========================================
   キャッチコピー
======================================== */

.service-hero__catch {
  margin:
    clamp(22px, 2.4vw, 30px)
    0
    0;

  color:
    var(--service-text);

  font-size:
    clamp(21px, 2vw, 27px);

  font-weight: 400;
  line-height: 1.6;

  letter-spacing: 0.04em;
}


/* ========================================
   中央ガイドライン
======================================== */

.service-hero__guide {
  position: relative;

  z-index: 5;

  width:
    calc(100% + 125px);

  height: 61px;

  margin-top: 25px;

  pointer-events: none;
}


.service-hero__guide-main {
  position: absolute;

  top: 19px;
  left: 0;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      to right,
      rgba(24, 163, 110, 0.75) 0%,
      rgba(24, 163, 110, 0.48) 43%,
      rgba(24, 163, 110, 0.18) 78%,
      rgba(24, 163, 110, 0.02) 100%
    );
}


.service-hero__guide-mark {
  position: absolute;

  top: 13px;

  width: 1px;
  height: 13px;

  background:
    var(--service-accent);

  opacity: 0.45;
}


.service-hero__guide-mark--01 {
  left: 25%;
}


.service-hero__guide-mark--02 {
  left: 50%;
}


.service-hero__guide-mark--03 {
  left: 75%;
}


.service-hero__guide-number {
  position: absolute;

  top: 0;

  color:
    var(--service-accent);

  font-size: 7px;
  font-weight: 400;

  letter-spacing: 0.08em;

  opacity: 0.55;

  transform:
    translateX(-50%);
}


.service-hero__guide-number--01 {
  left: 25%;
}


.service-hero__guide-number--02 {
  left: 50%;
}


.service-hero__guide-number--03 {
  left: 75%;
}


.service-hero__guide-vertical {
  position: absolute;

  top: 19px;
  left: 50%;

  width: 1px;
  height: 30px;

  background:
    var(--service-accent);

  opacity: 0.34;
}


.service-hero__guide-dot {
  position: absolute;

  top: 19px;
  left: 50%;

  width: 7px;
  height: 7px;

  border:
    1px solid var(--service-accent);

  border-radius: 50%;

  background:
    #FFFFFF;

  transform:
    translate(-50%, -50%);
}


.service-hero__guide-label {
  position: absolute;

  top: 42px;
  left:
    calc(50% + 10px);

  color:
    var(--service-subtext);

  font-size: 7px;
  font-weight: 400;

  letter-spacing: 0.17em;

  white-space: nowrap;

  opacity: 0.65;
}


/* ========================================
   CTA
======================================== */

.service-hero__buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 11px;

  margin-top: 14px;
}


.service-hero__button {
  display: inline-flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;

  min-width: 210px;
  min-height: 56px;

  padding:
    0
    20px;

  border:
    1px solid var(--service-accent);

  border-radius: 2px;

  color:
    var(--service-accent-dark);

  background:
    #FFFFFF;

  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;

  letter-spacing: 0.04em;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}


.service-hero__button--primary {
  color:
    #FFFFFF;

  background:
    var(--service-accent);
}


.service-hero__button-arrow {
  flex: 0 0 auto;

  font-size: 17px;
  font-weight: 300;
}


@media (hover: hover) {

  .service-hero__button:hover {
    transform:
      translateY(-2px);
  }


  .service-hero__button--primary:hover {
    border-color:
      var(--service-accent-dark);

    background:
      var(--service-accent-dark);
  }


  .service-hero__button--secondary:hover {
    color:
      #FFFFFF;

    background:
      var(--service-accent);
  }

}


/* ========================================
   サービス番号
======================================== */

.service-hero__meta {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 21px;
}


.service-hero__meta-number {
  color:
    var(--service-accent);

  font-size: 11px;
  font-weight: 400;

  letter-spacing: 0.1em;
}


.service-hero__meta-line {
  display: block;

  width: 34px;
  height: 1px;

  background:
    var(--service-accent);

  opacity: 0.4;
}


.service-hero__meta-text {
  color:
    #909C96;

  font-size: 8px;
  font-weight: 400;

  letter-spacing: 0.18em;
}


/* ========================================
   右側ビジュアル
======================================== */

.service-hero__visual {
  position: relative;

  min-width: 0;

  margin-top: 32px;

  padding:
    34px
    28px
    45px
    47px;
}


/* ========================================
   画像上ラベル
======================================== */

.service-hero__visual-label {
  position: absolute;

  top: 0;
  right: 28px;

  display: flex;
  align-items: center;

  gap: 13px;

  color:
    var(--service-accent);

  font-size: 8px;
  font-weight: 400;

  letter-spacing: 0.15em;
}


.service-hero__visual-label span:last-child {
  display: flex;
  align-items: center;

  gap: 8px;
}


.service-hero__visual-label span:last-child::before {
  content: "";

  display: block;

  width: 22px;
  height: 1px;

  background:
    var(--service-accent);

  opacity: 0.42;
}


/* ========================================
   写真
======================================== */

.service-hero__image-wrap {
  position: relative;

  width: 100%;

  aspect-ratio: 1.25 / 1;

  overflow: hidden;

  background:
    var(--service-light);
}


.service-hero__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.8s ease;
}


.service-hero__image-wrap::after {
  content: "";

  position: absolute;

  z-index: 1;

  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(17, 76, 53, 0.015) 0%,
      rgba(24, 163, 110, 0.045) 100%
    );

  pointer-events: none;
}


/* ========================================
   写真内 四隅フレーム
======================================== */

.service-hero__corner {
  position: absolute;

  z-index: 3;

  width: 42px;
  height: 42px;

  pointer-events: none;
}


.service-hero__corner::before,
.service-hero__corner::after {
  content: "";

  position: absolute;

  display: block;

  background:
    rgba(255, 255, 255, 0.9);
}


.service-hero__corner--tl {
  top: 17px;
  left: 17px;
}


.service-hero__corner--tr {
  top: 17px;
  right: 17px;
}


.service-hero__corner--bl {
  bottom: 17px;
  left: 17px;
}


.service-hero__corner--br {
  right: 17px;
  bottom: 17px;
}


.service-hero__corner--tl::before,
.service-hero__corner--tr::before {
  top: 0;

  width: 42px;
  height: 1px;
}


.service-hero__corner--bl::before,
.service-hero__corner--br::before {
  bottom: 0;

  width: 42px;
  height: 1px;
}


.service-hero__corner--tl::after,
.service-hero__corner--tr::after {
  top: 0;

  width: 1px;
  height: 42px;
}


.service-hero__corner--bl::after,
.service-hero__corner--br::after {
  bottom: 0;

  width: 1px;
  height: 42px;
}


.service-hero__corner--tl::before,
.service-hero__corner--tl::after,
.service-hero__corner--bl::before,
.service-hero__corner--bl::after {
  left: 0;
}


.service-hero__corner--tr::before,
.service-hero__corner--tr::after,
.service-hero__corner--br::before,
.service-hero__corner--br::after {
  right: 0;
}


/* ========================================
   写真中央 基準点
======================================== */

.service-hero__image-point {
  position: absolute;

  z-index: 3;

  top: 50%;
  left: 50%;

  width: 34px;
  height: 34px;

  border:
    1px solid rgba(255, 255, 255, 0.55);

  border-radius: 50%;

  transform:
    translate(-50%, -50%);

  pointer-events: none;
}


.service-hero__image-point::before,
.service-hero__image-point::after {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  background:
    rgba(255, 255, 255, 0.7);

  transform:
    translate(-50%, -50%);
}


.service-hero__image-point::before {
  width: 50px;
  height: 1px;
}


.service-hero__image-point::after {
  width: 1px;
  height: 50px;
}


.service-hero__image-point i {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background:
    #FFFFFF;

  transform:
    translate(-50%, -50%);
}


/* ========================================
   写真左側目盛り
======================================== */

.service-hero__scale {
  position: absolute;

  z-index: 4;

  bottom: 65px;
  left: 0;

  display: flex;

  flex-direction: column;

  gap: 12px;
}


.service-hero__scale-item {
  display: flex;
  align-items: center;

  gap: 7px;
}


.service-hero__scale-item span {
  width: 18px;

  color:
    var(--service-accent);

  font-size: 7px;
  font-weight: 400;

  letter-spacing: 0.05em;

  opacity: 0.5;
}


.service-hero__scale-item i {
  display: block;

  width: 15px;
  height: 1px;

  background:
    var(--service-accent);

  opacity: 0.3;
}


.service-hero__scale-item:nth-child(3) i {
  width: 27px;

  opacity: 0.7;
}


/* ========================================
   写真下
======================================== */

.service-hero__visual-bottom {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 14px;
}


.service-hero__visual-bottom-line {
  display: block;

  flex: 0 0 auto;

  width: 40px;
  height: 1px;

  background:
    var(--service-accent);
}


.service-hero__visual-bottom-text {
  color:
    #8D9993;

  font-size: 8px;
  font-weight: 400;

  letter-spacing: 0.16em;
}


/* ========================================
   右下 十字基準点
======================================== */

.service-hero__cross {
  position: absolute;

  right: 0;
  bottom: 0;

  width: 44px;
  height: 44px;

  pointer-events: none;
}


.service-hero__cross-x,
.service-hero__cross-y {
  position: absolute;

  top: 50%;
  left: 50%;

  display: block;

  background:
    var(--service-accent);

  opacity: 0.58;

  transform:
    translate(-50%, -50%);
}


.service-hero__cross-x {
  width: 44px;
  height: 1px;
}


.service-hero__cross-y {
  width: 1px;
  height: 44px;
}


.service-hero__cross-dot {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 7px;
  height: 7px;

  border:
    1px solid var(--service-accent);

  border-radius: 50%;

  background:
    #FFFFFF;

  transform:
    translate(-50%, -50%);
}


/* ========================================
   ホバー
======================================== */

@media (hover: hover) {

  .service-hero__visual:hover
  .service-hero__image {
    transform:
      scale(1.025);
  }

}


/* ========================================
   コンパクト版
   PCの縦幅を抑える
======================================== */

@media screen and (min-width: 901px) {

  .service-hero--compact .service-hero__inner {
    min-height: auto;

    padding:
      20px
      0
      38px;
  }


  .service-hero--compact .service-hero__breadcrumb {
    margin-bottom:
      clamp(27px, 2.7vw, 38px);
  }


  .service-hero--compact .service-hero__main {
    align-items: center;

    gap:
      clamp(44px, 5vw, 70px);
  }


  .service-hero--compact .service-hero__content {
    padding-top: 0;
  }


  .service-hero--compact .service-hero__eyebrow {
    margin-bottom: 14px;
  }


  .service-hero--compact .service-hero__category {
    margin-bottom: 7px;
  }


  .service-hero--compact .service-hero__title {
    font-size:
      clamp(31px, 3.2vw, 47px);

    line-height: 1.3;
  }


  .service-hero--compact .service-hero__coordinate {
    height: 62px;
  }


  .service-hero--compact .service-hero__coordinate-y {
    height: 62px;
  }


  .service-hero--compact .service-hero__definition {
    margin-top:
      clamp(17px, 1.8vw, 23px);

    font-size:
      clamp(14px, 1.25vw, 17px);

    line-height: 1.6;
  }


  .service-hero--compact .service-hero__catch {
    margin-top:
      clamp(13px, 1.5vw, 18px);

    font-size:
      clamp(19px, 1.75vw, 24px);

    line-height: 1.45;
  }


  .service-hero--compact .service-hero__guide {
    height: 47px;

    margin-top: 12px;
  }


  .service-hero--compact .service-hero__guide-main {
    top: 14px;
  }


  .service-hero--compact .service-hero__guide-mark {
    top: 8px;

    height: 12px;
  }


  .service-hero--compact .service-hero__guide-number {
    top: -3px;
  }


  .service-hero--compact .service-hero__guide-vertical {
    top: 14px;

    height: 23px;
  }


  .service-hero--compact .service-hero__guide-dot {
    top: 14px;
  }


  .service-hero--compact .service-hero__guide-label {
    top: 32px;
  }


  .service-hero--compact .service-hero__buttons {
    margin-top: 5px;
  }


  .service-hero--compact .service-hero__button {
    min-height: 50px;

    padding:
      0
      18px;
  }


  .service-hero--compact .service-hero__meta {
    margin-top: 11px;
  }


  .service-hero--compact .service-hero__visual {
    margin-top: 2px;

    padding:
      27px
      28px
      34px
      47px;
  }


  .service-hero--compact .service-hero__image-wrap {
    aspect-ratio:
      1.42 / 1;
  }


  .service-hero--compact .service-hero__visual-bottom {
    margin-top: 9px;
  }


  .service-hero--compact .service-hero__scale {
    bottom: 50px;

    gap: 9px;
  }


  .service-hero--compact .service-hero__background-number {
    top: -72px;
  }

}


/* ========================================
   1200px以下
======================================== */

@media screen and (max-width: 1200px) {

  .service-hero__inner {
    width:
      min(1140px, calc(100% - 60px));
  }


  .service-hero__main {
    grid-template-columns:
      minmax(0, 1.08fr)
      minmax(390px, 0.92fr);

    gap: 48px;
  }


  .service-hero__title {
    font-size:
      clamp(32px, 3.4vw, 46px);
  }


  .service-hero__coordinate {
    right: -70px;

    width: 95px;
  }


  .service-hero__coordinate-x {
    width: 95px;
  }


  .service-hero__guide {
    width:
      calc(100% + 70px);
  }

}


/* ========================================
   1050px以下
======================================== */

@media screen and (max-width: 1050px) {

  .service-hero__title {
    white-space: normal;
  }


  .service-hero__title span {
    display: block;

    margin:
      5px
      0
      0;

    font-size: 0.5em;
  }


  .service-hero__coordinate {
    right: -45px;
  }


  .service-hero__guide {
    width: 100%;
  }

}


/* ========================================
   タブレット
======================================== */

@media screen and (max-width: 900px) {

  .service-hero__inner {
    width:
      min(720px, calc(100% - 48px));

    min-height: auto;

    padding:
      25px
      0
      62px;
  }


  .service-hero__breadcrumb {
    margin-bottom: 48px;
  }


  .service-hero__main {
    grid-template-columns:
      1fr;

    gap: 36px;
  }


  .service-hero__content {
    max-width: 650px;
  }


  .service-hero__guide {
    width:
      min(520px, 100%);
  }


  .service-hero__visual {
    margin-top: 10px;

    padding:
      32px
      28px
      44px
      44px;
  }


  .service-hero__background-number {
    top: 30px;
    right: -30px;

    font-size: 250px;
  }

}


/* ========================================
   スマートフォン
======================================== */

@media screen and (max-width: 600px) {

  .service-hero__background-grid {
    top: auto;
    bottom: 0;

    width: 100%;
    height: 43%;

    background-size:
      36px
      36px;
  }


  .service-hero__background-number {
    top: 80px;
    right: -42px;

    font-size: 175px;
  }


  .service-hero__inner {
    width:
      calc(100% - 40px);

    padding:
      21px
      0
      54px;
  }


  .service-hero__breadcrumb {
    margin-bottom: 45px;
  }


  .service-hero__breadcrumb li {
    font-size: 9px;
  }


  .service-hero__main {
    gap: 32px;
  }


  .service-hero__eyebrow {
    gap: 10px;

    margin-bottom: 17px;
  }


  .service-hero__eyebrow-line {
    width: 30px;
  }


  .service-hero__en {
    font-size: 9px;

    letter-spacing: 0.17em;
  }


  .service-hero__category {
    margin-bottom: 10px;

    font-size: 12px;
  }


  .service-hero__title {
    font-size:
      clamp(28px, 8vw, 37px);

    line-height: 1.4;

    white-space: normal;
  }


  .service-hero__title span {
    display: block;

    margin:
      5px
      0
      0;

    font-size: 0.5em;
  }


  .service-hero__coordinate {
    top: 58%;
    right: -22px;

    width: 58px;
    height: 60px;

    opacity: 0.65;
  }


  .service-hero__coordinate-x {
    width: 58px;
  }


  .service-hero__coordinate-y {
    height: 60px;
  }


  .service-hero__definition {
    margin-top: 23px;

    padding-left: 15px;

    font-size: 14px;

    line-height: 1.7;
  }


  .service-hero__catch {
    margin-top: 20px;

    font-size:
      clamp(19px, 5.5vw, 23px);

    line-height: 1.55;
  }


  .service-hero__guide {
    width: 100%;
    height: 56px;

    margin-top: 22px;
  }


  .service-hero__guide-main {
    top: 17px;
  }


  .service-hero__guide-mark {
    top: 12px;

    height: 11px;
  }


  .service-hero__guide-vertical {
    top: 17px;

    height: 27px;
  }


  .service-hero__guide-dot {
    top: 17px;
  }


  .service-hero__guide-label {
    top: 38px;

    font-size: 6px;
  }


  .service-hero__buttons {
    display: grid;

    grid-template-columns:
      1fr;

    gap: 8px;

    margin-top: 10px;
  }


  .service-hero__button {
    width: 100%;

    min-width: 0;
    min-height: 52px;
  }


  .service-hero__meta {
    margin-top: 17px;
  }


  .service-hero__visual {
    margin-top: 4px;

    padding:
      27px
      16px
      38px
      29px;
  }


  .service-hero__visual-label {
    right: 16px;

    font-size: 7px;
  }


  .service-hero__image-wrap {
    aspect-ratio:
      4 / 3;
  }


  .service-hero__scale {
    bottom: 51px;

    gap: 9px;
  }


  .service-hero__scale-item span {
    font-size: 6px;
  }


  .service-hero__scale-item i {
    width: 10px;
  }


  .service-hero__scale-item:nth-child(3) i {
    width: 18px;
  }


  .service-hero__corner {
    width: 30px;
    height: 30px;
  }


  .service-hero__corner--tl,
  .service-hero__corner--tr {
    top: 11px;
  }


  .service-hero__corner--bl,
  .service-hero__corner--br {
    bottom: 11px;
  }


  .service-hero__corner--tl,
  .service-hero__corner--bl {
    left: 11px;
  }


  .service-hero__corner--tr,
  .service-hero__corner--br {
    right: 11px;
  }


  .service-hero__corner--tl::before,
  .service-hero__corner--tr::before,
  .service-hero__corner--bl::before,
  .service-hero__corner--br::before {
    width: 30px;
  }


  .service-hero__corner--tl::after,
  .service-hero__corner--tr::after,
  .service-hero__corner--bl::after,
  .service-hero__corner--br::after {
    height: 30px;
  }


  .service-hero__image-point {
    width: 27px;
    height: 27px;
  }


  .service-hero__image-point::before {
    width: 40px;
  }


  .service-hero__image-point::after {
    height: 40px;
  }


  .service-hero__visual-bottom {
    margin-top: 12px;
  }


  .service-hero__visual-bottom-line {
    width: 28px;
  }


  .service-hero__visual-bottom-text {
    font-size: 6px;

    letter-spacing: 0.13em;
  }


  .service-hero__cross {
    width: 32px;
    height: 32px;
  }


  .service-hero__cross-x {
    width: 32px;
  }


  .service-hero__cross-y {
    height: 32px;
  }

}


/* ========================================
   動きを減らす設定
======================================== */

@media (prefers-reduced-motion: reduce) {

  .service-hero__image,
  .service-hero__button {
    transition: none;
  }


  .service-hero__visual:hover
  .service-hero__image {
    transform: none;
  }

}

/* ==================================================
   サービスページ共通セクション見出し
   元データではカスタムHTMLブロック 2, 4, 5, 7, 8 に同一CSSが重複。ここでは1回に集約。
================================================== */

/* ========================================
   サービスページ共通
   セクション見出し
======================================== */

.service-section-heading,
.service-section-heading *,
.service-section-heading *::before,
.service-section-heading *::after {
  box-sizing: border-box;
}


.service-section-heading {
  --section-heading-accent:
    var(--service-accent, #18A36E);

  --section-heading-accent-dark:
    var(--service-accent-dark, #137E57);

  --section-heading-text:
    var(--service-text, #24342F);

  --section-heading-subtext:
    var(--service-subtext, #68766F);

  position: relative;

  width: 100%;
  max-width: 850px;

  margin-bottom:
    clamp(38px, 4.5vw, 58px);

  font-family:
    "Noto Sans JP",
    "UD Digi Kyokasho NK-R",
    "UD Digi Kyokasho N-R",
    "Yu Gothic",
    "YuGothic",
    sans-serif;
}


/* ========================================
   英字見出し
======================================== */

.service-section-heading__en {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 18px;

  color:
    var(--section-heading-accent);

  font-size: 10px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.2em;
}


.service-section-heading__line {
  display: block;

  flex: 0 0 auto;

  width: 42px;
  height: 1px;

  background:
    var(--section-heading-accent);
}


/* ========================================
   日本語見出し
======================================== */

.service-section-heading__title {
  margin: 0;

  color:
    var(--section-heading-text);

  font-size:
    clamp(30px, 3.5vw, 48px);

  font-weight: 400;
  line-height: 1.42;

  letter-spacing: 0.04em;
}


/* 見出し内のアクセント部分 */

.service-section-heading__title span {
  color:
    var(--section-heading-accent-dark);
}


/* タイトル内で改行した場合 */

.service-section-heading__title br {
  display: block;
}


/* ========================================
   リード文
======================================== */

.service-section-heading__lead {
  max-width: 760px;

  margin:
    21px
    0
    0;

  color:
    var(--section-heading-subtext);

  font-size:
    clamp(14px, 1.2vw, 16px);

  font-weight: 400;
  line-height: 1.75;

  letter-spacing: 0.03em;
}


/* ========================================
   中央寄せバリエーション
======================================== */

.service-section-heading--center {
  max-width: 900px;

  margin-right: auto;
  margin-left: auto;

  text-align: center;
}


.service-section-heading--center
.service-section-heading__en {
  justify-content: center;
}


.service-section-heading--center
.service-section-heading__lead {
  margin-right: auto;
  margin-left: auto;
}


/* ========================================
   右寄せバリエーション
======================================== */

.service-section-heading--right {
  margin-left: auto;

  text-align: right;
}


.service-section-heading--right
.service-section-heading__en {
  flex-direction: row-reverse;
}


.service-section-heading--right
.service-section-heading__lead {
  margin-left: auto;
}


/* ========================================
   白文字バリエーション
   濃い背景で使用する場合
======================================== */

.service-section-heading--light {
  --section-heading-text: #FFFFFF;
  --section-heading-subtext: rgba(255, 255, 255, 0.76);
  --section-heading-accent: #FFFFFF;
  --section-heading-accent-dark: #FFFFFF;
}


/* ========================================
   リード文なしの場合
======================================== */

.service-section-heading--no-lead {
  margin-bottom:
    clamp(31px, 3.8vw, 48px);
}


/* ========================================
   PC専用改行
======================================== */

.pc-only {
  display: block;
}


/* ========================================
   スマートフォン
======================================== */

@media screen and (max-width: 600px) {

  .service-section-heading {
    margin-bottom: 34px;
  }


  .service-section-heading__en {
    gap: 10px;

    margin-bottom: 15px;

    font-size: 9px;

    letter-spacing: 0.17em;
  }


  .service-section-heading__line {
    width: 30px;
  }


  .service-section-heading__title {
    font-size:
      clamp(27px, 8vw, 36px);

    line-height: 1.4;

    letter-spacing: 0.035em;
  }


  .service-section-heading__lead {
    margin-top: 17px;

    font-size: 14px;
    line-height: 1.7;

    letter-spacing: 0.02em;
  }


  .service-section-heading__lead br {
    display: none;
  }


  .service-section-heading--center {
    text-align: left;
  }


  .service-section-heading--center
  .service-section-heading__en {
    justify-content: flex-start;
  }


  .service-section-heading--right {
    text-align: left;
  }


  .service-section-heading--right
  .service-section-heading__en {
    flex-direction: row;
  }


  .pc-only {
    display: none;
  }

}

/* ========================================
   サービスページ共通見出し
   中央寄せデザイン
======================================== */

.service-section-heading--centered {
  position: relative;

  max-width: 960px;

  margin-right: auto;
  margin-left: auto;

  text-align: center;
}


/* 背景の薄い円形装飾 */

.service-section-heading--centered::before {
  content: "";

  position: absolute;

  z-index: -1;

  top: 46%;
  left: 50%;

  width: 340px;
  height: 180px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(24, 163, 110, 0.055) 0%,
      rgba(24, 163, 110, 0.015) 48%,
      transparent 72%
    );

  transform:
    translate(-50%, -50%);

  pointer-events: none;
}


/* ========================================
   英字見出し
======================================== */

.service-section-heading--centered
.service-section-heading__en {
  justify-content: center;

  gap: 13px;

  margin-bottom: 19px;
}


.service-section-heading--centered
.service-section-heading__line {
  width: 38px;

  background:
    linear-gradient(
      to right,
      transparent 0%,
      var(--section-heading-accent) 100%
    );
}


/* 右側ラインだけ反転 */

.service-section-heading--centered
.service-section-heading__line:last-child {
  background:
    linear-gradient(
      to right,
      var(--section-heading-accent) 0%,
      transparent 100%
    );
}


/* ========================================
   日本語見出し
======================================== */

.service-section-heading--centered
.service-section-heading__title {
  max-width: 900px;

  margin-right: auto;
  margin-left: auto;

  text-align: center;
}


/* アクセント部分 */

.service-section-heading--centered
.service-section-heading__title span {
  margin-left: 0.08em;

  color:
    var(--section-heading-accent-dark);
}


/* ========================================
   タイトル下の検査基準線
======================================== */

.service-section-heading__coordinate {
  position: relative;

  width:
    min(230px, 60%);

  height: 30px;

  margin:
    20px
    auto
    0;

  pointer-events: none;
}


.service-section-heading__coordinate-line {
  position: absolute;

  top: 8px;
  left: 0;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(24, 163, 110, 0.5) 25%,
      rgba(24, 163, 110, 0.5) 75%,
      transparent 100%
    );
}


/* 目盛り */

.service-section-heading__coordinate-mark {
  position: absolute;

  top: 4px;

  width: 1px;
  height: 9px;

  background:
    rgba(24, 163, 110, 0.45);
}


.service-section-heading__coordinate-mark--01 {
  left: 25%;
}


.service-section-heading__coordinate-mark--02 {
  left: 50%;
}


.service-section-heading__coordinate-mark--03 {
  left: 75%;
}


/* 中央ポイント */

.service-section-heading__coordinate-dot {
  position: absolute;

  top: 8px;
  left: 50%;

  width: 7px;
  height: 7px;

  border:
    1px solid var(--section-heading-accent);

  border-radius: 50%;

  background: #FFFFFF;

  transform:
    translate(-50%, -50%);
}


/* 中央ポイント下の縦線 */

.service-section-heading__coordinate-dot::after {
  content: "";

  position: absolute;

  top: 7px;
  left: 50%;

  width: 1px;
  height: 13px;

  background:
    rgba(24, 163, 110, 0.3);

  transform:
    translateX(-50%);
}


/* ========================================
   リード文
======================================== */

.service-section-heading--centered
.service-section-heading__lead {
  max-width: 760px;

  margin:
    13px
    auto
    0;

  text-align: center;
}


/* ========================================
   白文字バリエーションとの併用
======================================== */

.service-section-heading--centered.service-section-heading--light::before {
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.02) 48%,
      transparent 72%
    );
}


.service-section-heading--centered.service-section-heading--light
.service-section-heading__coordinate-line {
  background:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(255, 255, 255, 0.55) 25%,
      rgba(255, 255, 255, 0.55) 75%,
      transparent 100%
    );
}


.service-section-heading--centered.service-section-heading--light
.service-section-heading__coordinate-mark,
.service-section-heading--centered.service-section-heading--light
.service-section-heading__coordinate-dot::after {
  background:
    rgba(255, 255, 255, 0.45);
}


.service-section-heading--centered.service-section-heading--light
.service-section-heading__coordinate-dot {
  border-color: #FFFFFF;

  background: transparent;
}


/* ========================================
   スマートフォン
======================================== */

@media screen and (max-width: 600px) {

  .service-section-heading--centered {
    margin-bottom: 34px;

    text-align: center;
  }


  .service-section-heading--centered::before {
    width: 240px;
    height: 140px;
  }


  .service-section-heading--centered
  .service-section-heading__en {
    justify-content: center;

    gap: 9px;

    margin-bottom: 15px;
  }


  .service-section-heading--centered
  .service-section-heading__line {
    width: 25px;
  }


  .service-section-heading--centered
  .service-section-heading__title {
    text-align: center;
  }


  .service-section-heading--centered
  .service-section-heading__title span {
    display: inline;

    margin-left: 0.05em;
  }


  .service-section-heading__coordinate {
    width: 170px;
    height: 27px;

    margin-top: 16px;
  }


  .service-section-heading--centered
  .service-section-heading__lead {
    margin-top: 11px;

    text-align: center;
  }


  .service-section-heading--centered
  .service-section-heading__lead br {
    display: none;
  }

}

/* ==================================================
   建物傾斜測定 症状・事例カード
================================================== */

/* ========================================
   建物傾斜測定
   症状・事例カード
======================================== */

.inclination-concern-cards,
.inclination-concern-cards *,
.inclination-concern-cards *::before,
.inclination-concern-cards *::after {
  box-sizing: border-box;
}


/* ========================================
   カード一覧
======================================== */

.inclination-concern-cards {
  --inclination-green: #18A36E;
  --inclination-text: #092817;
  --inclination-subtext: #092817;
  --inclination-line: #DDE8E3;
  --inclination-font:
    "UD Digi Kyokasho NK-R",
    "UD Digi Kyokasho N-R",
    "Yu Gothic",
    "YuGothic",
    sans-serif;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;

  width: 100%;
  font-family: var(--inclination-font);
}


.inclination-concern-cards * {
  font-family: var(--inclination-font);
}


/* ========================================
   カード本体
======================================== */

.inclination-concern-card {
  position: relative;
  min-width: 0;
  min-height: 100%;
  padding: 20px 20px 30px;
  overflow: hidden;

  border: 1px solid var(--inclination-line);

  color: var(--inclination-text);

  background:
    linear-gradient(
      145deg,
      #FFFFFF 0%,
      #FBFDFC 100%
    );
}


/* 上部のアクセントライン */

.inclination-concern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 74px;
  height: 2px;

  background: var(--inclination-green);
}


/* ========================================
   カード番号
======================================== */

.inclination-concern-card__number {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 16px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;

  pointer-events: none;
}


/* ========================================
   カード画像
======================================== */

.inclination-concern-card__image-wrap {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;

  overflow: hidden;
  background: #EAEFEC;
}


.inclination-concern-card__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* 画像内側の白枠 */

.inclination-concern-card__image-wrap::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 10px;

  border: 1px solid rgba(255, 255, 255, 0.78);

  pointer-events: none;
}


/* 画像上の薄いグリーン */

.inclination-concern-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(8, 52, 37, 0.02) 0%,
      rgba(24, 163, 110, 0.05) 100%
    );

  pointer-events: none;
}


/* ========================================
   英字ラベル
======================================== */

.inclination-concern-card__label {
  position: relative;
  z-index: 2;

  margin: 0 0 14px;

  color: var(--inclination-green);

  font-size: 9px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.17em;
}


/* ========================================
   カードタイトル
======================================== */

.inclination-concern-card__title {
  position: relative;
  z-index: 2;

  margin: 0;

  color: var(--inclination-text);

  font-size: clamp(15px, 2vw, 20px);
  font-weight: bold;
  line-height: 1.65;
}


/* ========================================
   カード説明文
======================================== */

.inclination-concern-card__text {
  position: relative;
  z-index: 2;

  margin: 20px 0 0;

  color: var(--inclination-subtext);

  font-size: 14px;
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: 0.025em;
}


/* ========================================
   ホバーアニメーション
======================================== */

@media (hover: hover) {

  .inclination-concern-card {
    transition:
      transform 0.35s ease,
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }

  .inclination-concern-card:hover {
    transform: translateY(-5px);
    border-color: rgba(24, 163, 110, 0.35);

    box-shadow:
      0 18px 45px
      rgba(38, 73, 59, 0.08);
  }

  .inclination-concern-card__image {
    transition: transform 0.6s ease;
  }

  .inclination-concern-card:hover
  .inclination-concern-card__image {
    transform: scale(1.04);
  }

}


/* ========================================
   タブレット
======================================== */

@media (max-width: 900px) {

  .inclination-concern-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .inclination-concern-card {
    min-height: auto;
  }

}


/* ========================================
   スマートフォン
======================================== */

@media (max-width: 600px) {

  .inclination-concern-cards {
    gap: 15px;
  }

  .inclination-concern-card {
    padding: 16px 16px 24px;
  }

  .inclination-concern-card__number {
    top: 12px;
    right: 12px;
    font-size: 34px;
  }

  .inclination-concern-card__image-wrap {
    margin-bottom: 18px;
  }

  .inclination-concern-card__title {
    font-size: clamp(21px, 6vw, 26px);
  }

  .inclination-concern-card__text {
    font-size: 13px;
  }

}

/* ==================================================
   建物傾斜測定 料金・詳細表
================================================== */

/* ========================================
   建物傾斜測定 料金・詳細表
======================================== */

.inclination-price-table-wrap,
.inclination-price-table-wrap *,
.inclination-price-table-wrap *::before,
.inclination-price-table-wrap *::after {
  box-sizing: border-box;
}


.inclination-price-table-wrap {
  width: 100%;

  overflow-x: auto;

  font-family:
    "Noto Sans JP",
    "UD Digi Kyokasho NK-R",
    "UD Digi Kyokasho N-R",
    "Yu Gothic",
    "YuGothic",
    sans-serif;

  -webkit-overflow-scrolling: touch;
}


/* ========================================
   テーブル本体
======================================== */

.inclination-price-table {
  width: 100%;
  min-width: 760px;

  margin: 0;

  border-collapse: collapse;
  border-spacing: 0;

  color: #092817;
  background: #ffffff;

  table-layout: fixed;
}


/* 列幅 */

.inclination-price-table__label-col {
  width: 30%;
}


.inclination-price-table__price-col {
  width: 20%;
}


.inclination-price-table__detail-col {
  width: 50%;
}


/* ========================================
   セル共通
======================================== */

.inclination-price-table th,
.inclination-price-table td {
  padding:
    18px
    16px;

  border:
    1px solid #092817;

  vertical-align: middle;

  font-size:
    clamp(14px, 1.15vw, 16px);

  font-weight: 400;
  line-height: 1.9;

  letter-spacing: 0.015em;

  text-align: left;
}


/* ========================================
   左列
======================================== */

.inclination-price-table th {
  color: #29452d;
  background: #dfeee2;

  font-weight: bold;
text-align: center;
  vertical-align: middle;
}


/* ========================================
   その他のセル
======================================== */

.inclination-price-table td {
  color: #092817;
  background: #ffffff;
}


/* 価格列 */

.inclination-price-table__price {
  white-space: nowrap;
 text-align: center;
  vertical-align: middle;
}


/* ========================================
   セル内文章
======================================== */

.inclination-price-table p {
  margin: 0;
}


.inclination-price-table p + p {
  margin-top: 8px;
}


/* 注意書き */

.inclination-price-table__note {
  font-size: 0.95em;
}


/* ========================================
   測定範囲
======================================== */

.inclination-price-table__range {
  display: grid;

  gap: 8px;

  margin: 0;
}


.inclination-price-table__range-row {
  display: grid;

  grid-template-columns:
    34px
    minmax(0, 1fr);

  gap: 8px;
}


.inclination-price-table__range dt,
.inclination-price-table__range dd {
  margin: 0;
}


.inclination-price-table__range dd {
  padding-left: 30px;
}


.inclination-price-table__range dd span {
  display: block;
}


/* ========================================
   スマートフォン
======================================== */

@media screen and (max-width: 600px) {

  .inclination-price-table {
    min-width: 720px;
  }


  .inclination-price-table th,
  .inclination-price-table td {
    padding:
      14px
      12px;

    font-size: 14px;
    line-height: 1.8;
  }

}

/* ==================================================
   建物不同沈下測定 料金表
================================================== */

/* ========================================
   建物不同沈下測定 料金表
======================================== */

.settlement-price-table-wrap,
.settlement-price-table-wrap *,
.settlement-price-table-wrap *::before,
.settlement-price-table-wrap *::after {
  box-sizing: border-box;
}


.settlement-price-table-wrap {
  width: 100%;

  overflow-x: auto;

  font-family:
    "Noto Sans JP",
    "UD Digi Kyokasho NK-R",
    "UD Digi Kyokasho N-R",
    "Yu Gothic",
    "YuGothic",
    sans-serif;

  -webkit-overflow-scrolling: touch;
}


/* ========================================
   テーブル本体
======================================== */

.settlement-price-table {
  width: 100%;
  min-width: 600px;

  margin: 0;

  border-collapse: collapse;
  border-spacing: 0;

  color: #092817;
  background: #ffffff;

  table-layout: fixed;
}


/* ========================================
   列幅
======================================== */

.settlement-price-table__label-col {
  width: 24%;
}


.settlement-price-table__floor-col {
  width: 30%;
}


.settlement-price-table__price-col {
  width: 46%;
}


/* ========================================
   セル共通
======================================== */

.settlement-price-table th,
.settlement-price-table td {
  padding:
    17px
    18px;

  border:
    1px solid #092817;

  vertical-align: middle;

  font-size:
    clamp(14px, 1.15vw, 16px);

  font-weight: 400;
  line-height: 1.7;

  letter-spacing: 0.015em;

  text-align: left;
}


/* ========================================
   左側見出し
======================================== */

.settlement-price-table th {
  color: #29452d;
  background: #dfeee2;

  font-weight: bold;

  text-align: center;
  vertical-align: middle;
}


/* ========================================
   その他のセル
======================================== */

.settlement-price-table td {
  color: #092817;
  background: #ffffff;
}


/* 階数 */

.settlement-price-table__floor {
  font-weight: 500;
}


/* 料金 */

.settlement-price-table__price {
  white-space: nowrap;
}


/* ========================================
   スマートフォン
======================================== */

@media screen and (max-width: 600px) {

  .settlement-price-table {
    min-width: 560px;
  }


  .settlement-price-table th,
  .settlement-price-table td {
    padding:
      14px
      12px;

    font-size: 14px;
  }

}

/* ==================================================
   建物傾斜測定 セット料金
================================================== */

/* ========================================
   建物傾斜測定ページ
   共通カラー
======================================== */

:root {
  --inclination-green: #6f9a82;
  --inclination-green-dark: #3f7258;

  --inclination-text: #26332d;
  --inclination-subtext: #092817;

  --inclination-border: #dfe7e2;
  --inclination-light: #f4f7f5;
  --inclination-light-2: #edf3ef;

  --inclination-white: #ffffff;
}


/* ========================================
   サービス詳細
   基本設定
======================================== */

.inclination-service-detail,
.inclination-service-detail *,
.inclination-service-detail *::before,
.inclination-service-detail *::after {
  box-sizing: border-box;
}


.inclination-service-detail {
  width: 100%;

  padding:
    clamp(62px, 7vw, 105px)
    24px;

  color: var(--inclination-text);

  background: var(--inclination-light);

  font-family:
    "Noto Sans JP",
    "UD Digi Kyokasho NK-R",
    "UD Digi Kyokasho N-R",
    "Yu Gothic",
    "YuGothic",
    sans-serif;
}


.inclination-service-detail__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}


/* ========================================
   共通セクション見出し
======================================== */

.inclination-section-heading {
  max-width: 820px;

  margin-bottom:
    clamp(42px, 5.2vw, 64px);
}


.inclination-section-heading__en {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 20px;

  color: var(--inclination-green);

  font-size: 11px;
  font-weight: 400;
  line-height: 1;

  letter-spacing: 0.2em;
}


.inclination-section-heading__line {
  display: block;

  flex: 0 0 auto;

  width: 42px;
  height: 1px;

  background: var(--inclination-green);
}


.inclination-section-heading__title {
  margin: 0;

  color: var(--inclination-text);

  font-size:
    clamp(31px, 3.7vw, 50px);

  font-weight: 400;
  line-height: 1.45;

  letter-spacing: 0.045em;
}


.inclination-section-heading__title span {
  color: var(--inclination-green-dark);
}


.inclination-section-heading__lead {
  margin:
    24px
    0
    0;

  color: var(--inclination-subtext);

  font-size:
    clamp(15px, 1.25vw, 17px);

  font-weight: 400;
  line-height: 1.8;

  letter-spacing: 0.035em;
}


/* ========================================
   セット料金
======================================== */

.inclination-set-plan,
.inclination-set-plan *,
.inclination-set-plan *::before,
.inclination-set-plan *::after {
  box-sizing: border-box;
}


.inclination-set-plan {
  width: 100%;

  padding:
    clamp(62px, 7vw, 85px)
    24px;

  color: var(--inclination-text);

  background: #ffffff;

  font-family:
    "Noto Sans JP",
    "UD Digi Kyokasho NK-R",
    "UD Digi Kyokasho N-R",
    "Yu Gothic",
    "YuGothic",
    sans-serif;
}


.inclination-set-plan__inner {
  width: min(1180px, 100%);

  margin: 0 auto;
}


/* ========================================
   セットカード一覧
======================================== */

.inclination-set-plan__grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    clamp(20px, 2.6vw, 30px);
}


/* ========================================
   セット料金カード
======================================== */

.inclination-set-plan__card {
  position: relative;

  padding:
    clamp(27px, 3.5vw, 42px);

  overflow: hidden;

  border:
    1px solid var(--inclination-border);

  border-radius: 10px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #f7faf8 100%
    );
}


/* 背景装飾 */

.inclination-set-plan__card::before {
  content: "";

  position: absolute;

  top: -105px;
  right: -105px;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  background:
    rgba(111, 154, 130, 0.07);

  pointer-events: none;
}


/* ========================================
   2階建て / 3階建て
======================================== */

.inclination-set-plan__floor {
  position: relative;

  z-index: 1;

  padding-bottom: 20px;
  margin-bottom: 25px;

  border-bottom:
    1px solid var(--inclination-border);
}


.inclination-set-plan__floor-en {
  display: block;

  margin-bottom: 7px;

  color: var(--inclination-green);

  font-size: 10px;
  font-weight: 400;
  line-height: 1;

  letter-spacing: 0.18em;
}


.inclination-set-plan__floor-title {
  margin: 0;

  color: var(--inclination-text);

  font-size:
    clamp(21px, 2vw, 26px);

  font-weight: 500;
  line-height: 1.4;

  letter-spacing: 0.04em;
}


/* ========================================
   セット内容
======================================== */

.inclination-set-plan__services {
  display: flex;
  flex-direction: column;

  align-items: stretch;

  gap: 14px;

  margin-bottom: 29px;
}


/* 各サービス */

.inclination-set-plan__service {
  padding:
    17px
    20px;

  border:
    1px solid var(--inclination-border);

  border-radius: 6px;

  background:
    rgba(255, 255, 255, 0.75);
}


.inclination-set-plan__service-en {
  display: block;

  margin-bottom: 6px;

  color: var(--inclination-green);

  font-size: 9px;
  font-weight: 400;
  line-height: 1.15;

  letter-spacing: 0.14em;
}


.inclination-set-plan__service-name {
  margin: 0;

  color: var(--inclination-text);

  font-size:
    clamp(15px, 1.4vw, 18px);

  font-weight: 500;
  line-height: 1.5;

  letter-spacing: 0.025em;
}


/* ========================================
   ＋
======================================== */

.inclination-set-plan__plus {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  margin: -3px auto;

  border:
    1px solid var(--inclination-green);

  border-radius: 50%;

  color: var(--inclination-green-dark);

  background: #ffffff;

  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}


/* ========================================
   セット料金
======================================== */

.inclination-set-plan__price {
  padding:
    24px
    0;

  text-align: center;

  border-top:
    1px solid var(--inclination-border);

  border-bottom:
    1px solid var(--inclination-border);
}


.inclination-set-plan__price-label {
  display: block;

  margin-bottom: 10px;

  color: var(--inclination-green);

  font-size: 10px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.18em;
}


.inclination-set-plan__price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;

  gap: 7px;
}


.inclination-set-plan__price-value strong {
  color: var(--inclination-green-dark);

  font-size:
    clamp(46px, 5.7vw, 68px);

  font-weight: 500;
  line-height: 1;

  letter-spacing: -0.025em;
}


.inclination-set-plan__price-value span {
  color: var(--inclination-text);

  font-size: 15px;
  font-weight: 500;
}


/* ========================================
   通常料金・SAVE
======================================== */

.inclination-set-plan__saving {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  align-items: stretch;

  gap: 12px;

  margin-top: 18px;
}


/* 通常料金 */

.inclination-set-plan__regular {
  display: flex;
  flex-direction: column;

  justify-content: center;

  gap: 4px;

  padding:
    12px
    14px;

  border:
    1px solid var(--inclination-border);

  border-radius: 5px;
}


.inclination-set-plan__regular span {
  color: var(--inclination-subtext);

  font-size: 11px;
  line-height: 1.4;
}


.inclination-set-plan__regular strong {
  color: var(--inclination-subtext);

  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;

  text-decoration: line-through;
}


/* SAVE */

.inclination-set-plan__save {
  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  min-width: 130px;

  gap: 4px;

  padding:
    12px
    16px;

  border-radius: 5px;

  color: #ffffff;

  background:
    var(--inclination-green-dark);
}


.inclination-set-plan__save span {
  font-size: 9px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.18em;
}


.inclination-set-plan__save strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}


/* ========================================
   PC専用改行
======================================== */

.pc-only {
  display: block;
}


/* ========================================
   タブレット
======================================== */

@media screen and (max-width: 900px) {

  .inclination-set-plan__grid {
    grid-template-columns: 1fr;
  }

}


/* ========================================
   スマートフォン
======================================== */

@media screen and (max-width: 600px) {

  .inclination-set-plan {
    padding:
      56px
      18px;
  }


  /* --------------------------
     共通見出し
  -------------------------- */

  .inclination-section-heading {
    margin-bottom: 34px;
  }


  .inclination-section-heading__en {
    gap: 11px;

    margin-bottom: 16px;

    font-size: 10px;
  }


  .inclination-section-heading__line {
    width: 32px;
  }


  .inclination-section-heading__title {
    font-size: 29px;

    line-height: 1.45;

    letter-spacing: 0.035em;
  }


  .inclination-section-heading__lead {
    margin-top: 18px;

    font-size: 15px;
    line-height: 1.75;
  }


  .pc-only {
    display: none;
  }


  /* --------------------------
     カード
  -------------------------- */

  .inclination-set-plan__grid {
    gap: 16px;
  }


  .inclination-set-plan__card {
    padding:
      23px
      18px;
  }


  .inclination-set-plan__floor {
    padding-bottom: 17px;
    margin-bottom: 20px;
  }


  .inclination-set-plan__floor-title {
    line-height: 1.35;
  }


  .inclination-set-plan__services {
    gap: 12px;

    margin-bottom: 23px;
  }


  .inclination-set-plan__service {
    padding:
      15px
      14px;
  }


  .inclination-set-plan__service-en {
    margin-bottom: 5px;
  }


  .inclination-set-plan__service-name {
    font-size: 15px;

    line-height: 1.45;
  }


  .inclination-set-plan__plus {
    width: 32px;
    height: 32px;

    font-size: 17px;
  }


  /* --------------------------
     料金
  -------------------------- */

  .inclination-set-plan__price {
    padding:
      21px
      0;
  }


  .inclination-set-plan__price-label {
    margin-bottom: 9px;
  }


  .inclination-set-plan__price-value strong {
    font-size: 48px;
  }


  .inclination-set-plan__price-value span {
    font-size: 13px;
  }


  /* --------------------------
     SAVE
  -------------------------- */

  .inclination-set-plan__saving {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(120px, auto);

    gap: 8px;

    margin-top: 16px;
  }


  .inclination-set-plan__regular {
    padding:
      10px
      12px;
  }


  .inclination-set-plan__regular strong {
    font-size: 14px;
  }


  .inclination-set-plan__save {
    min-width: 120px;

    padding:
      10px
      12px;
  }


  .inclination-set-plan__save strong {
    font-size: 16px;
  }

}

/* ==================================================
   全サービス共通 お問い合わせCTA
================================================== */

/* ========================================
   全サービス共通 お問い合わせCTA
======================================== */

.service-contact-cta,
.service-contact-cta *,
.service-contact-cta *::before,
.service-contact-cta *::after {
  box-sizing: border-box;
}


.service-contact-cta {
  width: 100%;

  padding:
    clamp(70px, 8vw, 120px)
    24px;

  color: #26332d;
  background: #edf3ef;

  font-family:
    "Noto Sans JP",
    "UD Digi Kyokasho NK-R",
    "UD Digi Kyokasho N-R",
    "Yu Gothic",
    "YuGothic",
    sans-serif;
}


.service-contact-cta__inner {
  display: grid;

  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(320px, 0.75fr);

  width: min(1180px, 100%);

  margin: 0 auto;

  overflow: hidden;

  border: 1px solid #dfe7e2;
  border-radius: 12px;

  background: #ffffff;

  box-shadow:
    0 24px 60px
    rgba(38, 51, 45, 0.08);
}


/* ========================================
   メインCTA
======================================== */

.service-contact-cta__main {
  position: relative;

  isolation: isolate;

  padding:
    clamp(38px, 5vw, 68px);

  overflow: hidden;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #3f7258 0%,
      #567f68 55%,
      #6f9a82 100%
    );
}


/* 背景の円形装飾 */

.service-contact-cta__main::before {
  content: "";

  position: absolute;
  z-index: -1;

  top: -150px;
  right: -120px;

  width: 360px;
  height: 360px;

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 50%;
}


.service-contact-cta__main::after {
  content: "";

  position: absolute;
  z-index: -1;

  right: 52px;
  bottom: -120px;

  width: 240px;
  height: 240px;

  border:
    1px solid
    rgba(255, 255, 255, 0.1);

  border-radius: 50%;
}


/* ========================================
   CTA見出し
======================================== */

.service-contact-cta__heading {
  margin-bottom: 28px;
}


.service-contact-cta__en {
  display: block;

  margin-bottom: 17px;

  color:
    rgba(255, 255, 255, 0.7);

  font-size: 10px;
  font-weight: 400;
  line-height: 1;

  letter-spacing: 0.22em;
}


.service-contact-cta__title {
  margin: 0;

  color: #ffffff;

  font-size:
    clamp(31px, 4vw, 48px);

  font-weight: 400;
  line-height: 1.5;

  letter-spacing: 0.045em;
}


.service-contact-cta__title span {
  font-weight: 500;
}


/* ========================================
   CTA説明文
======================================== */

.service-contact-cta__text {
  max-width: 640px;

  margin:
    0
    0
    clamp(32px, 4vw, 44px);

  color:
    rgba(255, 255, 255, 0.88);

  font-size:
    clamp(14px, 1.2vw, 16px);

  font-weight: 400;
  line-height: 2;

  letter-spacing: 0.025em;
}


/* ========================================
   CTA操作エリア
======================================== */

.service-contact-cta__actions {
  display: grid;

  gap: 14px;

  max-width: 690px;
}


/* ========================================
   最優先CTA：WEB見積もり
======================================== */

.service-contact-cta__estimate-button {
  position: relative;

  display: block;

  min-height: 92px;

  padding:
    21px
    22px;

  overflow: hidden;

  color: #29452d;

  border:
    2px solid
    rgba(255, 255, 255, 0.96);

  border-radius: 7px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f7fbf8 100%
    );

  box-shadow:
    0 16px 34px
    rgba(24, 59, 41, 0.22);

  text-decoration: none !important;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}


.service-contact-cta__estimate-button:link,
.service-contact-cta__estimate-button:visited,
.service-contact-cta__estimate-button:hover,
.service-contact-cta__estimate-button:focus,
.service-contact-cta__estimate-button:active {
  text-decoration: none !important;
}


/* おすすめラベル */

.service-contact-cta__estimate-label {
  position: absolute;

  top: 0;
  left: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  min-width: 76px;
  min-height: 24px;

  padding:
    4px
    12px;

  color: #ffffff;
  background: #29452d;

  border-radius:
    0
    0
    6px
    0;

  font-size: 10px;
  font-weight: 600;
  line-height: 1;

  letter-spacing: 0.08em;
}


/* 見積もりボタン内部 */

.service-contact-cta__estimate-content {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;

  min-height: 48px;

  padding-top: 9px;
}


.service-contact-cta__estimate-copy {
  display: flex;

  flex-direction: column;

  gap: 4px;
}


.service-contact-cta__estimate-subtext {
  color: #65706a;

  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;

  letter-spacing: 0.04em;
}


.service-contact-cta__estimate-text {
  color: #29452d;

  font-size:
    clamp(16px, 1.7vw, 20px);

  font-weight: 700;
  line-height: 1.5;

  letter-spacing: 0.035em;
}


.service-contact-cta__estimate-arrow {
  display: flex;

  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  width: 42px;
  height: 42px;

  color: #ffffff;
  background: #3f7258;

  border-radius: 50%;

  font-size: 17px;
  line-height: 1;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}


/* ========================================
   WEB問い合わせ・電話問い合わせ
======================================== */

.service-contact-cta__secondary-buttons {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px;
}


.service-contact-cta__button {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 16px;

  min-height: 62px;

  padding:
    15px
    19px;

  border:
    1px solid
    rgba(255, 255, 255, 0.72);

  border-radius: 5px;

  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;

  letter-spacing: 0.025em;

  text-decoration: none !important;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}


.service-contact-cta__button:link,
.service-contact-cta__button:visited,
.service-contact-cta__button:hover,
.service-contact-cta__button:focus,
.service-contact-cta__button:active {
  text-decoration: none !important;
}


.service-contact-cta__button-text {
  min-width: 0;
}


/* WEB問い合わせ */

.service-contact-cta__button--web {
  color: #ffffff;
  background:
    rgba(255, 255, 255, 0.1);
}


/* 電話問い合わせ */

.service-contact-cta__button--phone {
  color: #ffffff;
  background: transparent;
}


/* 矢印 */

.service-contact-cta__button-arrow {
  display: flex;

  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  width: 28px;
  height: 28px;

  border:
    1px solid currentColor;

  border-radius: 50%;

  font-size: 13px;
  line-height: 1;
}


/* ========================================
   フォーカス
======================================== */

.service-contact-cta__estimate-button:focus-visible,
.service-contact-cta__button:focus-visible {
  outline:
    3px solid
    rgba(255, 255, 255, 0.8);

  outline-offset: 4px;
}


/* ========================================
   PCホバー
======================================== */

@media (hover: hover) {

  .service-contact-cta__estimate-button:hover {
    color: #ffffff;

    border-color: #29452d;

    background: #29452d;

    box-shadow:
      0 20px 40px
      rgba(24, 59, 41, 0.3);

    transform: translateY(-3px);
  }


  .service-contact-cta__estimate-button:hover
  .service-contact-cta__estimate-text,
  .service-contact-cta__estimate-button:hover
  .service-contact-cta__estimate-subtext {
    color: #ffffff;
  }


  .service-contact-cta__estimate-button:hover
  .service-contact-cta__estimate-label {
    color: #29452d;
    background: #ffffff;
  }


  .service-contact-cta__estimate-button:hover
  .service-contact-cta__estimate-arrow {
    color: #29452d;
    background: #ffffff;

    transform: translateX(3px);
  }


  .service-contact-cta__button:hover {
    color: #3f7258;

    background: #ffffff;

    transform: translateY(-2px);
  }

}


/* ========================================
   右側案内
======================================== */

.service-contact-cta__guide {
  padding:
    clamp(34px, 4vw, 52px);

  background:
    linear-gradient(
      160deg,
      #ffffff 0%,
      #f7faf8 100%
    );
}


/* ========================================
   案内見出し
======================================== */

.service-contact-cta__guide-heading {
  padding-bottom: 24px;
  margin-bottom: 10px;

  border-bottom:
    1px solid #dfe7e2;
}


.service-contact-cta__guide-en {
  display: block;

  margin-bottom: 10px;

  color: #6f9a82;

  font-size: 9px;
  font-weight: 400;
  line-height: 1;

  letter-spacing: 0.2em;
}


.service-contact-cta__guide-title {
  margin: 0;

  color: #29452d;

  font-size:
    clamp(21px, 2vw, 27px);

  font-weight: 500;
  line-height: 1.6;

  letter-spacing: 0.035em;
}


/* ========================================
   おすすめリスト
======================================== */

.service-contact-cta__guide-list {
  margin: 0;
  padding: 0;

  list-style: none;
}


.service-contact-cta__guide-list li {
  display: grid;

  grid-template-columns:
    32px
    minmax(0, 1fr);

  align-items: center;

  gap: 12px;

  padding:
    17px
    0;

  border-bottom:
    1px solid #dfe7e2;
}


.service-contact-cta__guide-number {
  color: #6f9a82;

  font-size: 9px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.1em;
}


.service-contact-cta__guide-text {
  color: #092817;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;

  letter-spacing: 0.02em;
}


/* ========================================
   補足文
======================================== */

.service-contact-cta__guide-note {
  position: relative;

  margin:
    22px
    0
    0;

  padding-left: 17px;

  color: #65706a;

  font-size: 12px;
  font-weight: 400;
  line-height: 1.9;
}


.service-contact-cta__guide-note::before {
  content: "※";

  position: absolute;

  top: 0;
  left: 0;

  color: #6f9a82;
}


/* ========================================
   タブレット
======================================== */

@media screen and (max-width: 900px) {

  .service-contact-cta__inner {
    grid-template-columns: 1fr;
  }


  .service-contact-cta__guide {
    border-top:
      1px solid #dfe7e2;
  }


  .service-contact-cta__guide-title br {
    display: none;
  }

}


/* ========================================
   スマートフォン
======================================== */

@media screen and (max-width: 600px) {

  .service-contact-cta {
    padding:
      60px
      18px;
  }


  .service-contact-cta__inner {
    border-radius: 8px;
  }


  /* CTA本体 */

  .service-contact-cta__main {
    padding:
      38px
      22px;
  }


  .service-contact-cta__heading {
    margin-bottom: 22px;
  }


  .service-contact-cta__title {
    font-size: 27px;
    line-height: 1.55;
  }


  .service-contact-cta__text {
    margin-bottom: 30px;

    font-size: 14px;
    line-height: 1.9;
  }


  /* WEB見積もり */

  .service-contact-cta__estimate-button {
    min-height: 88px;

    padding:
      20px
      17px;
  }


  .service-contact-cta__estimate-content {
    gap: 14px;
  }


  .service-contact-cta__estimate-subtext {
    font-size: 10px;
  }


  .service-contact-cta__estimate-text {
    font-size: 16px;
  }


  .service-contact-cta__estimate-arrow {
    width: 38px;
    height: 38px;
  }


  /* その他ボタン */

  .service-contact-cta__secondary-buttons {
    grid-template-columns: 1fr;

    gap: 10px;
  }


  .service-contact-cta__button {
    min-height: 58px;

    padding:
      14px
      17px;

    font-size: 13px;
  }


  /* 右側案内 */

  .service-contact-cta__guide {
    padding:
      32px
      22px;
  }


  .service-contact-cta__guide-title {
    font-size: 21px;
  }


  .service-contact-cta__guide-list li {
    padding:
      15px
      0;
  }


  .service-contact-cta__guide-text {
    font-size: 13px;
  }

}


/* ========================================
   動きを減らす設定
======================================== */

@media (prefers-reduced-motion: reduce) {

  .service-contact-cta__estimate-button,
  .service-contact-cta__estimate-arrow,
  .service-contact-cta__button {
    transition: none;
  }


  .service-contact-cta__estimate-button:hover,
  .service-contact-cta__button:hover {
    transform: none;
  }

}
