@charset "UTF-8";

/* ------------------------------------------------------------
 独自リセット・共通スタイル
------------------------------------------------------------ */

html {
  font-size: 100%;
  scroll-behavior: smooth;
}
@media (max-width: 959px) {
  html {
    font-size: 94%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 87.5%;
  }
}

body {
  /* 游ゴシック体 */
  font-family:
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", sans-serif;
  scroll-padding-top: 120px;
  background: #e6e6e6;
}

a {
  text-decoration: none;
  transition-duration: 0.2s;
}
@media (min-width: 960px) {
  a:hover {
    transition-duration: 0.2s;
  }
}

@media (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
p {
  line-height: 1.9;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section img {
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  max-width: 750px;
  height: auto;
}

*:focus {
  outline: none;
}

/*PCでは無効（改行しない）*/
.br-sp {
  display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}
/* ------------------------------------------------------------
  body-wrapper
------------------------------------------------------------ */
.body-wrapper {
  position: relative;
  overflow-x: hidden;
  background: #fff;
  max-width: 750px;
  margin: auto;
}

/* ------------------------------------------------------------
  header
------------------------------------------------------------ */
.header {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}
.logo {
  font-weight: 700;
  padding-left: 14px;
}
.hamburger-menu {
  width: 45px;
  height: 45px;
  margin-right: 1%;
  position: relative;
  border: none;
  border-radius: 5px;
  background-color: rgb(255, 228, 56, 0.8);
  appearance: none;
  padding: 0;
  cursor: pointer;
  z-index: 1000;
}
.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #242424;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}
.hamburger-menu__bar:first-child {
  top: 13px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 21px;
}
.hamburger-menu__bar:last-child {
  top: 29px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.navigation {
  display: none;
  text-align: center;
  background: #f5f7fd;
  position: absolute;
  top: 0;
  width: 100%;
  height: 200vw;
  z-index: 999;
}
.navigation__list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation__list-item {
  border-bottom: solid 1px #474747;
}
.navigation__list-item img {
  width: 30%;
  margin: auto;
}

.navigation__link {
  color: #333333;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 24px 0;
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    background: #7191f0;
  }
}

.btn,
a.btn,
button.btn {
  margin-top: 6%;
  width: 80%;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn--form {
  color: #fff;
  background-color: #ff74bf;
}

a.btn--form:hover {
  color: #fff;
  background: #ff74bf;
}

a.btn--login {
  color: #7191f0;
  background-color: #fff;
  border: #7191f0 solid 2px;
}

a.btn--login:hover {
  color: #7191f0;
  background-color: #fff;
  border: #7191f0 solid 2px;
}

a.btn-c {
  font-size: 1.2rem;
  position: relative;
  padding: 1rem 2rem;
  border-radius: 100vh;
}

a.btn-c i.fa {
  margin-right: 1rem;
}

a.btn-c:before {
  font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.8rem);
  right: 1rem;
  margin: 0;
  padding: 0;
  content: "\f054";
}

@media screen and (min-width: 750px) {
  /*　画面サイズが750pxからはここを読み込む　*/
  .hamburger-menu {
    width: 45px;
    height: 45px;
    margin-right: 3%;
    position: relative;
    border: none;
    border-radius: 5px;
    background-color: rgb(255, 228, 56, 0.8);
    appearance: none;
    padding: 0;
    cursor: pointer;
    z-index: 1000;
  }

  .navigation__list-item img {
    width: 10%;
    margin: auto;
  }

  .btn,
  a.btn,
  button.btn {
    margin-top: 2%;
    max-width: 300px;
  }
}
/* ------------------------------------------------------------
  fv
------------------------------------------------------------ */
.fv {
  margin-top: 0%;
  position: relative;
}

#view_time {
  position: absolute;
  top: 55.5%;
  left: 48%;
  font-size: 2vw;
}

@media screen and (min-width: 768px) {
  /*　画面サイズが768pxからはここを読み込む　*/
  #view_time {
    font-size: 1.8vw;
  }
}

@media screen and (min-width: 750px) {
  /*　画面サイズが750pxからはここを読み込む　*/
  #view_time {
    font-size: 15px;
  }
}

/* ------------------------------------------------------------
  main
------------------------------------------------------------ */
.cta_box {
  text-align: center;
}

.repeat {
  text-align: left;
  margin-top: 5%;
}

.repeat a {
  color: #333333;
  padding-left: 5%;
  text-decoration: underline;
}

@media screen and (min-width: 750px) {
  /*　画面サイズが750pxからはここを読み込む　*/
  .repeat a {
    font-size: 1.4rem;
  }
}

.reflection {
  position: relative;
  width: 95%;
  margin: auto;
  margin-top: 4%;
  overflow: hidden;
  animation: pekopeko 1.8s infinite;
}
@keyframes pekopeko {
  0% {
    top: 0px;
  }
  10% {
    top: 5px;
  }
  20% {
    top: 0px;
  }
  30% {
    top: 5px;
  }
  40% {
    top: 0px;
  }
}

.shindan {
  margin: 5% 0;
  text-align: center;
  position: relative;
}

.shindan img {
  width: 95%;
}

.select {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.select_box {
  margin-bottom: 6%;
  min-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
}

.select_box p {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

.cp_ipselect {
  overflow: hidden;
}
.cp_ipselect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.cp_ipselect select::-ms-expand {
  display: none;
}
.cp_ipselect.cp_sl01 {
  position: relative;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  background: #ffffff;
}
.cp_ipselect.cp_sl01::before {
  position: absolute;
  top: 0.8em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
  width: 160px;
  padding: 8px 38px 8px 8px;
  color: #666666;
}

.select_box input {
  width: 160px;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  background: #ffffff;
  padding: 8px 0 8px 5px;
}

.select button {
  text-align: center;
  background-color: #f9f871;
  border-radius: 100vh;
  width: 80%;
  color: #333333;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 3% 0;
  border: none;
  border-bottom: #b7a40f solid 3px;
  margin-top: 3%;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.modal-content {
  position: relative;
  background-color: #fefefe;
  width: 90%;
  max-width: 500px;
  margin: auto;
  text-align: center;
  padding-bottom: 3%;
}
.modal-content h2 {
  background-color: #7191f0;
  color: #fff;
  padding: 2% 0;
  margin-bottom: 3%;
}
.modal-content span {
  font-size: 1.2rem;
}
#modalResult {
  color: #fa4141;
  font-weight: bold;
  font-size: 1.6rem;
  border: #ccc solid 1px;
  border-radius: 5px;
  padding: 1% 0;
  width: 80%;
  margin: auto;
  margin-top: 3%;
  margin-bottom: 5%;
}
.triangle3 {
  margin: auto;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #7191f0;
  margin-bottom: 3%;
}
.modal-content img {
  margin-bottom: 5%;
}
.small_text {
  font-size: 0.75rem;
}
.close {
  position: absolute;
  top: -2%;
  right: 3%;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (min-width: 750px) {
  /*　画面サイズが750pxからはここを読み込む　*/
  .select {
    width: 700px;
  }

  .select_box p {
    font-size: 1.6rem;
  }

  .cp_ipselect.cp_sl01::before {
    top: 1.5em;
  }
  .cp_ipselect.cp_sl01 select {
    min-width: 300px;
    padding: 15px 38px 15px 15px;
  }

  .select_box input {
    min-width: 300px;
    padding: 15px 0 15px 15px;
  }

  .select button {
    border-bottom: #b7a40f solid 6px;
    margin-top: 8%;
  }
}

.section01 {
  margin-top: 5%;
}

.section02 {
  margin-top: 2%;
}

.section02 {
  position: relative;
}

.small_cta {
  position: absolute;
  top: 22%;
  left: 30%;
  height: 4.5%;
  width: 50%;
}

.section03 {
  position: relative;
  z-index: 10;
}

.section03_bg {
  position: relative;
}

.section03_bg div:nth-child(2) {
  position: absolute;
  top: 21%;
  left: 36%;
}

.section03_bg div:nth-child(3) {
  position: absolute;
  top: 49%;
  left: 3%;
  padding-right: 40%;
}

.section03_bg div:nth-child(4) {
  position: absolute;
  top: 77%;
  left: 38%;
}

.section03_bg .inner p {
  padding-right: 5%;
  line-height: 1.3rem;
  color: #333333;
  font-size: 0.9rem;
  font-weight: bold;
}

.modal_box {
  position: absolute;
  top: 90%;
}

.content {
  display: flex;
  margin: 0 auto;
  width: 90%;
}

.content a img {
  width: 100%;
}

.section03 .modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.6);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  background: #fff;
  left: 50%;
  padding: 10px 5px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.js-modal-close {
  padding-left: 5px;
}

.flow_design05 {
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3%;
  margin-bottom: 6%;
}

.flow05 {
  padding-left: 0;
}

.flow05 > li {
  list-style-type: none;
  position: relative;
  padding-left: 40px;
}

.flow05 > li:not(:last-child) {
  padding-bottom: 10px;
}

.flow05 > li .icon05 {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #7191f0;
  color: #fff;
  position: absolute;
  left: 0;
}

.flow05 > li:not(:last-child)::before {
  content: "";
  background: #c3c3c3;
  width: 4px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 19px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow05 > li dl dt {
  font-size: 1.1em;
  font-weight: 600;
  color: #000;
}

.flow05 > li dl dd {
  margin-left: 0;
  font-size: 0.9rem;
  margin-top: 2%;
}

.flow05 > li dl dd img {
  margin-top: 2%;
}

@media screen and (min-width: 750px) {
  /*　画面サイズが750pxからはここを読み込む　*/
  .section03_bg .inner p {
    padding: 0 10% 0 0;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }

  .modal_box {
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }

  .content {
    width: 500px;
  }

  .section03 .modal {
    display: none;
    height: 150vh;
    position: fixed;
    top: -150%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 750px;
  }
  .modal__bg {
    background: rgba(0, 0, 0, 0.6);
    height: 150vh;
    position: absolute;
    width: 100%;
  }
}

.box2 {
  position: relative;
}

.box2 .web_cta {
  width: 100%;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.box2 .repeat {
  width: 100%;
  position: absolute;
  top: 77%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.section04 {
  margin-top: -8%;
}

.section04_bg {
  position: relative;
}

.section04_bg div:nth-child(2) {
  position: absolute;
  top: 21%;
  left: 3%;
  padding-right: 50%;
}

.section04_bg div:nth-child(3) {
  position: absolute;
  top: 38%;
  left: 50%;
  padding-right: 2%;
}

.section04_bg div:nth-child(4) {
  position: absolute;
  top: 56%;
  left: 3%;
  padding-right: 50%;
}

.section04_bg .inner p {
  line-height: 1.5rem;
  font-weight: bold;
  color: #333333;
}

@media screen and (min-width: 750px) {
  /*　画面サイズが750pxからはここを読み込む　*/
  .section04_bg .inner p {
    line-height: 2.5rem;
    font-size: 1.6rem;
  }
}

.section05 {
  margin-top: 10%;
  background-color: #9eb6ef;
  padding: 8% 0;
}

.section05 h2 {
  width: 80%;
  margin: auto;
}

.review {
  width: 80%;
  height: fit-content;
  margin: auto;
  margin-top: 5%;
}
.review img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slick-prev:before,
.slick-next:before {
  color: black;
}
.slick-dots li button:before {
  font-size: 18px;
  top: 6px;
}

.section06 {
  margin-top: 5%;
}

.section06_bg {
  position: relative;
}

.section06_bg div:nth-child(2) {
  position: absolute;
  top: 21%;
  left: 19.5%;
  padding-right: 9%;
}

.section06_bg div:nth-child(3) {
  position: absolute;
  top: 45.5%;
  left: 19.5%;
  padding-right: 9%;
}

.section06_bg div:nth-child(4) {
  position: absolute;
  top: 66.5%;
  left: 19.5%;
  padding-right: 9%;
}

.section06_bg div:nth-child(5) {
  position: absolute;
  top: 82.5%;
  left: 19.5%;
  padding-right: 9%;
}

.section06_bg .inner p {
  line-height: 1.4rem;
  font-size: 0.85rem;
  color: #333333;
}

.section06_bg .inner p span {
  font-size: 0.65rem;
}

@media screen and (min-width: 768px) {
  /*　画面サイズが768pxからはここを読み込む　*/
  .section06_bg .inner p {
    line-height: 2.4rem;
    font-size: 1.4rem;
  }
  .section06_bg .inner p span {
    font-size: 0.9rem;
  }
}

.company {
}

#main-contents6 {
  width: 100%;
  height: auto;
  background-color: #fff;
  text-align: center;
  position: relative;
}

#main-contents6 h2 {
  font-size: 32px;
  text-align: center;
  color: #ffff;
  padding: 30px 0;
  background-color: #7191f0;
}

#main-contents6 h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 2.5em;
  bottom: -60px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 60px solid #7191f0;
  border-right: 80px solid transparent;
  border-left: 80px solid transparent;
}

#main-contents6 .chart {
  width: 90%;
  height: auto;
  background-color: fff;
  margin: 80px auto;
  /* border-left: 3px solid #7191F0; */
  text-align: left;
}

#main-contents6 .google-img iframe {
  width: 100%;
  height: 400px;
  margin: 0 auto;
}

th,
td {
  border: solid 3px #7191f0;
  font-size: 22px;
  vertical-align: middle;
  padding-left: 10px;
}

.last-td {
  padding: 15px;
  margin: 0%;
}

.third {
  border-top: #7191f0 3px solid;
  border-left: #7191f0 3px solid;
  border-bottom: #f7f7f7 3px solid;
  background-color: #7191f0;
  color: #f7f7f7;
  padding: 15px;
}

.last {
  border-bottom: #7191f0 3px solid;
  background-color: #7191f0;
  color: #f7f7f7;
  padding: 10px 25px;
  margin: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

@media screen and (max-width: 480px) {
  #main-contents6 {
    padding-bottom: 0px;
  }

  #main-contents6 h2 {
    font-size: 25px;
    padding-top: 25px;
  }

  #main-contents6 .chart {
    width: 90%;
    height: auto;
    background-color: fff;
    margin: 0px auto;
    margin-top: 50px;
  }

  th,
  td {
    display: block;
    border-bottom: none;
    padding: 15px 20px;
  }

  td {
    border: solid 2px #4f77ec;
    font-size: 15px;
  }

  th {
    border: solid 1px #4f77ec;
    font-size: 15px;
  }

  .third {
    border-top: #4f77ec 1px solid;
    border-left: #4f77ec 1px solid;
    border-bottom: none;
  }

  #main-contents6 .google-img iframe {
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
}

#main-contents7 {
  width: 100%;
  height: auto;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-top: 10%;
}

#main-contents7 h2 {
  font-size: 32px;
  text-align: center;
  color: #ffff;
  background-color: #7191f0;
  padding: 30px 0;
}

#main-contents7 h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 2.5em;
  bottom: -60px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 60px solid #7191f0;
  border-right: 80px solid transparent;
  border-left: 80px solid transparent;
}

#main-contents7 h3 {
  color: #000;
  font-size: 1.4rem;
  margin: 1.2rem 0;
}

.content-text-inner {
  width: 90%;
  margin: 20px auto;
}

#main-contents7 ul {
  margin: 0.5rem 0;
}

.contents7-ul1 li {
  padding: 0.3rem 0;
}

#main-contents7 .contents7-ul2 {
  padding-left: 40px !important;
}

.contents7-ul2 li {
  list-style: none;
}

#main-contents7 .contents7-ul3 {
  padding-left: 40px;
}

.contents7-ul3 li {
  list-style: decimal;
}

#main-contents7 .content-text {
  width: 90%;
  height: 400px;
  margin: 80px auto;
  border: 3px solid #555;
  font-size: 18px;
  text-align: left;
  line-height: 130%;
  overflow: scroll;
  background-color: #fff;
  overflow: scroll;
  overflow-x: hidden;
}

#main-contents7 .content-text .text1 {
  width: 90%;
  margin: 20px auto;
}

#main-contents7 .content-text .text2 {
  width: 90%;
  margin: 20px auto;
}

@media screen and (max-width: 480px) {
  #main-contents7 {
    padding-bottom: 20px;
  }

  #main-contents7 h2 {
    font-size: 25px;
    padding-top: 25px;
  }

  #main-contents7 h3 {
    font-size: 0.9rem;
    line-height: normal;
  }

  #main-contents7 .content-text {
    width: 90%;
    height: 200px;
    margin: 0px auto;
    font-size: 12px;
    margin-top: 40px;
    margin-bottom: 80px;
  }
}

/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */

.footer {
  text-align: center;
  padding: 1rem 0 0.5rem;
  font-size: 0.9rem;
  background: #7191f0;
}

.footer p {
  margin-top: 5%;
  font-size: 0.9rem;
  color: #fff;
}

/* ------------------------------------------------------------
  floating
------------------------------------------------------------ */
.float-button__wrap {
  display: none; /*最初は隠す*/
  max-width: 750px;
  width: 100%;
  position: fixed;
  bottom: 0px;
  z-index: 10;
}
.float-button__wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background-color: rgb(0, 0, 0, 0.5);
  padding: 1% 3%;
  position: relative;
}

/* ------------------------------------------------------------
  rate-text
------------------------------------------------------------ */
.rate-text,
.rate-min-text,
.rate-max-text {
  position: absolute;
  font-weight: bold;
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: tabular-nums;
}
.fv .rate-text {
  top: 80.7%;
  left: 55.5%;
  color: #7191f0;
  font-size: min(6.6vw, 50px);
}
.fv .rate-text.only {
  top: 81.6%;
}
.fv .rate-min-text {
  top: 86.7%;
  left: 58.5%;
  width: 8%;
  height: 2.5%;
}
.fv .rate-max-text {
  top: 86.7%;
  left: 71.8%;
  width: 8%;
  height: 2.5%;
}
.fv .rate-min-text span,
.fv .rate-max-text span {
  display: block;
  font-size: min(3.2vw, 24px);
  text-align: center;
  line-height: 1.3;
}
.section02 .rate-text {
  top: 73.8%;
  left: 39.5%;
  color: #7191f0;
  font-size: min(13.8vw, 103px);
  transform: scale(1, 1.1);
}
.section02 .rate-text.only {
  top: 74.6%;
}
.section02 .rate-min-text {
  top: 81.3%;
  left: 49.5%;
  transform: scale(1, 1.1);
  width: 10.5%;
  height: 1.5%;
}
.section02 .rate-max-text {
  top: 81.3%;
  left: 68.5%;
  transform: scale(1, 1.1);
  width: 10.5%;
  height: 1.5%;
}
.section02 .rate-min-text span,
.section02 .rate-max-text span {
  display: block;
  font-size: min(4.4vw, 32px);
  text-align: center;
  line-height: 1.3;
}
.box2 .rate-text {
  top: 49%;
  left: 46%;
  color: #f252aa;
  font-size: min(8vw, 60px);
}
.section04_bg .rate-text {
  top: 85.7%;
  left: 33.3%;
  color: #1035c7;
  font-size: min(3.5vw, 26px);
  transform: scale(1, 1.3);
}
.slick-initialized .slick-slide .rate-text {
  top: 57.6%;
  left: 36.7%;
  color: #333;
  font-size: min(3.9vw, 29px);
  font-weight: lighter;
}

/* CTA文言追加 */
.heads-up {
  color: red;
  font-size: min(16px, 3.7vw);
  margin: 0;
  padding: 10px 0 0;
  font-weight: bold;
}
.box2 .heads-up {
  text-align: center;
  padding: 0;
  line-height: normal;
}
.float-button__wrap .heads-up {
  background-color: #fff;
  text-align: center;
  padding: 0 0 0.2em;
}
@media only screen and (max-width: 767px) {
  .float-button__wrap .heads-up {
    padding: 0 0 0.8em;
  }
}

/* 振込時間テキスト化 */
.fv .minute-text {
  position: absolute;
  left: 6%;
  bottom: 67%;
  color: #ffe438;
  font-size: min(158px, 21vw);
  font-weight: bold;
  font-style: italic;
  letter-spacing: max(-4.4vw, -33px);
  width: 25vw;
  max-width: 188px;
  text-align: center;
}
.section02 .minute-text {
  position: absolute;
  bottom: 84%;
  left: 39.5%;
  color: #7191f0;
  letter-spacing: max(-3vw, -22.5px);
  font-size: min(13.8vw, 103px);
  transform: scale(1, 1.1);
  font-weight: bold;
  width: 14vw;
  max-width: 105px;
  text-align: center;
}
.section02 .minute-text02 {
  position: absolute;
  bottom: 39.66%;
  left: 38.3%;
  color: #333;
  font-size: min(3vw, 22.5px);
  width: 4.3vw;
  max-width: 32px;
  text-align: center;
}
.section04 .minute-text {
  position: absolute;
  bottom: 8.5%;
  left: 36.8%;
  color: #1035c7;
  font-size: min(3.5vw, 26px);
  transform: scale(1, 1.3);
  font-weight: bold;
  width: 5vw;
  max-width: 37px;
  text-align: center;
}
.reflection a {
  position: relative;
  display: block;
}
.reflection a .minute-text {
  position: absolute;
  bottom: 37%;
  left: 4%;
  color: #ff74bf;
  font-size: min(4.54vw, 34px);
  font-weight: bold;
  width: 15.7vw;
  max-width: 118px;
  text-align: center;
}
.reflection a .minute-text > span {
  color: #4d4d4d;
  font-size: min(3.6vw, 27px);
  margin-left: min(0.5vw, 4px);
}
.float-button__wrap a .minute-text {
  position: absolute;
  bottom: 37%;
  left: 6.4%;
  color: #ff74bf;
  font-size: min(4.54vw, 34px);
  font-weight: bold;
  width: 15.7vw;
  max-width: 118px;
  text-align: center;
}
.float-button__wrap a .minute-text > span {
  color: #4d4d4d;
  font-size: min(3.6vw, 27px);
  margin-left: min(0.5vw, 4px);
}
.modal-content a {
  position: relative;
  display: block;
}
.modal-content a .minute-text {
  position: absolute;
  bottom: 47%;
  left: 6.2%;
  color: #ff74bf;
  font-size: min(4.54vw, 25px);
  font-weight: bold;
  width: 13.4vw;
  max-width: 74px;
  text-align: center;
}
.modal-content a .minute-text > span {
  color: #4d4d4d;
  font-size: min(3.4vw, 19px);
}

.v-card-wrapper {
  position: absolute;
  top: 328px;
  z-index: 20;
  height: 109px;
  width: 100%;
}

.v-card-content {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0 17px;
}

.v-card-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 10px;
  padding: 2vw;
  background: white;
  padding: 0 20px;
}

.v-card {
  width: 132px;
  height: 50px;
  display: flex;
  align-items: center;
}

.v-card img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .v-card-wrapper {
    top: 44vw;
    height: 15.8vw;
  }

  .v-card {
    width: 13.5vw;
  }

  .v-card-list {
    gap: 5px;
    padding: 0px;
  }
}
