/* =================================
 l-container
================================= */
.l-container {
  padding: 0;
  overflow: clip;
}

/* =================================
 l-header-lp
================================= */
.l-header-lp {
  position: fixed;
  z-index: 1001;
  width: 100%;
  height: 80px;
  padding: 20px 15px 20px 20px;
  background-color: transparent;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  top: 20px;
  width: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  @media screen and (max-width: 980px) {
    width: 100%;
    top: 0;
    height: 60px;
    padding: 15px 0 15px 15px;
  }
  &.is-scrolled {
    background-color: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
  }
  &.is-open {
    background: #fff;
  }
}

@media screen and (max-width: 980px) {
  body.is-open {
    overflow: hidden;
  }
}

.l-header-lp__logo {
  img {
    @media screen and (max-width: 980px) {
      width: 114px;
      height: auto;
    }
  }
}


.l-header-lp__nav {
  @media screen and (max-width: 980px) {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100svh - 60px);
    background: rgba(0,0,0,.55);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    &.is-open {
      opacity: 1;
      visibility: visible;
    }
  }
}

.l-header-lp__link-list {
  display: flex;
  align-items: center;
  gap: 30px;
  @media screen and (max-width: 980px) {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
  }
}

.l-header-lp__link-item {
  @media screen and (max-width: 980px) {
    width: 100%;
  }
}

.l-header-lp__link {
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  transition: .3s all ease;
  &:hover,
  &.is-active {
    color: #3178BC;
  }
  @media screen and (max-width: 980px) {
    width: 100%;
    padding: 24px 0;
    border-bottom: 1px solid #C5D9E2;
    text-align: center;
    font-size: 16px;
    line-height: calc(24 / 16);
    font-weight: bold;
    display: block;
  }
}

.l-header-lp__menu {
  @media screen and (min-width: 981px) {
    display: none;
  }
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: transparent;
  transition: .3s all ease;
  z-index: 1002;
  border: none;
  outline: none;
  padding: 0;
  &.is-open {
    background: #fff;
    span {
      &:nth-child(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
      }
      &:nth-child(2) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
      }
    }
  }
  span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 3px;
    border-radius: 5px;
    background: #36B6EA;
    display: block;
    transition: .3s all ease;
    &:nth-child(1) {
      top: calc(50% - 6px);
    }
    &:nth-child(2) {
      top: calc(50% + 6px);
    }
  }
}

/* =================================
 lp-cta
================================= */
.lp-cta {
  margin-top: calc(1vw * 130 / 1366 * 100);
  padding: calc(1vw * 50 / 1366 * 100) 0 calc(1vw * 300 / 1366 * 100);
  position: relative;
  z-index: auto;
  background: url(../img/p-mb5/cta-bg.png) no-repeat top / cover;
  overflow-x: clip;
  @media screen and (max-width: 799px) {
    margin-top: 35px;
    padding: 25px 0 150px;
    background: url(../img/p-mb5/sp/cta-bg.png) no-repeat bottom / cover;
  }
  &:before {
    content: "";
    width: calc(1vw * 2000 / 1366 * 100);
    height: calc(1vw * 180 / 1366 * 100);
    left: 50%;
    transform: translateX(-50%);
    top: calc(1vw * -180 / 1366 * 100);
    background: url(../img/p-mb5/cta-wave.png) no-repeat top / 100%;
    position: absolute;
    z-index: -1;
    @media screen and (max-width: 799px) {
      width: 800px;
      height: 72px;
      top: -72px;
      background: url(../img/p-mb5/sp/cta-wave.png) no-repeat top / 100%;
    }
  }
}
.lp-cta--pt0 {
  margin-top: 0;
}
.lp-cta__contents {
  padding: 55px 74px;
  position: relative;
  background: #fff;
  border-radius: 40px;
  @media screen and (max-width: 799px) {
    padding: 30px 15px 305px;
    border-radius: 20px;
  }
}
.lp-cta__image {
  width: calc(1vw * 536 / 1366 * 100);
  position: absolute;
  top: calc(1vw * -97 / 1366 * 100);
  right: calc(1vw * 25 / 1366 * 100);
  pointer-events: none;
  @media screen and (max-width: 799px) {
    width: 276px;
    top: auto;
    bottom: 70px;
    right: 50%;
    transform: translateX(50%);
  }
  img {
    width: 100%;
    height: auto;
  }
}

.lp-cta__text-col {
  width: 58.555%;
  @media screen and (max-width: 799px) {
    width: 100%;
  }
}

.lp-cta__title {
  font-size: 38px;
  line-height: 55.8px;
  font-weight: bold;
  @media screen and (max-width: 799px) {
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    margin: 0 0 12px;
  }
}

.lp-cta__sub_title {
  font-size: 28px;
  line-height: 55.8px;
  font-weight: bold;
  @media screen and (max-width: 799px) {
    font-size: 18px;
    line-height: 32px;
    text-align: center;
  }
}

.lp-cta__btn-col {
  max-width: 590px;
  width: 100%;
  margin-top: 50px;
}

.lp-cta__btn-title {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: calc(28.8 / 18);
  padding-inline: 21px;
  position: relative;
  &:before,
  &:after {
    content: "";
    position: absolute;
    width: 14px;
    height: 21px;
    background: url(../img/p-mb5/cta-title-obj.png) no-repeat center / contain;
    bottom: 1px;
  }
  &:before {
    left: 0;
  }
  &:after {
    right: 0;
    transform: scale(-1,1);
  }
}

.lp-cta__btn {
  background: #0070C2;
  max-width: 590px;
  width: 100%;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 5px 30px;
  height: 72px;

  &:after {
    content: "";
    width: 25px;
    height: 22px;
    background: url(../img/p-mb5/ico-download.png) no-repeat center / contain;
    mask: inherit;
    position: static;
    margin: 3px 0 0;
  }
}

.lp-cta__note-text {
  display: flex;
  justify-content: center;
  font-size: 12px;
  line-height: 19.2px;
  max-width: 590px;
  width: 100%;
  margin-inline: auto;
  margin-top: 20px;
  &:before {
    content: "※";
  }
}

.lp-cta-sp__heading {
  display: block;
  width: fit-content;
  margin: 30px auto 15px;
  font-size: 20px;
  line-height: calc(35 / 20);
  font-weight: 500;
  padding: 0 14px;
  position: relative;
  z-index: 0;
}
.lp-cta-sp__heading:before, 
.lp-cta-sp__heading:after {
  content: "";
  position: absolute;
  bottom: 2px;
  height: 25px;
  width: 2px;
  background: #333;
}
.lp-cta-sp__heading:before {
  transform: rotate(-15deg);
  left: 0;
}
.lp-cta-sp__heading:after {
  transform: rotate(15deg);
  right: 0;
}

.lp-cta-sp__heading span {
  background: #0070C2;
  color: #fff;
  font-weight: bold;
  padding: 0 4px;
}

.lp-cta-sp__text {
  font-size: 16px;
  line-height: calc(28.8 / 16);
  text-align: left;
  font-weight: 500;
}

.lp-cta-sp__deco {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  position: absolute;
  max-width: 345px;
  width: 100%;
  height: auto;
}

.lp-cta-sp__btns {
  width: fit-content;
  margin: 0 auto;
  max-width: 315px;
  width: 100%;
}

.lp-cta-sp__btn {
  width: 100%;
  max-width: 315px;
  margin: 15px auto 0;
  background: #0070C2;
}

.lp-cta-sp__btn:after {
  content: url(/assets/img/p-template-single/i-copy.svg);
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 0;
  width: auto;
  height: auto;
  mask: inherit;
  background: none;
  margin: 0;
}

/* =================================
 title
================================= */
.c-lp-title-1 {
  padding: 120px 0 50px;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  line-height: calc(67.2 / 42);
  font-weight: bold;
  text-align: center;
  @media screen and (max-width: 799px) {
    padding: 80px 0 30px;
    font-size: 30px;
    line-height: calc(46 / 30);
  }
  &:before {
  content: "";
  width: 58px;
  height: 50px;
  background: url(../img/p-mb5/lp-title-obj.png) no-repeat center / contain;
  margin-bottom: 20px;
  @media screen and (max-width: 799px) {
    width: 48px;
    height: 40px;
  }
  }
  .c-lp-title-1__min {
    font-size: 28px;
    @media screen and (max-width: 799px) {
      font-size: 24px;
    }
  }
}
.c-lp-title-1--pt0 {
  padding-top: 0;
}

.c-lp-title-2 {
  padding: 100px 0 40px;
  position: relative;
  z-index: 0;
  font-size: 32px;
  line-height: 46px;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;

  @media screen and (max-width: 799px) {
    padding: 60px 0 30px;
    font-size: 24px;
    line-height: 35px;
  }
  &:after {
    content: "";
    width: 196px;
    height: 20px;
    mask: url(../img/p-mb5/lp-title-2-obj.svg) no-repeat center / contain;
    @media screen and (max-width: 799px) {
      width: 158px;
      height: 16px;
      mask: url(../img/p-mb5/sp/lp-title-2-obj.svg) no-repeat center / contain;
    }
  }
}

.c-lp-title-2--pt0 {
  padding-top: 0;
}

.c-lp-title-2--blue {
  &:after {
    background: #36B6EA;
  }
}
.c-lp-title-2--yellow {
  &:after {
    background: #EBC10B;
  }
}

/* =================================
 text
================================= */
.c-sec-text {
  text-align: center;
  @media screen and (max-width: 799px) {
    text-align: left;
    padding: 0 15px;
  }
}

/* =================================
 mainvisual
================================= */
.mainvisual {
  padding: calc(1vw * 110 / 1366 * 100) 0 calc(1vw * 65 / 1366 * 100);
  background: url(../img/p-mb5/mv-bg.png) no-repeat top / 100%;
  @media screen and (max-width: 799px) {
    background: url(../img/p-mb5/sp/mv-bg.png) no-repeat top / 100%;
     padding: calc(1vw * 73 / 375 * 100) 0 calc(1vw * 80 / 375 * 100);
  }
}

.mainvisual__inner {
  width: calc(1vw * 1250 / 1366 * 100);
  margin: 0 0 0 calc(1vw * 34 / 1366 * 100);
  @media screen and (max-width: 799px) {
    width: calc(1vw * 360 / 375 * 100);
    margin: 0 auto;
  }
}

.mainvisual__image {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  img {
    width: 100%;
    height: auto;
  }
}

.campaign-banner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  @media screen and (max-width: 799px) {
    padding: 0 15px;
  }
  img {
    width: 100%;
    height: auto;
  }
}

/* =================================
 l-footer-lp
================================= */
.l-footer-lp {
  padding: 60px 0;
  background: #fff;
  position: relative;
  z-index: 0;
  overflow-x: clip;
  @media screen and (max-width: 799px) {
    padding: 50px 0 20px;
  }
  &:before {
    content: "";
    width: calc(1vw * 2000 / 1366 * 100) ;
    height: calc(1vw * 200 / 1366 * 100) ;
    background: url(../img/p-mb5/footer-wave.png) no-repeat top / 100%;
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    top: calc(1vw * -166 / 1366 * 100);
    @media screen and (max-width: 799px) {
      width: calc(1vw * 800 / 375 * 100);
      height: calc(1vw * 80 / 375 * 100);
      top: calc(1vw * -35 / 375 * 100);
    }
  }
}

.l-footer-lp__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "logo ..."
    "verification links"
    "verification copyright";
  grid-column-gap: 40px;
  grid-row-gap: 0;
  @media screen and (max-width: 799px) {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}

.l-footer-lp__logo {
  grid-area: logo;
  margin-bottom: 50px;
  @media screen and (max-width: 799px) {
    margin-bottom: 40px;
    order: 1;
  }
  img {
    width: 220px;
    height: auto;
    @media screen and (max-width: 799px) {
      width: 146px;
    }
  }
}

.l-footer-lp__verification {
  grid-area: verification;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #9FC6E2;
  padding: 15px 20px;
  max-width: 580px;
  @media screen and (max-width: 799px) {
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    margin-bottom: 20px;
    max-width: 100%;
    order: 3;
  }
}

.l-footer-lp__verification-img {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  img {
    height: 75px;
    width: auto;
    @media screen and (max-width: 799px) {
      height: 56px;
    }
  }
}

.l-footer-lp__verification-text {
  font-size: 12px;
  line-height: calc(21.6 / 12);
}

.l-footer-lp__links {
  grid-area: links;
  align-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  @media screen and (max-width: 799px) {
    flex-wrap: wrap;
    justify-content: center;
    align-self: center;
    gap: 0 20px;
    margin-bottom: 50px;
    width: 100%;
    order: 2;
  }
  .l-footer-lp__links-break {
    display: none;
    @media screen and (max-width: 799px) {
      display: block;
      width: 100%;
      height: 0;
      margin: 0;
      padding: 0;
    }
  }
  a {
    font-size: 14px;
    text-decoration: underline;
    position: relative;
    &:hover {
      text-decoration: none;
    }
    @media screen and (max-width: 799px) {
      text-decoration: underline;
    }
  }
  li {
    @media screen and (max-width: 799px) {
      text-align: center;
    }
  }
}

.l-footer-lp__copyright {
  grid-area: copyright;
  align-self: end;
  text-align: right;
  font-size: 12px;
  @media screen and (max-width: 799px) {
    text-align: center;
    order: 4;
    width: 100%;
  }
}

/* =================================
 memory-sec
================================= */
.memory-sec-importance {
  padding-bottom: 110px;
  position: relative;
  z-index: 0;
  margin-top: 50px;
  @media screen and (max-width: 799px) {
    padding-bottom: 95px;
    /* background: #EBF7FC; */
  }
  .memory-sec-importance__inner {
    @media screen and (max-width: 799px) {
      position: relative;
      z-index: 0;
      &:after {
        content: "";
        width: 100%;
        height: calc(100% - 100px);
        background: #EBF7FC;
        top: 100px;
        left: 0;
        z-index: -1;
        position: absolute;
      }
    }
  }
  &:before {
    content: "";
    width: 1440px;
    height: 800px;
    background: url(../img/p-mb5/memory-sec-importance-bg.png) no-repeat center / contain;
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    @media screen and (max-width: 799px) {
      width: 503px;
      height: 290px;
      background: url(../img/p-mb5/sp/memory-sec-importance-bg.png) no-repeat center / contain;
    }
  }
  &:after {
    content: "";
    @media screen and (max-width: 799px) {
      background: url(../img/p-mb5/memory-sec-importance-bg.png) no-repeat center / contain;
      position: absolute;
      z-index: -1;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 503px;
      height: 290px;
      background: url(../img/p-mb5/sp/memory-sec-importance-bg-btm.png) no-repeat center / contain;
      }
  }
}

.memory-sec-importance__list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 32px;
  @media screen and (max-width: 799px) {
    grid-template-columns: repeat(1,1fr);
    gap: 47px;
    margin-top: 27px;
  }
}

.memory-sec-importance__list-item {
  position: relative;
  z-index: 0;
  padding: 30px;
  background: #fff;
  box-shadow: 12px 12px 0 0 rgba(111, 159, 180, 0.16);
  display: flex;
  flex-direction: column;
  @media screen and (max-width: 799px) {
    padding: 20px;
    box-shadow: 8px 8px 0 0 rgba(111, 159, 180, 0.16);
    width: calc(100% - 20px);
    margin: 0 0 0 auto;
  }
  &:after {
    content: "";
    width: 37px;
    height: 50px;
    background: url(../img/p-mb5/ico-pin.png) no-repeat center / contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -32px;
    @media screen and (max-width: 799px) {
      width: 30px;
      height: 40px;
      top: -27px;
    }
  }
  &:nth-child(odd) {
    transform: translateY(-60px);
    @media screen and (max-width: 799px) {
      transform: translateY(0);
      margin: 0 auto 0 0;
    }
  }
}

.memory-sec-importance__list-thumbnail {
  width: 100%;
  margin: 0 0 20px;
  order: -1;
  @media screen and (max-width: 799px) {
    margin: 0 0 15px;
  }
  img {
    width: 100%;
    height: auto;
  }
}

.memory-sec-importance__list-title {
  font-size: 20px;
  line-height: 29px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
  @media screen and (max-width: 799px) {
    margin: 0 0 15px;
  }
}

.memory-sec-catch-copy {
  width: fit-content;
  margin: 32px auto 0;
  position: relative;
  z-index: 0;
  padding: 0 85px 24px;
  text-align: center;
  @media screen and (max-width: 799px) {
    padding: 0 25px 5px;
    margin: 30px auto 0;
  }
  &:before,
  &:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 48px;
    height: 151px;
    background: url(../img/p-mb5/memory-sec-catch-copy-obj.png) no-repeat center / contain;
    @media screen and (max-width: 799px) {
      width: 23px;
      height: 72px;
      transform: rotate(-17deg);
    }
  }
  &:before {
    left: 0;
  }
  &:after {
    right: 0;
    transform: scale(-1,1);
    @media screen and (max-width: 799px) {
      transform: scale(-1,1) rotate(-17deg);
    }
  }
}
.memory-sec-catch-copy__label {
  font-size: 28px;
  font-weight: bold;
  line-height: 40px;
  margin: 0 0 14px;
  @media screen and (max-width: 799px) {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 8px;
  }
  span {
    color: #38B4EA;
  }
}
.memory-sec-catch-copy__body {
  font-size: 38px;
  line-height: 61px;
  font-weight: bold;
  position: relative;
  z-index: 0;
  @media screen and (max-width: 799px) {
    font-size: 26px;
    line-height: 37px;
    margin: 0 0 8px;
  }
  &:before {
    content: "";
    width: 628px;
    height: 29px;
    background: url(../img/p-mb5/memory-sec-catch-copy-border.png) no-repeat center / contain;
    position: absolute;
    z-index: -1;
    bottom: -13px;
    left: 34px;
    @media screen and (max-width: 799px) {
      left: 6px;
      bottom: -5px;
      width: 272px;
      height: 50px;
      background: url(../img/p-mb5/sp/memory-sec-catch-copy-border.png) no-repeat center / contain;
    }
  }
}

.memory-sec-campaign {
  border-radius: 40px;
  padding: 42px 0 110px;
  background: #FFF7D5;
  margin-top: 110px;
  position: relative;
  z-index: 0;
  @media screen and (max-width: 799px) {
    padding: 40px 0 30px;
    border-radius: 20px;
    margin-top: 68px;
  }
  &:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 202px;
    height: 60px;
    background: url(../img/p-mb5/ico-now.svg) no-repeat center / contain;
    @media screen and (max-width: 799px) {
      width: 180px;
      height: 53px;
      top: -27px;
    }
  }
  .u-content-size-6 {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.memory-sec-campaign__obj {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  img {
    width: 100%;
    height: auto;
  }
}
.memory-sec-campaign__obj--01 {
  top: -21px;
  left: 47px;
  width: 87px;
  @media screen and (max-width: 799px) {
    top: -18px;
    left: 0;
    width: 47px;
  }
}
.memory-sec-campaign__obj--02 {
  top: 92px;
  right: -26px;
  width: 105px;
  @media screen and (max-width: 799px) {
    top: -11px;
    right: 0;
    width: 62px;
  }
}
.memory-sec-campaign__obj--03 {
  top: 4px;
  left: -61px;
  width: 76px;
  transform: rotate(-31deg);
  @media screen and (max-width: 799px) {
    top: -29px;
    left: -13px;
    width: 51px;
  }
}
.memory-sec-campaign__obj--04 {
  top: -55px;
  right: -68px;
  width: 73px;
  transform: rotate(15deg);
  @media screen and (max-width: 799px) {
    top: -46px;
    right: -13px;
    width: 44px;
  }
}

.memory-sec-campaign__title {
  font-size: 42px;
  line-height: 61px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 30px;
  @media screen and (max-width: 799px) {
    font-size: 30px;
    line-height: 46px;
  }
}

.memory-sec-campaign__text {
  text-align: center;
  @media screen and (max-width: 799px) {
    text-align: left;
  }
}

.memory-sec-campaign__banner {
  margin-top: 40px;
  @media screen and (max-width: 799px) {
    margin: 20px -10px 0;
  }
}

.memory-sec-campaign__banner-img {
  width: 100%;
  height: auto;
}

.memory-sec-campaign__flow-list {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 75px;
  @media screen and (max-width: 799px) {
    gap: 58px;
    margin-top: 28px;
  }
}
.memory-sec-campaign__flow-item {
  position: relative;
  z-index: 0;
  padding: 30px 30px 30px 156px;
  background: #fff;
  box-shadow: 12px 12px 0 0 rgba(199, 183, 116, 0.16);
  display: flex;
  gap: 30px;
  @media screen and (max-width: 799px) {
    display: block;
    padding: 20px;
    box-shadow: 8px 8px 0 0 rgba(199, 183, 116, 0.16);
  }
  &:not(:last-child):before {
    content: "";
    position: absolute;
    left: 58px;
    bottom: -34px;
    width: 25px;
    height: 55px;
    background: url(../img/p-mb5/ico-step-arrow.svg) no-repeat center / contain;
    @media screen and (max-width: 799px) {
      width: 24px;
      height: 54px;
      left: 11px;
      bottom: -45px;
    }
  }
  &:after {
    content: "";
    width: 37px;
    height: 50px;
    background: url(../img/p-mb5/ico-pin.png) no-repeat center / contain;
    position: absolute;
    left: 50px;
    top: -24px;
    @media screen and (max-width: 799px) {
      width: 30px;
      height: 40px;
      top: -28px;
      left: 50%;
      transform: translateX(-50%);
    }
  }
}

.memory-sec-campaign__flow-thumbnail {
  width: 31.08%;
  @media screen and (max-width: 799px) {
    width: 100%;
    margin: 0 0 15px;
  }
  img {
    width: 100%;
    height: auto;
  }
}

.memory-sec-campaign__flow-label {
  margin: 0 0 20px;
  @media screen and (max-width: 799px) {
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

.memory-sec-campaign__flow-label-text {
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
}

.memory-sec-campaign__flow-label-icon {
  width: 126px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  @media screen and (max-width: 799px) {
    position: static;
    width: 64px;
    flex-shrink: 0;
    transform: translate(0,0);
  }
  img {
    width: 100%;
    height: auto;
  }
}

.memory-sec-campaign__flow-textbox {
  flex: 1 1;
}

.memory-sec-campaign__link {
  margin: 48px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: underline;
  @media screen and (max-width: 799px) {
    margin: 30px 0 0;
  }
  &:hover {
    text-decoration: none;
  }
  &:after {
    content: "";
    width: 5px;
    height: 9px;
    mask: url(../img/common/header_arrow.svg) no-repeat;
    background: #333;
    flex-shrink: 0;
    transform: rotate(90deg);
  }
}

/* =================================
 renewal-sec
================================= */
.renewal-sec {
  background: #EBF7FC;
  position: relative;
  z-index: 0;
  overflow-x: clip;
  padding: 0 0 120px;
  @media screen and (max-width: 799px) {
    padding: 0 0 60px;
  }
  &:before {
    content: "";
    width: calc(1vw * 2000 / 1366 * 100) ;
    height: calc(1vw * 200 / 1366 * 100) ;
    background: url(../img/p-mb5/renewal-sec-wave.png) no-repeat top / 100%;
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    top: calc(1vw * -160 / 1366 * 100);
    @media screen and (max-width: 799px) {
      width: calc(1vw * 800 / 375 * 100);
      height: calc(1vw * 80 / 375 * 100);
      top: calc(1vw * -35 / 375 * 100);
    }
  }
}

.renewal-sec__obj {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  @media screen and (max-width: 799px) {
    display: none;
  }
  img {
    width: 100%;
    height: auto;
  }
}
.renewal-sec__obj--01 {
  width: 180px;
  top: 300px;
  left: calc(50% - 713px);
}
.renewal-sec__obj--02 {
  width: 171px;
  top: 850px;
  right: calc(50% - 513px);
}
.renewal-sec__obj--03 {
  width: 107px;
  top: 100px;
  left: calc(50% - 637px);
  transform: rotate(-12deg);
  z-index: 5;
}
.renewal-sec__obj--04 {
  width: 204px;
  bottom: 540px;
  right: calc(50% - 638px);
  transform: rotate(-18deg);
}

.renewal-sec__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 62px 30px;
  margin-top: 124px;
  @media screen and (max-width: 799px) {
    gap: 47px;
    margin-top: 57px;
  }
}

.renewal-sec__list-item {
  position: relative;
  z-index: 0;
  padding: 30px;
  background: #fff;
  box-shadow: 12px 12px 0 0 rgba(111, 159, 180, 0.16);
  display: flex;
  flex-direction: column;
  flex-basis: calc(100% / 3 - 60px / 3);
  @media screen and (max-width: 799px) {
    padding: 20px;
    box-shadow: 8px 8px 0 0 rgba(111, 159, 180, 0.16);
    margin: 0 0 0 auto;
    flex-basis: calc(100% - 20px);
  }
  &:after {
    content: "";
    width: 37px;
    height: 50px;
    background: url(../img/p-mb5/ico-pin.png) no-repeat center / contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -32px;
    @media screen and (max-width: 799px) {
      width: 30px;
      height: 40px;
      top: -27px;
    }
  }
  @media screen and (min-width: 800px) {
    &:nth-child(1),
    &:nth-child(3) {
      transform: translateY(-60px);
    }
    &:nth-child(5) {
      transform: translateY(27px);
    }
  }
  @media screen and (max-width: 799px) {
    &:nth-child(odd){
      margin: 0 auto 0 0;
    }
  }
}

.renewal-sec__list-thumbnail {
  width: 100%;
  margin: 0 0 20px;
  order: -1;
  @media screen and (max-width: 799px) {
    margin: 0 0 15px;
  }
  img {
    width: 100%;
    height: auto;
  }
}

.renewal-sec__list-title {
  font-size: 20px;
  line-height: 29px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
  @media screen and (max-width: 799px) {
    margin: 0 0 15px;
  }
}

/* renewal-sec-functions slider */
.renewal-sec-functions {
  position: relative;
  z-index: 0;
}
.renewal-sec-functions__item {
  margin: 50px auto 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 799px) {
  .renewal-sec-functions__item {
    margin: 30px 0 0;
  }
}

.renewal-sec-functions__slider {
  margin: 0 auto;
  max-width: 1230px;
  padding: 0 15px;
  width: 100%;
}
.renewal-sec-functions__slider .slick-track {
  display: flex;
}
.renewal-sec-functions__slider .slick-list {
  overflow: visible;
}

.renewal-sec-functions__slider .slick-slide {
  margin: 0 30px 0 0;
  background: #fff;
  width: 510px;
  box-shadow: 12px 12px 0 0 rgba(111, 159, 180, 0.16);
  height: auto;
}
@media screen and (max-width: 799px) {
  .renewal-sec-functions__slider .slick-slide {
    width: 275px;
    margin: 0 15px 0 0;
    box-shadow: 8px 8px 0 0 rgba(111, 159, 180, 0.16);
  }
}

.renewal-sec-functions__slider-item {
  padding: 30px;
  height: 100%;
}
@media screen and (max-width: 779px) {
  .renewal-sec-functions__slider-item {
    padding: 15px 15px 20px;
  }
}

.renewal-sec-functions__slider-item-heading {
  display: grid;
  align-items: center;
  grid-template-columns: 54px 1fr;
  gap: 15px;
  margin: 0 0 12px;
}
@media screen and (max-width: 779px) {
  .renewal-sec-functions__slider-item-heading {
    margin: 0 0 12px;
  }
}

.renewal-sec-functions__slider-item-ico {
  width: 54px;
  height: 54px;
}
.renewal-sec-functions__slider-item-ico img {
  width: 100%;
}

.renewal-sec-functions__slider-item-title {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 779px) {
  .renewal-sec-functions__slider-item-title {
    font-size: 18px;
  }
}

.renewal-sec-functions__slider-item-body {
  height: 100%;
}

/* Slick Controls */
.renewal-sec-functions__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0;
}
@media screen and (max-width: 799px) {
  .renewal-sec-functions__controls {
    margin: 20px auto 0;
  }
}

.renewal-sec-functions__item .slick-arrow {
  position: relative;
  overflow: hidden;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  border: 1px solid #36B6EA;
  text-indent: 100%;
  white-space: nowrap;
  transition: 0.3s ease-out;
  cursor: pointer;
  z-index: 10;
}
.renewal-sec-functions__item .slick-arrow.slick-disabled {
  border-color: rgba(0,0,0,.2);
  background: none;
}
@media screen and (max-width: 799px) {
  .renewal-sec-functions__item .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
@media screen and (hover: hover) {
  .renewal-sec-functions__item .slick-arrow:hover {
    background: #36B6EA;
  }
  .renewal-sec-functions__item .slick-arrow:hover:before {
    background: #fff;
  }
}
.renewal-sec-functions__item .slick-arrow:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 13px;
  background: #36B6EA;
  content: "";
  transition: 0.3s ease-out;
  transform: translate(-50%, -50%);
  mask: url(../img/p-mb5/ico-slider-arow.svg) no-repeat center / contain;
}
.renewal-sec-functions__item .slick-arrow.slick-disabled:before {
  background: rgba(0,0,0,.2);
}
.renewal-sec-functions__item .slick-arrow.slick-prev {
  order: 1;
}
.renewal-sec-functions__item .slick-arrow.slick-next {
  order: 3;
}
.renewal-sec-functions__item .slick-arrow.slick-next:before {
  transform: translate(-50%, -50%) scaleX(-1);
}

.renewal-sec-functions__item .slick-dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  order: 2;
  margin: 0 50px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 799px) {
  .renewal-sec-functions__item .slick-dots {
    margin: 0 30px;
    gap: 15px;
  }
}
.renewal-sec-functions__item .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #C5D9E2;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 799px) {
  .renewal-sec-functions__item .slick-dots li button {
    width: 8px;
    height: 8px;
  }
}
.renewal-sec-functions__item .slick-dots li.slick-active button {
  background: #36B6EA;
}

.feature-sec {
  position: relative;
  z-index: 0;
  overflow-x: clip;
  padding: calc(1vw * 160 / 1366 * 100) 0 calc(1vw * 240 / 1366 * 100);
  @media screen and (max-width: 799px) {
    padding: calc(1vw * 80 / 375 * 100) 0 calc(1vw * 108 / 375 * 100);
  }
  &:before {
    content: "";
    width: calc(1vw * 2000 / 1366 * 100);
    height: calc(1vw * 120 / 1366 * 100);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    background: url(../img/p-mb5/feature-sec-wave.png) no-repeat top / contain;
    @media screen and (max-width: 799px) {
      width: calc(1vw * 800 / 375 * 100);
      height: calc(1vw * 48 / 375 * 100);
    }
  }
}

.feature-sec-lineup__contents {
  display: grid;
  align-items: center;
  grid-template-columns: 50% 1fr;
  gap: 40px;
  @media screen and (max-width: 799px) {
    grid-template-columns: repeat(1,1fr);
    gap: 15px;
  }
}
.feature-sec-lineup__image {
  img {
    width: 100%;
    height: auto;
  }
}
.feature-sec-lineup__body-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 29px;
  margin: 0 0 20px;
  @media screen and (max-width: 799px) {
    text-align: center;
    margin: 0 0 15px;
  }
}
.feature-sec-lineup__body {
  & > *:not(:last-child) {
    margin-bottom: 10px;
  }
}
.feature-sec-lineup__body-list {
  li {
    position: relative;
    z-index: 0;
    padding-left: 16px;
  }
  li:before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    aspect-ratio: 1 / 1;
    width: 6px;
    border-radius: 50%;
    background: #36B6EA;
  }
}

.feature-sec-product {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .feature-sec-product {
    margin-top: 50px;
  }
}
.feature-sec-product__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  @media screen and (max-width: 799px) {
    gap: 40px;
  }
}
.feature-sec-product__item {
  border-top: 1px solid #C9D6E0;
  padding-top: 50px;
  @media screen and (max-width: 799px) {
    padding-top: 40px;
  }
}
.feature-sec-product__item:last-child {
  border-bottom: 1px solid #C9D6E0;
  padding-bottom: 50px;
  @media screen and (max-width: 799px) {
    padding-bottom: 40px;
  }
    
}
.feature-sec-product__slider-area {
  margin-bottom: 30px;
}
@media screen and (min-width: 800px) {
  .feature-sec-product__item {
    display: grid;
    grid-template-columns: 71.58% 1fr;
    gap: 40px;
  }
  .feature-sec-product__slider-area {
    margin-bottom: 0;
    display: flex;
    gap: 20px;
    align-items: stretch;
  }
  .feature-sec-product__main-wrap {
    flex: 1;
    min-width: 0;
  }
}
.feature-sec-product__main {
  margin-bottom: 10px;
}
.feature-sec-product__main img {
  width: 100%;
  height: auto;
}
.feature-sec-product__label {
  font-size: 14px;
  line-height: 28.8px;
  text-align: center;
  margin-top: 15px;
  display: block;
}
.feature-sec-product__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 800px) {
  .feature-sec-product__label {
    justify-content: flex-start;
    text-align: left;
    padding-right: 100px;
    min-height: 40px;
  }
  .feature-sec-product__controls {
    justify-content: flex-end;
  }
}
.feature-sec-product__arrows {
  display: flex;
  gap: 20px;
  @media screen and (max-width: 799px) {
    gap: 50px;
  }
}
.feature-sec-product__arrows .slick-arrow {
  position: relative;
  transform: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #36B6EA;
  background: #FFF;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  @media screen and (max-width: 799px) {
    width: 48px;
    height: 48px;
  }
}
.feature-sec-product__arrows .slick-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 13px;
  background: #36B6EA;
  transform: translate(-50%, -50%);
  mask: url(../img/p-mb5/ico-slider-arow.svg) no-repeat center / contain;
  -webkit-mask: url(../img/p-mb5/ico-slider-arow.svg) no-repeat center / contain;
}
.feature-sec-product__arrows .slick-next:before {
  transform: translate(-50%, -50%) scaleX(-1);
}
.feature-sec-product__arrows .slick-arrow.slick-disabled {
  border-color: rgba(0,0,0,0.2);
}
.feature-sec-product__arrows .slick-arrow.slick-disabled:before {
  background: rgba(0,0,0,0.2);
}

.feature-sec-product__thumb {
  margin: 0;
}
@media screen and (min-width: 800px) {
  .feature-sec-product__thumb {
    width: 100px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    &.u-sp {
      display: none;
    }
  }
}
@media screen and (max-width: 799px) {
  .feature-sec-product__thumb {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
    &.u-pctab {
      display: none;
    }
  }
}
.feature-sec-product__thumb-slide {
  cursor: pointer;
  aspect-ratio: 100 / 60;
  overflow: hidden;
  background: rgba(0,0,0,1);
}
.feature-sec-product__thumb-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}
.feature-sec-product__thumb-slide.is-active img,
.feature-sec-product__thumb-slide:hover img {
  opacity: .6;
}
.feature-sec-product__info-label {
  @media screen and (max-width: 799px) {
    display: flex;
    align-items: center;
    gap: 15px;
  }
}
.feature-sec-product__info {
  display: flex;
  flex-direction: column;
}
.feature-sec-product__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  width: 76px;
  height: 23px;
  font-size: 14px;
  margin-bottom: 5px;
  @media screen and (max-width: 799px) {
    margin: 0;
  }
}
.feature-sec-product__name {
  font-size: 38px;
  line-height: 55px;
  font-weight: bold;
  margin: 0 0 15px;
  line-height: 1.2;
  @media screen and (max-width: 799px) {
    margin: 0;
  }
}
.feature-sec-product__desc {
  @media screen and (max-width: 799px) {
    margin: 10px 0 15px;
  }
}
.feature-sec-product__price-box {
  margin-top: 50px;
  @media screen and (max-width: 799px) {
    margin-top: 15px;
  }
}
.feature-sec-product__price {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
}
.feature-sec-product__price .tax {
  font-size: 14px;
  font-weight: normal;
}
.feature-sec-product__discount {
  background: #FFF7D5;
  font-size: 18px;
  font-weight: bold;
  color: #E05252;
  width: 100%;
  margin: 15px 0 0;
  text-align: center;
  /* height: 70px; */
  /* display: flex; */
  /* justify-content: center; */
  align-items: baseline;
}
.feature-sec-product__discount strong {
  font-size: 36px;
}
.feature-sec-product__discount .discount-tax {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 799px) {
  .feature-sec-product__name {
    font-size: 30px;
  }
  .feature-sec-product__price {
    font-size: 26px;
  }
  /* .feature-sec-product__discount {
    height: 64px;
  } */
  .feature-sec-product__discount strong {
    font-size: 34px;
  }
  .feature-sec-product__slider-area {
    margin-bottom: 0;
  }
}
.slick-slide img {
  width: 100%;
  height: auto;
}

.feature-sec-highest-quality__list {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 40px 100px;
}
.feature-sec-highest-quality__image {
  margin: 0 0 20px;
  @media screen and (max-width: 799px) {
    margin: 0 0 15px;
  }
  img {
    width: 100%;
    height: auto;
  }
}
.feature-sec-highest-quality__item-label {
  min-height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 15px;
  background: url(../img/p-mb5/highest-quality-label-bg.png) no-repeat center / contain;
  @media screen and (max-width: 799px) {
    min-height: 42px;
    font-size: 22px;
    background: url(../img/p-mb5/sp/highest-quality-label-bg.png) no-repeat center / contain;
  }
}

.voice-sec {
  position: relative;
  z-index: 0;
  overflow-x: clip;
  padding: 40px 0 calc(1vw * 200 / 1366 * 100);
  background: #EBF7FC;
  @media screen and (max-width: 799px) {
    padding: 32px 0 calc(1vw * 85 / 375 * 100);
  }
  &:before {
    content: "";
    width: calc(1vw * 2000 / 1366 * 100);
    height: calc(1vw * 120 / 1366 * 100);
    top: calc(1vw * -120 / 1366 * 100);
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    background: url(../img/p-mb5/voice-sec-wave.png) no-repeat top / contain;
    @media screen and (max-width: 799px) {
      width: calc(1vw * 800 / 375 * 100);
      height: calc(1vw * 48 / 375 * 100);
    }
  }
  &:after {
    content: "";
    width: calc(1vw * 2000 / 1366 * 100);
    height: calc(1vw * 180 / 1366 * 100);
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: url(../img/p-mb5/cta-wave.png) no-repeat top / 100%;
    position: absolute;
    z-index: -1;
    @media screen and (max-width: 799px) {
      width: 800px;
      height: 72px;
      bottom: 0;
      background: url(../img/p-mb5/sp/cta-wave.png) no-repeat top / 100%;
    }
  }
}

.voice-sec__list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  justify-content: space-between;
  gap: 136px 0;
  margin-top: 86px;
  @media screen and (max-width: 799px) {
    grid-template-columns: repeat(1,1fr);
    gap: 87px;
    margin-top: 0;
  }
}

.voice-sec__list-item--01 {
  @media screen and (min-width: 800px) {
    transform: translate(-45px, -124px);
  }
  &:before {
    background-image: url(../img/p-mb5/voice-bg01.svg);
    width: 632px;
    height: 456px;
    top: 20px;
    @media screen and (max-width: 799px) {
      background-image: url(../img/p-mb5/sp/voice-bg01.svg);
      width: 558px;
      height: 402px;
      top: 40px;
    }
  }
}
.voice-sec__list-item--02 {
  &:before {
    background-image: url(../img/p-mb5/voice-bg02.svg);
    width: 670px;
    height: 414px;
    top: 73px;
    @media screen and (max-width: 799px) {
      background-image: url(../img/p-mb5/sp/voice-bg02.svg);
      width: 558px;
      height: 402px;
      top: 40px;
    }
  }
}
.voice-sec__list-item--03 {
  @media screen and (min-width: 800px) {
    transform: translate(0, -140px);
  }
  &:before {
    background-image: url(../img/p-mb5/voice-bg03.svg);
    width: 628px;
    height: 450px;
    top: 55px;
    @media screen and (max-width: 799px) {
      background-image: url(../img/p-mb5/sp/voice-bg03.svg);
      width: 558px;
      height: 402px;
      top: 40px;
    }
  }
}
.voice-sec__list-item--04 {
  &:before {
    background-image: url(../img/p-mb5/voice-bg04.svg);
    width: 627px;
    height: 478px;
    top: 46px;
    @media screen and (max-width: 799px) {
      background-image: url(../img/p-mb5/sp/voice-bg04.svg);
      width: 558px;
      height: 402px;
      top: 40px;
    }
  }
}

.voice-sec__list-item {
  position: relative;
  z-index: 0;
  &:before {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
}

.voice-sec__list-thumbnail {
  width: 272px;
  margin: 0 auto 20px;
  @media screen and (max-width: 799px) {
    width: 250px;
    margin: 0 auto 15px;
  }
  img {
    width: 100%;
    height: auto;
  }
}

.voice-sec__list-title {
  width: 400px;
  margin: 0 auto 20px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: calc(29 / 20);
  @media screen and (max-width: 799px) {
    width: 100%;
    margin: 0 auto 15px;
  }
}

.voice-sec__list-body {
  width: 400px;
  margin: 0 auto;
  @media screen and (max-width: 799px) {
    width: 100%;
  }
}

.support-sec {
  background: #fff;
  position: relative;
  z-index: 0;
  overflow-x: clip;
  padding: 0 0 calc(1vw * 240 / 1366 * 100);
  @media screen and (max-width: 799px) {
    padding: 0 0 calc(1vw * 108 / 375 * 100);
  }
  &:before {
    content: "";
    width: calc(1vw * 2000 / 1366 * 100);
    height: calc(1vw * 200 / 1366 * 100) ;
    background: url(../img/p-mb5/support-sec-wave.png) no-repeat top / 100%;
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    top: calc(1vw * -140 / 1366 * 100);
    @media screen and (max-width: 799px) {
      width: calc(1vw * 800 / 375 * 100);
      height: calc(1vw * 80 / 375 * 100);
      top: calc(1vw * -80 / 375 * 100);
    }
  }
}
/* Support Section */
.support-sec__lead {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  line-height: 46px;
  margin-bottom: 40px;
}
@media screen and (max-width: 799px) {
  .support-sec__lead {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 30px;
  }
}

.support-sec__illust {
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.support-sec__illust img {
  max-width: 100%;
  height: auto;
}

.support-sec__box {
  background: #FFF9D1;
  border-radius: 40px;
  padding: 55px 40px 60px;
  text-align: center;
}
@media screen and (max-width: 799px) {
  .support-sec__box {
    padding: 30px 15px 60px;
  }
}

.support-sec__box-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 15px;
  position: relative;
  width: fit-content;
  padding: 0 64px;
  margin: 0 auto 40px;
  line-height: 1;
  @media screen and (max-width: 799px) {
    padding: 0;
    width: 100%;
  }
  &:before, &:after {
    content: "";
    position: absolute;
    width: 48px;
    height: 151px;
    background: url(../img/p-mb5/support-first-time-title-obj.png) no-repeat center / contain;
    top: -20px;
    @media screen and (max-width: 799px) {
      width: 34px;
      height: 105px;
      top: auto;
      bottom: -15px;
    }
  }
  &:before {
    left: 0;
    @media screen and (max-width: 799px) {
      left: -25px;
    }
  }
  &:after {
    right: 0;
    transform: scale(-1,1);
    @media screen and (max-width: 799px) {
      right: -25px;
    }
  }
}
@media screen and (max-width: 799px) {
  .support-sec__box-header {
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
  }
}

.support-sec__box-badge {
  font-weight: bold;
  font-size: 22px;
  line-height: 25px;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95px;
  height: 95px;
  background: url(../img/p-mb5/support-first-time-title-badge.png) no-repeat center / contain;
  margin-top: 10px;
  @media screen and (max-width: 799px) {
    margin: 0 0 -35px;
    background: url(../img/p-mb5/sp/support-first-time-title-badge.png) no-repeat center / contain;
    height: 43px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
}

.support-sec__box-title {
  font-weight: bold;
  position: relative;
  display: inline-block;
  @media screen and (max-width: 799px) {
    line-height: 1.25;
  }
}
/* Yellow marker underline */
.support-sec__box-title:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: -15px;
  width: 538px;
  height: 33px;
  background: url(../img/p-mb5/support-first-time-title-border.svg) no-repeat center / contain;
  @media screen and (max-width: 799px) {
    width: 268px;
    height: 60px;
     background: url(../img/p-mb5/sp/support-first-time-title-border.svg) no-repeat center / contain;
     bottom: -8px;
     left: -10px;
  }
}
.support-sec__box-title > * {
  position: relative;
  z-index: 1;
}

.support-sec__box-price {
  font-size: 93px;
  @media screen and (max-width: 799px) {
    font-size: 73px;
  }
}
.support-sec__box-price-yen {
  font-size: 38px;
  @media screen and (max-width: 799px) {
    font-size: 29px;
  }
}
.support-sec__box-title-text {
  font-size: 28px;
  @media screen and (max-width: 799px) {
    font-size: 21px;
  }
  .lg {
    font-size: 32px;
    @media screen and (max-width: 799px) {
      font-size: 25px;
    }
  }
  .min {
    font-size: 24px;
    @media screen and (max-width: 799px) {
      font-size: 18px;
    }
  }
}

.support-sec__box-catch {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 799px) {
  .support-sec__box-catch {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.support-sec__box-features {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 40px;
}
@media screen and (max-width: 799px) {
  .support-sec__box-features {
    gap: 15px;
    margin-bottom: 30px;
  }
}
.support-sec__box-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.support-sec__box-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  background: #FFF;
  border-radius: 50%;
  padding: 10px;
}
@media screen and (max-width: 799px) {
  .support-sec__box-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
  }
}
.support-sec__box-desc {
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  margin-top: -44px;
}
@media screen and (max-width: 799px) {
  .support-sec__box-desc {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }
}

.support-sec__box-footer {
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  &:before,&:after {
    content: "";
    width: 32px;
    height: 36px;
    background: url(../img/p-mb5/support-first-time-footer-title-obj.svg) no-repeat center / contain;
    position: absolute;
    bottom: 15px;
    @media screen and (max-width: 799px) {
      width: 30px;
      height: 28px;
    }
  }
  &:before {
    left: -35px;
    @media screen and (max-width: 799px) {
      left: -30px;
    }
  }
  &:after {
    right: -30px;
    transform: scale(-1,1);
    @media screen and (max-width: 799px) {
      right: -19px;
    }
  }
}
.support-sec__box-footer-text1 {
  font-size: 24px;
  font-weight: bold;
  @media screen and (max-width: 799px) {
    font-size: 18px;
  }
}
.support-sec__box-footer-text2 {
  font-size: 30px;
  font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  line-height: .5;
  @media screen and (max-width: 799px) {
    font-size: 24px;
  }
}
.support-sec__box-footer-text2 .support-sec__box-price {
  font-size: 72px;
  @media screen and (max-width: 799px) {
    font-size: 54px;
  }
}
.support-sec__box-footer-text2:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 47.5%;
  transform: translateX(-50%);
  width: 320px;
  height: 27px;
  background: url(../img/p-mb5/support-first-time-footer-obj.svg) no-repeat center / contain;
  z-index: -1;
  @media screen and (max-width: 799px) {
    width: 250px;
    height: 21px;
    bottom: -20px;
  }
}
.support-sec__box-footer-text2 > * {
  position: relative;
  z-index: 1;
}

.install-sec {
  background: #EBF7FC;
  position: relative;
  z-index: 0;
  overflow-x: clip;
  padding: calc(1vw * 40 / 1366 * 100) 0 calc(1vw * 120 / 1366 * 100);
  @media screen and (max-width: 799px) {
    padding: calc(1vw * 32 / 375 * 100) 0 calc(1vw * 80 / 375 * 100);
  }
  &:before {
    content: "";
    width: calc(1vw * 2000 / 1366 * 100);
    height: calc(1vw * 120 / 1366 * 100) ;
    background: url(../img/p-mb5/install-sec-wave-top.svg) no-repeat top / 100%;
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    top: calc(1vw * -120 / 1366 * 100);
    @media screen and (max-width: 799px) {
      width: calc(1vw * 800 / 375 * 100);
      height: calc(1vw * 48 / 375 * 100);
      top: calc(1vw * -48 / 375 * 100);
    }
  }
}

.install-sec-method__list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 32px;
  @media screen and (max-width: 799px) {
    grid-template-columns: repeat(1,1fr);
    gap: 63px;
  }
}
.install-sec-method__list-item {
  position: relative;
  z-index: 0;
  padding: 30px;
  background: #fff;
  box-shadow: 12px 12px 0 0 rgba(111, 159, 180, 0.16);
  display: flex;
  flex-direction: column;
  @media screen and (max-width: 799px) {
    padding: 20px;
    box-shadow: 8px 8px 0 0 rgba(111, 159, 180, 0.16);
    width: calc(100% - 20px);
    margin: 0 0 0 auto;
  }
  &:after {
    content: "";
    width: 37px;
    height: 50px;
    background: url(../img/p-mb5/ico-pin.png) no-repeat center / contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -32px;
    @media screen and (max-width: 799px) {
      width: 30px;
      height: 40px;
      top: -27px;
    }
  }
  &:not(:last-child) {
    @media screen and (min-width: 800px) {
      &:before {
        content: "";
        position: absolute;
        width: 193px;
        height: 75px;
        background: url(../img/p-mb5/install-method-arrow.svg) no-repeat center / contain;
        top: -40px;
        right: -210px;
        @media screen and (max-width: 799px) {
          background: url(../img/p-mb5/sp/install-method-arrow.svg) no-repeat center / contain;
          width: 38px;
          height: 100px;
          right: 3px;
          bottom: -71px;
          transform: rotate(-15deg);
          top: auto;
        }
      }
    }
  }
  &:not(:first-child) {
    @media screen and (max-width: 799px) {
      &:before {
        content: "";
        position: absolute;
        background: url(../img/p-mb5/sp/install-method-arrow.svg) no-repeat center / contain;
        width: 38px;
        height: 100px;
        right: 20px;
        top: -90px;
        transform: rotate(-15deg);
      }
    }
  }
  @media screen and (min-width: 800px) {
    &:nth-child(2) {
      transform: translateY(74px);
    }
    &:nth-child(3) {
      transform: translateY(148px);
    }
  }
  @media screen and (max-width: 799px) {
    &:nth-child(odd) {
      margin: 0 auto 0 0;
    }
  }
}
.install-sec-method__list-thumbnail {
  width: 100%;
  margin: 0 0 20px;
  order: -1;
  @media screen and (max-width: 799px) {
    margin: 0 0 15px;
  }
  img {
    width: 100%;
    height: auto;
  }
}

.install-sec-method__list-title {
  font-size: 20px;
  line-height: 29px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
  @media screen and (max-width: 799px) {
    margin: 0 0 15px;
  }
}

.install-sec-method__list-num {
  width: 67px;
  height: 81px;
  position: absolute;
  right: -5px;
  top: -37px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  @media screen and (max-width: 799px) {
    right: auto;
    left: 10px;
    top: -33px;
    width: 51px;
    height: 62px;
  }
}
.install-sec-method__list-num--01 {
  background-image: url(../img/p-mb5/install-method-num01.png);
}
.install-sec-method__list-num--02 {
  background-image: url(../img/p-mb5/install-method-num02.png);
}
.install-sec-method__list-num--03 {
  background-image: url(../img/p-mb5/install-method-num03.png);
}

.install-sec-cta {
  margin-top: 280px;
  position: relative;
  @media screen and (max-width: 799px) {
    margin-top: 50px;
  }
  .lp-cta__contents {
    padding: 60px 60px 50px;
    @media screen and (max-width: 799px) {
      padding: 30px 15px 305px;
    }
  }
  .lp-cta__text-col {
    margin-left: 40.58%;
    @media screen and (max-width: 799px) {
      margin: 0;
    }
  }
  .lp-cta__btn-col {
    margin: 0;
  }
  .lp-cta__image {
    width: 30.58%;
    right: auto;
    left: 60px;
    top: auto;
    bottom: -25px;
    @media screen and (max-width: 799px) {
      width: 276px;
      left: 50%;
      bottom: -80px;
      transform: translateX(-50%);
    }
  }
  .lp-cta-sp__heading {
    margin: 0 auto 15px;
  }
}

.install-sec-campaign {
  margin-top: 80px;
}
@media screen and (max-width: 799px) {
  .install-sec-campaign {
    margin-top: 60px;
  }
}

.install-sec-campaign-table {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}

.install-sec-campaign-table__row {
  display: flex;
  &:not(:last-child) {
    border-bottom: 1px solid #9FC6E2;
  }
  @media screen and (max-width: 799px) {
    flex-direction: column;
    border-bottom: 1px solid #9FC6E2;
  }
}

.install-sec-campaign-table__label {
  width: 180px;
  background: #CCE9F5;
  padding: 20px 30px;
  font-weight: bold;
  display: flex;
  flex-shrink: 0;
  @media screen and (max-width: 799px) {
    width: 100%;
    padding: 15px 20px;
  }
}

.install-sec-campaign-table__body {
  flex: 1;
  background: #FFFFFF;
  padding: 20px 30px;
  line-height: 1.8;
  @media screen and (max-width: 799px) {
    padding: 17px 20px;
  }
  .note {
    li {
      display: flex;
      &:before {
        content: "※";
      }
    }
  }
}

.faq-sec {
  padding: calc(1vw * 160 / 1366 * 100) 0 calc(1vw * 20 / 1366 * 100);
  position: relative;
  z-index: 0;
  overflow-x: clip;
  @media screen and (max-width: 799px) {
    padding: calc(1vw * 80 / 375 * 100) 0 calc(1vw * 20 / 375 * 100);
  }
  &:before {
    content: "";
    width: calc(1vw * 2000 / 1366 * 100) ;
    height: calc(1vw * 120 / 1366 * 100) ;
    background: url(../img/p-mb5/faq-sec-wave.svg) no-repeat top / 100%;
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    @media screen and (max-width: 799px) {
      width: calc(1vw * 800 / 375 * 100);
      height: calc(1vw * 48 / 375 * 100);
      top: 0;
    }
  }
}

.faq-sec-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-sec-list__item {
  padding: 30px;
  border-radius: 20px;
  background: #EBF7FC;
  @media screen and (max-width: 799px) {
    padding: 20px;
    border-radius: 10px;
  }
  &:not(:first-child) {
    margin-top: 20px;
  }
}
.faq-sec-list__question {
  position: relative;
  padding: 20px 56px 20px 64px;
  font-size: 18px;
  font-weight: bold;
  line-height: 31px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq-sec-list__question {
    padding: 10px 40px 10px 46px;
    font-size: 16px;
    line-height: 25.6px;
  }
}
.faq-sec-list__question.--is-open:after {
  content: url(../img/p-top/faq-close.svg);
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
@media screen and (max-width: 767px) {
  .faq-sec-list__question.--is-open:after {
    content: url(../img/p-top/sp/faq-close.svg);
  }
}
.faq-sec-list__question:before {
  content: url(../img/p-mb5/i-question.svg);
  position: absolute;
  top: 22px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .faq-sec-list__question:before {
    content: url(../img/p-mb5/sp/i-question.svg);
    top: 15px;
  }
}
.faq-sec-list__question:after {
  content: url(../img/p-top/faq-open.svg);
  position: absolute;
  top: 20px;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .faq-sec-list__question:after {
    content: url(../img/p-top/sp/faq-open.svg);
    top: 14px;
  }
}
.faq-sec-list__answer {
  padding: 0 56px 0 64px;
  @media screen and (max-width: 767px) {
    margin-top: 10px;
    padding: 20px 0 0;
    border-top: 1px solid #9FC6E2;
  }
  p + p {
    margin-top: 15px;
  }
  .c-arrow {
    font-size: 16px;
    color: #0070C2;
  }
  .c-arrow:after {
    background: #0070C2;
  }
  img {
    width: 100%;
    @media screen and (max-width: 767px) {
      max-width: 250px;
      width: 100%;
      display: block;
      margin: 0 auto;
    }
  }
}
.faq-sec-list__answer a {
  text-decoration: underline;
}
@media screen and (hover: hover) {
  .faq-sec-list__answer a:hover {
    text-decoration: none;
  }
}

.faq-sec-list__answer-2col {
  display: grid;
  grid-template-columns: 1fr 36.33%;
  gap: 20px;
  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}