@charset "UTF-8";

/* ------------------------------------------------------------
 独自リセット・共通スタイル
------------------------------------------------------------ */

html {
  scroll-behavior: smooth;
}

/*for SP*/
@media screen and (max-width:750px) {
  .font-size-S {
      font-size: 14px;
  }
  .font-size-M {
      font-size: 16px;
  }
  .font-size-L {
      font-size: 28px;
  }
}

/*for PC*/
@media screen and (min-width:750px) {
  .font-size-S {
      font-size: 24px;
  }
  .font-size-M {
      font-size: 28px;
  }
  .font-size-L {
      font-size: 48px;
  }
}

body {
  /* 游ゴシック体 */
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  scroll-padding-top:120px;
  background: #f3f3f3;
}

a {
  text-decoration: none;
  transition-duration: 0.2s;
}
@media (min-width: 960px) {
  a:hover {
    transition-duration: 0.2s;
  }
}

p {
  line-height: 1.6em;
  color: #333333;
}

h2 {
  color: #333333;
}

h3 {
  color: #333333;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section img {
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  max-width: 750px;
  height: 100%;
}

*: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 {
  position: relative;
  position: fixed;
  top: 0;
  left: 50%;
  max-width: 750px;
  width: 100%;
  transform: translateX(-50%);
  background: #fff;
  border-bottom: 1px solid #b5b5b5;
  z-index: 100;
}

header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3%;
}

header h1 {
  width: 20%;
  padding: 2% 0;
}
header nav {
  width: 60%;
}

header ul li {
  text-align: right;
}
header ul li a {
  display: block;
  border-radius: 5px;
  padding: 12px;
  width: 90%;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  text-decoration: none;
  background: linear-gradient(180deg, #ff7990 0%, #ff7990 50%, #ff0b34 50%, #ff0b34 100%);
  border: solid 1px #ff0b34;
  box-shadow: 0 1px 2px #606060, 0 0 2px #FFF inset;
  margin: auto;
  margin-bottom: 3%;
}
header ul li a:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 2px;
	width: 0;
	height: 0;
	margin-top: -5px;
	border: 5px solid transparent;        /*top right bottom を透明化 */ 
	border-left: 5px solid #fff;
}

@media screen and ( min-width:750px) {
  header h1 {
  padding-bottom: 3%;
}
}

/* ------------------------------------------------------------
  main
------------------------------------------------------------ */
.c-main {
  margin-top: 17%;
}
@media screen and ( min-width:750px) {
  .c-main {
    margin-top: 16%;
  }
}
.cta {
  position: relative;
  text-align: center;
  background-color: #fff;
  padding: 5% 0;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-top: -10%;
}
.cta p {
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: 0.04rem;
  display: inline-block;
  position: relative;
}
.comment:before,
.comment:after {
  display: inline-block;
  position: absolute;
  top: 45%;
  width: 20px;
  height: 2px;
  border-radius: 5px;
  background-color: #333333;
  content: "";
}
.cta p:before {
  left: -20px;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
}
.cta p:after {
  right: -20px;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
}
.cta span {
  color: #f15a24;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and ( min-width:750px) {
  .cta span {
    font-size: 2.2rem;
  }
}
.web_cta {
  display: block;
  border-radius: 50px;
  padding: 12px;
  width: 90%;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  text-decoration: none;
  background: linear-gradient(180deg, #ff7990 0%, #ff7990 50%, #ff0b34 50%, #ff0b34 100%);
  border: solid 1px #ff0b34;
  box-shadow: 0 1px 2px #606060, 0 0 2px #FFF inset;
  margin: auto;
  margin-bottom: 3%;
  animation: dokundokun 3300ms ease infinite;
}
  @keyframes dokundokun {
    0%  { transform: scale(1); }
    15% { transform: scale(1.05); }
    30% { transform: scale(1); }
    45% { transform: scale(1.05); }
    70% { transform: scale(1); }
  }
.web_cta:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 0;
  height: 0;
  margin-top: -10px;
  border: 10px solid transparent;        /*top right bottom を透明化 */ 
  border-left: 10px solid #fff;
}
.web_cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.section01 {
  position: relative;
  z-index: 10;
}

.section02 {
  margin-top: -8.5%;
  position: relative;
  font-weight: bold;
}
.section02 p {
  position: absolute;
  width: 80%;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.section02 p span {
  color: #ff0b34;
}
.section02 p:nth-child(2) {
  top: 32%;
}
.section02 p:nth-child(3) {
  top: 53%;
}
.section02 p:nth-child(4) {
  top: 74%;
}

.section03 {
  position: relative;
}
.section03 a {
  position: absolute;
  top: 73%;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  animation:none
}

.section04 {
  position: relative;
  background-color: #ffe592;
  text-align: center;
  padding: 5% 0;
}
.section04 p {
  position: absolute;
  text-align: left;
  font-weight: bold;
  line-height: 1.6rem;
  width: 88%;
  padding-right: 29%;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.section04 p:nth-child(2) {
  top: 22%;
}
.section04 p:nth-child(3) {
  top: 51%;
}
.section04 p:nth-child(4) {
  top: 79%;
}


.section05 {
  margin: 10% auto;
}

.review {
  padding-bottom: 10%;
}
.review h2 {
  background-color: #f15a24;
  color: #fff;
  text-align: center;
  padding: 3% 0;
  margin-top: 5%;
}
.review_contents {
  background-color: #f2f2f2;
  box-shadow: 3px 3px #666666;
  width: 90%;
  margin: 5% auto;
  padding: 3% 5% 5%;
}
.review_contents p {
  margin-top: 5%;
  text-align: center;
}

.review_contents span {
  font-weight: bold;
  color: #fa4141;
  background: linear-gradient(transparent 55%, #ffed0b 70%);
}

.qa {
  background-color: #ffedcc;
  padding: 8% 0 10%;
}
.qa h2 {
  text-align: center;
  color: #42210b;
}

.qa_contents {
  width: 95%;
  margin: auto;
  margin-top: 5%;
  background-color: #fff;
}
.question {
  position: relative;
  padding: 5% 2% 5% 16%;
}
.Q {
  color: #42210b;
}
.answer {
  position: relative;
  padding: 5% 2% 5% 16%;
  margin-top: 2%;
}
.A {
  color: #ff0b34;
}
.qa_contents span {
  position: absolute;
  background-color: #fff;
  padding: 0 3%;
  border-radius: 5px;
  font-weight: bold;
  top: 50%;
  left: 2%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.qa_contents hr {
  width: 90%;
  margin: 0 auto;
}

.section08 {
  position: relative;
}
.section08 a {
  position: absolute;
  top: 82%;
  left: 5%;

}

/* ------------------------------------------------------------
  fotter
------------------------------------------------------------ */
.company {
  margin: 5% auto;
  text-align: center;
}
.company h2 {
  background-color: #fff9c5;
  text-align: center;
  padding: 5%;
}

/* table01 */
#table01 {
  margin: auto;
  margin-top: 5%;
  width: 90%;
  max-width: 700px;
}
#table01 tr {
  border-bottom: 1px solid #b5b1b1;
}

#table01 th,
#table01 td {
  padding: 15px 10px;
  border: none;
  background-color: #e6e6e6;
}

#table01 th {
  width: 30%;
}
#table01 td {
  text-align: left;
}
#table01 td span {
  font-size: .8rem;
}
.company a {
  display: block;
  margin-top: 5%;
  color: #333333;
}

.c-footer {
  background-color: #f15a24;
  padding: 5% 0;
  text-align: center;
}
.c-footer .copyright {
  color: #fff;
}

.section03 .web_cta:hover{
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

/*新規追加　クイックマネープラスとは*/
/*アコーディオン*/
.lp-accordion-container {
  margin: 0 auto;
  background-color: #FFFAE1;
  text-align: left;
  padding: 10px;
}
.lp-accordion-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #8b623a;
  text-align: center;
}
.lp-accordion-header img{
  width: 50px;
  margin-bottom: 20px;
}
span.highlight {
  font-size: 1.5rem;
}
.lp-accordion-title {
  display: flex;
  align-items: center; 
  background-color: #95C251;
  border-radius: 10px;
  padding: 10px 15px;
  cursor: pointer;
  justify-content: center;
  position: relative;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.lp-accordion-title .lp-accordion-icon {
  width: 24px; 
  height: 24px;
  background: url('../img/arrow01.png') no-repeat center / contain;
  position: absolute;
  right: 0;
  margin-right: 10px;
}
.lp-accordion-title .lp-accordion-icon.open {
  background-image: url('../img/arrow02.png');
}
.lp-accordion-content {
  display: none;
  padding: 20px 10px;
  background: none;
  color: #333;
}
.lp-accordion-content p{
  font-weight: bold;
  text-align: center;
}
.yellow-line{
  background: linear-gradient(transparent 70%, #ffff8d 70%);
}
.orange {
  display: block;
  border-radius: 50px;
  padding: 12px;
  width: 90%;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  text-decoration: none;
  background: linear-gradient(
    180deg,
    #f9c29d 0%,
    #f9c29d 50%,
    #f4904d 50%,
    #f4904d 100%
  );
  border: solid 1px #f4904d;
  box-shadow: 0 1px 2px #606060, 0 0 2px #FFF inset;
  margin: auto;
  margin-bottom: 3%;
  margin-top: 8px;
  animation: none;
}
.cta-container {
  text-align: center;
  margin: 40px auto;
}
.cta-text {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 5px 0;
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  position: relative;
}
.cta-text::before,
.cta-text::after {
  content: "";
  position: absolute;
  top: 50%; 
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background-color: #333;
}
.cta-text::before {
  left: -50px;
  transform: translateY(-50%) rotate(60deg);
}
.cta-text::after {
  right: -50px;
  transform: translateY(-50%) rotate(-60deg);
}
#floating{
  position: fixed;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: auto;
  z-index: 100;
}
.c-footer{
  padding-bottom: 25%;
}