@charset "UTF-8";

body,
div,
form,
input,
button,
textarea,
p {
  margin: 0;
  padding: 0;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

a img {
  border-style: none;
}

img {
  vertical-align: bottom;
}

button {
  font-size: 1em;
  background-color: transparent;
  border: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

*:focus {
  outline: none;
}

button:hover {
  cursor: pointer;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-thumb {
  background: #333;
}

body::-webkit-scrollbar-track {
  background: #F1F8FF;
}

/*--------------------------------------------------------
サイト毎に変化のある定数
--------------------------------------------------------*/

.center_img {
  margin-left: -400px;
}

.center_img2 {
  margin-left: -450px;
}

.area800 {
  width: 800px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.area900 {
  width: 900px;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.area1600 {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.area1800 {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.op0 {
  opacity: 0;
}

/*--------------------------------------------------------
定数
--------------------------------------------------------*/

.c {
  text-align: center !important;
}

.cm {
  margin-left: auto;
  margin-right: auto;
}

.ml20p {
  margin-left: 20px;
}

.mt10p {
  margin-top: 10px;
}

.mt20p {
  margin-top: 20px;
}

.mt30p {
  margin-top: 30px;
}

.mt40p {
  margin-top: 40px;
}

.mt50p {
  margin-top: 50px;
}

.mt60p {
  margin-top: 60px;
}

.mt70p {
  margin-top: 70px;
}

.mt80p {
  margin-top: 80px;
}

.mt90p {
  margin-top: 90px;
}

.mt100p {
  margin-top: 100px;
}

.mt200p {
  margin-top: 200px;
}

.mt500p {
  margin-top: 500px;
}

.mt1000p {
  margin-top: 1000px;
}

.mt2000p {
  margin-top: 250%;
}

.pt10p {
  padding-top: 10px;
}

.pt20p {
  padding-top: 20px;
}

.pt30p {
  padding-top: 30px;
}

.pt40p {
  padding-top: 40px;
}

.pt50p {
  padding-top: 50px;
}

.pt60p {
  padding-top: 60px;
}

.pt70p {
  padding-top: 70px;
}

.pt80p {
  padding-top: 80px;
}

.pt90p {
  padding-top: 90px;
}

.pt100p {
  padding-top: 100px;
}

.pb100p {
  padding-bottom: 100px;
}

.pb200p {
  padding-bottom: 200px;
}

.pb300p {
  padding-bottom: 300px;
}

.visible600 {
  display: none !important;
}

.visible800 {
  display: none !important;
}

.visible900 {
  display: none !important;
}

.relative {
  position: relative;
}

.z1 {
  z-index: +1;
}

.z2 {
  z-index: +2;
}

.z3 {
  z-index: +3;
}

.z99 {
  z-index: +9999;
}

/*横幅*/

.w100 {
  width: 100%;
}

.w90 {
  width: 90%;
}

.w80 {
  width: 80%;
}

.w70 {
  width: 70%;
}

.w60 {
  width: 60%;
}

.w50 {
  width: 50%;
}

.w40 {
  width: 40%;
}

.w30 {
  width: 30%;
}

.w20 {
  width: 20%;
}

.w10 {
  width: 10%;
}

.inline_b {
  display: inline-block;
}

.pointer {
  cursor: pointer;
}

.span span {
  display: inline-block;
}
.picture {
  display: flex;
  justify-content: center;
}
.green {
  color: #3cbf97;
}
.gray {
  color: #6b6b6b;
}

/*-------------------------------------
err
-------------------------------------*/

.err_msg {
  font-size: 0.8em;
  color: #ff0000;
}

.err_msg2 {
  font-size: 1em;
  color: #ff0000;
  margin: 0.5em 0em 0 0;
}

/*--------------------------------------------------------
ヘッダー
--------------------------------------------------------*/

/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
footer {
  text-align: center;
}

.copyright {
  padding: 10px 0;
  text-decoration: none;
}

.copyright {
  font-size: 14px;
  color: #6b6b6b;
}

@media screen and (max-width: 650px) {
  .copyright {
    font-size: 12px;
  }
}
/***********
* pickup *
************/
@-webkit-keyframes pickup {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes pickup {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.pickup {
  display: block;
  -webkit-animation-name: pickup;
          animation-name: pickup;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
/*--------------------------------------------------------
フォーム 
--------------------------------------------------------*/
input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
}

input::placeholder {
  color: #b1b1b1;
}

/* IE11 & IE10 */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #b1b1b1;
}

/* Edge */
input::-ms-input-placeholder {
  color: #b1b1b1;
}

input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select {
  width: 100%;
  border: none;
  font-size: 1.3em;
  padding: 0.3em 0.6em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 3px solid #64e2be;
  border-radius: 0% !important;
  border-radius: 15px !important;
}

.field {
  font-size: 1.6em;
}

.inner {
  width: 85%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.inner .title {
  font-size: 1.8em;
  padding-bottom: 0.2em;
  color: #64e2be;
}

select option.placeholder {
  color: #b1b1b1;
  /* プレースホルダーの色 */
}

/* 選択後に通常の色に戻す */
select:invalid {
  color: #b1b1b1;
}

select:valid {
  color: #000;
}

.wrap {
  position: relative;
  z-index: +2;
}

.wrap::after {
  content: "\025bc";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  font-size: 1.1em;
  top: -0.7em;
  right: 0.8em;
  width: 0.8em;
  height: 0.8em;
  color: #64e2be;
  margin: auto;
  pointer-events: none;
}

button {
  background-color: transparent;
  border: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  font-size: 1em;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
section:focus,
main:focus,
article:focus,
nav:focus,
header:focus,
footer:focus,
div:focus,
a:focus {
  outline: none;
}

button:hover {
  cursor: pointer;
}

/*--------------------------------------------------------
特定商・プライバシーポリシー
--------------------------------------------------------*/
.white_box {
  padding: 5%;
  border: 2px solid #3cbf97;
  background-color: #fff;
  border-radius: 30px;
}

.white_box.lawtext {
  padding: 2%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.white_box.lawtext>div {
  padding: 1%;
  height: 15em;
  overflow-y: scroll;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.white_box .w90 {
  width: 100%;
}

.scroll::-webkit-scrollbar {
  width: 17px;
}

/* .lawtext .scroll::-webkit-scrollbar-track-piece:start,
.lawtext .scroll::-webkit-scrollbar-track-piece:end {
  box-shadow: none;
  background: #ccc;
} */

/* .lawtext .scroll::-webkit-scrollbar-thumb {
  background: #005032;
} */

.lawtext h2 {
  font-size: 1.2em;
  font-weight: bold;
  color: #005032;
}

.law_list {
  padding-bottom: 1em;
}

/*--------------------------------------------------------
チェックボックス
--------------------------------------------------------*/
.checkbox {
  display: flex;
  justify-content: center;
  font-size: 20px;
  margin-left: 7%;
}

.checkbox label {
  position: relative;
  display: block;
  cursor: pointer;
  width: auto;
  margin-right: 0.5em;
  margin-left: 0.5em;
}

.checkbox label span.txt {
  display: inline-block;
  line-height: 1.3;
  position: relative;
  font-size: 35px;
}

.checkbox label input {
  display: none;
}

.checkbox label input+span.txt::before {
  content: "";
  display: block;
  background: #fff;
  width: 1em;
  height: 1em;
  box-shadow: none;
  margin-right: 0.7em;
  position: absolute;
  left: -1.5em;
  border: 1px solid #001932;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.checkbox label input:checked+span.txt::after {
  content: "";
  display: block;
  position: absolute;
  left: -1em;
  width: 0.5em;
  height: 1.3em;
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
  border-bottom: 3px solid #3cbf97;
  border-right: 4px solid #3cbf97;
  top: 4%;
}
/*--------------------------------------------------------
//各種設定
--------------------------------------------------------*/
.info_txt {
  max-width: 800%;
  width: 95%;
  font-size: 30px;
}

.to_area {
  margin-top: 10%;
  max-width: 800%;
  width: 95%;
}

.modoru {
  margin-top: 15%;
  font-size: 25px;
  width: 100%;
  color: #FFBA39;
  text-align: center;
}

.kiyaku {
  font-size: 35px;
}

.pay_btn {
}

/*--------------------------------------------------------
popup
--------------------------------------------------------*/
.popup {
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  position: fixed;
  top: -10px;
  left: 0;
  right: 0;
  bottom: -10px;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.popup .in {
  width: 85%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 100px;
}

.popup .container {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.popup .more {
  width: 100%;
  max-width: 800px;
  -webkit-transition: margin 1s ease;
  -moz-transition: margin 1s ease;
  -ms-transition: margin 1s ease;
  -o-transition: margin 1s ease;
  transition: margin 1s ease;
  border: none;
}

.popup .more .tx>div {
  padding-bottom: 1em;
}

.popup .more .tx>div:last-child {
  padding-bottom: 0;
}

.popup.is-show {
  opacity: 1;
  visibility: visible;
}

.popup .popup_btn {
  position: absolute;
  top: 77%;
  width: 100%;
}


.popup_text {
  font-size: 16px;
  position: absolute;
  bottom: 7.5%;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  width: 100%;
}

.close_btn {
  width: 100%;
  text-align: right;
  position: absolute;
  top: 1%;
  padding-right: 1%;
}

.close_btn p {
  display: inline-block;
  cursor: pointer;
}

/*--------------------------------------------------------
TOP
--------------------------------------------------------*/
.video {
  position: absolute;
  top: 16.4%;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.drfs99 {
  margin-top: 3%;
}
.trouble {
  position: absolute;
  top: 0;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.step {
  position: absolute;
  top: 0;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.button2 {
  position: relative;
  z-index: 2;
  margin-top: -12%;
}
.bg-blue {
  background-color: #e3fdf8;
}
.drfs_hidari {
  position: absolute;
  top: 30%;
}
.drfs_migi {
  position: absolute;
  top: 30%;
  right: 0;
}
.slick-dots {
  bottom: -50px !important;
}
.slick-dots li button:before {
    font-size: 15px !important;
}
.drfs22 {
  padding-top: 40px;
}
.start {
  position: absolute;
  top: 0;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.drfs11 {
  position: absolute;
  top: 0;
}
/* 初期状態で非表示かつ右にオフセット */
.animate-slide-right {
  opacity: 0;
  transform: translateX(100%);
  transition: all 1s ease-out;
}

/* 表示時の状態（元の位置に戻しつつ表示） */
.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.animate-fade-up {
  opacity: 0;
  transform: translateY(80%); /* 下から */
  transition: all 0.8s ease-out;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade, .animate-fade2 {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.animate-fade.visible {
  opacity: 1;
}
.animate-fade2.visible {
  opacity: 1;
}
.custom-rubber {
  animation-name: rubberSmall !important;
  animation-duration: 2s !important;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite !important;
}

/* 動き10%未満、静止90%以上 */
@keyframes rubberSmall {
  0%   { transform: scale3d(1, 1, 1); }
  5%   { transform: scale3d(1.04, 0.96, 1); }
  10%  { transform: scale3d(0.96, 1.04, 1); } 
  15%  { transform: scale3d(1, 1, 1); }
  100% { transform: scale3d(1, 1, 1); }
}

/*--------------------------------------------------------
confi
--------------------------------------------------------*/

.confi-name {
  position: absolute;
  top: 50%;
  font-size: 35px;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  font-weight: bolder;
}
.pp-notice {
  color: #6b6b6b;
  font-size: 25px;
}


/*--------------------------------------------------------
Pay
--------------------------------------------------------*/

.drfs_pay03 {
  margin-top: -3%;
}
.pay-notice {
  color: #6b6b6b;
  font-size: 25px;
}
.ginfuri {
  font-size: 25px;
}


