  /*　CTA each section
--------------------------------------------------------*/
.sec_cta {
    width: 100%;
    padding: 30px 0;
    background: url(https://tp-img.imgix.net/s/lp/engagement/pc/bg/bg_cta@2x.png?auto=format);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    @media (59.0625rem <= width) {
        padding: 30px 0;
        background: url(https://tp-img.imgix.net/s/lp/engagement/pc/bg/bg_cta@2x.png?auto=format);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
}

ul.list_cta {
    width: 94%;
    margin: auto;
    display: grid;
    row-gap: 2em;

    @media (59.0625rem <= width) {
        max-width: 1000px;
        width: 100%;
        margin: initial;
        margin-left: 1%;
        row-gap: initial;
        grid-template-columns: 26% 73%;
        column-gap: 1%;
    }

    @media (1015px <= width ) {
      grid-template-columns: 31% 68%;
    }

    @media (88.125rem <= width ) {/* 1410px */
        max-width: 1100px;
        margin: auto;
        grid-template-columns: 42% 55%;
        column-gap: 3%;
    }

    li {
      &:last-child {

        @media (88.125rem <= width ) {
          margin-top: 1em;
        }
      }
    }
}

.note_cta {
    font-size: var(--10px);
    color: #ffffff;
    text-align: center;
}

.sec_cta .caption_fv {
    font-size: 14px;
    width: fit-content;
    color: #ffffff;
    padding-bottom: 5px;
    margin-bottom: 1em;

    border-bottom: solid 3px #ffffff;
    position: relative;

     @media (769px <= width ) {
      font-size: clamp(14px, calc(4.832px + 1.192vw), 22px);
    }

    &::after {
        content: "";
        width: 14px;
        height: 14px;
        border-top: 3px solid #ffffff;
        border-right: 3px solid #ffffff;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        position: absolute;
        bottom: -9px;
        right: 50%;
        transform: translateX(-50%) rotate(135deg);
        background: #0c89a6;
    }
}

.sec_cta .title_tp {
    width: fit-content;
    font-size: 15px;
    color: #3F4040;
    font-weight: bold;
    margin-bottom: 1em;
    padding: 8px;
    background: #ffffff;
    isolation: isolate;
    background: transparent;
    position: relative;

    @media (769px <= width ) {
        font-size: clamp(14px, calc(4.832px + 1.192vw), 22px);
        margin-bottom: 0.4em;
    }
}

.sec_cta .title_tp::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: skewX(-8deg);
    z-index: -1;
}

.sec_cta .title_tp span {
    font-size: 16px;
    color: #0192C1;
    font-weight: bold;

    @media (769px <= width ) {
        font-size: clamp(16px, calc(6.832px + 1.192vw), 24px);
        margin-bottom: 0.4em;
    }
}

ul.list_cta_child {
    display: grid;
    grid-template-columns: 72% 24%;
    column-gap: 1%;
    padding-left: 3%;
    margin-bottom: 1.3em;

    @media (59.0625rem <= width) {/* 945px */
        grid-template-columns: 65% 31%;
        margin-bottom: initial;
    }

    li {
        img {
            margin-top: 4em;
        }
    }
}

ul.list_cta_sibling {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 1.5em;

    @media (59.0625rem <= width) {
      /* max-width: 600px; */
      /* grid-template-columns: 21% 42.5% 42.5%; */
      grid-template-columns: 19% 34% 34%;
      column-gap: 3%;
      margin-bottom: initial;
      margin-top: 0.3em;
    }

    li {
      &:nth-child(n+2) {
          display: flex;
          align-items: flex-end;
      }

      &:nth-child(2) {
          justify-content: flex-end;
          padding-right: 10px;

          @media (59.0625rem <= width) {
              /* margin-left: 6%; */
              justify-content: initial;
              padding-right: initial;
          }
      }

      &:last-child {
          justify-content: flex-start;
          padding-left: 12px;

          @media (59.0625rem <= width) {
              /* margin-left: 0; */
              justify-content: initial;
              padding-left: initial;
          }
      }
    }

    .grid_item1 {
        grid-column: 1 / 3;

        @media (59.0625rem <= width) {
          grid-column: auto;
        }
    }

    .p_cta_fukidasi {
        width: fit-content;
        margin: auto;
        font-size: var(--13px);
        font-weight: bold;
        color: #333333;
        text-align: center;
        padding: 7px 20px;
        background: #FFDE69;
        border-radius: 50px;
        position: relative;
        top: -8px;

        @media (59.0625rem <= width) {
            font-size: var(--10px);
            padding: 7px 6px;
            border-radius: 15px;
            top: -8px;
            margin: initial;
        }

        @media (70.5rem <= width ) {
            font-size: var(--12px);
            padding:7px 12px;
        }

        &::before {
            border-style: solid;
            border-color: #FFDE69 transparent transparent transparent;
            border-width: 10px 5px 0 5px;
            transform:rotate(135deg);
            content: "";
            position: absolute;
            right: 45%;
            transform: translateX(-45%);
            bottom: -10px;
            width: 0;
            height: 0;

            @media (59.0625rem <= width) {
                transform:rotate(75deg);
                right: 0;
                bottom: 0;
            }
        }
    }
}

.sec_cta .note_fv a {
	/* max-width: fit-content; */
  width: 100%;
	display: block;
	/* text-align: center; */
	font-size: var(--14px);
  color: #ffffff;
  padding: 0 20px 5px 0;
  border-bottom: none;
  position: relative;

  @media (59.0625rem <= width) {
    font-size: var(--11px);
  }

  @media (70.5rem <= width ) {/* 1128px */
    font-size: var(--15px);
  }

  &:hover {
    &::after {
      right: 0;
    }

    &::before {
      width: 0;
    }
  }

  &::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 7px;
    right: 3px;
    transition: all 0.3s ease-in-out 0s;

    @media (59.0625rem <= width) {
      top: 8px;
    }
  }

  &::before {
    content: "";
    position: absolute;
    right: 0;
    left: auto;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #ffffff;
    transition: width 0.35s ease-in-out;
  }
}
