/* LPテンプレート用スタイル ------------------------------------------------------------ */

/* 共通 */

.page {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer {
  margin-top: 80px !important;
  width: 100% !important;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.only-sp {
  display: none;
  @media screen and (max-width: 780px) {
    display: block;
  }
}

.font-86 {
  font-size: 86px;
  @media screen and (max-width: 1280px) {
    font-size: 7.333vw;
  }
  @media screen and (max-width: 780px) {
    font-size: 15vw;
  }
}

.font-60 {
  font-size: 60px;
  @media screen and (max-width: 1280px) {
    font-size: 5vw;
  }
  @media screen and (max-width: 780px) {
    font-size: 13.333vw; /* 仮 */
  }
}

.font-56 {
  font-size: 56px;
  @media screen and (max-width: 1280px) {
    font-size: 4.167vw;
  }
  @media screen and (max-width: 780px) {
    font-size: 10vw; /* 仮 */
  }
}

.font-40 {
  font-size: 40px;
  @media screen and (max-width: 1280px) {
    font-size: 3.333vw;
  }
  @media screen and (max-width: 780px) {
    font-size: 8vw; /* 仮 */
  }
}

.font-36 {
  font-size: 36px;
  @media screen and (max-width: 1280px) {
    font-size: 2.8vw;
  }
  @media screen and (max-width: 780px) {
    font-size: 7.333vw; /* 仮 */
  }
}

.font-32 {
  font-size: 32px;
  @media screen and (max-width: 1280px) {
    font-size: 2.5vw;
  }
  @media screen and (max-width: 780px) {
    font-size: 6.667vw; /* 仮 */
  }
}

.font-24 {
  font-size: 24px;
  @media screen and (max-width: 1280px) {
    font-size: 2vw;
  }
  @media screen and (max-width: 780px) {
    font-size: 5.333vw; /* 仮 */
  }
}

.font-20 {
  font-size: 20px;
  @media screen and (max-width: 1280px) {
    font-size: 1.667vw;
  }
  @media screen and (max-width: 780px) {
    font-size: 4.267vw;
  }
}

.font-18 {
  font-size: 18px;
  @media screen and (max-width: 1280px) {
    font-size: 1.5vw;
  }
  @media screen and (max-width: 780px) {
    font-size: 4.267vw; /* 仮 */
  }
}

/* FV */
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section, section {
  width: 100%;
  max-width: 1200px;
  @media screen and (max-width: 1280px) {
    padding: 0 40px;
  }
  @media screen and (max-width: 780px) {
    padding: 0 15px;
  }
}

.lptemp_point {
  @media screen and (max-width: 780px) {
    flex-wrap: nowrap !important;
  }
}

.mb-4 {
  margin-bottom: 16px;
}

.mt-10 {
  margin-top: 40px;
}

p {
  margin: 0;
  line-height: 1.5;
}

figure {
  margin: 0 !important;
}

h1.has-background, h2.has-background, h3.has-background, h4.has-background, h5.has-background, h6.has-background {
  padding: 0;
}

.lptemp_fv {
  height: 600px;
  min-height: 600px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  overflow: hidden;

  @media screen and (max-width: 780px) {
    height: fit-content !important; /* 仮 */
  }
}

.lptemp_fv__inner {
  max-width: 1200px;
  margin: 0 40px;
  @media screen and (max-width: 780px) {
    margin: 0 20px;
  }
}

.lptemp_fv__left {
}

.lptemp_fv__right {
}

/* 大見出し */
.lptemp_heading__inner {
  max-width: 1200px;
  margin-top: 100px;
  margin-bottom: 60px;
  @media screen and (max-width: 1280px) {
    margin-top: 80px;
    margin-bottom: 60px;
  }
  @media screen and (max-width: 780px) {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  p {
    width: 100%;
    padding: 0 40px;
    word-break: auto-phrase;
    @media screen and (max-width: 1280px) {
      padding: 0 40px;
    }
    @media screen and (max-width: 780px) {
      padding: 0 20px;
    }
  }
}

.lptemp_heading__title {
  word-break: auto-phrase;
  position: relative;
  margin: 24px 0 32px;
  @media screen and (max-width: 1280px) {
    font-size: 2.5vw !important;
  }
  @media screen and (max-width: 780px) {
    font-size: 6.667vw !important; /* 仮 */
    margin: 20px 15px 32px;
  }
  &::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    bottom: -32px;
    left: 0;
    right: 0;
    position: absolute;
    width: 60px;
    margin: auto;
  }
}

.lptemp_heading__sub {
  @media screen and (max-width: 780px) {
    font-size: 16px; /* 仮 */
  }
}

/* Point -------------------------------------------------------------- */

/* ポイントセクション */
.lptemp_point__section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  @media screen and (max-width: 1280px) {
    padding: 0 40px;
  }
  @media screen and (max-width: 780px) {
    padding: 0 20px;
  }
}

.lptemp_point__section > div {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wp-block-media-text__content {
  padding: 0;
}

.lptemp_point {
  display: flex;
  flex-direction: row;
  align-items: center !important;
  width: 100% !important;
  max-width: 1200px;
  margin: 0 40px 60px;
  position: relative;
  img {
    height: 100%;
    max-width: 100%;
    vertical-align: middle;
    width: auto;
    object-fit: contain;
  }
  @media screen and (max-width: 780px) {
    flex-direction: column;
    margin: 0 28px 60px;
  }
}

.lptemp_point1 {
  justify-content: flex-start;
}
.lptemp_point2 {
  justify-content: flex-end;
  @media screen and (max-width: 780px) {
    flex-direction: column-reverse;
  }
}

.lptemp_point__textwrap {
  flex: 1;
  padding: 0;
}

.lptemp_point__imgwrap {
  flex: 1;
  padding: 0;
  height: 100%;
  position: relative;

  @media screen and (max-width: 780px) {
    /* position: unset; */
    img {
      height: 140px;
    }
  }
}
.lptemp_point2 .lptemp_point__imgwrap figure {
  padding-right: 6vw;
  @media screen and (max-width: 780px) {
    padding-right: 0;
  }
}
.lptemp_point1 .lptemp_point__imgwrap figure {
  padding-left: 6vw;
  @media screen and (max-width: 780px) {
    padding-left: 0;
  } 
}

.lptemp_point__img {
  margin: 0;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;

  figure {
    margin: 0 !important;
    height: 100%;
    display: flex !important;
    justify-content: flex-end;
  }
  @media screen and (max-width: 780px) {
    position: unset;
    display: flex;
    justify-content: center;
  }
}
.lptemp_point2 .lptemp_point__img {
  right: 0;
  justify-content: flex-end;
  @media screen and (max-width: 780px) {
    justify-content: center;
  }
}
.lptemp_point1 .lptemp_point__img {
  left: 0;
  justify-content: flex-start;
  @media screen and (max-width: 780px) {
    justify-content: center;
  }
}

.lptemp_point__title {
  font-weight: bold;
  margin: 0 0 30px 0;
  word-break: auto-phrase;
  @media screen and (max-width: 1280px) {
    font-size: 2.5vw !important;
  }
  @media screen and (max-width: 780px) {
    font-size: 5.6vw !important; /* 仮 */
  }
}

.lptemp_point__text {
  margin: 30px 0 0 0;
  @media screen and (max-width: 1280px) {
    font-size: 1.5vw !important;
  }
  @media screen and (max-width: 780px) {
    font-size: 1rem !important; /* 仮 */
  }
}
.lptemp_point1 {
  .lptemp_point__border {
    transform: rotate(180deg);
  }
}
.lptemp_point2 {}

.lptemp_point__border {
  background: #304499;
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
}

.lptemp_point__border::before {
  aspect-ratio: 1/1;
  border-radius: 50%;
  box-sizing: content-box;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
}
@media screen and (max-width: 780px) {
  .lptemp_point__border::before {
    border: 2px solid #304499;
    -webkit-transform: translateY(-45%);
            transform: translateY(-45%);
    width: 5px;
  }
}
@media screen and (min-width: 769px) {
  .lptemp_point__border::before {
    border: 2px solid #304499;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 6px;
  }
}
.lptemp_point__border::after {
  background: #304499;
  content: "";
  display: block;
  /* height: 100%; */
  height: 2px;
  position: absolute;
  top: -0.8px;
  left: 9px;
  width: 50vw;
  @media screen and (max-width: 780px) {
    width: 100vw;
  }
}

/* CTA -------------------------------------------------------------- */

.lptemp_cta {
  width: 100%;
  padding: 60px 0;
  word-break: auto-phrase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  p {
    margin: 0;
  }
}

.lptemp_cta01 {
  padding: 60px 20px;
}

.lptemp_cta > div {
  width: 100%;
  max-width: 1200px;
}

.lptemp_cta__btn a {
  word-break: auto-phrase;
}

.lptemp_cta01__textL {
  margin-bottom: 10px !important;
}

.lptemp_cta01__textS {
  margin-bottom: 24px !important;
}

.lptemp_cta01__btn {
  max-width: 600px;
  height: 80px;
  box-shadow: 0 4px 24px rgba(160, 185, 222, 0.15);
  transition: all 0.3s ease-in-out;
  &:hover {
    transform: scale(1.05) !important;
  }
  a {
    padding: 0 !important;
  }
  @media screen and (max-width: 780px) {
    max-width: 100% !important;
    height: 60px;
    width: 100% !important;
    font-size: 4.667vw !important;
  }
}

.lptemp_cta__btn {
  max-width: 600px;
  height: 80px;
  transition: all 0.3s ease-in-out;
  &:hover {
    transform: scale(1.05) !important;
  }
  a {
    padding: 0 !important;
  }
  @media screen and (max-width: 780px) {
    max-width: 100% !important;
    height: 60px;
    width: 100% !important;
    font-size: 4.667vw !important;
  }
}

.lptemp_cta02__btn {
  span {
    background: #fff;
    color: #ffa200;
    display: inline-block;
    border-radius: 20px;
    padding: 4px 11px 5px;
    margin-right: 10px;
    font-weight: 700;
    @media screen and (max-width: 780px) {
      padding: 2px 8px 4px;
    }
  }

}

.lptemp_cta02__btnarea_wrapper {
  max-width: 1000px;
  margin: 40px auto 0;

  .lptemp_cta__btn {
    height: unset;
    a {
      padding: 20px 0 !important;
      height: 100% !important;
    }
  }
}

.lptemp_cta02__btnwrap {
  height: 100%;
}

.lptemp_cta02__btntext {
  margin-bottom: 10px !important;
}

.btn_subtext {
  margin: 0 0 10px !important;
  font-size: medium;
  @media screen and (max-width: 780px) {
    font-size: 14px;
  }
}

/* ステップ -------------------------------------------------------------- */


.lptemp_step {
  margin-top: 40px;
  gap: 40px;
  @media screen and (max-width: 1280px) {
    gap: 3vw;
    padding: 0 40px;
    margin-top: 3vw;
  }
  @media screen and (max-width: 780px) {
    margin-top: 15vw;
    gap: 16vw;
  }
}
.lptemp_step__item {
  position: relative;
  padding: 70px 10px 48px;
  border-radius: 24px;
  border: 1px solid #CCCCCC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  @media screen and (max-width: 1280px) {
    gap: 1.5vw;
    padding: 5vw 10px 4vw;
  }
  @media screen and (max-width: 780px) {
    gap: 5vw;
    padding: 14vw 10px 9vw;;
  }
}
.lptemp_step__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-30%, 0%);
  margin-top: -30px;
  border: 30px solid transparent;
  border-left: 30px solid #A8D8DE;
  @media screen and (max-width: 1280px) {
    border-width: 3vw;
    margin-top: -3vw;
    border-left: 3vw solid #A8D8DE;
  }
  @media screen and (max-width: 780px) {
    content: none;
  }
}

.lptemp_step__item:first-of-type::before {
  content: none;
}


.lptemp_step__num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 7vw;
  max-height: 100px;
  max-width: 100px;
  aspect-ratio: 1 / 1;
  background: #4696BE;
  color: #FFFFFF;
  font-weight: 900;
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  padding: 0;
  @media screen and (max-width: 780px) {
    height: 24vw;
    max-width: 24vw;
    max-height: 24vw;
  }
}

.lptemp_step__img {
  max-width: 120px;
  aspect-ratio: 1 / 1;
  @media screen and (max-width: 780px) {
    max-width: 60%;
  }
}


/* ハーフサイズカード -------------------------------------------------------------- */

.lptemp_halfcard__section > .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  @media screen and (max-width: 1280px) {
    gap: 2vw;
  }
  @media screen and (max-width: 780px) {
    gap: 8vw;
  }
}

.lptemp_halfcard__wrapper {
  gap: 40px;
  @media screen and (max-width: 1280px) {
    gap: 2vw;
  }
  @media screen and (max-width: 780px) {
    gap: 8vw;
  }
}

.lptemp_halfcard__section .wp-block-columns {
  margin: 0 !important;
}

.lptemp_halfcard {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 60px;
  border-radius: 10px;
  border: 1px solid #F8F8F8;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  @media screen and (max-width: 1280px) {
    padding: 3vw;
  }
  @media screen and (max-width: 780px) {
    padding: 20px 30px;
  }
}

.lptemp_halfcard__inner {
  gap: 24px;
  margin: 0 !important;
  @media screen and (max-width: 780px) {
    gap: 16px;
  }
}

.lptemp_halfcard__imgwrap {
  max-width: 16%;
  aspect-ratio: 1 / 1;
}

.lptemp_halfcard__img {
  
}

.lptemp_halfcard__textwrap {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: flex-start;
  @media screen and (max-width: 780px) {
    gap: 8px;
  }
}

.lptemp_halfcard__title {

}

.lptemp_halfcard__desc {
  color: #8B8B8B;
  @media screen and (max-width: 780px) {
    font-size: 14px;
  }
}

