/* =============================================================== */
/* 共通設定 ここから */
/* =============================================================== */
@charset "UTF-8";

* {
	font-family: "Noto Sans JP", sans-serif;
}

@font-face {
  font-family: 'ZeroGothic';
  src: url('../fonts/ZeroGothic.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


* {
  box-sizing: border-box;
}

:root {
  --lp-main-color-lightblue: #3BC6E6;
  --lp-accent-color-gold: #d2b70a;
  --lp-accent-color-yellow: #F4E454;
  --lp-accent-color-light-yellow: #fdff7c;
  --lp-accent-color-orange: #FF7A00;
  --lp-bg-color-gray: #C5C5C5;
  --lp-bg-color-darkgray: #717171;
  --lp-bg-color-green: #77BE04;
  --lp-bg-color-blue: #000C7A;
  --lp-bg-color-navy: #00095a;
  --lp-bg-color-yellow: #eee71e;
  --lp-bg-color-lightgray: #EFEFEF;
}

p,
html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6 {
  all: unset; /* すべてのスタイルを初期化 */
  display: block; /* 見出しやp要素が消えないように再定義 */
  margin: 0;
  padding: 0;
}

/* 見出しや段落の疑似要素をリセット */
html body h1::before,
html body h1::after,
html body h2::before,
html body h2::after,
html body h3::before,
html body h3::after,
html body h4::before,
html body h4::after,
html body h5::before,
html body h5::after,
html body h6::before,
html body h6::after {
  all: unset;
  display: none;
  content: none;
}

/* 中見出し用の文字サイズ */
html body h2 {
  color: inherit;
  position: relative;

  font-size: clamp(1.4rem, 2.8vw, 3rem) !important;
  font-weight: 500;
  margin: 0;
}

/* 小見出し用の文字サイズ */
html body h3 {
  color: inherit;
  position: relative;

  font-size: clamp(1.2rem, 1.8vw, 2rem) !important;
  font-weight: 500 !important;
  margin: 0;
}

/* 小見出し用の文字サイズ - その２ */
html body h4 {
  color: inherit;
  position: relative;

  font-size: clamp(1.2rem, 1.5vw, 2rem) !important;
  font-weight: 500;
  margin: 0;
}

/* 本文用の文字サイズ */
html body p {
  font-size: clamp(1rem, 1.2vw, 1.5rem) !important;
  font-weight: 400;
}


a {
  color: inherit;
  text-decoration: none;
}

body {
  background-color: #fff;
  margin: 0;
  padding: 0;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main {
  width: 100vw !important;
}

ul {
  margin: 0;
  padding: 0;
}

.main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 100%;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.border-radius-common {
  border-radius: clamp(1rem, 2vw, 2rem);
}
.border-radius-common-sharp {
  border-radius: clamp(1rem, 1vw, 1.5rem);
}

.content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 70vw;
  padding: 0;
  margin: 0;

  position: relative;
}
@media(max-width:767px) {
  .content-wrapper {
    width: 95vw;
  }
}
@media(min-width: 768px) and (max-width: 1024px){
  .content-wrapper {
    width: 95vw;
  }
}

.underline-highlight {
  position: relative;
  z-index: 1000;
  &::before {
    content: "";
    position: absolute;
    background-color: rgba(255, 14, 155, 0.3);
    z-index: -1;

    bottom: -3px !important;
    left: -3%;
    width: 103%;
    height: 16px !important;
  }
}

.green-highlight {
  background-color: var(--lp-bg-color-green);
  color: #fff;

  padding: 5px 10px;
  margin: 0 3px;
  font-weight: 500;
}

.darkgray-highlight {
  background-color: var(--lp-bg-color-darkgray);
  color: #fff;

  padding: 5px 10px;
  margin: 0 3px;
  font-weight: 500;
}

.blue-highlight {
  background-color: var(--lp-bg-color-blue);
  color: #fff;

  padding: 5px 10px;
  margin: 0 3px;
  font-weight: 500;
}

.navy-highlight {
  background-color: var(--lp-bg-color-navy);
  color: #fff;

  padding: 5px 10px;
  /* margin: 0 3px; */
  font-weight: 500;
}

.yellow-highlight {
  background-color: var(--lp-bg-color-yellow);
  color: #000;

  padding: 5px 10px;
  margin: 0 3px;
  font-weight: 700;
}

.black-highlight {
  background-color: #000;
  color: #fff;

  padding: 5px 10px;
  font-weight: 500;
  * {
    display: inline-block;
    line-height: 1;
  }
  .red-color {
    color: red;
    font-size: clamp(1.2rem, 3vw, 2rem);
    text-indent: -.5rem;
  }
}

.red-color {
  color: red;
  font-size: clamp(1rem, 10vw, 4rem);
  text-indent: -.5rem;
}

.pink-color {
  color: rgb(255, 99, 180);
  font-size: clamp(1rem, 10vw, 4rem);
  text-indent: -.5rem;
}


.bold {
  font-weight: 500;
}


/* 大見出し用の文字サイズ */
.font-size-large-extra {
  font-size: clamp(3rem, 4vw, 4rem) !important;
  font-weight: 600;
}


/* 大見出し用の文字サイズ */
.font-size-large {
  font-size: clamp(1.8rem, 2.8vw, 3rem) !important;
  font-weight: 500;
}

/* 小見出し用の文字サイズ */
.font-size-medium-extra {
  font-size: clamp(1.5rem, 2vw, 2.7rem) !important;
  font-weight: 500;
}

/* 小見出し用の文字サイズ */
.font-size-medium {
  font-size: clamp(1.2rem, 1.8vw, 2rem) !important;
  font-weight: 500;
}

/* 記事用の文字サイズ */
.font-size-small {
  font-size: clamp(1rem, 1.5vw, 1.5rem) !important;
  font-weight: 500;
}

/* 注釈用の文字サイズ */
.font-size-small-extra {
  font-size: clamp(.3rem, .5vw, 1rem) !important;
  font-weight: 400;
}
@media(max-width:768px) {
  /* 注釈用の文字サイズ */
  .font-size-small-extra {
    font-size: clamp(.4rem, .5vw, 1rem) !important;
    font-weight: 400;
  }
}


.circle {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: 500;
  font-style: italic;
  text-indent: -0.2rem;
  > div {
    font-size: clamp(1.1rem, 1vw, 2rem) !important;
  }
}

.margin-bottom {
  margin-bottom: 20px;
}

.margin-bottom-large {
  margin-bottom: 50px;
}

/* =============================================================== */
/* 共通設定 ここまで */
/* =============================================================== */





/* =============================================================== */
/* GLOBAL NAVIGATION（PC用）ここから */
/* =============================================================== */

header {
  padding: 0px 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;

  background-color: #fff;
}

.logo {
  width: clamp(5rem, 18vw, 13rem);
  height: auto; /* 高さを適切に設定 */

  background-image: url(../image/logo-horizontal.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  a {
    display: block;
    width: 100%;
    height: 100%;
  }
}

.nav-menu {
  display: flex;
  gap: 10px;
  padding: 8px;
  .menu-item {
    width: 8vw;
    padding: 6px;
    text-align: center;
    white-space: nowrap;

    background-color: var(--lp-accent-color-gold);
    color: #000;
    font-size: clamp(.6rem, 1vw, 1rem);
    font-weight: 500;

    transition: all .3s;
    &:hover {
      filter: brightness(1.1);
    }
  }
}

/* =============================================================== */
/* GLOBAL NAVIGATION（PC用）ここまで */
/* =============================================================== */
/* =============================================================== */
/* GLOBAL NAVIGATION（モバイル用）ここから */
/* =============================================================== */
@media(max-width:767px) {
  header {
    width: 100%;
    justify-content: center;
  }
  .logo {
    transform: scale(1.2);
    width: 45vw;
    height: 50px;
  }
  .nav-menu {
    display: none;
  }
}
@media(min-width: 768px) and (max-width: 850px) {
  header {
    width: 100%;
    justify-content: center;
  }
  .logo {
    transform: scale(1.2);
    width: 45vw;
    height: 50px;
  }
  .nav-menu {
    display: none;
  }
}
/* =============================================================== */
/* GLOBAL NAVIGATION（SP用）ここまで */
/* =============================================================== */






/* =============================================================== */
/* FIRST VIEW（PC用）ここから */
/* =============================================================== */

.first-view {
  width: 100%;
  height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;

  position: relative;
}

.key-visual {
  flex-grow: 1;
  width: 100%;
  overflow: hidden;

  background-image: 
    radial-gradient(circle at 50% calc(100% + 400px), /* 中心位置を下端から100px下に設定 */
    rgba(241, 241, 241, 0) 0%,   /* 完全透明 (中心) */
    rgba(241, 241, 241, 0) 35%,   /* 完全透明 (中心) */
    rgba(241, 241, 241, 0.3) 40%,   /* 完全透明 (中心) */
    rgba(59, 198, 230, 0.9) 60%,  /* 水色 (薄く) */
    rgba(59, 198, 230, 1) 70%,  /* 水色 (少し濃く) */
    rgba(59, 198, 230, 1) 100%   /* 水色 (最濃) */
    ), 
    url(../image/key-visual.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  position: relative;
}

.wording {
  position: absolute;
  top: 30px;

  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 8px;

  > div {
    width: 50vw;
    transform: translateX(30px);
  }
}

.lady-image {
  position: absolute;

  bottom: 0;
  right: calc(7%);
  width: 40%;
  height: 60%;
  background-image: url(../image/lady-image.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

/*  ブロック-１ */
.achievements {
  display: flex;
  gap: 30px;
  color: var(--lp-accent-color-yellow);
  font-weight: 600;
}

/* 雑草対策工事 */
.achievements-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;  /* 子要素を下揃え */
  .sub {
    font-size: clamp(.5rem, 1vw, 2rem);
  }
  .main {
    font-size: clamp(1rem, 2vw, 3rem);
  }
}

/* 累計実績 300件 突破 の全体 */
.achievements-number {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

/* 月桂冠 */
.laurel {
  width: auto;
  height: 100%;
  display: flex;
  /* align-items: flex-end; */
  transform: translateY(15px);
  padding: 0 5px;
}

/* 累計実績 300件 突破 */
.number-content {
  display: flex;
  align-items: flex-end;  /* 子要素を下揃え */

  /* 累計実績 */
  .left-sub {
    display: flex;
    flex-direction: column;
    padding-right: 10px;
    font-size: clamp(.5rem, 1vw, 1.5rem);
  }
  /* 300 */
  .number {
    font-size: clamp(2rem,10vw,5rem);
    font-weight: 800;
    line-height: 99%;
    letter-spacing: -.1rem;
  }
}

.catchphrase {
  color: #fff;
  font-size: clamp(2rem,4vw,5rem);
  font-weight: 700;
}


.cp-main {
  display: flex;
  gap: 10px;
  align-items: flex-end;

  .cp-main-1 {
    background-color: #fff;
    color: var(--lp-main-color-lightblue);
    
    width: auto;
    height: auto;
    font-size: clamp(2rem,4vw,5rem);

    .cp-main-1-text {
      display: inline-block;
      margin: .1rem clamp(-1.5rem,-1.5vw,-1rem) .1rem;
    }
  }
  .cp-main-2 {
    font-size: clamp(1.5rem,3.5vw,5rem);
    width: auto;
    display: inline-block; /* テキストの幅に合わせて横幅を調整 */
  }
}

.service-product {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;

  .product-item {
    background-color: var(--lp-accent-color-yellow);
    padding: 10px 10px;
    font-weight: 700;
    font-size: clamp(1rem, 1.2vw, 2rem);
    width: 10vw;
    text-align: center;
  }
  .symbol {
    font-weight: 600;
    color: #fff;
    font-size: 2rem;
  }
}

.star {
  position: absolute;
  bottom: 0;
  left: 8%;  /* ここで右に10%ずらす */
  width: 80%;
  height: 30%;
  background-image: url(../image/star.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position:  bottom center;
}


/* スクロールボタン */
/* スクロールアニメーションの基準位置 */
.scroll {
  position: absolute;
  left: 5%;
  bottom: 0;
  transition: all 0.3s;
}

:root {
  --scroll-position: 0;
}

/* 線のアニメーション部分 */
.scroll::before {
  animation: scrollDown 2s infinite;
  background-color: #fff;
  bottom: var(--scroll-position);
  content: "";
  height: 150px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
  z-index: 200;
}

.scroll-text {
  position: absolute;
  top: -150px;
  left: 50%;
  color: #fff;
  transform: rotate(-90deg) translateX(-50%) translateY(-30%);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  font-size: 1.2rem;
  font-weight: 600;
}

/* 線のアニメーション */
@keyframes scrollDown {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media(max-width: 768px) {
  :root {
    --scroll-position: 0;
  }
  /* 線のアニメーション部分 */
  .scroll::before {
    animation: scrollDown 2s infinite;
    background-color: #fff;
    bottom: var(--scroll-position);
    content: "";
    height: 137px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 2px;
    z-index: 200;
  }
}

/* =============================================================== */
/* FIRST VIEW（PC用）ここまで */
/* =============================================================== */
/* =============================================================== */
/* FIRST VIEW（SP用）ここから */
/* =============================================================== */

@media(max-width:767px) {
  .first-view {
    height: 100vh;
  }
  .key-visual {
    flex-grow: 1;
    background-image: 
      radial-gradient(circle at 50% calc(100% + 190px), /* 中心位置を下端から100px下に設定 */
      rgba(241, 241, 241, 0) 0%,   /* 完全透明 (中心) */
      rgba(241, 241, 241, 0) 35%,   /* 完全透明 (中心) */
      rgba(241, 241, 241, 0.5) 50%,   /* 完全透明 (中心) */
      rgba(59, 198, 230, 0.9) 65%,  /* 水色 (薄く) */
      rgba(59, 198, 230, 1) 70%,  /* 水色 (少し濃く) */
      rgba(59, 198, 230, 1) 100%   /* 水色 (最濃) */
      ), 
      url(../image/key-visual.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 60% center;
  
    position: relative;
  }
  .achievements {
    gap: 1px;
    font-weight: 600;
    flex-direction: column;
    > div {
      width: 100%;
    }
  }
  /* 雑草対策工事 */
  .achievements-copy {
    align-items: center;
    line-height: 1;
    gap: 8px;
    .sub {
      font-size: 5vw;
    }
    .main {
      font-size: 12vw;
      font-weight: 900;
    }
  }
  /* 累計実績 300件 突破　の全体 */
  .achievements-number {
    display: flex;
    justify-content: center;
    align-items: flex-end ;
    gap: 2px;
  }

  /* wordingのtop設定でキャチコピーの縦方向位置が決まる */
  .wording {
    top: 50px;
    gap: 4px;
    justify-content: center;
    align-items: center;
    > div {
      justify-content: center;
      align-items: center;
      text-align: center;

      width: 90%;
      transform: initial;
    }
  }

  .laurel {
    transform: scale(.6, .7);
    padding: 0;

    width: 35px;
    height: 50px;
    position: relative;

    svg {
      position: absolute;
      bottom: -15px;
      left: 0;
    }
  }


  /* 累計実績 300件 突破 */
  .number-content {
    display: flex;
    align-items: flex-end;  /* 子要素を下揃え */
    gap: 8px;

    /* 累計実績 */
    .left-sub {
      display: flex;
      flex-direction: column;
      padding-right: initial;
      font-size: 5vw;
    }

    /* 300 */
    .number {
      font-size: 18vw;
      font-weight: 800;
      line-height: 99%;
      letter-spacing: -.1rem;
    }

    .right-sub {
      font-size: 5vw;
      text-indent: -.1rem;
    }
  }
  /* 大人の余裕を */
  .cp-sub {
    font-size: 2rem !important;
    text-indent: -3rem;
  }
  .cp-main {
    justify-content: center;
    gap: 5px;
    .cp-main-1 {
      background-color: #fff;
      color: var(--lp-main-color-lightblue);
  
      .cp-main-1-text {
        display: inline-block;
        margin: .1rem clamp(-1.5rem,-1.5vw,-1rem) .1rem;
        font-size: 2.3rem !important;
      }
    }
    .cp-main-2 {
      font-size: 5vw;
    }
  }
  .service-product {
    display: flex;

    gap: 0;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    /* margin-left: 45px; */
  
    .product-item {
      padding: 5px 3px;
      font-size: clamp(.8rem, 1.2vw, 2rem);
      width: 23vw;
      text-align: center;
    }
    .symbol {
      font-weight: 600;
      font-size: 1rem;  
    }
  }

  /* ファーストビューの女性画像 */
  .lady-image {
    position: absolute;
    bottom: 0;
    right: -20%;
    width: 70% !important;
    height: 100%;

    background-size: 120%;
    background-repeat: no-repeat;
    background-position: bottom;
  }

  .star {
    position: absolute;
    bottom: 5%;
    left: 0;  /* ここで右に10%ずらす */
    width: 80%;
    height: 30%;
    background-image: url(../image/star.png);
    background-size: 120%;
    background-repeat: no-repeat;
    background-position:  bottom center;
  }
}


@media(min-width: 768px) and (max-width: 850px) {
  .first-view {
    height: 100vh;
  }
  .key-visual {
    flex-grow: 1;
    background-image: 
      radial-gradient(circle at 50% calc(100% + 190px), /* 中心位置を下端から100px下に設定 */
      rgba(241, 241, 241, 0) 0%,   /* 完全透明 (中心) */
      rgba(241, 241, 241, 0) 35%,   /* 完全透明 (中心) */
      rgba(241, 241, 241, 0.5) 50%,   /* 完全透明 (中心) */
      rgba(59, 198, 230, 0.9) 65%,  /* 水色 (薄く) */
      rgba(59, 198, 230, 1) 70%,  /* 水色 (少し濃く) */
      rgba(59, 198, 230, 1) 100%   /* 水色 (最濃) */
      ), 
      url(../image/key-visual.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 60% center;
  
    position: relative;
  }
  .achievements {
    gap: 1px;
    font-weight: 600;
    flex-direction: column;
    > div {
      width: 100%;
    }
  }
  /* 雑草対策工事 */
  .achievements-copy {
    align-items: center;
    line-height: 1;
    gap: 8px;
    .sub {
      font-size: 5vw;
    }
    .main {
      font-size: 12vw;
      font-weight: 900;
    }
  }
  /* 累計実績 300件 突破　の全体 */
  .achievements-number {
    display: flex;
    justify-content: center;
    align-items: flex-end ;
    gap: 2px;
  }

  /* wordingのtop設定でキャチコピーの縦方向位置が決まる */
  .wording {
    top: 50px;
    gap: 4px;
    justify-content: center;
    align-items: center;
    > div {
      justify-content: center;
      align-items: center;
      text-align: center;

      width: 90%;
      transform: initial;
    }
  }

  .laurel {
    transform: scale(.6, .7);
    padding: 0;

    width: 35px;
    height: 50px;
    position: relative;

    svg {
      position: absolute;
      bottom: -15px;
      left: 0;
    }
  }


  /* 累計実績 300件 突破 */
  .number-content {
    display: flex;
    align-items: flex-end;  /* 子要素を下揃え */
    gap: 8px;

    /* 累計実績 */
    .left-sub {
      display: flex;
      flex-direction: column;
      padding-right: initial;
      font-size: 5vw;
    }

    /* 300 */
    .number {
      font-size: 18vw;
      font-weight: 800;
      line-height: 99%;
      letter-spacing: -.1rem;
    }

    .right-sub {
      font-size: 5vw;
      text-indent: -.1rem;
    }
  }
  /* 大人の余裕を */
  .cp-sub {
    font-size: 2rem !important;
    text-indent: -3rem;
  }
  .cp-main {
    justify-content: center;
    gap: 5px;
    .cp-main-1 {
      background-color: #fff;
      color: var(--lp-main-color-lightblue);

      .cp-main-1-text {
        display: inline-block;
        margin: .1rem clamp(-1.5rem,-1.5vw,-1rem) .1rem;
        font-size: 2.3rem !important;
      }
    }
    .cp-main-2 {
      font-size: 5vw;
    }
  }
  .service-product {
    display: flex;

    gap: 0;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
  
    .product-item {
      padding: 5px 3px;
      font-size: clamp(.8rem, 1.2vw, 2rem);
      width: 23vw;
      text-align: center;
    }
    .symbol {
      font-weight: 600;
      font-size: 1rem;  
    }
  }

  /* ファーストビューの女性画像 */
  .lady-image {
    position: absolute;
    bottom: 0;
    right: -20%;
    width: 62%;
    height: 100%;

    background-size: 110%;
    background-repeat: no-repeat;
    background-position: bottom;
  }

  .star {
    position: absolute;
    bottom: 5%;
    left: 0;  /* ここで右に10%ずらす */
    width: 80%;
    height: 30%;
    background-image: url(../image/star.png);
    background-size: 120%;
    background-repeat: no-repeat;
    background-position:  bottom center;
  }
}

@media(max-width:1140px) {
  .lady-image {
    bottom: 0;
    right: calc(7%);
    width: 35%;
    height: 60%;
    background-image: url(../image/lady-image.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
  }
}

@media(min-width: 343px) and (max-width: 767px) {
  /* ファーストビューの女性画像 */
  .lady-image {
    position: absolute;
    bottom: 0;
    right: -20%;
    width: 60%;
    height: 100%;

    background-size: 90%;
    background-repeat: no-repeat;
    background-position: bottom;
  }
  .achievements {
    font-size: 70%;
  }
}

/* =============================================================== */
/* FIRST VIEW（SP用）ここまで */
/* =============================================================== */







/* =============================================================== */
/* Call To Action（PC用） */
/* =============================================================== */
.cta-fixed-cover {
  position: fixed;
  right: 30px;
  bottom: 20px;

  z-index: 9999;
}

.cta-fixed {
  position: relative;

  background-color: #fff;
  display: flex;

  font-size: clamp(1rem, 1.8vw, 3rem);
  color: #fff;
  font-weight: 700;

  border: 3px solid var(--lp-accent-color-orange);
  overflow: hidden;

  /* Elevation 3 相当（やや高い）*/
  box-shadow: 0px 3px 6px rgba(0,0,0,0.16),
  0px 3px 6px rgba(0,0,0,0.23);

  border-radius: 2rem;

  transition: all .3s;
  &:hover {
    filter: brightness(.9);
    transform: translate(2px,5px);
    box-shadow: none;
  }

  .cta-fixed-left {
    white-space: nowrap;
    background-color: var(--lp-accent-color-orange);

    padding: 10px 15px 10px 30px;
    font-weight: 700;
    font-size: clamp(1.5rem, 2vw, 3rem) !important;
    z-index: 100;
  }

  .cta-fixed-right {
    background-color: #fff;
    color: var(--lp-accent-color-orange);
   
    flex-grow: 1;
    height: 100%;
    padding: 10px 30px 10px 25px;
    white-space: nowrap;
    font-size: clamp(1.5rem, 2vw, 3rem) !important;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    z-index: 100;
  }
}

.float-in {
  opacity: 0; 
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* スクロールして表示範囲に入ったら表示 */
.float-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* スクロールしたらCTAボタンを非表示にする */
.scroll-btn.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}

@media(max-width:767px) {
  .float-in {
    opacity: 0;
    transform: translate(-50%, 20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  /* スクロールして表示範囲に入ったら表示 */
  .float-in.is-visible {
    opacity: 1;
    transform: translateY(-50%, 0);
  }

  /* スクロールしたらCTAボタンを非表示にする */
  .scroll-btn.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}


@media(min-width: 768px) and (max-width: 850px) {
  .float-in {
    opacity: 0;
    transform: translate(-50%, 20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  /* スクロールして表示範囲に入ったら表示 */
  .float-in.is-visible {
    opacity: 1;
    transform: translateY(-50%, 0);
  }

  /* スクロールしたらCTAボタンを非表示にする */
  .scroll-btn.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}


/* =============================================================== */
/* Call To Action（PC用）ここまで */
/* =============================================================== */
/* =============================================================== */
/* Call To Action（SP用）ここから */
/* =============================================================== */
@media(max-width:767px) {
  .cta-fixed-cover {
    position: fixed;
    right: 50%;
    transform: translateX(50%) !important;
    bottom: 20px;
  }
  .cta-fixed-left {
    padding: 5px 10px 8px 18px !important;
  }

  .cta-fixed-right {
    padding: 5px 12px 8px 15px !important;  }
}

@media(min-width: 768px) and (max-width: 850px) {
  .cta-fixed-cover {
    position: fixed;
    right: 50%;
    transform: translateX(50%) !important;
    bottom: 20px;
  }
  .cta-fixed-left {
    padding: 5px 10px 8px 18px !important;
  }

  .cta-fixed-right {
    padding: 5px 12px 8px 15px !important;  }
}

/* =============================================================== */
/* Call To Action（SP用）ここまで */
/* =============================================================== */





/* =============================================================== */
/* CAMPAIGN（PC設定）ここから*/
/* =============================================================== */

.campaign {
  margin-top: 50px;
  /* background-color: #d9f8ff; */
  margin: 0 !important;
  padding: 20px 0 50px 0 !important;

  .content-wrapper {  
    background-color: var(--lp-accent-color-orange);
    color: #fff;
    font-size: clamp(1.5rem,3vw,2rem);

    padding: 30px 30px 50px;
    border-radius: clamp(1rem, 2vw,2rem);
  
    gap: 20px;
  }
}

.campaign-left-cover {
  width: 70%;
  p {
    font-size: clamp(1rem, 2vw, 2rem) !important;
  }
}

.campaign-heading {
  display: inline-block;
  background-color: #fff;
  color: var(--lp-accent-color-orange);

  font-weight: 600;
  padding: 0 10px 5px;
}

.campaign-text-cover {
  margin-top: 10px;
}

.campaign-text {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 500; 
  padding: 0;
  margin: 0;
  margin-top: 0;
}

.cp-num-cover {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  font-size: clamp(2rem, 3vw, 3rem);
  transform: translateY(12px);
  * {
    text-align: center;
  }
}

.cp-num {
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 600;
}

.cp-num-sub {
  letter-spacing: -1rem;
}

.cp-num-sub-min {
  letter-spacing: -.8rem;
}

/* =============================================================== */
/* CAMPAIGN（PC設定）ここまで*/
/* =============================================================== */
/* =============================================================== */
/* CAMPAIGN（モバイル設定）ここから*/
/* =============================================================== */

@media(max-width:767px) {
  .campaign {
    margin-top: 10px !important;
    padding: 0 0 20px 0 !important;

    .content-wrapper {
      width: 95vw;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 30px 20px !important;
      gap: 0;
      > div {
        width: 100%;
      }
    }
  }
  .campaign-left-cover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .cp-num-cover {
    display: flex;
    flex-direction: initial;
    justify-content: space-between;
    align-items: flex-end;

    width: 100%;
    font-size: clamp(2rem, 3vw, 3rem);
    transform: initial;
    padding-right: 20px;

    * {
      line-height: 1;
    }
    .cp-num-sub {
      letter-spacing: -0.5rem !important;
    }
    
    .cp-num-sub-min {
      letter-spacing: -0.5rem !important;
    }
  }

}


@media(min-width: 768px) and (max-width: 850px) {
  .campaign {
    margin-top: 50px;

    .content-wrapper {
      width: 95vw;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 30px 20px !important;
      gap: 0;
      > div {
        width: 100%;
      }
    }
  }
  .campaign-left-cover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .cp-num-cover {
    display: flex;
    flex-direction: initial;
    justify-content: space-between;
    align-items: flex-end;

    width: 100%;
    font-size: clamp(2rem, 3vw, 3rem);
    transform: initial;
    padding-right: 20px;

    * {
      line-height: 1;
    }
    .cp-num-sub {
      letter-spacing: -0.5rem !important;
    }
    
    .cp-num-sub-min {
      letter-spacing: -0.5rem !important;
    }
  }

}
/* =============================================================== */
/* CAMPAIGN（モバイル設定）ここまで*/
/* =============================================================== */






/* =============================================================== */
/* PLOBLEM（PC設定）ここから */
/* =============================================================== */
section.problem {
  background-color: var(--lp-bg-color-gray);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: center;

  margin-top: 0;
  padding: 100px 0 100px;

  &.down-arrow {
    position: relative;
    &::after {
      position: absolute;
      bottom: 0;
      transform: translateY(calc(-1px + clamp(3rem, 10vw, 5rem)));

      content: "";
      display: block;
      width: 0;
      height: 0;
      border-left: clamp(4rem, 15vw, 6rem) solid transparent;  /* 左の斜辺 */
      border-right: clamp(4rem, 15vw, 6rem) solid transparent; /* 右の斜辺 */
      border-top: clamp(3rem, 10vw, 5rem) solid var(--lp-bg-color-gray); /* 下向きの三角形 */

      z-index: 1000;
    }
  }
}

.problem > .content-wrapper {
  padding: 0;
  flex-direction: column;

  h2 {
    display: inline-block;
    width: auto;
    margin: 0 0 10px;
    font-size: clamp(1.2rem, 2vw, 3rem);
  }
}

.problem-cover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  width: 100%;
}


.problem-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 自動調整 */
  gap: 1rem 2rem;
  
  width: 100%;
  max-width: 100%; /* はみ出し防止 */
  padding: 50px 50px 30px;

  background-color: var(--lp-bg-color-darkgray);

  margin-bottom: 50px !important;

  /* 下向き三角 */
  &.down-arrow {
    position: relative;
    &::after {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, calc(-1px + clamp(3rem, 10vw, 5rem)));

      content: "";
      display: block;
      width: 0;
      height: 0;
      border-left: clamp(2rem, 10vw, 6rem) solid transparent;  /* 左の斜辺 */
      border-right: clamp(2rem, 10vw, 6rem) solid transparent; /* 右の斜辺 */
      border-top: clamp(3rem, 10vw, 5rem) solid var(--lp-bg-color-darkgray); /* 下向きの三角形 */
    }
  }
}

.problem-item {
  width: 100%; /* フル幅で調整 */
}

.problem-item p {
  color: #fff;
  text-align: center;

  padding: 8px;
}

.problem-img {
  width: 100%;
  height: 80%;
  min-height: 250px;
  border-radius: 1rem;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  overflow: hidden;

  &.img-1 {
    background-image: url(../image/problem-img-1.jpeg);
  }
  &.img-2 {
    background-image: url(../image/problem-img-2.jpeg);
  }
  &.img-3 {
    background-image: url(../image/problem-img-3.jpeg);
  }
  &.img-4 {
    background-image: url(../image/problem-img-4.jpeg);
  }
}

/* PROBLEMの女性画像 */
.problem-lady {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;

  margin-top: 50px;
  margin-left: 20px;
  width: 100%;
  height: auto;

  p {
    background-color: #e4e4e4;

    width: 60%;
    padding: 20px;  
  }
}

.problem-lady-img {
  width: 100%;
  height: 60vh;
  min-height: 300px;

  background-image: url(../image/problem-lady.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;

  filter: saturate(.6);
}

.rotate {
  display: inline-block;
  color: red;

  font-size: clamp(3rem, 5vw, 4rem);
  text-align: left;
  transform: rotate(10deg) translateY(5px);
  margin-left: 10px;
}

.green-color {
  display: inline-block;
  background-color: green;
  color: #fff;

  padding: 0 10px;
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 3rem);
  margin-left: 5px;
}

/* =============================================================== */
/* PLOBLEM（PC設定）ここまで */
/* =============================================================== */
/* =============================================================== */
/* PLOBLEM（SP用）ここから */
/* =============================================================== */

/* スマホ向けレイアウト変更 */
@media(max-width:767px) {
  section.problem {
    width: 100%;
    padding-top: 50px;
    h2 {
      margin: 0 0 10px;
    }
  }

  .problem-cover {
    flex-direction: column;
    align-items: center;
    width: 95vw;
    height: auto;
  }

  .problem-container {
    width: 100%;
    height: auto;
    grid-template-columns: repeat(2, 1fr); /* 2列にする */
    padding: 20px 15px 50px;
    gap: 30px 15px;
  }

  .problem-item {
    max-width: 100%; /* はみ出し防止 */
    height: 20vh;
    padding: 10px 0;
    p {
      font-size: .9rem !important;
      text-align: left;
    }
  }

  .problem-img {
    width: 100%;
    height: 100%;
    min-height: initial;
  }
  
  /* PROBLEMの女性画像 */
  .problem-lady {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 

    width: 100%;
    height: auto;
    margin-left: 0;
    margin-top: 20px;
    p {
      width: 90%;
    }
  }

  .problem-lady-img {
    width: 60%;
    height: 30vh;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-position: center bottom;
  }
}



/* スマホ向けレイアウト変更 */
@media(min-width: 768px) and (max-width: 850px) {
  section.problem {
    width: 100%;
    padding-top: 50px;
    h2 {
      margin: 0 0 10px;
    }
  }

  .problem-cover {
    flex-direction: column;
    align-items: center;
    width: 95vw;
    height: auto;
  }

  .problem-container {
    width: 100%;
    height: auto;
    grid-template-columns: repeat(2, 1fr); /* 2列にする */
    padding: 20px 15px 50px;
    gap: 30px 15px;
  }

  .problem-item {
    max-width: 100%; /* はみ出し防止 */
    height: 20vh;
    padding: 10px 0;
    p {
      font-size: .9rem !important;
      text-align: left;
    }
  }

  .problem-img {
    width: 100%;
    height: 100%;
    min-height: initial;
  }
  
  /* PROBLEMの女性画像 */
  .problem-lady {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 

    width: 100%;
    height: auto;
    margin-left: 0;
    margin-top: 20px;
    p {
      width: 90%;
    }
  }

  .problem-lady-img {
    width: 60%;
    height: 30vh;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-position: center bottom;
  }
}
/* =============================================================== */
/* PLOBLEM（SP用）ここまで */
/* =============================================================== */






/* =============================================================== */
/* AGITATION（PC用）ここから */
/* =============================================================== */
section.agitation {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #000;
  color: #fff;
}

.agitation > .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  >div {
    width: 100%;
  }

  .header-group {
    margin: 20px 0 40px;

    .catch-attention {
      font-size: clamp(1.5rem, 2vw, 2rem) !important;
      &::before {
        all: initial;
        content: "＼ ";
        color: inherit;
        font-size: inherit;
      }
      
      &::after {
        all: initial;
        content: "／";
        color: inherit;
        font-size: inherit;
      }
      
    }
    h2 {
      background-color: var(--lp-bg-color-darkgray);
      color: #fff;
      text-align: center;
      font-family: 'ZeroGothic'; /* カスタムフォント */
      
      letter-spacing: .5rem;
      padding: 15px 50px 20px;
      border-radius: .5rem;
    }
  }

  /* 下向き三角 */
  &.down-arrow {
    position: relative;
    &::after {
      position: absolute;
      bottom: 0;
      transform: translateY(calc(-1px + 100px + clamp(3rem, 10vw, 5rem)));

      content: "";
      display: block;
      width: 0;
      height: 0;
      border-left: clamp(4rem, 15vw, 6rem) solid transparent;  /* 左の斜辺 */
      border-right: clamp(4rem, 15vw, 6rem) solid transparent; /* 右の斜辺 */
      border-top: clamp(3rem, 10vw, 5rem) solid #000; /* 下向きの三角形 */

      z-index: 9000;
    }
  }
}

article.agitation-cover {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  width: 100%;
  height: auto;
  gap: 50px;
}

.ag-header {
  display: flex;
  align-items: center;

  margin-bottom: 20px;
  gap: 10px;
  h3 {
    position: relative;
    &::before {
      position: absolute;
      content: "";
      background-color: #fff;
      display: block;

      bottom: -1px;
      left: 0;
      width: 110%;
      height: 1px;
      opacity: .5;
    }
  }
}

.ag-item {
  margin-bottom: 80px 0;
  .ag-content {
    display: flex;
    gap: clamp(10px, 5vw, 50px);
    p {
      flex: 1;
    } 
  } 
}

.ag-img {
  flex: 0 0 48%; /* 画像の幅を固定 */
  filter: saturate(.05);

  height: 300px;
  min-width: 300px;
  border-radius: 1rem;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  overflow: hidden;
  &.img-1 {
    background-image: url(../image/ag-img-1.jpeg);
  }
  &.img-2 {
    background-image: url(../image/ag-img-2.jpeg);
  }
  &.img-3 {
    background-image: url(../image/ag-img-3.jpeg);
  }
  &.img-4 {
    background-image: url(../image/ag-img-4.jpeg);
  }
}

.problem-lady-img.img-2 {
  background-image: url(../image/problem-lady-2.png);
}

/* =============================================================== */
/* AGITATION（PC用）ここから */
/* =============================================================== */
/* =============================================================== */
/* AGITATION（SP用）ここから */
/* =============================================================== */

@media(max-width:767px) {
  section.agitation {
    padding: 80px 0 50px;
  }

  .agitation > .content-wrapper {
    h3 {
      text-align: left;
      font-size: 1.2rem !important;
      flex: 1;
      &::before {
        all: initial;
      }
    }
    h2.ag-title {
      padding: 5px !important;
      letter-spacing: 0.05rem !important;
    }
    /* 下向き三角 */
    &.down-arrow {
      position: relative;
      &::after {
        position: absolute;
        bottom: 0;
        transform: translateY(calc(50px + -1px + clamp(3rem, 10vw, 5rem)));

        content: "";
        display: block;
        width: 0;
        height: 0;
        border-left: clamp(4rem, 15vw, 6rem) solid transparent;  /* 左の斜辺 */
        border-right: clamp(4rem, 15vw, 6rem) solid transparent; /* 右の斜辺 */
        border-top: clamp(3rem, 10vw, 5rem) solid #000; /* 下向きの三角形 */

        /* z-index: 0; */
      }
    }
  }

  article.agitation-cover {
    gap: 25px;
  }
  .ag-header {
    margin-bottom: 8px;
  }

  .ag-item {
    margin-bottom: 30px;
    width: 100%;
    height: auto;
    h3 {
      font-size: 1.5rem !important;
      margin: 0;
    }
  }
  .ag-content {
    display: flex;
    flex-direction: column;

    gap: 10px;
    width: 100%;

    p {
      font-size: clamp(.9rem, 1.2vw, 3rem) !important;
    }
  }
  .ag-img {
    width: 100% !important;
    min-height: 200px !important;
    &.img-2 {
      transform: translateY(8px);
    }
  } 
  .column-reverse {
    flex-direction: column-reverse;
  }
}



@media(min-width: 768px) and (max-width: 850px) {
  section.agitation {
    padding: 80px 0 50px;
  }

  .agitation > .content-wrapper {
    h3 {
      text-align: left;
      font-size: 1.2rem !important;
      flex: 1;
      &::before {
        all: initial;
      }
    }
    h2.ag-title {
      padding: 5px !important;
      letter-spacing: 0.05rem !important;
    }
    /* 下向き三角 */
    &.down-arrow {
      position: relative;
      &::after {
        position: absolute;
        bottom: 0;
        transform: translateY(calc(50px + -1px + clamp(3rem, 10vw, 5rem)));

        content: "";
        display: block;
        width: 0;
        height: 0;
        border-left: clamp(4rem, 15vw, 6rem) solid transparent;  /* 左の斜辺 */
        border-right: clamp(4rem, 15vw, 6rem) solid transparent; /* 右の斜辺 */
        border-top: clamp(3rem, 10vw, 5rem) solid #000; /* 下向きの三角形 */

        /* z-index: 0; */
      }
    }
  }

  article.agitation-cover {
    gap: 25px;
  }
  .ag-header {
    margin-bottom: 8px;
  }

  .ag-item {
    margin-bottom: 30px;
    width: 100%;
    height: auto;
    h3 {
      font-size: 1.5rem !important;
      margin: 0;
    }
  }
  .ag-content {
    display: flex;
    flex-direction: column;

    gap: 10px;
    width: 100%;

    p {
      font-size: clamp(.9rem, 1.2vw, 3rem) !important;
    }
  }
  .ag-img {
    width: 100% !important;
    min-height: 200px !important;
    &.img-2 {
      transform: translateY(8px);
    }
  } 
  .column-reverse {
    flex-direction: column-reverse;
  }
}
/* =============================================================== */
/* AGITATION（SP用）ここまで */
/* =============================================================== */







/* =============================================================== */
/* SOLUTION（PC用）ここから */
/* =============================================================== */

.solution {
  .content-wrapper {
    flex-direction: column;
    margin-top: 80px;
    > h3 {
      background-color: var(--lp-bg-color-darkgray);
      color: #fff;
      padding: 3px 5px;
    }
  }
  h4 {
    font-weight: 600;
  }
}

.still-problem-cover {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--lp-bg-color-gray);

  width: 100%;
  height: auto;
  padding: 100px 0 100px;
  
  &.down-arrow {
    position: relative;
    z-index: 5000 !important;
    &::after {
      position: absolute;
      bottom: 0;
      transform: translateY(calc(-8px + clamp(3rem, 5vw, 5rem)));

      content: "";
      display: block;
      width: 0;
      height: 0;
      border-left: clamp(4rem, 15vw, 6rem) solid transparent;  /* 左の斜辺 */
      border-right: clamp(4rem, 15vw, 6rem) solid transparent; /* 右の斜辺 */
      border-top: clamp(3rem, 5vw, 5rem) solid var(--lp-bg-color-gray); /* 下向きの三角形 */

      z-index: 5100 !important;
    }
  }
}

.inner-voice {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 50%;
  background-color: var(--lp-bg-color-lightgray);
  color: #000;
  border-radius: 3rem;
  padding: 20px 50px;
  margin-bottom: 50px;
  h3 {
    margin-bottom: 20px;
  }
  .wbr {
    display: inline-block;
  }
}

.service-description {
  h3 {
    background-color: var(--lp-accent-color-orange);
    color: #fff;
    padding: 3px 5px;
    margin-bottom: 10px;
  }
}



.solution-intro {
  width: 100%;
  margin: 50px 0 20px;

  > div {
    margin: 10px;
    font-size: clamp(1rem, 5vw, 2rem);
  }
}

.service-name-cover {
  display: flex;
  justify-content: flex-start;
  width: fit-content; /* 子要素のサイズに合わせる */

  .service-name {
    display: flex;
    align-items: center;
    > div:not(last-child) {
      margin-right: 10px;
    }
  }  

  > div.underline-highlight:last-child {
    &::before { 
      bottom: -3px !important;
      left: 0 !important;
      width: calc(100%) !important;
      /* height: 16px !important; */
    }
  }
}

.service-name-cover > div {
  width: fit-content; /* 子要素に合わせる */
}




/* 費用比較のグラフ */
.cost-comparison-cover {
  width: 100%;
  height: auto;
  padding: 50px 0 50px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-color: #FFFAC9;
  border-radius: 3rem;
  margin: 50px 0 100px;
  h3 {
    font-weight: 700 !important;
    padding: 20px 0 10px;
    margin-bottom: initial;
  }
  &.down-arrow {
    position: relative;
    &::after {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, calc(40px + clamp(1rem, 5vw, 3rem)));

      content: "";
      display: block;
      width: 0;
      height: 0;
      border-left: clamp(4rem, 15vw, 6rem) solid transparent;  /* 左の斜辺 */
      border-right: clamp(4rem, 15vw, 6rem) solid transparent; /* 右の斜辺 */
      border-top: clamp(1rem, 5vw, 3rem) solid var(--lp-bg-color-gray); /* 下向きの三角形 */

      z-index: 0;
    }
  }
}

.cost-comparison {
  width: 100%;
  height: 50vh;

  background-image: url(../image/cost-comparison.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.appeal-point {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 0;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 600;
  border: var(--lp-accent-color-light-yellow) 10px solid;
  border-radius: 1rem;
}

.appeal-point.item-1 {
  padding: 50px 0 30px;
  margin: 20px 0 20px;
}

/* ソリューションの結論 */
.conclusion {
  display: flex;
  align-items: center;

  width: 100%;
  margin: 20px 0;
}

.conclusion-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--lp-bg-color-green);
  color: #fff;

  width: 100px;
  height: 100px;
  padding: 20px;
  margin-right: 20px;
  border-radius: 50%;
  font-weight: 500;
  font-size: clamp(1.2rem, 1vw, 3rem) !important;
}

.conclusion-text {
  flex: 1;
}

.problem-lady-img.img-3 {
  background-image: url(../image/problem-lady-3.png);
}



/* =============================================================== */
/* SOLUTION（PC用）ここまで */
/* =============================================================== */
/* =============================================================== */
/* SOLUTION（SP用）ここから */
/* =============================================================== */
@media(max-width:767px) {

  .still-problem-cover {
    padding: 50px 0 50px;
  }

  .inner-voice {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
    border-radius: 3rem;
    width: 95%;
    background-color: var(--lp-bg-color-lightgray);
    color: #000;
    border-radius: 3rem;
    padding: 20px 50px;
    margin-bottom: 50px;
    h3 {
      font-size: 1.5rem !important;
      margin-bottom: 20px;
    }
    p {
      font-size: 1rem !important;
    }
    .wbr {
      display: inline-block;
    }
  }

  .solution-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0;
  }

  .service-name-cover {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    &::before {
      display: none;
    }

    > div.underline-highlight:last-child {
      &::before { 
        bottom: -3px !important;
        left: -3% !important;
        width: calc(103%) !important;
      }
    }
  }


  .cost-comparison-cover {
    width: 100%;
    height: auto;
    padding: 20px 10px;

    border-radius: 1rem;
    h3 {
      padding: 0 10px;
      letter-spacing: -0.05rem;
    }
    &.down-arrow {
      position: relative;
      margin: 50px 0 50px;
      &::after {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, calc(10px + clamp(3rem, 10vw, 5rem)));
  
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-left: clamp(4rem, 15vw, 6rem) solid transparent;  /* 左の斜辺 */
        border-right: clamp(4rem, 15vw, 6rem) solid transparent; /* 右の斜辺 */
        border-top: clamp(1rem, 5vw, 3rem) solid var(--lp-bg-color-gray); /* 下向きの三角形 */
  
        z-index: 0;
      }
    }
  }
  .cost-comparison {
    height: 25vh;

    background-image: url(../image/cost-comparison.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
  }

  /* ソリューションの結論 */
  .conclusion {
    align-items: center;
  }

  .conclusion-heading {  
    width: 60px;
    height: 60px;
    padding: 5px;
    margin-right: 10px;
    border-radius: 50%;
    font-weight: 500;
    font-size: 1rem !important;
  }
  
  .conclusion-text {
    flex: 1;
    p {
      font-size: 1rem;
      font-weight: 400;
    }
  }
}


@media(min-width: 768px) and (max-width: 850px) {

  .still-problem-cover {
    padding: 50px 0 50px;
  }

  .inner-voice {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
    border-radius: 3rem;
    width: 95%;
    background-color: var(--lp-bg-color-lightgray);
    color: #000;
    border-radius: 3rem;
    padding: 20px 50px;
    margin-bottom: 50px;
    h3 {
      font-size: 1.5rem !important;
      margin-bottom: 20px;
    }
    p {
      font-size: 1rem !important;
    }
    .wbr {
      display: inline-block;
    }
  }

  .solution-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0;
  }

  .service-name-cover {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    &::before {
      display: none;
    }
    > div.underline-highlight:last-child {
      &::before { 
        bottom: -3px !important;
        left: -3% !important;
        width: calc(103%) !important;
      }
    }
  }


  .cost-comparison-cover {
    width: 100%;
    height: auto;
    padding: 20px 10px;

    border-radius: 1rem;
    h3 {
      padding: 0 10px;
      letter-spacing: -0.05rem;
    }
    &.down-arrow {
      position: relative;
      margin: 50px 0 50px;
      &::after {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, calc(10px + clamp(3rem, 10vw, 5rem)));
  
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-left: clamp(4rem, 15vw, 6rem) solid transparent;  /* 左の斜辺 */
        border-right: clamp(4rem, 15vw, 6rem) solid transparent; /* 右の斜辺 */
        border-top: clamp(1rem, 5vw, 3rem) solid var(--lp-bg-color-gray); /* 下向きの三角形 */
  
        z-index: 0;
      }
    }
  }
  .cost-comparison {
    height: 25vh;

    background-image: url(../image/cost-comparison.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
  }

  /* ソリューションの結論 */
  .conclusion {
    align-items: center;
  }

  .conclusion-heading {  
    width: 60px;
    height: 60px;
    padding: 5px;
    margin-right: 10px;
    border-radius: 50%;
    font-weight: 500;
    font-size: 1rem !important;
  }
  
  .conclusion-text {
    flex: 1;
    p {
      font-size: 1rem;
      font-weight: 400;
    }
  }
}
/* =============================================================== */
/* SOLUTION（SP用）ここまで */
/* =============================================================== */










/* =============================================================== */
/* Call To Action（PC用）ここから */
/* =============================================================== */

.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--lp-bg-color-green);
  
  width: 100%;
  padding: 70px 0;
  margin: 50px 0;
 
  .content-wrapper {
    display: fleX;
    justify-content: center;
    align-items: center;
  
    gap: 50px;
  }
}


.cta-left {
  font-size: clamp(1.5rem, 2vw, 3rem);
}

.cta-left-estimate {
  display: inline-block;
  background-color: var(--lp-bg-color-darkgray);
  color: #fff;
  
  padding: 3px 10px;
  font-weight: 500;
}

.cta-left-reception {
  background-color: inherit;
  color: var(--lp-accent-color-yellow);

  font-weight: 500;
}

.cta-right {
  display: flex;
  justify-content: space-between;
  background-color: var(--lp-accent-color-orange);
  color: white;
  overflow: hidden;

  width: 100%; 
  border-radius: 2rem;
  transition: all .3s;

  /* Elevation 3 相当（やや高い）*/
  box-shadow: 0px 3px 6px rgba(0,0,0,0.16),
  0px 3px 6px rgba(0,0,0,0.23);

  &:hover {
    filter: brightness(.9);
    transform: translate(2px,5px);
    box-shadow: none;
  }
}

.cta-right-free {
  padding: 20px 20px 20px 40px;
  font-weight: 700;
  font-size: clamp(1.5rem, 2vw, 3rem) !important;
}

.cta-right-action {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--lp-accent-color-orange);

  margin: 3px;
  padding: 0 30px;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  > p {
    font-weight: 700;
    font-size: clamp(1.5rem, 2vw, 3rem) !important;
  }
}
/* =============================================================== */
/* Call To Action（PC用）ここまで */
/* =============================================================== */
/* =============================================================== */
/* Call To Action（SP用）ここから */
/* =============================================================== */
@media(max-width:767px) {
  .cta {
    padding: 30px 0;
    .content-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
    
      gap: 10px;
    }
  }
  .cta-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  .cta-right-free {
    padding: 10px 0 10px 25px;
  }
  
  .cta-right-action {  
    margin: 3px;
    padding: 0 15px 0 10px;

    > p {
      font-weight: 700;
      font-size: clamp(1.5rem, 2vw, 3rem) !important;
    }
  }
}



@media(min-width: 768px) and (max-width: 850px) {
  .cta {
    padding: 30px 0;
    .content-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
    
      gap: 10px;
    }
  }
  .cta-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  .cta-right-free {
    padding: 10px 0 10px 25px;
  }
  
  .cta-right-action {  
    margin: 3px;
    padding: 0 15px 0 10px;

    > p {
      font-weight: 700;
      font-size: clamp(1.5rem, 2vw, 3rem) !important;
    }
  }
}



/* =============================================================== */
/* EXPLANATION（PC用）ここから */
/* =============================================================== */
.explanation > .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.explanation-heading {
  display: flex;
  align-items: flex-end;

  margin: 20px 0;
}

.explanation-heading-first {
  display: flex;
  align-items: center;
}


/* 防草シートの紹介 */
.service-item-wrapper {
  display: flex;
  background-color: #E5FFCA;

  padding: 20px 20px;
  margin: 20px 0;
  gap: 20px;
}

.service-item {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 10px;
  width: 100%;
  height: auto;
  > h4 {
    margin: 10px 0 0;
    background-color: var(--lp-bg-color-green);
    color: #fff;
    font-weight: 600;
    padding: 3px 10px;
  }
}

.item-img {
  width: 90%;
  height: 20vh;
  margin: 10px 0;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  overflow: hidden;

  &.img-1 {
    background-image: url(../image/bousou-sheet-1.png);
  }
  &.img-2 {
    background-image: url(../image/bousou-sheet-2.png);
  }
  &.img-3 {
    background-image: url(../image/bousou-sheet-3.png);
  }
}

.item-description {
  width: 90%;
  margin-bottom: 10px;
}



#jyari {
  /* margin-bottom: 200px; */
  padding-bottom: 50px;

  .service-item-wrapper {
    display: flex;
    background-color: #CDF9FF;
  }
  .service-item {
    > h4 {
      background-color: var(--lp-bg-color-blue);
    }
  }
  .item-img {
    background-size: cover;
    &.img-1 {
      background-image: url(../image/jyari-normal.jpeg);
    }
    &.img-2 {
      background-image: url(../image/jyari-keshou.jpeg);
      background-size: 180%;
    }
    &.img-3 {
      background-image: url(../image/jyari-bouhan.jpeg);
      background-size: 250%;
    }
  }
  .conclusion {
    margin: 50px 0;
  }
  &.down-arrow {
    position: relative;
    &::after {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, calc(-1px + clamp(3rem, 10vw, 5rem)));

      content: "";
      display: block;
      width: 0;
      height: 0;
      border-left: clamp(4rem, 15vw, 6rem) solid transparent;  /* 左の斜辺 */
      border-right: clamp(4rem, 15vw, 6rem) solid transparent; /* 右の斜辺 */
      border-top: clamp(3rem, 10vw, 5rem) solid #fff; /* 下向きの三角形 */

      z-index: 6000;
    }
  }
  .inner-voice {
    background-color: #f0f0f0;

    margin: 0;
    padding: 30px 50px;
    p {
      font-weight: 500;
      font-size: clamp(1.2rem, 1.5vw, 3rem) !important;
    }
  }
}
/* =============================================================== */
/* EXPLANATION（PC用）ここまで */
/* =============================================================== */
/* =============================================================== */
/* EXPLANATION（SP用）ここから */
/* =============================================================== */
@media(max-width:767px) {
  /* 防草シートの紹介 */
  .service-item-wrapper {
    display: flex;
    flex-direction: column;
  }
  #jyari {
    margin-bottom: 0;
  }
}


@media(min-width: 768px) and (max-width: 850px) {
  /* 防草シートの紹介 */
  .service-item-wrapper {
    display: flex;
    flex-direction: column;
  }
  #jyari {
    margin-bottom: 0;
  }
}
/* =============================================================== */
/* EXPLANATION（SP用）ここまで */
/* =============================================================== */
/* =============================================================== */
/* MERIT（PC用）ここから */
/* =============================================================== */


.merit {
  background-color: var(--lp-bg-color-green);
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  padding-top: 100px;
  /* 下向き三角 */
  &.down-arrow {
    position: relative;
    &::after {
      position: absolute;
      bottom: 0;
      transform: translateY(calc(-1px + clamp(3rem, 10vw, 5rem)));

      content: "";
      display: block;
      width: 0;
      height: 0;
      border-left: clamp(4rem, 15vw, 6rem) solid transparent;  /* 左の斜辺 */
      border-right: clamp(4rem, 15vw, 6rem) solid transparent; /* 右の斜辺 */
      border-top: clamp(3rem, 10vw, 5rem) solid var(--lp-bg-color-green); /* 下向きの三角形 */

      z-index: 0;
    }
  }
}

.merit > .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;

  /* メリットセクションの見出し */
  h2 {
    background-color: var(--lp-bg-color-green);
    color: #fff;
    position: absolute;
    text-align: center;
    
    width: 100%;
    top: -35px;
    padding: 20px 50px !important;
    border-radius: 1rem;
    letter-spacing: .15rem;
    font-weight: 700 !important;
    text-decoration: underline 1px solid #fff;
  }

  .item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin: 100px 0;
    gap: 50px;
  }
}

.merit-item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  color: #000;

  border-radius: 1rem;
  padding: 50px;
}

.merit-item-heading {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  > .circle {
    margin-right: 20px;
  }
}

.merit-item-content {
  display: flex;
  gap: 10px;
  > div > p {
    font-size: clamp(.9rem, 1.2vw, 2rem) !important;
  }
  .item-img {
    width: 50vw;
    height: 33vh;
    margin: 0 10px 0 0;
  
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    overflow: hidden;
    &.img-1 {
      background-image: url(../image/merit-img-1.jpeg);
    }
    &.img-2 {
      background-image: url(../image/merit-img-2.jpeg);
    }
    &.img-3 {
      background-image: url(../image/merit-img-3.jpeg);
      background-position: 60% bottom;
    }
    &.img-4 {
      background-image: url(../image/merit-img-4.jpeg);
    }
  }
}

.merit-result {
  margin-top: 150px;
  > .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .main-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    > div {
      width: 90%;
      text-align: center;
      p {
        text-align: left;
        font-size: clamp(1rem, 1.5vw, 3rem) !important;
      }
    }
  }
  .solution-intro {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
  }
  .service-name-cover {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .goal-image {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 90%;
    height: 60vh;
    margin: 0 auto;
    border-radius: 1rem;

    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 40% center;
    overflow: hidden;
    background-image: url(../image/goal-image.jpeg);
  }
}

.appeal-point.item-2 {
  width: 90%;
  padding: 20px 0 30px;
  margin: 0 auto 20px;
}

/* =============================================================== */
/* MERIT（PC用）ここまで */
/* =============================================================== */
/* =============================================================== */
/* MERIT（SP用）ここから */
/* =============================================================== */

@media(max-width:767px) {
  .merit {
    padding-top: 100px;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  .merit > .content-wrapper {
    position: relative;
    h2 {
      background-color: var(--lp-bg-color-green);
      color: #fff;
      position: absolute;
  
      font-size: 1.2rem;
      top: -70px;
      padding: 10px 20px !important;
      border-radius: 1rem;
    }
    .item-wrapper {
      margin: 30px 0;
      gap: 20px;
    }
  }
  .merit-item {
    width: 100%;
    padding: 20px;
    .item-img {
      background-size: cover;
      width: 100%;
      height: 25vh;
      margin: 0;
    }
  }
  .merit-item-heading {
    display: flex;

    .underline-highlight {
      position: relative;
      z-index: 100;
      &::before {
        display: none;
      }
    }
  }
  .merit-item-heading > .circle {
    width: 50px;
    height: 50px;
    padding: 0;
    margin-right: 15px;
  }
  .merit-item-heading > h3 {
    flex: 1;
  }
  .merit-item-content {
    display: flex;
    flex-direction: column;
  }
  .merit-result {
    margin-top: 50px;
    > .content-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
  
      padding-left: initial;
    }
    .service-name-cover {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      margin: 0;
      .mobile-non-visible::before {
        display: none !important;
      }
    }
    .service-name-after {
      margin: 0;
    }
    .solution-intro {
      display: flex;
      flex-direction: column;
      justify-content: center;

      margin: initial;
    }

  }
  .main-message {
    > div {
      width: 95% !important;
      font-size: 1.2rem !important;
      padding: 5px 0;
    }
  }
  .goal-image {
    width: 95% !important;
    max-height: 200px;
    margin-bottom: 0 !important;
  }
  .appeal-point.item-2 {
    width: 95%;
    padding: 30px 0 30px;
  }
}



@media(min-width: 768px) and (max-width: 850px) {
  .merit {
    padding-top: 100px;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  .merit > .content-wrapper {
    position: relative;
    h2 {
      background-color: var(--lp-bg-color-green);
      color: #fff;
      position: absolute;
  
      font-size: 1.2rem;
      top: -70px;
      padding: 10px 20px !important;
      border-radius: 1rem;
    }
    .item-wrapper {
      margin: 30px 0;
      gap: 20px;
    }
  }
  .merit-item {
    width: 100%;
    padding: 20px;
    .item-img {
      background-size: cover;
      width: 100%;
      height: 25vh;
      margin: 0;
    }
  }
  .merit-item-heading {
    display: flex;

    .underline-highlight {
      position: relative;
      z-index: 100;
      &::before {
        display: none;
      }
    }
  }
  .merit-item-heading > .circle {
    width: 50px;
    height: 50px;
    padding: 0;
    margin-right: 15px;
  }
  .merit-item-heading > h3 {
    flex: 1;
  }
  .merit-item-content {
    display: flex;
    flex-direction: column;
  }
  .merit-result {
    margin-top: 50px;
    > .content-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
  
      padding-left: initial;
    }
    .service-name-cover {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      margin: 0;
      .mobile-non-visible::before {
        display: none !important;
      }
    }
    .service-name-after {
      margin: 0;
    }
    .solution-intro {
      display: flex;
      flex-direction: column;
      justify-content: center;

      margin: initial;
    }

  }
  .main-message {
    > div {
      width: 95% !important;
      font-size: 1.2rem !important;
      padding: 5px 0;
    }
  }
  .goal-image {
    width: 95% !important;
    max-height: 200px;
    margin-bottom: 0 !important;
  }
  .appeal-point.item-2 {
    width: 95%;
    padding: 30px 0 30px;
  }
}

/* =============================================================== */
/* MERIT（SP用）ここまで */
/* =============================================================== */








/* =============================================================== */
/* RISK（PC設定）ここから */
/* =============================================================== */
section.risk > .content-wrapper {
  display: flex;
  flex-direction: column;
  height: auto;
  align-items: center;

  padding: 50px 0 0;
  .underline-highlight {
    &::before {
      display: none !important;
    }
  }
}

.risk-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  > h3 {
    margin-bottom: 20px;
  }
}

.risk-intro .inner-voice {
  background-color: var(--lp-bg-color-lightgray);

  width: 100%;
  margin: 0 0 150px;
  padding: 50px 50px;
  p {
    font-weight: 400;
    font-size: clamp(1.2rem, 1.5vw, 3rem) !important;
  }
}

.risk-cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;

  padding: 80px 120px 80px;
  margin-bottom: 150px;

  h2 {
    display: inline-block;
    width: auto;
    margin: 20px 0 20px;
    font-size: clamp(1.2rem, 2vw, 3rem);
    font-weight: 500;
    color: #fff;
  }
  .risk-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 自動調整 */
    overflow: hidden; /* 横スクロール防止 */
    
    gap: 3rem 4rem;
    width: 100%;
  
    * {
      color: #fff;
    }
  }
  &.down-arrow {
    position: relative;
    &::after {
      position: absolute;
      bottom: 0;
      transform: translateY(calc(-1px + clamp(3rem, 10vw, 5rem)));

      content: "";
      display: block;
      width: 0;
      height: 0;
      border-left: clamp(4rem, 15vw, 6rem) solid transparent;  /* 左の斜辺 */
      border-right: clamp(4rem, 15vw, 6rem) solid transparent; /* 右の斜辺 */
      border-top: clamp(3rem, 10vw, 5rem) solid #000; /* 下向きの三角形 */

      z-index: 0;
    }
  }
}

.risk-item {
  display: flex;
  flex-direction: column;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向の中央揃え（必要なら） */
  text-align: center; /* テキストの中央揃え */

  width: 100%; /* フル幅で調整 */
  /* height: 300px; */
}

.risk-item p {
  padding: 8px;
  font-size: clamp(.8rem, 1vw, 2rem) !important;
  font-weight: 500;
  color: #fff;
  text-align: left;
}

.risk-img {
  width: 100%;
  min-height: 250px;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  overflow: hidden;
  filter: saturate(.05);

  &.img-1 {
    background-image: url(../image/ag-img-1.jpeg);
  }
  &.img-2 {
    background-image: url(../image/ag-img-2.jpeg);
  }
  &.img-3 {
    background-image: url(../image/ag-img-3.jpeg);
  }
  &.img-4 {
    background-image: url(../image/ag-img-4.jpeg);
  }
}

.risk-secondary-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  gap: 10px;
  div {
    font-size: 1.5rem !important;
    line-height: 2;
  }
}

.risk-secondary-text-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  > div {
    display: inline-block;
  }
} 

.rising-prices {
  width: 100%;
  min-height: 60vh;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  overflow: hidden;
  filter: saturate(.01);
  background-image: url(../image/rising-prices.png);
}

/* =============================================================== */
/* RISK（PC設定）ここまで */
/* =============================================================== */
/* =============================================================== */
/* RISK（モバイル設定）ここから */
/* =============================================================== */

@media(max-width:767px) {
  .risk-intro {
    .inner-voice {
      padding: 30px 30px !important;
      margin-bottom: 30px !important;
    }
  }
  .risk-cover {
    border-radius: 1rem !important;
    margin-bottom: 50px;

    h2 {
      padding: 10px 20px 0 !important;
      margin: 0 !important;
    }
  }
  .risk-container {
    padding: 10px 20px 20px;
    gap: 10px !important;
    &.down-arrow {
      position: relative;
      &::after {
        position: absolute;
        bottom: 0;
  
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-left: 100px solid transparent;  /* 左の斜辺 */
        border-right: 100px solid transparent; /* 右の斜辺 */
        border-top: 100px solid #000; /* 下向きの三角形 */
  
        z-index: 2000 !important;
      }
    }
  }
  .risk-item {
    margin: initial;
  }
  .risk-img {
    width: 100%;
    min-height: 150px;
  }
  .rising-prices {
    width: 100%;
    min-height: 250px;
  
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    overflow: hidden;
    filter: saturate(.01);
    background-image: url(../image/rising-prices.png);
  }
}



@media(min-width: 768px) and (max-width: 850px) {
  .risk-intro {
    .inner-voice {
      padding: 30px 30px !important;
      margin-bottom: 30px !important;
    }
  }
  .risk-cover {
    border-radius: 1rem !important;
    margin-bottom: 50px;

    h2 {
      padding: 10px 20px 0 !important;
      margin: 0 !important;
    }
  }
  .risk-container {
    padding: 10px 20px 20px;
    gap: 10px !important;
    &.down-arrow {
      position: relative;
      &::after {
        position: absolute;
        bottom: 0;
  
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-left: 100px solid transparent;  /* 左の斜辺 */
        border-right: 100px solid transparent; /* 右の斜辺 */
        border-top: 100px solid #000; /* 下向きの三角形 */
  
        z-index: 2000 !important;
      }
    }
  }
  .risk-item {
    margin: initial;
  }
  .risk-img {
    width: 100%;
    min-height: 150px;
  }
  .rising-prices {
    width: 100%;
    min-height: 250px;
  
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    overflow: hidden;
    filter: saturate(.01);
    background-image: url(../image/rising-prices.png);
  }
}

/* =============================================================== */
/* RISK（モバイル設定）ここまで */
/* =============================================================== */










/* =============================================================== */
/* ABOUT（PC設定）ここから */
/* =============================================================== */
.about {
  margin-top: 50px;
}


.about > .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 70%;
  h1 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;

    font-weight: 700;
    margin-bottom: 30px;
  }
}

.about-item-wrapper {
  padding: 0 50px;
}

.about-item {
  display: flex;
  align-items: center;

  width: 80%;
  margin-bottom: 30px;
  h3 {
    font-weight: 700 !important;
    margin: 10px 0;
  }
}

.prefix {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--lp-bg-color-darkgray);
  color: #fff;

  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-weight: 500;
  font-style: italic;
  margin-right: 20px;

  .point {
    display: inline-block;
    font-size: .8rem;
  }
  .number {
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1;
    text-indent: -.3rem;
  }
}

.about-text {
  flex: 1;
  p {
    font-size: clamp(1rem, .8vw, 2rem) !important;
  }
}

.service-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 95% !important;
  h1 {
    display: inline-block !important;
    text-align: left !important;
    padding: 20px 0 20px 10px !important;
  }
  h4 {
    font-weight: 700 !important;
  }
}

.guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-bottom: 80px;
  > div {
    width: 80%;
  }
  .guarantee-heading {
    text-align: center;
    background-color: var(--lp-bg-color-green);
    color: #fff;

    padding: 12px 8px;
    margin: 20px 0;
    > h2 {
      display: inline-block;      
      font-style: italic;
      color: #fff;
      font-weight: 600;
      font-size: 1.7rem !important;
      /* padding: 5px !important; */
    }
  }
}

.consultation.img-1 {
  width: 100%;
  min-height: 500px;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url(../image/consultation.jpeg);
}


.area-map-img {
  width: 100%;
  height: 500px;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url(../image/area-map.png);
  filter: saturate(1.2);
  
  position: relative;
  .service-area-text {
    position: absolute;
    display: inline-block;
    background-color: rgba(228, 228, 228, 0.6);
    text-align: center;

    width: 100%;
    padding: 3px 10px 5px 3px !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(236, 49, 205);
    /* font-style: italic; */
    font-size: 2rem;
    font-weight: 600;
  }
}

.area-item {
  margin-bottom: 30px;
}

.about {
  ol li::marker {
    font-size: 1.5rem; /* マーカーのサイズを大きく */
    color: #333; /* 色の変更も可能 */
    font-weight: 500; /* 太さを変更 */
  }
  ul {
    list-style: disc; /* デフォルトの黒丸マーカーを復活 */
    li {
      margin: 5px;
      &::marker {
        font-size: 1rem; /* マーカーのサイズを大きく */
        color: #333; /* 色の変更も可能 */
      }
    }
  }
}


@media(max-width:767px) {
  .about {
    margin-top: 20px;
  }
  .about > .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  
    width: 95vw;
    h1 {
      display: flex;
      flex-direction: column;
      align-items: center;

      font-weight: 700;
      margin-bottom: 20px;
    }
  }
  .about-item-wrapper {
    padding: initial;
  }
  .about-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  
    width: 100%;
    margin-bottom: 30px;
    h2 {
      margin: 10px 0 10px 0;
    }
  }

  .consultation.img-1 {
    width: 100%;
    min-height: 250px;
  }

  .area-map-img {
    width: 100%;
    max-height: 250px;
  }

  .sp-inactive {
    display: none;
  }

  .prefix {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    background-color: var(--lp-bg-color-lightgray);
    color: var(--lp-bg-color-darkgray);
    position: relative;
    overflow: hidden;
  
    width: 100%;
    height: initial;
    border-radius: initial;
    font-weight: 500;
    font-style: italic;
    margin-right: initial;
    padding: 3px 10px;
  
    .point {
      display: inline-block;
      font-size: .8rem;
    }
    .number {
      display: inline-block;
      font-size: 1.6rem;
      line-height: 1.1;
      text-indent: initial;
    }
  }
  /* 右下に斜線を模様として追加 */
  /* 右下に2本の斜線を模様として追加 */
  .prefix::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25px;
    height: 25px;
    background: linear-gradient(
      -45deg,
      transparent 0%,
      transparent 30%,
      rgba(0, 0, 0, 0.1) 30%,
      rgba(0, 0, 0, 0.1) 34%,
      transparent 34%,
      transparent 38%,
      rgba(0, 0, 0, 0.1) 38%,
      rgba(0, 0, 0, 0.1) 42%,
      transparent 42%
    );
  }

  .guarantee {
    > div {
      width: 100%;
    }
  }
}



@media(min-width: 768px) and (max-width: 850px) {
  .about {
    margin-top: 20px;
  }
  .about > .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  
    width: 95vw;
    h1 {
      display: flex;
      flex-direction: column;
      align-items: center;

      font-weight: 700;
      margin-bottom: 20px;
    }
  }
  .about-item-wrapper {
    padding: initial;
  }
  .about-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  
    width: 100%;
    margin-bottom: 30px;
    h2 {
      margin: 10px 0 10px 0;
    }
  }

  .consultation.img-1 {
    width: 100%;
    min-height: 250px;
  }

  .area-map-img {
    width: 100%;
    max-height: 250px;
  }

  .sp-inactive {
    display: none;
  }

  .prefix {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    background-color: var(--lp-bg-color-lightgray);
    color: var(--lp-bg-color-darkgray);
    position: relative;
    overflow: hidden;
  
    width: 100%;
    height: initial;
    border-radius: initial;
    font-weight: 500;
    font-style: italic;
    margin-right: initial;
    padding: 3px 10px;
  
    .point {
      display: inline-block;
      font-size: .8rem;
    }
    .number {
      display: inline-block;
      font-size: 1.6rem;
      line-height: 1.1;
      text-indent: initial;
    }
  }
  /* 右下に斜線を模様として追加 */
  /* 右下に2本の斜線を模様として追加 */
  .prefix::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25px;
    height: 25px;
    background: linear-gradient(
      -45deg,
      transparent 0%,
      transparent 30%,
      rgba(0, 0, 0, 0.1) 30%,
      rgba(0, 0, 0, 0.1) 34%,
      transparent 34%,
      transparent 38%,
      rgba(0, 0, 0, 0.1) 38%,
      rgba(0, 0, 0, 0.1) 42%,
      transparent 42%
    );
  }

  .guarantee {
    > div {
      width: 100%;
    }
  }
}

/* =============================================================== */
/* CLOSING（PC設定）ここから */
/* =============================================================== */


.closing > .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  margin-top: 50px;
  width: 70%;
  h1 {
    font-weight: 700;
    margin-bottom: 50px;
  }
}

.gray-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--lp-bg-color-lightgray);
  color: #000;

  width: 100%;
  padding: 30px 0 30px 50px;
  font-weight: 300;
}


/* =============================================================== */
/* CONTACT（PC設定）ここから */
/* =============================================================== */

#contact {
  > h1 {
    display: none;
  }
  .page-content {
    width: 100%;
  }
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
  margin-bottom: 50px;

}

form > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
  padding: 0 100px;
  margin-bottom: 50px;
}

/* fieldset の見出しと中身を横並びにする */
fieldset {
  display: flex;
  align-items: flex-start;

  width: 100%;
  padding: 20px 0;
  margin: 0;

  border: none;
  border-bottom: var(--lp-bg-color-lightgray) 1px solid;

  /* p要素は見出し＝ラベル */
  p {
    width: 35%;
    font-weight: bold;
    margin: 0;
  }
  div {
    display: flex;

    flex: 1;
    margin-right: 30px;
    p {
      width: 100%;
    }
  }
}


/* .request の div を縦並びにする */
.request {
  display: flex;
  flex-direction: column;
}

/* ラベルとラジオボタンを横並びにする */
.request div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.request div input[type="radio"] {
  margin-right: 10px; /* ラジオボタンとラベルの間隔 */
}

/* 入力フィールドのレイアウトを統一 */
.input-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.input-container label {
  width: 200px;
  font-weight: bold;
}

.address-check {
  p {
    margin: 0;
    font-size: 1.5rem !important;
    font-weight: bold;
  }
}

/* 規約確認の同意チェックを中央寄せ */
.privacy-policy-agreement {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
}

.privacy-policy-agreement p {
  width: 100%;
  text-align: center !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}


.privacy-policy-agreement .wpcf7-list-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
}

.privacy-policy-agreement label {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.privacy-policy-agreement .wpcf7-list-item-label {
  display: inline-block !important;
  text-align: center !important;
}




.privacy-policy-agreement .request {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;

  width: 100%;
}


.privacy-policy {
  width: 100%;
  margin: 0 auto 100px;
}

.closing .button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  padding: 20px 70px;
  margin-top: 20px;

  background-color: var(--lp-bg-color-green);
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 2rem);
  font-weight: bold;

  border: none;
  border-radius: 2rem;
  transition: all .3s;
  &:hover {
    background-color:var(--lp-bg-color-green) !important;
    filter: brightness(.9);
    transform: translate(2px,5px);
    box-shadow: none;
  }
}


.scroll-box {
  overflow-y: auto;  /* 縦スクロールを有効化 */

  max-height: 200px; /* 高さを指定して固定枠に */
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  p {
    line-height: 1.6;
    font-size: .8rem !important;
  }
}

.scroll-box-wrapper {
  padding: 0 100px;
  margin-bottom: 50px;
  h2 {
    margin-bottom: 10px;
  }
  h6 {
    font-size: .8rem !important;
    font-weight: bold;
    margin-bottom: 10px;
  }
  strong {
    font-weight: 400;
    font-size: .8rem !important;
  }
}

footer {
  margin-bottom: 100px;
}

/* =============================================================== */
/* CONTACT（PC設定）ここまで */
/* =============================================================== */






/* =============================================================== */
/* CLOSING（モバイル設定）ここから */
/* =============================================================== */

@media(max-width:767px) {
  .closing > .content-wrapper {
    width: 95%;
    h1 {
      width: 95%;
      margin: 0 0 20px !important;
      padding: 20px 10px !important;
    }
  }
  .gray-heading {
    padding: 30px 0 30px 20px;
  }
  fieldset {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  
    width: 100%;
    padding: 20px 0;
    margin: 0;
  
    border: none;
    border-bottom: var(--lp-bg-color-lightgray) 1px solid;
  
    p {
      width: 100%;
  
      font-size: 16px !important;
      font-weight: bold;
      margin: 10px;
    }
    div {
      width: 100%;
      margin-right: initial;
    }
    textarea {
      height: 150px;
    }
  }
  form > div {
    padding: 0 20px;
  }
  .address-check {
    p {
      margin: 0;
      font-size: 1rem !important;
      font-weight: 400 !important;
    }
  }


  .scroll-box-wrapper {
    padding: 0 20px;
    margin-bottom: 50px;
    h2 {
      margin-bottom: 10px;
    }
    h6 {
      font-size: .8rem !important;
      font-weight: bold;
      margin-bottom: 10px;
    }
    strong {
      font-weight: 400;
      font-size: .8rem !important;
    }
  }
  .privacy-policy {
    margin: 0 auto 20px;
  }
  footer {
    margin: 0 0 100px;
    text-align: center;
  }
  html body #contact p {
    font-size: 1.1rem !important;
    font-weight: 400;
  }
  html body footer p {
    font-size: .8rem !important;
    font-weight: 400;
  }

}




@media(min-width: 768px) and (max-width: 850px) {
  .closing > .content-wrapper {
    width: 95%;
    h1 {
      width: 95%;
      margin: 0 0 20px !important;
      padding: 20px 10px !important;
    }
  }
  .gray-heading {
    padding: 30px 0 30px 20px;
  }
  fieldset {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  
    width: 100%;
    padding: 20px 0;
    margin: 0;
  
    border: none;
    border-bottom: var(--lp-bg-color-lightgray) 1px solid;
  
    p {
      width: 100%;
  
      font-size: 16px !important;
      font-weight: bold;
      margin: 10px;
    }
    div {
      width: 100%;
      margin-right: initial;
    }
    textarea {
      height: 150px;
    }
  }
  form > div {
    padding: 0 20px;
  }
  .address-check {
    p {
      margin: 0;
      font-size: 1rem !important;
      font-weight: 400 !important;
    }
  }


  .scroll-box-wrapper {
    padding: 0 20px;
    margin-bottom: 50px;
    h2 {
      margin-bottom: 10px;
    }
    h6 {
      font-size: .8rem !important;
      font-weight: bold;
      margin-bottom: 10px;
    }
    strong {
      font-weight: 400;
      font-size: .8rem !important;
    }
  }
  .privacy-policy {
    margin: 0 auto 20px;
  }
  footer {
    margin: 0 0 100px;
    text-align: center;
  }
  html body #contact p {
    font-size: 1.1rem !important;
    font-weight: 400;
  }
  html body footer p {
    font-size: .8rem !important;
    font-weight: 400;
  }

}
/* =============================================================== */
/* CLOSING（モバイル設定）ここまで */
/* =============================================================== */






/* =============================================================== */
/* その他設定 */
/* =============================================================== */


/* ランディングページなのでページトップボタン非表示 */
#page_top {
  display: none;
}

/* ポインターのfontawesomeの調整 */
.fa-arrow-pointer {
  display: inline-block !important;
  margin-left: 10px !important;
}

/* お問い合わせフォームの調整 */
input,
textarea,
select {
    font-size: 16px !important;
}

.width-adjust {
  width: 93% !important;
}

input.width-adjust {
  width: 93% !important;
}

select.width-adjust {
  width: 93% !important;
}

/* キービジュアルがふわっと現れるアニメーション（CSSのみ使用） */
.intro-overlay {
  animation: overlayFadeIn 2s ease-out forwards;
}

@keyframes overlayFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1; /* 最後に完全に表示 */
    transform: translateY(0); /* 元の位置に戻す */
  }
}


/* ページ全体的に各要素にフェードインアニメーションを適用 */
.fade-in {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}





/* FAQ */
.faq.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 70% !important;
  /* margin: 0 auto; */
  h1 {
    width: 100% !important;
    padding: 0 !important;
    padding: 30px 0 30px 30px !important;
  }
}

.faq-section {
  /* max-width: 800px; */
  display: flex;
  flex-direction: column;
  

  width: 100%;
  /* margin: 0 auto; */
  /* padding: 2rem; */
  gap: 40px 0;
  /* margin-left: 20px; */
  margin-bottom: 50px !important;
}

.faq-item {
  overflow: hidden;

  border-radius: 1rem;
  /* margin-bottom: 1rem; */
  /* border: 1px solid #ccc; */
}

.faq-question::before {
  content: "Q.";
  position: absolute;
  left: 1.5rem;
  font-size: 2.2rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
  position: relative;

  font-size: 1.1rem;
  background-color: var(--lp-bg-color-green); /* 緑色系背景 */
  color: #fff;
  padding: 1.5rem 2rem 1.5rem 4.5em;
  /* border-radius: 1rem; */
  transition: background-color 0.3s ease;
}

.faq-question::after {
  content: '\25BC'; /* ▼マーク */
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 0.9rem;
  transition: transform 0.3s ease;
  margin-left: 1rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid #fff;
  border-radius: 50%;
  /* color: #000; */
  background-color: transparent; /* 必要なら背景色指定 */
}
.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  background-color: #f7f7f7; /* 薄いグレー */

  max-height: 0;
  padding: 0 2rem;
  font-size: 1rem;
  /* border-radius: 0 0 1rem 1rem; */
}

.faq-answer.open {
  padding: 1.5rem 2rem;
  max-height: 300px; /* 適宜調整 */
}

@media screen and (max-width: 768px) {
  /* FAQ */
  .faq.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 95% !important;

    h1 {
      /* width: 100% !important; */
      /* padding: 0 !important; */
      width: 98% !important;
      padding: 20px 0 20px 10px !important;
    }
  }

  .faq-section {
    display: flex;
    flex-direction: column;
    

    width: 100%;
    gap: 20px 0;
    margin-bottom: 50px !important;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    position: relative;

    font-size: 1.1rem;
    background-color: var(--lp-bg-color-green); /* 緑色系背景 */
    color: #fff;
    padding: 1.5rem 4rem 1.5rem 4.5em;
    /* border-radius: 1rem; */
    transition: background-color 0.3s ease;
  }

  .faq-question::after {
    content: '\25BC'; /* ▼マーク */
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5rem;

    font-size: 0.9rem;
    transition: transform 0.3s ease;
    margin-left: 0;
    width: 2rem;
    height: 2rem;
    border: 1px solid #fff;
    border-radius: 50%;
    /* color: #000; */
    background-color: transparent; /* 必要なら背景色指定 */
  }

  .faq-question.active::after {
    transform: translateY(-50%) rotate(180deg);
  }
}




/* お客様の声 */
section.customer-voice {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;

  margin-top: 50px;
  padding-bottom: 50px;

  .family.img-1 {
    width: 70vw;
    min-height: 450px;
    border-radius: 1rem;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 10%;
    background-image: url(../image/family.jpeg);
  }

  h1.title {
    font-weight: 700;
    font-size: 1.2rem !important;
    width: 70%;
    padding: 20px 0 !important;
    padding-left: 10px !important;
  }

  .voice-text-block {
    width: 70%;
    margin: 0 0 50px;
    h3 {
      margin: 10px 0;
      font-weight: 600 !important;
    }
    ul {
      margin: 20px 0 10px !important;
      li {
        background-color: #fff7fc;
        border: 5px solid #ffc0ea;
        border-radius: 1rem;
        margin: 10px 0 !important;
        padding: 20px 10px;
        font-family: 'yosugara','hiragino-mincho';
      }
    }
  }


  .swiper-wrapper {
    margin-left: -200px !important;
  }
}


/* 共感セクション */
section.affinity {
  background-color: #bff4ff;

  padding: 100px 0 100px;
  gap: 50px;

  &.down-arrow {
    position: relative;
    &::after {
      position: absolute;
      bottom: 0;
      transform: translateY(calc(-1px + clamp(3rem, 10vw, 5rem)));

      content: "";
      display: block;
      width: 0;
      height: 0;
      border-left: clamp(4rem, 15vw, 6rem) solid transparent;  /* 左の斜辺 */
      border-right: clamp(4rem, 15vw, 6rem) solid transparent; /* 右の斜辺 */
      border-top: clamp(3rem, 10vw, 5rem) solid #bff4ff; /* 下向きの三角形 */

      z-index: 0;
    }
  }
}

div.affinity {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fff;

  width: 70%;
  border-radius: 1rem;
  padding: 40px;
  gap: 20px;

  .affinity-img {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    width: 100%;
    height: 400px;
    border-radius: 1rem !important;
  
    .item-1 {
      width: 100%;
      height: 400px;

      background-size: cover;
      background-repeat: no-repeat;
      background-position: 30% 0px !important;
      background-image: url(../image/consultant.jpeg);
    }
    .item-2 {
      width: 100%;
      height: 400px;

      background-size: cover;
      background-repeat: no-repeat;
      background-position: 30% 0 !important;
      background-image: url(../image/engineer.jpeg);
    }
  }
  p {
    width: 100%;
    /* padding: 30px; */

    color: #000;
    box-sizing: border-box;
  }
}



@media(max-width:768px) {
  section.customer-voice {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;

    margin-top: 50px;
    padding-bottom: 0;

    .family.img-1 {
      width: 90vw;
      min-height: 250px;
      border-radius: 1rem;

      background-size: cover;
      background-repeat: no-repeat;
      background-position: center 10%;
      background-image: url(../image/family.jpeg);
    }
    h1.title {
      font-weight: 700;
      font-size: 1.2rem !important;
      width: 88%;
      padding: 20px 0 !important;
      padding-left: 10px !important;
    }

    .voice-text-block {
      width: 90%;
      margin: 0;
      h3 {
        margin: 10px 0;
        font-weight: 600 !important;
      }
      ul {
        margin: 20px 0 10px !important;
        li {
          background-color: #fff7fc;
          border: 5px solid #ffc0ea;
          border-radius: 1rem;
          margin: 10px 0 !important;
          padding: 20px 10px;
          font-family: 'yosugara','hiragino-mincho';
          font-size: 1.2rem !important;
        }
      }
    }

    .swiper {
      margin-top: 10px !important;
    }
    .swiper-wrapper {
      margin-left: -40px !important;
    }
  }

section.affinity {
  background-color: #bff4ff;

  padding: 100px 0 100px;

  &.down-arrow {
    position: relative;
    &::after {
      position: absolute;
      bottom: 0;
      transform: translateY(calc(-1px + clamp(3rem, 10vw, 5rem)));

      content: "";
      display: block;
      width: 0;
      height: 0;
      border-left: clamp(4rem, 15vw, 6rem) solid transparent;  /* 左の斜辺 */
      border-right: clamp(4rem, 15vw, 6rem) solid transparent; /* 右の斜辺 */
      border-top: clamp(3rem, 10vw, 5rem) solid #bff4ff; /* 下向きの三角形 */

      z-index: 0;
    }
  }
}

div.affinity {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 95%;
  border-radius: 1rem;
  padding: 20px;
  gap: 10px;

  .consultant-img {
    width: 100%;
    height: 150px;
    border-radius: 1rem !important;
  
    .item-1 {
      width: 100%;
      height: 150px !important;

      background-size: cover;
      background-repeat: no-repeat;
      background-position: 30% 0px !important;
      background-image: url(../image/consultant.jpeg);
    }
    .item-2 {
      width: 100%;
      height: 150px !important;

      background-size: cover;
      background-repeat: no-repeat;
      background-position: 30% 0 !important;
      background-image: url(../image/engineer.jpeg);
    }
  }
  
  p {
    width: 100%;
    /* padding: 20px 10px; */

    /* background-color: #fff; */
    color: #000;
    box-sizing: border-box;
  }
}
}