@charset "UTF-8";
/* =======================================
common
======================================= */
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: aliased;
}

body {
  margin: 0;
  padding: 0;
  font-size: 23px;
  line-height: 1.6;
  font-family: メイリオ, Meiryo, hiragino kaku gothic pron, ヒラギノ角ゴ pron w3, ＭＳ Ｐゴシック, ms pgothic, sans-serif;
  min-width: 960px;
  position: relative;
}

.formlp-front-section * {
  color: #333;
  font-family: helvetica, arial, "hiragino kaku gothic pro", meiryo, "ms pgothic", sans-serif;
  margin: 0px;
  padding: 0px;
  line-height: 1.4;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
  border: 0;
  width: 100%;
}

p {
  margin: 0 0 1em;
}

p.mt1em {
  margin-top: 1em;
}

p.mb0 {
  margin-bottom: 0;
}

small {
  font-size: 11px;
}

ul {
  margin-top: 0;
  margin-bottom: 1em;
  padding-left: 40px;
}

.PC {
  display: block;
}

.SP {
  display: none;
}

@media only screen and (max-width: 750px) {
  .SP {
    display: block;
  }
  .PC {
    display: none;
  }
  body {
    min-width: 100%;
  }
  div {
    max-width: 100%;
  }
  img {
    max-width: 100%;
  }
}
/* =======================================
padding margin
======================================= */
.pdt40 {
  padding-top: 40px;
}

.pdt60 {
  padding-top: 60px;
}

.pt60 {
  padding-top: 60px;
}

.pb30 {
  padding-bottom: 30px;
}

.pdb20 {
  padding-bottom: 20px;
}

.pdb40 {
  padding-bottom: 40px;
}

.pdb60 {
  padding-bottom: 60px;
}

.pdb90 {
  padding-bottom: 90px;
}

.pdb100 {
  padding-bottom: 100px;
}

@media only screen and (max-width: 750px) {
  .pdb90 {
    padding-bottom: 30px;
  }
  .pt60 {
    padding-top: 20px;
  }
}
/* =======================================
padding margin
======================================= */
.main {
  width: 100%;
  height: auto;
  text-align: center;
}

.main img {
  max-width: 960px;
  width: 100%;
  height: auto;
}

.contents {
  overflow: hidden;
  text-align: center;
}

.contents-inner {
  width: 960px;
  background: #fff;
  margin: 0 auto;
  text-align: center;
}

/* =======================================
btn
======================================= */
.btn-area {
  position: relative;
  padding: 0 0 20px;
}
.btn-area small {
  text-align: right;
  display: block;
  position: absolute;
  width: 95%;
  height: 1em;
  top: auto;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: auto;
}
.btn-area .btn img {
  width: 100% !important;
  border: 0 !important;
  background-color: unset !important;
}
.btn-area a {
  border: 0 !important;
  background-color: unset !important;
}

.btn {
  position: relative;
  display: block;
  width: 100%;
  height: 300px;
  transition: 1s all;
  z-index: 1;
}
.btn:hover {
  transform: scale(1.2, 1.2);
  transition: 1s all;
  opacity: 0.8;
}
.btn .btn-main {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-animation: move_btn 10s ease-out infinite;
          animation: move_btn 10s ease-out infinite;
  width: 200px;
}

@-webkit-keyframes move_btn {
  0% {
    transform: scale(1);
  }
  74% {
    transform: scale(1);
  }
  79% {
    transform: scale(1.1);
  }
  83% {
    transform: scale(1);
  }
  87% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(1);
  }
  92% {
    transform: scale(1.02);
  }
  94% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes move_btn {
  0% {
    transform: scale(1);
  }
  74% {
    transform: scale(1);
  }
  79% {
    transform: scale(1.1);
  }
  83% {
    transform: scale(1);
  }
  87% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(1);
  }
  92% {
    transform: scale(1.02);
  }
  94% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.mini-btn-area {
  position: relative;
  padding: 0;
  width: 50%;
  margin-left: 50%;
}
.mini-btn-area + .-pdb60 {
  padding-bottom: 60px;
}

.mini-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 156px;
  transition: 1s all;
  z-index: 1;
}
.mini-btn:hover {
  transform: scale(1.2, 1.2);
  transition: 1s all;
  opacity: 0.8;
}
.mini-btn.mini-btn-main {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-animation: move_btn 10s ease-out infinite;
          animation: move_btn 10s ease-out infinite;
}

@keyframes move_btn {
  0% {
    transform: scale(1);
  }
  74% {
    transform: scale(1);
  }
  79% {
    transform: scale(1.1);
  }
  83% {
    transform: scale(1);
  }
  87% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(1);
  }
  92% {
    transform: scale(1.02);
  }
  94% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.newType {
  background-image: url("../img/mi_btn-main.png");
  background-position: center center;
  background-repeat: no-repeat;
  height: 800px;
  width: 700px;
  margin: 0 auto;
}
.newType .btn-main {
  position: absolute;
  display: block;
  width: 300px;
  background: transparent;
  transition: 1s all;
  border: 0;
  z-index: 1;
  top: 100px;
  right: 48px;
}

.newType .btn-main {
  position: absolute;
  display: block;
  width: 300px;
  background: transparent;
  transition: 1s all;
  border: 0;
  z-index: 1;
  top: 100px;
  right: 48px;
}

.newType {
  background-image: url("../img/mc_btn_main.png");
  background-position: center center;
  background-repeat: no-repeat;
  height: 800px;
  width: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 750px) {
  .btn {
    height: auto;
  }
  .mini-btn {
    height: auto;
  }
  .mini-btn .mini-btn-main {
    position: relative;
  }
  .mini-btn-area {
    position: relative;
    padding: 0;
    width: 100%;
    margin-left: 0;
  }
  .btn-area {
    position: relative;
    padding: 0 0 20px;
  }
  .btn-area .btn img {
    width: 100% !important;
    border: 0 !important;
    background-color: unset !important;
  }
  .btn-area a {
    border: 0 !important;
    background-color: unset !important;
  }
  .btn-area small {
    text-align: right;
    display: block;
    position: relative;
    width: 95%;
    height: auto;
    top: auto;
    bottom: auto;
    right: 0;
    left: 0;
    margin: auto;
  }
  .newType {
    background-image: url(../img/mi_btn-main.png);
    background-position: center center;
    background-size: contain;
    background-position: top center !important;
    height: 360px;
    width: 320px;
    margin: 16px auto;
    max-width: 100%;
  }
  .newType .btn-main {
    position: absolute;
    display: block;
    width: 123px;
    background: transparent;
    transition: 1s all;
    border: 0;
    z-index: 1;
    top: 59px;
    right: 33px;
  }
  .newType {
    background-image: url("../img/mc_btn_main.png");
    background-position: center center;
    background-size: contain;
    background-position: top center !important;
    height: 300px;
    width: 320px;
    margin: 16px auto;
  }
  .newType .btn-main {
    position: absolute;
    display: block;
    width: 100px;
    background: transparent;
    transition: 1s all;
    border: 0;
    z-index: 1;
    top: 50px;
    right: 48px;
  }
}
/* =======================================
original
======================================= */
.free-html-src {
  width: 100%;
  max-width: 800px;
  padding: 0 30px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .free-html-src {
    padding: 0 10px;
  }
}
.free-html-src img.logo {
  max-width: 150px;
  margin: 10px auto;
}

.free-html-src label img {
  width: auto !important;
}

.free-html-src .btn {
  display: block;
  width: 80%;
  margin: 0 auto;
  border: none;
  box-shadow: none;
  transition: 0.8s transform;
  height: auto;
}

.free-html-src .btn:hover {
  transform: scale(1.1);
  transition: 0.8s transform;
}

.free-html-src .cta {
  position: relative;
}

.free-html-src .btn-cta {
  position: absolute;
  top: 17%;
  right: 12%;
  display: block;
  border: none;
  box-shadow: none;
  -webkit-animation: anime 2s infinite;
          animation: anime 2s infinite;
}

@-webkit-keyframes anime {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes anime {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (max-width: 768px) {
  .free-html-src .btn-cta {
    width: 40vw;
  }
}
.free-html-src .btn-cta:hover {
  opacity: 0.8;
}

.free-html-src .w80 {
  width: 80% !important;
}

.free-html-src .mb100 {
  margin-bottom: 100px;
}

.free-html-src .mt100 {
  margin-top: 100px;
}

.free-html-src .mb50 {
  margin-bottom: 50px;
}

.free-html-src .mt50 {
  margin-top: 50px;
}

.input_border {
  max-width: 100% !important;
}

.question {
  text-align: left;
}

.question-wrap {
  display: flex;
  align-items: center;
  margin: 30px 0 30px 50px;
}

.question-wrap .question-img {
  width: 100% !important;
  max-width: 700px !important;
}

.question-wrap input[type=radio],
.question-wrap input[type=checkbox] {
  transform: scale(3);
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .question-wrap input[type=radio],
.question-wrap input[type=checkbox] {
    transform: scale(2);
    margin-right: 10px;
  }
}
@media screen and (max-width: 400px) {
  .question-wrap {
    margin: 20px 0 20px 20px;
  }
  .question-wrap {
    margin: 20px 0 20px 20px;
  }
  .question-wrap input[type=radio],
.question-wrap input[type=checkbox] {
    transform: scale(1.5);
    margin-right: 10px;
  }
}
/*--------------------
footer
--------------------*/
#footer {
  width: 960px;
  font-size: 14px;
  font-family: "ヒラギノ角ゴ Pro W3", "Arial";
  text-align: center;
  margin: 0 auto;
  padding: 30px 0 0;
  background-color: #ffffff;
}
#footer img {
  margin: 0 auto;
}

#footer-inner {
  width: 880px;
  margin: 0 auto;
  padding: 10px 0px;
  border-top: #DEDEDE solid 1px;
  border-bottom: #DEDEDE solid 1px;
}

#footer,
#footer a {
  color: #000000;
}

#footer ul {
  justify-content: space-between;
  display: flex;
  margin: 0 auto;
  padding: 0 0 30px;
  width: 890px;
}

#footer .ft-external-link, #footer .ft-logo-4 {
  justify-content: center;
}

#footer .ft-logo-4 li {
  margin: auto;
}

#footer .ft-external-link {
  line-height: normal;
}

#footer .coinfo {
  font-size: 12px;
  line-height: 140%;
  font-family: "ヒラギノ角ゴ Pro W3", "Arial";
}

#footer .footer-logo li {
  padding-left: 0;
}

#footer .footer-logo li img {
  width: 80%;
}

#footer .coinfo .fs_big {
  font-size: 120%;
  line-height: 150%;
  font-weight: bold;
}

.refund_text {
  text-align: right;
  padding-right: 50px;
  font-size: 18px;
}

#footer p {
  margin: 20px 0 0 0;
  width: 100%;
  padding: 0;
  text-align: center;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 1.6;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*-------------------------------------------
 20250510追加追加
-----------------------------------------------*/
.sp {
  display: none !important;
}

#fl_btn {
  position: fixed;
  display: none;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 708px;
  z-index: 999;
}
#fl_btn a {
  display: inline-block;
  width: 708px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.85;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none;
  }
  img {
    width: 100%;
  }
  #fl_btn {
    position: fixed;
    display: none;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 94.4vw;
    z-index: 999;
  }
  #fl_btn a {
    display: inline-block;
    width: 94.4vw;
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */