@charset "UTF-8";
/*------------------------------------------
サイズ
------------------------------------------*/

/*▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼
▼ ヘッダー
▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼*/
/*#header__top {
  background-color: #00B964;
}

#header.act #header__middle {
  position: fixed;
}

#header__middle {
  width: 100%;
  background-color: #FDF9EC;
  top: 0;
  left: 0;
  z-index: 99;
}*/


#header__middle .inner {
  padding: 15px 0;
  max-width: 1000px;
  width: 98%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  box-shadow: 0px 10px 10px -5px rgb(0 0 0 / 20%);
}

header .inner .logo {
  max-width: 232px;
}

@media screen and (max-width: 1000px) {
  #header__middle .inner {
    display: block;
    width: 100%;
    padding: 0;
    position: relative;
  }
}

/* @media screen and (max-width: 640px) {
  #header__middle .inner {
    display: block;
    width: 100%;
    padding: 0;
  }
} */

/* #header__left {
  position: relative;
} */

@media screen and (max-width: 640px) {
  #header__left {
    padding: 15px 10px;
  }
}

@media screen and (max-width: 1000px) {
  #header__right {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 99;
    background-color: #FDF9EC;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  }
  #header__left {
    padding: 15px 10px;
  }
}

#header__title {
  color: #fff;
  font-size: 11px;
  line-height: 1em;
  padding: 10px;
}

#header__logo {
  max-width: 340px;
}

@media screen and (max-width: 640px) {
  #header__logo {
    width: 251px;
  }
}

#header__logo img {
  width: 100%;
}

.header__tel {
  width: 255px;
  margin-left: auto;
  margin-bottom: 10px;
}

.header__tel img {
  width: 255px;
}

@media screen and (max-width: 1000px) {
  .header__tel {
    margin: 15px auto;
  }
  .header__tel.pc{
    display: none!important;
  }
  .header__tel.sp{
    display: block!important;
  }
}

@media screen and (max-width: 1000px) {
  .header__humb.sp{
    display: block!important;
  }
}

.header__humb {
  width: 42px;
  height: 40px;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  background-size: 42px 40px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__humb img {
  width: 100%;
}

.header__humb[data-on="off"] {
  background-image: url("../img/icon_humb.png");
}

.header__humb[data-on="on"] {
  background-image: url("../img/icon_tojiru.png");
}

/*====================================================================================
メニュー
====================================================================================*/
#globalNav > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  #globalNav > * {
    display: block;
    width: 100%;
    background-color: #00B964;
  }
}

.globalNav__item {
  white-space: nowrap;
}

.globalNav__item:not(:last-child) {
  margin-right: 15px;
}

@media screen and (max-width: 1000px) {
  .globalNav__item:not(:last-child) {
    margin-right: 0;
    border-bottom: 1px solid #fff;
  }
}

.globalNav__item > * {
  font-size: 15px;
  position: relative;
  line-height: 1.8;
}

.globalNav__item > *:after {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  border: .3em solid transparent;
  border-top: 0.5em solid #00B964;
  border-bottom: 0;
  margin-left: 5px;
}

/* @media screen and (max-width: 1050px) {
  .globalNav__item > * {
    font-size: 14px;
  }
} */

@media screen and (max-width: 1000px) {
  .globalNav__item > * {
    color: #fff;
    font-size: 16px;
    display: block;
    padding: 8px;
    position: relative;
  }
  .globalNav__item > *:after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border: 5px solid transparent;
    border-left: 8px solid #fff;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    position: absolute;
    right: 10px;
    top: 50%;
    z-index: 10;
    margin-left: 0;
  }
}


/*====================================================================================
ボタン
====================================================================================*/

@media screen and (max-width: 640px) {
  .btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.btn > * {
  color: #fff;
  display: block;
  text-align: center;
  line-height: 1em;
  padding: 15px 0;
  position: relative;
}

.btn > *:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  position: absolute;
  right: 10px;
  top: 50%;
}

.btn.long {
  width: 450px;
  font-size: 14px;
}

@media screen and (max-width: 640px) {
  .btn.long {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.btn.type02 {
  width: auto;
  background-color: #00B964;
}

.btn.type02 > * {
  font-size: 12px;
  line-height: 1em;
  padding: 10px 10px;
}

.btn.type02 > *:after {
  display: none;
}

.btn.clear {
  width: auto;
  background-color: #666967;
}

.btn.clear > * {
  padding-left: 15px;
  padding-right: 15px;
}

.btn.clear > *:after {
  display: none;
}

.btn.type03 {
  /* position: absolute; */
  width: 303px;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -81px;
  border-radius: none;
  background-image: url(../img/fv_form_pc_btn.png);
}

.btn.type04 {
  position: absolute;
  width: 303px;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -81px;
  border-radius: none;
  background-image: url(../img/fv_form_pc_btn.png);
}

.btn.inline {
  margin-left: 10px;
  display: inline-block;
}

@media screen and (max-width: 640px) {
  input.btn {
    width: 210px;
  }
}

.pageTop {
  position: fixed;
  right: 10px;
}

.pageTop > * {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1em;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 10px 15px;
  border-radius: 8px;
  position: relative;
}

.pageTop > *:after {
  content: "";
  display: inline-block;
  width: .75em;
  height: .75em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: 3px;
  margin-left: 10px;
}

.pageTop[data-on="on"] {
  opacity: 1;
  bottom: 10px;
  -webkit-transition: .5s;
  transition: .5s;
}

.pageTop[data-on="off"] {
  opacity: 1;
  bottom: -100px;
  -webkit-transition: .5s;
  transition: .5s;
}


/*====================================================================================
block07(ボーダー)
====================================================================================*/
.form-block {
  padding-top: 84px;
  padding-bottom: 60px;
  /* padding-bottom: 205px; */
}

/* .form-block-conf{
  padding-bottom: 270px;
} */

/* .form-thanks{
  padding-bottom: 0;
} */

.form-block-wrap{
  padding-bottom: 0px!important;
}

/* .form-block-add{
  margin-bottom: 200px!important;
} */

.form-block > *:not(:last-child) {
  margin-bottom: 30px;
}

.form-block .inner {
  padding: 40px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 640px) {
  .form-block .inner {
    padding: 0 5% 0 5%;
  }
}

/*------------------------------------------
リード文
------------------------------------------*/
.form-read {
  color: #131212;
  text-align: center;
  font-weight: 600;
  font-size: 25px;
}

/*------------------------------------------
フォームパーツ
------------------------------------------*/
.form__text {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 640px) {
  .form__text {
      margin-bottom: 5.6vw;
  }
}

.form__group {
  width: 100%;
  display: table;
  table-layout: fixed;
}

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

.form__group:not(:last-child) {
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
}

@media screen and (max-width: 640px) {
  .form__group:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.form__group > * {
  vertical-align: top;
  display: table-cell;
}

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

.form__itemGroup:not(:last-child) {
  margin-bottom: 10px;
}

.form__titArea {
  width: 300px;
  padding-right: 20px;
}

.form__tit {
  font-style: 14px;
  color: #131212;
  font-weight: bold;
}

.form__sab-tit{
  font-weight: 500;
}

.form__sab-tit_month{
  margin-top: 10px;
}

.form__sab-tit_day{
  margin-top: 10px;
}

.form__cont .text {
  margin-right: 10px;
}

.form__block:not(:last-child) {
  padding-bottom: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 640px) {
  .form__block:not(:last-child) {
    padding-bottom: 0;
    margin-bottom: 30px;
  }

  .form__titArea {
    width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1000px) {
  .nameInput {
    display: block;
    width: 100%;
  }
  .nameInput + .nameInput {
    margin-top: 10px;
    margin-left: 0;
  }
}

.form__att{
  display: block;
}

.hissu {
  color: #FFFFFF;
  background: #f00;
  padding: 1px 3px;
  font-size: 16px;
  font-weight: normal;
}

.nini {
  color: #FFFFFF;
  background: #afafaf;
  padding: 1px 3px;
  font-size: 16px;
  font-weight: normal;
}

label + label {
  margin-left: 15px;
}

input[type="text"], textarea {
  width: 100%;
  padding: 10px 10px;
  display: inline-block;
  border: 1px solid #CCCCCC;
  max-height: 100px;
}

input[type="text"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #ccc;
  font-weight: 300;
}

input[type="text"]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #ccc;
  font-weight: 300;
}

input[type="text"]::placeholder, textarea::placeholder {
  color: #ccc;
  font-weight: 300;
}

input[type="email"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #ccc;
  font-weight: 300;
}

input[type="email"]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #ccc;
  font-weight: 300;
}

input[type="email"]::placeholder, textarea::placeholder {
  color: #ccc;
  font-weight: 300;
}

#sei, #mei {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  #sei, #mei {
    width: calc(100% - 25px);
  }

  input[type="text"], textarea {
    font-size: 14px;
    padding: 5px 5px 5px 10px;
  }

  input[type="text"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 14px;
    padding: 5px 5px 5px 10px;
  }

  input[type="text"]:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 14px;
    padding: 5px 5px 5px 10px;
  }

  input[type="text"]::placeholder, textarea::placeholder {
    font-size: 14px;
    padding: 5px 5px 5px 10px;
  }

  input[type="email"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 14px;
    padding: 5px 5px 5px 10px;
  }

  input[type="email"]:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 14px;
    padding: 5px 5px 5px 10px;
  }

  input[type="email"]::placeholder, textarea::placeholder {
    font-size: 14px;
    padding: 5px 5px 5px 10px;
  }

  .addressNum input {
    width: 16em;
  }

  .addressNum + .addressNum {
    margin-left: 0;
  }

}

/*▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼
▼ フッター
▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼*/
#footer {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #193784;
  color: #fff;
}

#footer > * {
  text-align: center;
}

/*------------------------------------------
ロゴ
------------------------------------------*/
.footer__logo {
  width: 250px;
  height: 70px;
  margin: 0 auto 20px;
}

.footer__logo img {
  width: 100%;
}

/*------------------------------------------
リンク
------------------------------------------*/
.footer__link01 {
  margin-bottom: 45px;
}

.footer__link01 a:not(:last-child) {
  margin-right: 30px;
  border-right: #fff 1px solid;
}

.footer__link01 a {
  color: #fff;
  font-size: 18px;
  padding-right: 30px;
  /* text-decoration: underline; */
}

.footer__link02{
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer__link02 a {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  gap: 20px;
  /* text-decoration: underline; */
}

/*------------------------------------------
footer__fax
------------------------------------------*/

.footer__fax{
  color: #fff;
  font-size: 18px;
}

/*------------------------------------------
footer__address
------------------------------------------*/

.footer__address{
  color: #fff;
  font-size: 18px;
  margin-bottom: 40px;
}

/*------------------------------------------
コピーライト
------------------------------------------*/
.footer__copy {
  font-size: 14px;
}

@media screen and (max-width: 640px) {
  #footer {
    padding-top: 7.031vw;
    padding-bottom: 4.688vw;
    background-color: #193784;
    color: #fff;
  }
  
  #footer > * {
    text-align: center;
  }
  
  /*------------------------------------------
  ロゴ
  ------------------------------------------*/
  .footer__logo {
    width: 39.063vw;
    height: 10.938vw;
    margin: 0 auto 20px;
  }
  
  .footer__logo img {
    width: 100%;
  }
  
  /*------------------------------------------
  リンク
  ------------------------------------------*/
  .footer__link01 {
    margin-bottom: 7.031vw;
  }
  
  .footer__link01 a:not(:last-child) {
    margin-right: 4.688vw;
    border-right: #fff 1px solid;
  }
  
  .footer__link01 a {
    color: #fff;
    font-size: 2.813vw;
    padding-right: 4.688vw;
    /* text-decoration: underline; */
  }
  
  .footer__link02{
    justify-content: center;
    gap: 3.125vw;
    margin-bottom: 2.344vw;
  }
  
  .footer__link02 a {
    display: inline-block;
    color: #fff;
    font-size: 2.813vw;
    gap: 3.125vw;
    /* text-decoration: underline; */ 
  }

  /*------------------------------------------
  footer__fax
  ------------------------------------------*/

  .footer__fax{
    color: #fff;
    font-size: 2.813vw;
  }

  /*------------------------------------------
  footer__address
  ------------------------------------------*/

  .footer__address{
    color: #fff;
    font-size: 2.813vw;
    margin-bottom: 6.25vw;
    line-height: 1.6;
  }

  /*------------------------------------------
  コピーライト
  ------------------------------------------*/
  .footer__copy {
    font-size: 2.188vw;
  }

}

/* 202310 */
header .inner {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
}
header .inner h1 a {
    transition: .3s;
}
header .inner h1 a:hover {
    opacity: .7;
}
header .inner .header_btn a {
    display: block;
    transition: .3s;
}
header .inner .header_btn a:hover {
    opacity: .7;
}
form input[type="email"],

form textarea {
    padding: 5px 5px 5px 10px;
    box-sizing: border-box;
    background: #ffffff;
}
.fv_formarea .btnGroup input[type=submit] {
    transition: .3s;
    /* padding: 15px; */
    width: 303px;
    height: 111px;
    margin: 0 auto;
    /* margin: 0 auto 10px auto; */
    display: block;
    cursor: pointer;
}
.fv_formarea .btnGroup input[type=submit]:hover {
    opacity: .7;
}

/* 下部のフォーム */

/* #form{
  position: relative;
} */

#form .btn.type03 {
  /* position: absolute; */
  border-radius: none;
  background-image: url(../img/fv_form_pc_btn.png);
  background-size: 100%;
  /* top: 455px;
  left: 0;
  right: 0; */
  margin: 0 auto;
}

#form .btn-thanks {
  position: absolute;
  border-radius: none;
  background-image: url(../img/fv_form_pc_btn.png);
  background-size: 100%;
  top: 1141px!important;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#form .btn-confirm2 {
  position: absolute;
  border-radius: none;
  background-image: url(../img/fv_form_pc_btn.png);
  background-size: 100%;
  top: 811px!important;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#form .btnGroup input[type=submit] {
  transition: .3s;
  padding: 15px;
  width: 303px;
  height: 111px;
  margin: 0 auto;
  margin: 0 auto 10px auto;
  display: block;
  cursor: pointer;
}

#form .btnGroup input[type=submit]:hover {
  opacity: .7;
}

#form .back_btn {
  /* position: absolute; */
  width: 303px;
  height: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -10px;
}

/* .form-thanks02{
  padding-top: 160px;
} */

@media (max-width: 1000px) {
    header .inner {
        padding: 14px 13px;
    }
    header .inner h1 {
        margin-right: 10px;
    }
    #sei, #mei,
    #form input[type=email],
    input[type="text"], textarea {
        width: 100%;
        padding: 5px 5px 5px 10px;
        font-size: 16px;
    }
    
    .fv_formarea.btn.type03 {
      border-radius: none;
      background-image: url(../img/fv_form_pc_btn.png);
      background-size: 100%;
    }

    /* .form-block-conf{
      padding-bottom: 333px;
    } */

    .btnGroup input[type=submit] {
      transition: .3s;
      padding: 30px;
      width: 301px;
      height: 111px;
      margin: 0 auto 10px auto;
      margin: 0 auto 10px auto;
      display: block;
      cursor: pointer;
  }
  
  .btnGroup input[type=submit]:hover {
      opacity: .7;
  }

  #form .btn-thanks {
    position: absolute;
    border-radius: none;
    background-image: url(../img/fv_form_pc_btn.png);
    background-size: 100%;
    top: 1049px!important;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

}

@media (max-width: 750px) {

  .sp {
    display: block !important;
  }
  .pc {
    display: none;
  }
  .pc_only {
    display: none;
  }
  .tb_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .inner {
    width: 100%;
  }

  #form.form-block-wrap{
    padding-top: 27px!important;
  }

  .form-block{
    padding-top: 17.067vw!important;
    padding-bottom: 8vw!important;
  }

  .fv_formarea .btn.type03{
    border-radius: none;
    background-image: url(../img/form_btn_sp.png);
    background-size: 100%;
    width:87.867vw;
    margin: 0 auto;
  }

  #form .btn.type03 {
    /* position: absolute; */
    border-radius: none;
    background-image: url(../img/form_btn_sp.png);
    background-size: 100%;
    width:87.867vw;
    margin: 0 auto;
}

  #form .btn-confirm2 {
    position: absolute;
    border-radius: none;
    background-image: url(../img/form_btn_sp.png);
    background-size: 100%;
    top: 1186px!important;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

    #form .btn-thanks {
    position: absolute;
    border-radius: none;
    background-image: url(../img/form_btn_sp.png);
    background-size: 100%;
    top: 1393px!important;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {

  #form .btn-thanks {
    background-image: url(../img/form_btn_sp.png);
    top: 1270px!important;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  
  #form .btn-confirm2 {
    position: absolute;
    background-image: url(../img/form_btn_sp.png);
    background-size: 100%;
    top: 1033px!important;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {

  /* .form-block-conf2{
    padding-bottom: 248px!important;
  } */

  .fv_formarea .btnGroup input[type=submit]{
    padding: 30px!important;
    width: 100%!important;
    height: 22vw!important;
    border-radius: 15px;
    margin: 0 auto 10px auto;
    display: block;
    cursor: pointer;
  }

  .btn.type03 {
    border-radius: none;
    background-image: url(../img/form_btn_sp.png);
    background-size: 100%;
    bottom: -10.656vw;
  }
 .btnGroup input[type=submit] {
      transition: .3s;
      padding: 30px!important;
      width: 100%!important;
      height: 22vw!important;
      margin: 0!important;
      display: block;
      cursor: pointer;
  }
  .btnGroup input[type=submit]:hover {
      opacity: .7;
  }
/* 
  #form{
    padding-bottom: 150px;
  } */

  /* .form-block-conf{
    padding-bottom: 243px!important;
  } */

  #form .btn.type03 {
    /* position: absolute; */
    background-image: url(../img/form_btn_sp);
    background-size: 100%;
    /* width: 47.344vw;
    height: 17.344vw; */
    /* top: 400px;
    left: 0;
    right: 0; */
    margin: 0 auto;
  }

  #form .form-block-conf_ttl{
    margin-bottom: 16.6vw!important;
  }

  /* .form-thanks{
    padding-bottom: 0!important;
  } */




  #form .btn-confirm2 {
    position: absolute;
    background-image: url(../img/form_btn_sp.png);
    background-size: 100%;
    top: 749px!important;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  #form .btn-thanks {
    position: absolute;
    border-radius: none;
    background-image: url(../img/form_btn_sp.png);
    background-size: 100%;
    top: 1401px!important;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

}

@media (max-width: 480px) {
    #form .btn-thanks {
      position: absolute;
      border-radius: none;
      background-image: url(../img/form_btn_sp.png);
      background-size: 100%;
      top:1136px!important;
      left: 0;
      right: 0;
  }

  #form .btn-confirm2 {
    position: absolute;
    background-image: url(../img/form_btn_sp.png);
    background-size: 100%;
    top: 740px!important;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .form-block{
    padding-top:22.067vw!important;
  }

}


/*------------------------------------------
確認画面など
------------------------------------------*/
