@-webkit-keyframes bgscroll-mv {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1356px 0;
  }
}
@keyframes bgscroll-mv {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1356px 0;
  }
}
@-webkit-keyframes bgscroll-cv {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1359px 0;
  }
}
@keyframes bgscroll-cv {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1359px 0;
  }
}
/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-display: swap;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  color: #003758;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/*------------------------------
reset end
------------------------------*/
/*------------------------------
header
------------------------------*/
.header {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 3;
  min-width: 320px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateY(100%);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .header {
    top: 0;
    bottom: inherit;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    transform: translateY(-100%);
  }
}
.header.visible {
  transform: translateY(0);
  opacity: 1;
}
.header__contents {
  margin: 0 auto;
  padding: 12px 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header__contents {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1366px;
    padding: 12px 50px;
    text-align: left;
  }
}
.header__title {
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .header__title {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 768px) {
  .header__image {
    transform: translateY(-3px);
  }
}
.header__link {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  padding: 6px 20px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background-color: #fd295a;
  border-radius: 30px;
}
@media screen and (min-width: 1100px) {
  .header__link {
    padding: 10px 20px;
    font-size: 2rem;
  }
}

/*------------------------------
header end
------------------------------*/
/*------------------------------
main
------------------------------*/
main {
  display: block;
}

.mv {
  overflow: hidden;
  background: #0073c9 url("../img/mv-bg.svg") repeat-x center top;
  animation: bgscroll-mv 40s linear infinite;
}
.mv__top {
  margin-bottom: 20px;
  padding: 30px 30px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__top {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 45px;
    padding: 60px 60px 0;
  }
}
.mv__top-title {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .mv__top-title {
    margin: 0 30px 0 60px;
  }
}
@media screen and (min-width: 768px) {
  .mv__image--sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .mv__image--sp + .mv__image--sp {
    display: block;
    margin: -30px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .mv__image--pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .mv__bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    background-color: #003758;
  }
}
@media screen and (min-width: 1366px) {
  .mv__bottom {
    flex-wrap: nowrap;
    max-width: 1366px;
  }
}
@media screen and (min-width: 768px) {
  .mv__bottom::before {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    display: inline-block;
    content: "";
    width: 50vw;
    height: 100%;
    margin: auto;
    background-color: #003758;
  }
}
@media screen and (min-width: 768px) {
  .mv__bottom::after {
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    display: inline-block;
    content: "";
    width: 100vw;
    height: 100%;
    margin: auto;
    background-color: #ffec00;
  }
}
.mv__bottom-left {
  position: relative;
  z-index: 2;
  padding: 10px 30px 19px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffec00;
  background-color: #003758;
}
@media screen and (min-width: 768px) {
  .mv__bottom-left {
    min-width: 324px;
    width: 100%;
  }
}
.mv__bottom-left::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -19px;
  display: inline-block;
  content: "";
  width: 38px;
  height: 38px;
  margin: auto;
  background: url(../img/icon-plus.svg) left top/contain no-repeat;
}
@media screen and (min-width: 1366px) {
  .mv__bottom-left::after {
    top: 0;
    left: inherit;
    right: -26px;
    bottom: 0;
    width: 52px;
    height: 52px;
  }
}
@media screen and (max-width: 1365px) {
  .mv__bottom-left br {
    display: none;
  }
}
.mv__bottom-right {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 30px;
  text-align: center;
  background-color: #ffec00;
}
@media screen and (min-width: 1366px) {
  .mv__bottom-right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    flex: 1 0 auto;
    width: inherit;
    padding: 15px 50px;
  }
}
@media screen and (min-width: 768px) {
  .mv__bottom-group-wrap {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1366px) {
  .mv__bottom-group-wrap {
    flex: 1 0 auto;
    margin: 0 50px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .mv__bottom-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1366px) {
  .mv__bottom-group {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .mv__bottom-limited {
    margin-bottom: 6px;
  }
}
.mv__bottom-limited .mv__image {
  max-height: 29px;
}
@media screen and (min-width: 768px) {
  .mv__bottom-limited .mv__image {
    max-height: 32px;
  }
}
.mv__bottom-cashback {
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .mv__bottom-cashback {
    margin: 0 0 0 10px;
  }
}
.mv__bottom-cashback .mv__image {
  max-height: 23px;
}
@media screen and (min-width: 768px) {
  .mv__bottom-cashback .mv__image {
    max-height: 31px;
  }
}
.mv__bottom-text {
  margin-bottom: 20px;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .mv__bottom-text {
    margin-bottom: 0;
    text-align: center;
  }
}
@media screen and (min-width: 1366px) {
  .mv__bottom-text {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .mv__bottom-text br {
    display: none;
  }
}
.mv__link {
  display: block;
  max-width: 330px;
  margin: 0 auto;
  padding: 9px;
  text-indent: -10px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background-color: #fd295a;
  border-radius: 30px;
}
@media screen and (min-width: 1366px) {
  .mv__link {
    min-width: 360px;
    padding: 24px 48px;
    font-size: 3rem;
    border-radius: 46.5px;
  }
}
.mv__link-label {
  position: relative;
}
.mv__link-label::after {
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  bottom: 0;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  transition: transform 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .mv__link-label::after {
    width: 13px;
    height: 13px;
  }
}
.mv__link:hover .mv__link-label::after {
  transform: scale(1.5);
}

.problem {
  max-width: 1366px;
  margin: 0 auto;
  padding-top: 70px;
}
@media screen and (min-width: 768px) {
  .problem {
    padding-top: 96px;
  }
}
.problem__contents {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .problem__contents {
    padding: 0 0 0 0;
  }
}
.problem__headline {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .problem__headline {
    margin-bottom: 60px;
  }
}
.problem__subtitle {
  margin-bottom: 12.25px;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .problem__subtitle {
    margin-bottom: 11px;
  }
}
.problem__title {
  line-height: 1.25;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .problem__title {
    font-size: 4rem;
  }
}
.problem__list {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .problem__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .problem__list {
    padding: 0 30px;
  }
}
.problem__item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  min-height: 88px;
  margin-bottom: 20px;
  padding: 10px;
  text-align: left;
  font-size: 1.4rem;
  color: #fff;
  background-color: #5cbde8;
  border-radius: 60px 10px 60px 60px;
}
@media screen and (min-width: 480px) {
  .problem__item {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .problem__item {
    width: calc(50% - 15px);
    margin-bottom: 30px;
    padding: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .problem__item {
    font-size: 2rem;
  }
}
.problem__item:nth-of-type(2), .problem__item:nth-of-type(3) {
  background-color: #1c83d0;
}
.problem__item:last-of-type {
  margin: 0 auto;
}
.problem__item::before {
  display: inline-block;
  flex: 0 0 auto;
  content: "";
  width: 48px;
  height: 48px;
  margin-right: 10px;
  background: url(../img/icon-check.svg) left top/contain no-repeat;
}
@media screen and (min-width: 1100px) {
  .problem__item::before {
    width: 58px;
    height: 58px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .problem__item br {
    display: none;
  }
}

.solution {
  position: relative;
  padding-top: calc(10.1% + 80px);
  background-color: #003758;
}
@media screen and (min-width: 1366px) {
  .solution {
    padding-top: calc(10.1% + 120px);
  }
}
.solution::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  background: url(../img/section-curve-bottom.svg) center top/contain no-repeat;
  transform: translateY(-0.5px);
}
.solution__contents {
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .solution__contents {
    padding: 30px 30px 30px 30px;
  }
}
.solution__headline {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .solution__headline {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .solution__headline .solution__image {
    max-height: 48px;
  }
}
.solution__about {
  position: relative;
  max-width: 880px;
  margin: 0 auto 40px;
  padding: 40px 20px 20px;
  color: #fff;
  border: 5px solid #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .solution__about {
    margin: 0 auto 60px;
    padding: 50px 30px 30px;
  }
}
.solution__about-headline {
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  display: inline-block;
  width: 180px;
  margin: auto;
  line-height: 1;
  font-size: 3rem;
  background-color: #003758;
}
@media screen and (min-width: 768px) {
  .solution__about-headline {
    top: -24px;
    width: 240px;
    font-size: 4rem;
  }
}
.solution__about-text {
  text-align: left;
  line-height: 2;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .solution__about-text {
    text-align: center;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .solution__about-text br {
    display: none;
  }
}
.solution__list {
  width: 100%;
  margin: 0 auto 80px;
}
@media screen and (min-width: 860px) {
  .solution__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 800px;
    height: 800px;
    border: 3px solid rgba(238, 246, 252, 0.5);
    border-radius: 50%;
  }
}
.solution__item {
  width: 330px;
  height: 330px;
  margin: 0 auto 30px;
  padding-top: 60px;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (min-width: 860px) {
  .solution__item {
    width: 374px;
    height: 374px;
    margin: 0;
  }
}
.solution__item:nth-of-type(1) .solution__list-text {
  margin-bottom: 30px;
}
.solution__item:nth-of-type(2) .solution__list-text {
  margin-bottom: 30px;
}
.solution__item:nth-of-type(3) .solution__list-text {
  margin-bottom: 20px;
}
.solution__item:nth-of-type(4) .solution__list-text {
  margin-bottom: 20px;
}
.solution__list-headline {
  margin-bottom: 24px;
  line-height: 1;
  font-size: 3rem;
  color: #1c83d0;
}
.solution__list-headline--large {
  line-height: 0;
  font-size: 4rem;
}
.solution__list-text--emphasis {
  color: #fd295a;
}
@media screen and (max-width: 859px) {
  .solution__list-thumbnail {
    transform: scale(0.8);
    transform-origin: center top;
  }
}

.point__headline {
  margin-bottom: 40px;
  padding: 36px 0;
  text-align: center;
  color: #fff;
  background: #1c83d0 url(../img/bg-grid.svg) center top/48px repeat;
}
@media screen and (min-width: 768px) {
  .point__headline {
    margin-bottom: 60px;
    padding: 48px 0;
  }
}
.point__contents {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point__contents {
    padding: 0 30px 30px 30px;
  }
}
.point__subtitle {
  margin-bottom: 12.25px;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .point__subtitle {
    margin-bottom: 11px;
  }
}
.point__title {
  line-height: 1.25;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .point__title {
    font-size: 4rem;
  }
}
.point__list {
  margin: 0 auto 90px;
}
.point__item {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .point__item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 40px;
  }
}
.point__item:last-of-type {
  margin-bottom: 0;
}
.point__item:nth-of-type(2) .point__detail-headline {
  color: #5cbde8;
}
.point__detail {
  max-width: 486px;
  text-align: left;
}
@media screen and (min-width: 1366px) {
  .point__detail {
    width: calc(100% - 100px - 450px);
  }
}
.point__number {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .point__number {
    margin-bottom: 30px;
  }
}
.point__detail-headline {
  font-size: 2rem;
  color: #1c83d0;
}
@media screen and (min-width: 768px) {
  .point__detail-headline {
    margin-bottom: 20px;
    font-size: 3rem;
  }
}
.point__detail-text {
  margin-bottom: 0;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .point__detail-text {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .point__detail-text br {
    display: none;
  }
}
.point__detail-text--blue {
  display: block;
  line-height: 1.333333;
  font-size: 2.4rem;
  font-weight: 700;
  color: #5cbde8;
}
.point__detail-text--large {
  font-size: 4.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .point__thumbnail {
    flex: 1 0 auto;
    width: 450px;
  }
}
.conversion {
  background: #003758 url("../img/cv-bg.svg") repeat-x center top;
  animation: bgscroll-cv 40s linear infinite;
}
.conversion__contents {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 30px;
  text-align: center;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .conversion__contents {
    padding: 120px 30px 120px 30px;
  }
}
.conversion__headline {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .conversion__headline {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .conversion__headline .conversion__image--sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .conversion__headline .conversion__image--pc {
    display: none;
  }
}
.conversion__detail {
  padding: 20px 30px 30px;
  background-color: #fff;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .conversion__detail {
    padding: 40px 0 50px;
    border-radius: 60px;
  }
}
.conversion__detail-headline {
  margin-bottom: 5px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .conversion__detail-headline {
    font-size: 4rem;
  }
}
.conversion__detail-headline--emphasis {
  background: radial-gradient(circle at center, #003758 20%, transparent 20%) top right/1em 30px repeat-x;
  padding-top: 15px;
}
.conversion__detail-plus {
  position: relative;
  z-index: 1;
  margin-bottom: -10px;
}
@media screen and (max-width: 767px) {
  .conversion__detail-image {
    width: 38px;
    height: 38px;
  }
}
.conversion__catchcopy {
  position: relative;
  width: calc(100% + 80px);
  margin-bottom: 8px;
  padding: 15px 15px 10px;
  background-color: #ffec00;
  transform: translateX(-40px);
}
@media screen and (min-width: 768px) {
  .conversion__catchcopy {
    transform: translateX(-30px);
    width: calc(100% + 60px);
    margin-bottom: 40px;
    padding: 30px 70px 15px;
  }
}
.conversion__catchcopy::before, .conversion__catchcopy::after {
  position: absolute;
  content: "";
  top: 100%;
  border-style: solid;
  border-color: transparent;
}
.conversion__catchcopy::before {
  left: 0;
  border-width: 0 10px 6.6px 0;
  border-right-color: #a59d35;
}
@media screen and (min-width: 768px) {
  .conversion__catchcopy::before {
    border-width: 0 30px 21px 0;
  }
}
.conversion__catchcopy::after {
  right: 0;
  border-width: 6.6px 10px 0 0;
  border-top-color: #a59d35;
}
@media screen and (min-width: 768px) {
  .conversion__catchcopy::after {
    border-width: 21px 30px 0 0;
  }
}
.conversion__catchcopy-group {
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .conversion__catchcopy-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
  }
}
.conversion__catchcopy-limited {
  margin-bottom: 2px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .conversion__catchcopy-limited {
    margin-right: 10px;
  }
}
.conversion__catchcopy-limited .conversion__image {
  max-height: 14px;
}
@media screen and (min-width: 768px) {
  .conversion__catchcopy-limited .conversion__image {
    max-height: 46px;
  }
}
.conversion__catchcopy-cashback .conversion__image {
  max-height: 24px;
}
@media screen and (min-width: 768px) {
  .conversion__catchcopy-cashback .conversion__image {
    max-height: 54px;
  }
}
.conversion__catchcopy-text {
  font-size: 0.6rem;
}
@media screen and (min-width: 768px) {
  .conversion__catchcopy-text {
    font-size: 1.2rem;
  }
}
.conversion__cta {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fd295a;
}
@media screen and (min-width: 768px) {
  .conversion__cta {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
}
.conversion__cta::before {
  position: absolute;
  top: 0;
  left: -11px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 1px;
  height: 12px;
  margin: auto;
  background-color: #fd295a;
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .conversion__cta::before {
    left: -16px;
    height: 24px;
  }
}
.conversion__cta::after {
  position: absolute;
  top: 0;
  right: -11px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 1px;
  height: 12px;
  margin: auto;
  background-color: #fd295a;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .conversion__cta::after {
    right: -16px;
    height: 24px;
  }
}
.conversion__link {
  display: block;
  max-width: 220px;
  margin: 0 auto;
  padding: 9px;
  text-indent: -10px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background-color: #fd295a;
  border-radius: 30px;
  box-shadow: 0 6px 0 0 #9d1b39;
}
@media screen and (min-width: 768px) {
  .conversion__link {
    min-width: 360px;
    padding: 24px 48px;
    font-size: 3rem;
    border-radius: 46.5px;
  }
}
.conversion__link:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 0 #9d1b39;
}
.conversion__link-label {
  position: relative;
}
.conversion__link-label::after {
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  bottom: 0;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  transition: transform 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .conversion__link-label::after {
    width: 13px;
    height: 13px;
  }
}
.conversion__link:hover .conversion__link-label::after {
  transform: scale(1.5);
}

.screen {
  overflow: hidden;
}
.screen__contents {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 15px;
  text-align: center;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .screen__contents {
    padding: 120px 30px 30px 30px;
  }
}
.screen__headline {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .screen__headline {
    margin-bottom: 60px;
  }
}
.screen__subtitle {
  margin-bottom: 12.25px;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .screen__subtitle {
    margin-bottom: 11px;
  }
}
.screen__title {
  line-height: 1.25;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .screen__title {
    font-size: 4rem;
  }
}
.screen .swiper.mySwiper {
  overflow: visible;
  margin-bottom: 96px;
}
.screen .swiper.mySwiper .swiper-wrapper .swiper-slide {
  height: auto;
  padding: 30px 15px 20px;
  background-color: #1c83d0;
  border-radius: 40px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .screen .swiper.mySwiper .swiper-wrapper .swiper-slide {
    padding: 30px 30px 20px;
  }
}
@media screen and (min-width: 1100px) {
  .screen .swiper.mySwiper .swiper-wrapper .swiper-slide {
    padding: 60px 60px 40px;
  }
}
.screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__headline {
  margin-bottom: 20px;
  line-height: 1;
  font-size: 2.4rem;
  color: #fff;
}
@media screen and (min-width: 1100px) {
  .screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__headline {
    margin-bottom: 40px;
    font-size: 3rem;
  }
}
.screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__thumbnail {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__thumbnail {
    margin-bottom: 20px;
  }
}
.screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__thumbnail .swiper-slide__image {
  width: 100%;
}
.screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__text {
  margin-bottom: 20px;
  padding: 20px;
  text-align: left;
  line-height: 2;
  font-size: 1.6rem;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__text {
    margin-bottom: 40px;
  }
}
.screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__text .swiper-slide__text--pink {
  color: #fd295a;
}
.screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__btn .swiper-slide__link {
  display: block;
  max-width: 420px;
  margin: 0 auto;
  padding: 9px;
  text-indent: -10px;
  font-size: 2rem;
  font-weight: 700;
  color: #003758;
  background-color: #ffec00;
  border-radius: 30px;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__btn .swiper-slide__link {
    min-width: 360px;
    padding: 24px 48px;
    font-size: 2.4rem;
    border-radius: 46.5px;
  }
}
.screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__btn .swiper-slide__link-label {
  position: relative;
}
.screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__btn .swiper-slide__link-label::after {
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  bottom: 0;
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  margin: auto;
  background: #003758;
  border-radius: 10px;
  transition: transform 0.2s ease-in-out;
}
.screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__btn .swiper-slide__link:hover > span::after {
  transform: scale(1.5);
}
.screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__btn .swiper-slide__link-label {
  display: inline-block;
  line-height: 1.5;
}
@media screen and (max-width: 479px) {
  .screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__btn .swiper-slide__link-label {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 479px) {
  .screen .swiper.mySwiper .swiper-wrapper .swiper-slide .swiper-slide__btn .swiper-slide__link-label::after {
    width: 6px;
    height: 6px;
  }
}
.screen .swiper.mySwiper .swiper-wrapper .swiper-slide-active {
  opacity: 1;
}
.screen .swiper.mySwiper .swiper-wrapper .swiper-slide-active .swiper-slide__image {
  cursor: pointer;
}
.screen .swiper.mySwiper .swiper-button-next::after {
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 48px;
  height: 48px;
  margin: auto;
  background: url(../img/icon-arrow.svg) left top/contain no-repeat;
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .screen .swiper.mySwiper .swiper-button-next::after {
    left: 13px;
  }
}
@media screen and (min-width: 1100px) {
  .screen .swiper.mySwiper .swiper-button-next::after {
    left: 67px;
    width: 106px;
    height: 106px;
  }
}
.screen .swiper.mySwiper .swiper-button-prev::after {
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 48px;
  height: 48px;
  margin: auto;
  background: url(../img/icon-arrow.svg) left top/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .screen .swiper.mySwiper .swiper-button-prev::after {
    right: 13px;
  }
}
@media screen and (min-width: 1100px) {
  .screen .swiper.mySwiper .swiper-button-prev::after {
    right: 67px;
    width: 106px;
    height: 106px;
  }
}
.screen .swiper.mySwiper .swiper-pagination {
  overflow: hidden;
  top: inherit;
  bottom: -36px;
  height: 6px;
  background-color: #cfdae3;
  border-radius: 3px;
}
.screen .swiper.mySwiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #fd295a;
  border-radius: 3px;
}
.screen .modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgb(255, 255, 255);
  z-index: 4;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.screen .modal__content {
  position: relative;
  animation: modal-fade-in 0.4s ease;
}
.screen .modal__image {
  max-width: 1366px;
  width: calc(100% - 24px);
  height: auto;
  cursor: auto;
}
.screen .modal__close {
  position: fixed;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  background-color: #003758;
  z-index: 5;
}
.screen .modal__close-icon {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  transform: rotate(45deg);
}
.screen .modal__close-icon::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 16px;
  height: 4px;
  margin: auto;
  background-color: #fff;
}
.screen .modal__close-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 16px;
  height: 4px;
  margin: auto;
  background-color: #fff;
  transform: rotate(90deg);
}
@keyframes modal-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.screen__function {
  overflow: hidden;
  border-radius: 10px;
}
.screen__function-title {
  padding: 10px;
  font-size: 2.4rem;
  color: #fff;
  background-color: #003758;
}
.screen__function-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px 15px;
  padding: 20px 15px;
  background-color: #eef6fc;
}
@media screen and (min-width: 768px) {
  .screen__function-list {
    gap: 15px 20px;
    padding: 30px 25px;
  }
}
@media screen and (min-width: 1366px) {
  .screen__function-list {
    gap: 15px 40px;
  }
}
.screen__function-item {
  width: calc(50% - 7.5px);
  margin-bottom: 0;
  padding: 10px 5px;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #fff;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .screen__function-item {
    width: calc(50% - 10px);
    padding: 10px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1366px) {
  .screen__function-item {
    width: calc(25% - 30px);
  }
}

.price {
  padding: 0 15px 30px;
}
@media screen and (min-width: 768px) {
  .price {
    padding: 50px 50px 0;
  }
}
.price__contents {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  max-width: 100%;
  background-color: #fd295a;
  border-radius: 42px;
  box-shadow: 0 20px 0 0 #9d1b39;
}
@media screen and (min-width: 768px) {
  .price__contents {
    padding: 80px 30px 80px 30px;
  }
}
.price__headline {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .price__headline {
    margin-bottom: 60px;
  }
}
.price__subtitle {
  margin-bottom: 12.25px;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .price__subtitle {
    margin-bottom: 11px;
  }
}
.price__title {
  line-height: 1.25;
  font-size: 2.4rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .price__title {
    font-size: 4rem;
  }
}
.price__list {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .price__list {
    max-width: 1206px;
    margin: 0 auto 40px;
  }
}
@media screen and (min-width: 1100px) {
  .price__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
.price__item {
  position: relative;
  margin-bottom: 30px;
  padding: 20px 30px 15px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 0 0 #9d1b39;
}
@media screen and (min-width: 1100px) {
  .price__item {
    width: calc(33.33% - 13.33px);
    margin-bottom: 0;
  }
}
.price__item:last-of-type {
  margin-bottom: 0;
}
.price__item::before {
  position: absolute;
  top: 13px;
  left: 13px;
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  margin: auto;
  background-color: #fd295a;
  border-radius: 10px;
  box-shadow: inset 0 5px 0 0 #9d1b39;
}
.price__item-headline {
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 1.8rem;
  color: #fd295a;
  border-bottom: 1px solid #fd295a;
}
@media screen and (min-width: 768px) {
  .price__item-headline {
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 2.5rem;
  }
}
.price__item-headline--small {
  font-size: 1.2rem;
}
@media screen and (max-width: 480px) {
  .price__item-headline--small {
    display: block;
  }
}
.price__text {
  line-height: 2;
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .price__text {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .price__text br {
    display: none;
  }
}
.price__annotation {
  display: block;
  line-height: 3.6;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .price__annotation {
    font-size: 1.2rem;
  }
}

.comparison__contents {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .comparison__contents {
    padding: 120px 30px 120px 30px;
  }
}
.comparison__headline {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .comparison__headline {
    margin-bottom: 60px;
  }
}
.comparison__subtitle {
  margin-bottom: 12.25px;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .comparison__subtitle {
    margin-bottom: 11px;
  }
}
.comparison__title {
  line-height: 1.25;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .comparison__title {
    font-size: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .comparison__image--sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .comparison__image--pc {
    display: none;
  }
}

.voice__contents {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 30px;
  text-align: center;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .voice__contents {
    padding: 120px 30px 120px 30px;
  }
}
.voice__headline {
  margin-bottom: 40px;
  margin-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .voice__headline {
    margin-bottom: 60px;
  }
}
.voice__subtitle {
  margin-bottom: 12.25px;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .voice__subtitle {
    margin-bottom: 11px;
  }
}
.voice__title {
  line-height: 1.25;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .voice__title {
    font-size: 4rem;
  }
}
.voice__item {
  position: relative;
  width: 100%;
  margin: 0 0 90px auto;
  padding: 30px;
  text-align: left;
  border: 5px solid #1c83d0;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .voice__item {
    width: calc(100% - 57px);
    margin: 0 0 40px auto;
    padding: 30px 90px 30px 115px;
  }
}
.voice__item:nth-of-type(even) {
  border: 5px solid #5cbde8;
}
.voice__item:nth-of-type(even) .voice__item-headline {
  color: #5cbde8;
}
.voice__item:nth-of-type(even)::before {
  background: #5cbde8 url(../img/icon-voice.svg) center center/30px no-repeat;
}
@media screen and (min-width: 768px) {
  .voice__item:nth-of-type(even)::before {
    background: #5cbde8 url(../img/icon-voice.svg) center center/60px no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .voice__item:last-of-type {
    margin-bottom: 0;
  }
}
.voice__item::before {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  display: inline-block;
  content: "";
  width: 70px;
  height: 70px;
  margin: auto;
  background: #1c83d0 url(../img/icon-voice.svg) center center/30px no-repeat;
  border-radius: 35px;
}
@media screen and (min-width: 768px) {
  .voice__item::before {
    top: 0;
    left: -57px;
    right: inherit;
    bottom: 0;
    width: 140px;
    height: 140px;
    margin: auto;
    background: #1c83d0 url(../img/icon-voice.svg) center center/60px no-repeat;
    border-radius: 70px;
  }
}
.voice__item-headline {
  margin-bottom: 12px;
  font-size: 2rem;
  color: #1c83d0;
}
@media screen and (min-width: 768px) {
  .voice__item-headline {
    margin-bottom: 24px;
  }
}
.voice__item-text {
  line-height: 2;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .voice__item-text {
    font-size: 1.6rem;
  }
}

.faq {
  background-color: #1c83d0;
}
.faq__contents {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .faq__contents {
    padding: 120px 30px 120px 30px;
  }
}
.faq__headline {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .faq__headline {
    margin-bottom: 60px;
  }
}
.faq__subtitle {
  margin-bottom: 12.25px;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .faq__subtitle {
    margin-bottom: 11px;
  }
}
.faq__title {
  line-height: 1.25;
  font-size: 2.4rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .faq__title {
    font-size: 4rem;
  }
}
.faq__item {
  margin-bottom: 20px;
  padding: 20px 30px;
  text-align: left;
  background-color: #fff;
  border-radius: 30px 5px 30px 30px;
}
@media screen and (min-width: 768px) {
  .faq__item {
    padding: 20px 40px;
  }
}
.faq__question {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 2rem;
  color: #1c83d0;
}
.faq__question-icon {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  margin-right: 6px;
  flex: 0 0 auto;
}
.faq__question-text {
  font-weight: 700;
}
.faq__answer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1.6rem;
}
.faq__answer-icon {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-height: 2.4rem;
  margin-right: 6px;
  flex: 0 0 auto;
}
.faq__answer-text {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .faq__answer-text {
    font-size: 1.6rem;
  }
}
.faq__answer-link {
  text-decoration: underline;
  color: #fd295a;
  word-break: break-all;
}
.faq__answer-link:hover {
  text-decoration: none;
}

/*------------------------------
main end
------------------------------*/
/*------------------------------
footer
------------------------------*/
.footer__contents {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__contents {
    padding: 60px 30px 60px 30px;
  }
}
.footer__name {
  margin-bottom: 6px;
  font-size: 2.4rem;
  font-weight: 700;
}
.footer__number {
  margin-bottom: 30px;
  font-size: 1.2rem;
}
.footer__address {
  margin-bottom: 10px;
  font-style: normal;
}
.footer__item {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  font-size: 1.2rem;
  border-right: 1px solid #003758;
}
@media screen and (min-width: 768px) {
  .footer__item {
    margin-right: 20px;
    padding-right: 20px;
    font-size: 1.6rem;
  }
}
.footer__item:last-of-type {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.footer__link {
  word-break: break-all;
}
.footer__copy {
  display: block;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  text-align: center;
  color: #fff;
  background-color: #1c83d0;
}

/*------------------------------
footer end
------------------------------*/