@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Asap+Condensed:600');

/*additional reset
---------------------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body.safari #content,
body.safari #footer {
  /*サファリでリンク先から戻った時文字が拡大する対応*/
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  margin: 0;
}

p {
  font-size: 17px;
  line-height: 1.7;
}

/** link **/
a:link {
  text-decoration: underline;
  display: inline-block;
}

a:visited {
  color: #fff;
}

a:hover,
a:active {
  text-decoration: none;
}


.overview_text {
  color: #fff;
}

/*初期設定
----------------------------------------------------*/
#wrapper {
  width: 100%;
  padding: 0 0 0 0;
  overflow: hidden;
  margin: auto;
  position: relative;
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

@media screen and (min-width:640px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

@media screen and (max-width:640px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  #wrapper {
    max-width: 750px;
  }
}

/*layout
----------------------------------------------------*/
img {
  width: 100%;
}

.mv_inner {
  position: relative;
  margin: auto;
  width: 100%;
}


/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 17px;
  width: 52px;
  height: 52px;
  cursor: pointer;
  text-align: center;
  background-color: #1c7cde;
  border-radius: 4px;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 3px;
  left: 11px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 14px;
}

.hamburger span:nth-child(2) {
  top: 24px;
}

.hamburger span:nth-child(3) {
  top: 34px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 25px;
  left: 11px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 25px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 79px;
  right: 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 400px;
}

nav.globalMenuSp ul {
  background: #ebebeb;
  margin: 0 auto;
  padding: 0 0 40px;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

header {
  /*position: fixed;*/
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 99;
}

header .logo {
  max-width: 300px;
  width: 30%;
}

.h_right {
  display: flex;
  padding-top: 19px;
  padding-bottom: 15.5px;
  padding-right: 0px;
  align-items: center;
  justify-content: center;
}
a.mail_btn {
  width: 37%;
}

.tel_line {
  display: flex;
}

.h_tel {
  width: 52px;
}

.h_tel img {
  width: 100%;
}

.h_line {
  width: 52px;
  margin-left: 13px;
}

.h_right p {
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  margin-right: 20px;
  padding: 8px 0;
}

.h_right .fsM {
  font-weight: bold;
  font-size: 23px;
}

.red {
  color: red;
}

/*header　電話area*/
.h_right p.tel_txt {
  padding: 0;
  margin: 0 0 3px;
  font-size: 13px;
  text-align: center;
}

.tel_area2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tel_img {
  width: 13%;
  margin: 0 5px 0 0;
}

.tel_img img {
  margin: 0 5px 0 0;
}

.tel_a {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.tel_a a {
  font-size: 25px;
  font-weight: bold;
  color: #f44919;
}

.tel_a p {
  padding: 0;
  margin: 3px 0 0;
  font-size: 12px;
}

@media screen and (max-width:650px) {
  .tel_area {
    width: 100%;
  }

  .tel_a a {
    font-size: 13px;
  }
}

@media screen and (max-width:440px) {
  .h_right p.tel_txt {
    font-size: 10px;
  }
}

@media screen and (max-width:375px) {
  .tel_area {
    width: 100%;
  }
  .tel_a a {
    font-size: 12px;
  }

}

@media screen and (max-width:440px) {
  .h_right p.tel_txt {
    font-size: 10px;
  }
}

.hour p {
  font-size: clamp(20px, 2.5vw, 35px);
  font-weight: bold;
  z-index: 1;
}

/* 点滅 */
.blinking {
  -webkit-animation: blink 0.7s ease-in-out infinite alternate;
  -moz-animation: blink 0.7s ease-in-out infinite alternate;
  animation: blink 0.7s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (max-width:650px) {
  .hour p {
    font-size: min(5.2vw, 35px);
  }
}

#hour {
  position: relative;
  z-index: 1;
}

.hour-all {
  position: absolute;
  right: 8.9%;
  z-index: 1;
  top: 5.2%;
}

.cta {
  max-width: 1000px;
  margin: -280px auto 0;
  width: 90%;
}

.cta_inner01 {
  background-color: #1c7cde;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: clamp(20px, 2.5vw, 25px);
  padding: 10px 0;
}

.cta_inner01 p {
  font-size: clamp(20px, 2.5vw, 25px);
}

.hour2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.cta_inner02 {
  position: relative;
  z-index: 1;
}

.cta_inner02 a {
  position: absolute;
  max-width: 700px;
  width: 70%;
  top: 26%;
  left: 6%;
  filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.4));
}

#shiny {
  display: block;
  overflow: hidden;
}

#shiny::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }

  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }

  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}


.cta_area {
  margin: 0 0 4%;
}

/*--- 時間表示箇所 ---*/
#Realtime,
#Realtime01,
#Realtime02,
#Realtime03 {
  font-size: 1.8em;
  padding: 3% 0 0% 0%;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 768px) {

  #Realtime,
  #Realtime01,
  #Realtime02,
  #Realtime03 {
    font-size: 1em;
    padding: 3% 0 3% 0%;
    font-weight: bold;
    text-align: center;
  }
}


/* cta ボタン */
.cta_in {
  display: block;
  margin: 0;
}

.cta_tel {
  position: relative;
  width: 85%;
  z-index: 1;
  max-width: 650px;
  margin: 1% auto;
}

/* cta　波紋 */
.cta_tel a::before,
.cta_tel a::after {
  content: "";
  position: absolute;
  z-index: -10;
  width: 93%;
  height: 97%;
  top: 0;
  left: 4%;
  border-radius: 10px;
  transform: translate3d(0, 0, 0);
}

/* cta_telボタン　アニメーション */
.cta_tel a::before,
.cta_tel a::after {
  content: "";
  position: absolute;
  z-index: -10;
  width: 93%;
  height: 97%;
  top: 0;
  left: 4%;
  border-radius: 10px;
  transform: translate3d(0, 0, 0);
}

.cta_tel a::before {
  animation: aura 3s ease-out infinite;
}

.cta_tel a::after,
.cta02 a::after {
  animation: aura 3s ease-out 1.5s infinite;
}

.cta_tel a::before,
.cta_tel a::after {
  background: #ff0202b6;
}



@media only screen and (max-width: 1000px) {
  .cta_tel {
    position: relative;
    width: 55%;
    z-index: 1;
    max-width: 650px;
    margin: 1% auto;
  }
}

@media only screen and (max-width: 768px) {
  .cta_tel {
    position: relative;
    width: 90%;
    z-index: 1;
    max-width: 650px;
    margin: 1% auto;
  }
}

@keyframes aura {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }

  90% {
    opacity: 0.1;
  }

  to {
    transform: scale(1.2, 1.5);
    opacity: 0;
  }
}

@keyframes aura2 {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }

  90% {
    opacity: 0.1;
  }

  to {
    transform: scale(1.1, 1.2);
    opacity: 0;
  }
}

/* ここまで　cta_telボタン　アニメーション */

.scroll_txt {
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  margin: 5px auto;
}

.dot_wrap {
  position: relative;
  margin-bottom: 100px;
}

@media only screen and (max-width: 768px) {
  .dot_wrap {
    position: relative;
    margin-bottom: 30px;
  }
}

.scroll-indicator {
  position: absolute;
  top: 31%;
  left: 50%;
  transform: translate(-50%, 10%);
  z-index: 10;
  height: 100px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #000;
  margin-bottom: 10px;
  /* ドットの間のマージンを追加 */
  animation: blink 1s infinite alternate;
  opacity: 0;
}

.dot:nth-child(1) {
  animation-delay: 0.2s;
}

.dot:nth-child(2) {
  animation-delay: 0.4s;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.2;
  }
}



@media only screen and (max-width: 768px) {
  .dot {
    width: 6px;
    height: 6px;
    margin-bottom: 6px;
  }

  .scroll-indicator {
    transform: translate(-50%, 4%);
  }


}

.fsS {
  position: relative;
  font-size: 12px;
  z-index: 2;
}

.arrow {
  display: block;
  width: 100px;
  margin: auto;
}

/* キャンペーン */
.cp {
  margin: 30px 0 0;
  background-color: #20b8ec;

}

.cp_inner01 {
  position: relative;
  max-width: 1200px;
  margin: 90px auto 20px;
  padding: 4%;
}

@media only screen and (max-width: 768px) {
  .cp_inner01 {
    position: relative;
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 4%;
  }
}

.maker {
  margin: -20px auto;
  background-color: #cff3ff;

}

.maker_inner01 {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 4%;
  padding-bottom: 2%;
}

@media only screen and (max-width: 768px) {
  .cp_inner01 {
    position: relative;
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 4% 4% 13% 4%;
  }

  .maker {
    margin: -32px auto;
    background-color: #cff3ff;


  }

  .maker_inner01 {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 4% 4% 6% 4%;
  }
}

.comparison {
  margin: auto;
  background-color: #fff;

}

.comparison_inner01 {
  max-width: 1200px;
  margin: auto;
  padding: 4%;
}

@media only screen and (max-width: 768px) {
  .comparison {
    margin: -32px auto;
    background-color: #fff;


  }

  .comparison_inner01 {
    max-width: 1200px;
    margin: auto;
    padding: 4% 4% 7% 4%;
  }
}

.com_content img {
  max-width: 100%;
  padding: 1.5% 100px 20px;
  vertical-align: top;
}

@media screen and (max-width:767px) {


  .com_content img {
    max-width: 100%;
    min-width: 150%;
    vertical-align: top;
    padding: 0;


  }

  .com_content {
    overflow-x: scroll;

  }



  /* スクロールバーの幅と高さを設定する */
  .scroll {
    overflow: auto;
  }

  .simplebar-track.simplebar-horizontal {
    height: 2px;
    background: #dddddd;
    border-radius: 5px;
    max-width: 370px;
    margin: 0 auto;
  }
}

.moya {
  position: absolute;
  width: 40px;
  right: 9%;
  top: 49%;
}

.nayami_titile {
  max-width: 850px;
  margin: auto;
  width: 75%;
}

.modal {
  max-width: 1300px;
  margin: 40px auto 0;
  width: 90%;
}

/* モーダルを開くボタン */
.modal__trigger {
  cursor: pointer;
  width: 23%;
  position: relative;
}

.yubi {
  position: absolute;
  max-width: 100px;
  width: 40%;
  bottom: -15%;
  right: 0;
}

/* モーダル本体 */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
}

.modal__layer {
  height: 100%;
  background: rgba(50, 50, 50, .85);
  cursor: pointer;
}

.modal__container {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 40px), 700px);
  padding: 20px;
  background: #fff;
}

.modal__inner {
  position: relative;
  overflow-y: scroll;
  height: 100%;
  padding: 0 20px 20px;
}

/* モーダルを閉じるボタン */
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(50, 50, 50, 1);
  cursor: pointer;
  transition: opacity .6s;
}

.modal__close:hover {
  opacity: .6;
}

.modal__close:before,
.modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: '';
}

.modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__text {
  margin-top: 20px;
  line-height: 2.875;
  text-align: center;
}

.modal__text p {
  color: #003999;
  font-weight: bold;
}

.modal__text span {
  color: #C80000;
  font-size: 1.2rem;
}

.modal .inner02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

nav.globalMenuSp.active p {
  text-align: center;
  margin: 0;
  padding: 20px 0;
}

b {
  font-weight: bold;
}

nav.globalMenuSp ul li a {
  max-width: 300px;
  width: 90%;
  text-align: left;
  margin: auto;
  color: #20b8ec;
  font-weight: bold;
}

nav.globalMenuSp ul li a::before {
  content: "▼";
  margin-right: 10px;
}

a.h_cta_tel {
  display: block;
  padding: 15px;
  background: darkorange;
  width: 85%;
  margin: auto;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 45px;
  filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.4));
}

a.h_cta_line {
  display: block;
  padding: 15px;
  background: #29c02f;
  width: 90%;
  margin: 15px auto 0;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 25px;
  filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.4));
}

a.modal_cta_tel {
  display: block;
  max-width: 400px;
  width: 90%;
  margin: 27px auto;
  filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.4));
}

.cp_box02 {
  max-width: 1000px;
  width: 80%;
  margin: 0% auto 25px;
}

.cp_box03 {
  max-width: 1000px;
  width: 97%;
  margin: 0% auto 25px;
}

.tac {
  text-align: center;
  width: 90%;
  margin: auto;
}

.cta02 {
  margin: 0 auto 0;
  width: 100%;
  position: relative;
}

.cta_top {
  width: 100%;
  margin: 0px auto 80px;
}

.pay_gazou {
  width: 80%;
  margin: 0px auto;
}

.maker_wrap {
  background-color: #209bff;
  background-image: url(../img/maker_bg_pc.png);
  background-position: right;
  background-size: cover;
  margin: 0 auto;
  padding: 60px 0;
  margin-top: 40px;
}

.pay {
  margin: 0 auto 0;
  width: 50%;
  position: relative;
}

@media screen and (max-width:640px) {
  .pay {
    margin: 70px auto 0;
    width: 80%;
    position: relative;
  }

  .pay_gazou {
    width: 90%;
    margin: 0px auto;
  }

}

.reason {
  background-image: url(../img/reasonbg_pc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

.reason_inner01 {
  margin: auto;
  padding: 90px 0;
}

.reason_titile {
  margin: 70px auto;
  width: 45%;
}

.reason_inner02 {
  width: 100%;
  margin: 20px auto 20px;
}

.reason_inner02 img {
  width: 100%;
}

.w1000 {
  max-width: 1000px;
  margin: auto;
  width: 90%;
}

.check {
  position: relative;
  margin-top: 10px;
}

.check_inner01 {
  max-width: 1000px;
  margin: 0 auto 0;
  padding-bottom: 6%;
}

.check_titile {
  /* max-width: 620px; */
  margin: auto;
  /*padding: 180px 0 0;*/
  padding: 80px 0 0;
  width: 70%;
}

.check_box01 {
  max-width: 620px;
  margin: auto;
  width: 70%;
  padding: 30px 0 0;
}

.check_box02 {
  display: block;
  max-width: 620px;
  margin: auto;
  width: 70%;
  padding: 0 0 10px;
}

.solution {
  position: relative;
  margin-top: -46px;
  z-index: -1;
}

.solution_contents {
  width: 60%;
  margin: auto;
  padding: 3% 3% 0% 3%;
}

.solution_contents2 {
  width: 60%;
  margin: auto;
  padding: 3%;
}

.solutionbg {
  background-image: url(../img/solution_bg_pc.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width:640px) {
  .solution_contents {
    width: 100%;
    margin: auto;
    padding: 5%;
  }

  .solution_contents2 {
    width: 100%;
    margin: auto;
    padding: 5%;
  }
}

.achievement {
  background-color: #20b8ec;
}

.achievements {
  width: 56%;
  margin: auto;
  padding: 3%;
}

@media screen and (max-width:640px) {
  .achievements {
    width: 100%;
    margin: 30px auto;
    padding: 5%;
  }
}

.point {
  background-image: url(../img/point_bg_pc.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.point_inner01 {
  max-width: 1300px;
  margin: 0 auto 0;
}

.point_titile {
  max-width: 700px;
  margin: auto;
  padding: 80px 0 40px;
  width: 90%;
}

@media screen and (max-width:640px) {
  .point_titile {
    padding: 40px 0 0;
  }
}

.attention_inner01 p {
  text-align: center;
  color: #fff;
  width: 90%;
  margin: auto;
}

.point_titile02 {
  max-width: 750px;
  margin: auto;
  padding: 40px 0 40px;
  width: 90%;
}

.point_inner02 {
  max-width: 1000px;
  width: 90%;
  padding: 0 0 80px;
  margin: auto;
  position: relative;
}

.point_inner02 img {
  width: 70%;
  margin: auto;
}

@media screen and (max-width:640px) {
  .point_inner02 img {
    width: 100%;
    margin: auto;
  }

  .solution {
    position: relative;
    margin-top: -30px;
    z-index: -1;
  }
}

.attention_bg {
  position: relative;
  margin-top: -46px;
  z-index: -1;
}

.attention {
  background-image: url(../img/attentionbg_pc.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: -110px;
  z-index: -1;
}

.attention_inner01 {
  max-width: 1300px;
  margin: 0 auto 0;
}

.attention_titile {
  max-width: 700px;
  margin: auto;
  padding: 150px 0 40px;
  width: 90%;
}

.attention_inner01 p {
  text-align: center;
  color: #fff;
  width: 90%;
  margin: auto;
}

.attention_titile02 {
  max-width: 800px;
  margin: auto;
  padding: 40px 0 80px;
  width: 90%;
}

.attention_inner02 {
  max-width: 1000px;
  width: 90%;
  padding: 0 0 80px;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  justify-content: space-between;
  position: relative;
}

.attention_inner02 img {
  width: 74%;
  margin: auto;
}

.area {
  background-image: url(../img/areabg_pc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.area_inner01 {
  max-width: 1300px;
  margin: 0 auto 0;
  padding-bottom: 100px;
}

.area_title {
  max-width: 700px;
  margin: auto;
  padding: 110px 0 40px;
  width: 85%;
}

.area_box {
  max-width: 850px;
  margin: 0 auto 10px;
  width: 90%;
}

.tar {
  text-align: right;
}

@media screen and (max-width:640px) {
  .area_title {
    font-size: 12px;
    padding: 0px 0 40px;
  }
}

.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  margin: 0 auto;
  width: 90%;
}

.slider img {
  height: auto;
}

.slider .slick-slide {
  transform: scale(0.8);
  /*左右の画像のサイズを80%に*/
  transition: all .5s;
  /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;
  /*透過50%*/
}

.slider .slick-slide.slick-center {
  transform: scale(0.9);
  /*中央の画像のサイズだけ等倍に*/
  opacity: 1;
  /*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev {
  position: absolute;
  content: '';
  display: inline-block;
  background-image: url(../img/arrow02.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  top: 45%;
  cursor: pointer;
  height: 50px;
  width: 50px;
  z-index: 2;
  left: 50px;
}

.slick-next {
  position: absolute;
  content: '';
  display: inline-block;
  background-image: url(../img/arrow01.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  top: 45%;
  right: 50px;
  cursor: pointer;
  height: 50px;
  width: 50px;
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 10px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 5px;
  /*ドットボタンのサイズ*/
  height: 5px;
  /*ドットボタンのサイズ*/
  display: block;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: #ccc;
  /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333;
  /*ドットボタンの現在地表示の色*/
}

.voice {

  padding-bottom: 60px;
}

.voice_titile {
  max-width: 750px;
  margin: auto;
  padding: 90px 0 50px;
  width: 100%;
}

.accordion2 {
  max-width: 850px;
  margin: 40px auto 0;
  width: 90%;
}

.accordion2 .toggle {
  display: none;
}

.accordion2 .Label {
  /*タイトル*/
  padding: 20px;
  display: block;
  color: #fff;
  background: #20b8ec;
  text-align: left;
  font-weight: 500;
  font-size: 19px;
  border-radius: 10px;
}

.accordion2 .Label::before {
  content: "";
  display: inline-block;
  background-image: url(../img/q_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  cursor: pointer;
  height: 30px;
  width: 30px;
  margin-right: 15px;
}

.accordion2 .Label::after {
  /*タイトル横の矢印*/
  content: "";
  width: 9px;
  height: 9px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
  transform: rotate(135deg);
}

.accordion2 .Label,
.accordion2 .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion2 .content {
  /*本文*/
  height: 0;
  margin-bottom: 17px;
  padding: 0 20px;
  overflow: hidden;
  text-align: left;
}

.toggle:checked+.Label+.content {
  /*開閉時*/
  height: auto;
  padding: 20px;
  transition: all .3s;
}

.toggle:checked+.Label::after {
  transform: rotate(-45deg) !important;
}

.qa_title {
  display: block;
  max-width: 300px;
  margin: auto;
  padding: 90px 0 10px;
  width: 90%;
}

.qa {
  margin-bottom: 200px;
}

.end {
  background-image: url(../img/bg06_pc.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
}

.end img {
  max-width: 600px;
  width: 90%;
  margin: 0 auto 0;
}

/* footer {
  background-color: #133061;
  padding: 40px 0;
  color: #fff;
  text-align: center;
  font-size: 13px;
} */
footer img {
  /* width: 250px;
  margin-bottom: 20px; */
  margin: 0 auto 20px;
}

footer a {
  color: #fff;
  line-height: 1.4;
}

.slider2 {
  display: none !important;
}

/* モーダルウィンドウ */
.madal_container {
  background: rgba(0, 0, 0, .7);
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10000;
}

.madal_contents {
  height: auto;
  position: absolute;
  top: 44%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.madal_contents span {
  cursor: pointer;
  position: absolute;
  top: -44px;
  right: -30px;
  color: #fff;
  font-size: 2em;
  z-index: 11111;
  font-weight: bold;
}

.active {
  display: block !important;
  animation-name: fadeIn;
  animation-duration: .2s;
  animation-fill-mode: both;
}

@media screen and (max-width:640px) {
  .h_right p {
    padding: 0 0;
  }

  .h_right .fsM {
    font-size: 12px;
  }

  .hamburger {
    right: 10px;
    top: 11px;
    width: 38px;
    height: 40px;
  }
  .hamburger span {
    width: 28px;
}

  .hamburger span {
    left: 5px;
  }

  .hamburger span:nth-child(1) {
    top: 8px;
  }

  .hamburger span:nth-child(2) {
    top: 19px;
  }

  .hamburger span:nth-child(3) {
    top: 30px;
  }

  .h_tel {
    width: 40px;
  }

  .h_line {
    width: 40px;
    margin-left: 0;
  }

  .h_right {
    padding-top: 11.3px;
    padding-right: 57px;
    padding-bottom: 9px;
    width: 66%;
  }
  a.mail_btn {
    width: 26%;
}

  .mv {
    background-image: none;
    /*margin-top: 65px;*/
  }

  nav.globalMenuSp {
    top: 65px;
    width: 100%;
  }

  .hamburger.active span:nth-child(1) {
    top: 20px;
    left: 5px;
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 20px;
  }

  .mv_inner {
    padding: 0;
    width: 100%;
  }

  .hour-all {
    right: 39.9%;
    top: 29%;
  }

  .cta {
    position: relative;
    margin: -133px auto 0;
  }

  .cta_inner01 p {
    font-size: 16px;
  }

  .cta_inner01 p {
    font-size: 16px;
  }

  .cta_inner01 {
    font-size: 16px;
    line-height: 2;
  }

  .cta_inner02 a {
    width: 66%;
    top: 37%;
    left: 4%;
    filter: drop-shadow(2px 4px 2px rgba(0, 0, 0, 0.3));
  }

  .fsS {
    font-size: 8px;
  }

  .arrow {
    width: 65px;
    margin: 10px auto 0;
  }

  .check {
    margin-top: 40px;
  }

  .maker_wrap {
    background-color: #209bff;
    background-image: url(../img/maker_bg_sp.jpg);
    background-size: cover;
    margin: 0 auto;
    padding: 40px 0;
    margin-top: 25px;
  }

  .modal__trigger {
    width: 47%;
    margin-bottom: 20px;
  }

  .modal {
    width: 93%;
    margin: 2% auto 0;
  }

  .modal__inner {
    padding: 0;
  }

  .modal__text {
    margin-top: 0;
  }

  .modal__container {
    padding: 10px;
  }

  .modal__close {
    top: 0px;
    right: 0px;
    width: 26px;
    height: 25px;
  }

  a.modal_cta_tel {
    margin: 15px auto;
    font-size: 30px;
  }

  .cp_box02 {
    margin: 2% auto 4%;
    width: 97%;
  }

  .cp_box03 {
    margin: 2% auto 10%;
    width: 97%;
  }

  .cta_top {
    margin: 0px auto 25px;

  }

  .reason {
    background-image: url(../img/reasonbg_sp.png);
  }

  .reason_titile {
    width: 90%;
    margin: 30px auto;
  }

  .reason_inner01 {
    padding: 40px 0;
  }

  .reason_inner02 img {
    width: 100%;
  }

  .check_titile {
    /* padding: 40px 0 0; */
    width: 85%;
  }

  .check_box01 {
    width: 90%;
    padding: 0;
  }

  .check_box02 {
    padding: 20px 0 15px;
  }

  .attention_titile {
    padding: 15px 0 15px;
    width: 80%;
  }

  .attention_titile02 {
    padding: 20px 0 20px;
  }

  .attention_inner02 img {
    width: 100%;
    margin-bottom: 20px;
  }

  /* .attention_inner01 {
  padding-bottom: 0;
} */
  .flow {
    background-image: url(../img/bg03_sp.jpg);
  }

  .flow_title {
    padding: 40px 0 20px;
  }

  .flow_inner01 {
    padding-bottom: 40px;
  }

  .area_inner01 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .area_title_sp {
    margin: 0 auto 30px;
    width: 70%;
  }

  .area_box01_sp {
    margin: 0 auto 0;
    width: 90%;
  }

  .voice_titile {
    padding: 40px 0 25px;
    width: 65%;
  }

  .slider {
    display: none !important;
  }

  .slider2 {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    margin: 0 auto 0;
    width: 90%;
    display: block !important;
  }

  .slider2 img {
    height: auto;
  }

  .slider2 .slick-slide {
    transform: scale(0.8);
    /*左右の画像のサイズを80%に*/
    transition: all .5s;
    /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 0.5;
    /*透過50%*/
  }

  .slider2 .slick-slide.slick-center {
    transform: scale(1);
    /*中央の画像のサイズだけ等倍に*/
    opacity: 1;
    /*透過なし*/
  }

  .slick-prev {
    height: 30px;
    width: 30px;
    left: -5px;
  }

  .slick-next {
    right: -5px;
    height: 30px;
    width: 30px;
  }

  .accordion2 .Label::before {
    height: 25px;
    width: 25px;
    margin-right: 1px;
  }

  .accordion2 .Label {
    padding: 13px 35px 13px 42px;
    font-size: 16px;
    text-indent: -27px;
  }

  .toggle:checked+.Label+.content {
    padding: 13px;
  }

  .toggle:checked+.Label+.content p {
    font-size: 16px;
    line-height: 1.4;
  }

  .accordion2 .content {
    margin-bottom: 10px;
  }

  .qa_title {
    padding: 40px 0 10px;
    width: 50%;
  }

  .accordion2 {
    margin: 20px auto 0;
  }

  .qa {
    margin-bottom: 40px;
  }

  .end {
    background-image: url(../img/bg06_sp.jpg);
    padding-top: 10px;
  }

  .madal_contents {
    width: 75%;
    top: 47%;
  }
}

.privacy {
  width: 90%;
  max-width: 1000px;
  margin: 140px auto 100px;
  word-break: break-all;
}

.privacy h1 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.nayami {
  background: url(../img/bg03_pc.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.problem {
  padding-top: 3%;
  width: 50%;
  margin: auto;
}

@media screen and (max-width:640px) {
  .problem {
    padding-top: 7%;
    width: 90%;
    margin: auto;
  }
}

.check_titile_02 {
  margin: auto;
  padding: 130px 0 0;
  width: 70%;
}


.footer_block {
  background-color: #133061;
  color: #fff;

}

footer.footer_block.cleafix.js_footer_flow {
  opacity: 0;
  transition: all 0.65s;
}

footer.footer_block.cleafix.js_footer_flow.isActive {
  opacity: 1;
  transition: all 0.65s;
}


.footer_box {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  /*padding: 0% 0 1%;*/
  background-color: #133061;
  /* display: none; */
  z-index: 100;
  transition: 0.5s;
  box-sizing: border-box;
}

.footer_woman {
  position: absolute;
  left: 31%;
  width: 10%;
  top: -6%;
  z-index: 102;
}

.tel_btn {

  width: 100%;
}

.footer_box .footer_p_01 {
  display: block;
  width: 20%;
  position: absolute;
  top: 3%;
  left: calc(41.7% + 1%);
  font-size: 19px;

}

.footer_box .footer_p_02 {
  display: block;
  width: 20%;
  position: absolute;
  top: 20%;
  left: calc(41.7% + 1%);
  ;
  font-size: 19px;
}

.tel_btn img {
  width: 27%;
  margin: 0px auto;
  border-radius: 10px;
}

.footer_box a {
  filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.4));
}

.footer_block .-js-show {
  transform: translate(0);
  visibility: visible;
}

.footer {
  background: #133061;
}

.check_triangle {
  background-image: url(../img/triangle_bg03_pc.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  position: absolute;
  top: -6%;
  left: 0;
  width: 100%;
  height: 300px;
}

.attention_triangle {
  background-image: url(../img/triangle_bg04_pc.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 99%;
  left: 0;
  width: 100%;
  height: 300px;
  /* z-index: 100; */

}

@media screen and (max-width:1024px) {
  .check {
    margin-top: -30px;
  }

  .check_triangle {
    top: 0;
  }

  .check_titile_02 {
    padding: 80px 0 0;
  }

  .check_inner01 {
    padding-bottom: 16%;
  }

  .attention_titile {
    padding: 130px 0 0px;
  }

  .end img {
    margin: 0 auto 0;
  }

  .footer_box .footer_p_01 {
    font-size: 20px;
    width: 59%;
    left: calc(calc(24% + 1%));
    top: 10px;
  }

  .tel_btn img {
    width: 50%;
  }

}

/*@media screen and (min-width:1025px) {*/
/*  .footer_box .footer_p_01 {*/
/*    font-size: 23px;*/
/*    width: 57%;*/
/*    left: calc(calc(24% + 1%));*/
/*    top:-5%;*/
/*    }*/
/*    .tel_btn img {*/
/*      width: 43%;*/
/*    }*/

/*    .end img {*/
/*        margin:0 auto 14%;*/
/*    }*/
/*}*/


@media screen and (max-width:768px) {

  header .logo {
    width: 33%;
  }

  .tel_line {
    gap: 8px;
  }

  .footer_box .footer_p_01 {
    font-size: 21px;
    width: 60%;
    left: calc(calc(22% + 1%));
    top: 26px;
  }

  .footer_box {
    padding: 5% 0 1%;
  }

  .end {
    padding-top: 40px;
  }

  .end img {
    margin: 5% auto 0;
  }

  .check_triangle {
    top: 0%;
  }

  .check_titile {
    padding: 120px 0 0;
  }

  .check_titile_02 {
    padding: 80px 0 0;
  }

  .tel_btn img {
    width: 60%;
  }
}

@media screen and (max-width:498px) {
  .footer_box .footer_p_01 {
    font-size: 17px;
    width: 65%;
    left: calc(calc(22% + 1%));
    top: 10px;
    white-space: nowrap;
  }

  .footer_box {
    padding: 5% 0 1%;
  }

  .end {
    padding-top: 14px;
  }

  .end img {
    margin: 5% auto 0;
  }

  .tel_btn img {
    width: 78%;
  }
}

@media screen and (max-width:425px) {
  .footer_box .footer_p_01 {
    font-size: 14px;
    width: 65%;
    left: calc(calc(22% + 1%));
    top: 8px;
    white-space: nowrap;
  }

  .footer_box {
    padding: 5% 0 1%;
  }

  .end {
    padding-top: 14px;
  }

  .end img {
    margin: 5% auto 0;
  }

  .tel_btn img {
    width: 76%;
  }
}


@media screen and (max-width:640px) {
  .check {
    background-image: url(../img/bg03_pc.jpg);
    background-size: cover;
    background-repeat: no-repeat;
  }

  .check_triangle {
    top: -3%;
    background-size: 200%
  }

  .check_titile_02 {
    margin: auto;
    padding: 50px 0 0;
    width: 70%;
  }

  .check_inner01 {
    /*margin: 90px auto 0;*/
    margin: 10px auto 0;
    padding-bottom: 14%;
    width: 90%;
  }

  .check_titile {
    /*padding: 90px 0 20px;*/
    padding: 10px 0 20px;
  }


  .sale {
    margin: 20px auto 0;
  }

  /* .check */

  .attention_inner02 {
    padding: 0 0 30px;
  }

  .nayami {
    background-image: url(../img/bg01_sp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
  }

  .nayami_inner01 {
    padding: 2% 0 14%;
  }
}

@media screen and (max-width:640px) {
  .nayami {
    margin-top: 5px;
  }

  .nayami {
    margin: 15px 0 0;
    background-image: url(../img/problembg_sp.png);
  }

  .nayami_titile {
    width: 65%;
    margin-top: 6%;
  }
}


/*問い合わせエリア MV下*/
.cta-area {
  margin: 0 0 3%;
}

.cta_ba {
  text-align: center;
  font-size: min(7vw, 30px);
  font-weight: bold;
  color: #fff;
  background-color: #0060ff;
}

.cta_ba p {
  text-align: center;
  font-size: min(7vw, 30px);
}

p.cta_txt {
  text-align: center;
  font-size: min(7vw, 25px);
  font-weight: bold;
  color: #fff;
  margin: 5px auto;
}

.cta_img {
  max-width: 740px;
  margin: auto;
  position: absolute;
  border-radius: 5px;
  top: 86%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.cta_img img {
  z-index: 1;
  position: relative;
}

.cta_img a {
  position: relative;
  transition: .2s;
}

.cta_img a::before,
.cta_img a::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 10px;
  transform: translate3d(0, 0, 0);
  max-width: 700px;
}

.cta_img a::before {
  animation: aura 3s ease-out infinite;
}

.cta_img a::after {
  animation: aura 3s ease-out 1.5s infinite;
}

.cta_img a::before,
.cta_img a::after {
  background: #ffa4a4;
  border: 1px solid #ffa4a4;
}

@keyframes aura {
  0% {
    transform: scale(.95);
    opacity: 1
  }

  50% {
    opacity: .1
  }

  to {
    transform: scale(1.2, 1.5);
    opacity: 0
  }
}

@keyframes aura2 {
  0% {
    transform: scale(.95);
    opacity: 1
  }

  50% {
    opacity: .1
  }

  to {
    transform: scale(1.1, 1.2);
    opacity: 0
  }
}

@media screen and (max-width:640px) {
  .cta-area {
    margin: 0 0 3%;
    position: relative;
    top: -200px;
  }

  p.cta_txt {
    color: #0060ff;
  }

  .cta_img {
    padding: 2% 3%;
    margin: 45px auto 20px;
    top: 76%;
    width: 90%;
  }

  .cta_ba {
    font-size: min(8vw, 19px);
  }

  .cta_ba p {
    font-size: min(8vw, 19px);
  }

  .cta_icon p {
    width: 46%;
    font-size: 15px;
  }

  .cta-area .fsS {
    padding: 2% 3%;
  }
}

@media screen and (max-width:515px) {
  .cta-area {
    top: -168px;
  }
}

@media screen and (max-width:435px) {
  .cta-area {
    top: -141px;
  }
}

.triangle3 {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 50px solid #fff;
  margin: 0 auto;
}

@media screen and (max-width:640px) {
  .triangle3 {
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 30px solid #b0ebff;
  }
}

/*追従*/
.tui {
  position: fixed;
  bottom: 0;
  text-align: center;
  z-index: 99;
  background-color: #0060ff;
  padding: 60px 0 5px;
  width: 100%;
}

.tui div {
  max-width: 450px;
  width: 90%;
  margin: 0 auto;
}

.btn-tui {
  margin-top: 50px;
}

.po_r {
  position: relative;
}

.po_a {
  position: absolute;
  bottom: 98%;
  right: 0;
  left: 0;
}

.po_a img {
  max-width: 470px;
  width: 90%;
}

.tui img {
  vertical-align: bottom;
}

.pagetop.DownMove {
  animation: DownAnime 0.5s forwards;
}

.pagetop.UpMove {
  animation: UpAnime 0.5s forwards;
}

.footer {
  transition: 0.5s;
}

.is-hidden {
  visibility: hidden;
  opacity: 0;
  transition: .5s;
}

.tui_link {
  display: flex;
  justify-content: space-between;
}

.tui_link a {
  width: 48%;
}

@media screen and (max-width:640px) {
  .tui {
    padding: 50px 0 5px;
  }

  .tui div {
    padding: 5px;
    width: 100%;
  }

  .po_a {
    bottom: 80%;
  }

  .tui_link a {
    width: 49%;
  }
}

.archive {
  width: 100%;
}

.archive01 {
  width: 100%;
  padding-top: 5%;
}

.archive02 {
  width: 30%;
  margin: auto;
  display: block;
  padding-bottom: 5%;
}

@media screen and (max-width:640px) {
  .archive02 {
    padding: 20px 0 20px;
    width: 40%;
  }
}

.shine {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
}

.shine::before {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  width: 50px;
  height: 50px;
  top: -60px;
  left: -60px;
  animation-name: shine-run;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  z-index: 2;
}

@keyframes shine-run {
  0% {
    transform: scale(0) rotate(50deg);
    opacity: 0;
  }

  40% {
    transform: scale(1) rotate(50deg);
    opacity: 1;
  }

  100% {
    transform: scale(250) rotate(50deg);
    opacity: 0;
  }
}

/*問い合わせ
---------------------------------------------------*/
#form {
  background: #EAF7FD;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  padding-bottom: 3%;
}

#form h2 {
  color: #133061;
  background: none;
  padding: 110px 0 40px;
  text-align: center;
  font-weight: 900;
  font-size: 4rem;
}

.form_inner {
  background: #fff;
  border-radius: 15px;
  max-width: 840px;
  margin: 0 auto;
  padding: 50px;
}

.form_inner table {
  width: 100%;
}

#form th,
#form td {
  display: block;
  text-align: left;
  padding: 7px 0;
}

#form th {
  font-weight: 600;
}

.must {
  background: #e7370d;
  color: #fff;
  font-size: 13px;
  border-radius: 10px;
  display: inline-block;
  line-height: 1em;
  padding: 5px 10px;
  margin-left: 10px;
  vertical-align: middle;
}

.adress .fsS {
  font-size: 12px;
}

input,
textarea {
  border-radius: 0;
  line-height: 1em;
}

input[type="text"],
textarea,
input[type="tel"],
input[type="email"],
input[type="number"] {
  padding: 10px;
  border: none;
  margin: 0;
  display: block;
  background: #f3f3f3;
  font-family: inherit;
  -webkit-appearance: none;
  font-size: inherit;
  width: 100%;
  border-radius: 10px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="submit"] {
  -webkit-appearance: none;
}

textarea {
  height: 14em;
  width: 100%;
  display: block;
  resize: vertical;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input[type="submit"] {
  -webkit-appearance: none;
}

input[type="submit"] {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  background: #F62A2A;
  color: #fff;
  text-align: center;
  font-size: 28px;
  width: 70%;
  padding: 25px;
  margin: 0 auto;
  display: block;
  font-weight: 600;
  border-radius: 20px;
  margin-top: 10px;
}

.confirmation th {
  border-bottom: #133061 solid 1px;
}

.confirmation td {
  padding-bottom: 20px !important;
}

.confirmation .submitbtn {
  display: flex;
  justify-content: center;
  margin-top: 5%;
}

.confirmation input[type="submit"] {
  width: 43%;
  margin: 0;
}

.confirmation #footer p {
  text-align: center;
  line-height: 1;
  font-size: 12px;
  margin-top: 20px;
}

.confirmation #footer a {
  color: #999;
}

.backbtn {
  background: #585f63;
  width: 43%;
  margin: 40px auto 0;
  text-align: center;
  font-size: 28px;
  display: block;
  font-weight: 600;
  border-radius: 20px;
  padding: 25px;
}

.backbtn a {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width:640px) {
  #form {
    padding-bottom: 12%;
  }

  #form h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    padding: 7% 0;
  }

  .form_inner {
    padding: 8% 20px;
    width: 90%;
  }

  .adress .fsS {
    font-size: 12px;
  }

  input[type="submit"],
  .backbtn {
    padding: 14px;
    font-size: 20px;
  }

  .backbtn {
    width: 80%;
  }
}

.sp_dis {
  display: none;
}

.pc_dis {
  display: block;
}

.po_b {
  position: fixed;
  z-index: 3;
  right: 0px;
  bottom: 140px;
}

@media screen and (max-width:640px) {
  .sp_dis {
    display: block;
  }

  .pc_dis {
    display: none;
  }
}

.pp_box {
  background: #f3f3f3;
  padding: 20px;
  overflow: auto;
  height: 200px;
  font-size: 14px;
  width: 90%;
  margin: auto;
  max-width: 750px;
}


.mb-2 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 1%;
}

.pp {
  margin-bottom: 200px;
}

.overview {
  text-align: center;
  font-size: 20px;
  background-color: #ababab;
  padding: 3% 0 10% 0;
}

@media screen and (max-width:1600px) {
  .overview {
    text-align: center;
    font-size: 20px;
    background-color: #ababab;
    padding: 3% 0 15% 0;
  }
}

@media screen and (max-width:1080px) {
  .overview {
    text-align: center;
    font-size: 20px;
    background-color: #ababab;
    padding: 3% 0 23% 0;
  }
}

@media screen and (max-width:640px) {
  .pp_box {
    background: #f3f3f3;
    padding: 20px;
    overflow: auto;
    height: 200px;
    font-size: 14px;
    width: 90%;
    margin: auto;
  }

  .mb-2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5%;
  }

  .pp {
    margin-bottom: 60px;
  }

  p {
    font-size: 14px;
  }

  .overview {
    text-align: center;
    font-size: 16px;
    background-color: #ababab;
    padding: 7% 0 50% 0;
  }
}

/* 二次代理店募集 */
.boshu {
  padding-bottom: 120px;
}

.boshu h3 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 1%;
  color: #20B8EC;
}

.boshu p {
  text-align: center;
  font-size: 22px;
  padding-bottom: 40px;
}

@media screen and (max-width:640px) {
  .boshu {
    padding-bottom: 10%;
  }

  .boshu h3 {
    font-size: 30px;
  }

  .boshu p {
    font-size: 17px;
  }
}