@charset "UTF-8";
/* color
---------------------------------------------------------- */
/* btn style
---------------------------------------------------------- */
/*--------------------------------------------------------------------------
font size
--------------------------------------------------------------------------*/

/* main
---------------------------------------------------------- */

.textDetail {
  text-align: center;
  font-size: 16px;
  margin-top: 45px;
  margin-bottom: 20px;
  padding: 0 20px;
}

.textDetail p.caution {
  font-size: 14px;
  line-height: 1.5;
  color: #c7000b;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: left;
  padding-left: 14px;
  text-indent: -14px;  
}

.textDetail p.caution::before {
  content: "※";
}


@media print, screen and (min-width: 768px) {
  .textDetail {
    text-align: center;
    font-size: 24px;
    margin-top: 45px;
    margin-bottom: 20px;
    line-height: 30px;
    padding: 0;
  }

  .textDetail p.caution {
    font-size: 16px;
    line-height: 1.5;
    color: #c7000b;
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: center;
    padding-left: 0;
    text-indent: 0;  
  }

  .textDetail p.caution::before {
    content: "※";
  }
}

section#thanks {
  text-align: center;
  font-size: 14px;
  margin-top: 80px;
  margin-bottom: 30px;
}

section#thanks p {
  margin-bottom: 20px;
}

section#thanks p.thanks {
  font-size: 24px;
  font-weight: bold;
  color: #181848;
}

a.btnLinkTop {
  text-decoration: none;
  text-align: center;
  display: block;
  width: 260px;
  height: 60px;
  padding-top: 10px;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 40px;
  background-color: #181848;
  font-size: 14px;
  box-shadow: 0 4px 0 0 #cccccc;
  transition: background-color 0.3s ease-in-out;
  margin: 80px auto 0;
}

a.btnLinkTop:hover {
  background-color: #46466D;
  text-decoration: none;
}

a.btnLinkTop:active {
  box-shadow: 0 1px 0 0 #cccccc;
  position: relative;
  top: 2px;
  background-color: #46466D;
  text-decoration: none;
}


a.contact-link {
  width: 100%;
  max-width: 540px;
  font-size: 11px;
  line-height: 1.5;
  color: #181948;
  background: #d2e7ef;
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 30px;
  margin: 15px auto;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

a.contact-link:hover {
  background: #dff1f8;
}


@media print, screen and (min-width: 768px) {
section#thanks {
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  margin-top: 0px;
  margin-bottom: 30px;
}

section#thanks p {
  margin-bottom: 20px;
}

section#thanks p.thanks {
  font-size: 30px;
  line-height: 35px;
  font-weight: bold;
  color: #181848;
}

a.btnLinkTop {
  text-decoration: none;
  text-align: center;
  display: block;
  width: 500px;
  height: 90px;
  padding-top: 15px;
  color: #ffffff;
  border-radius: 40px;
  background-color: #181848;
  font-size: 24px;
  line-height: 30px;
  box-shadow: 0 4px 0 0 #cccccc;
  transition: background-color 0.3s ease-in-out;
  margin: 80px auto 0;
}

a.btnLinkTop:hover {
  background-color: #46466D;
  text-decoration: none;
}

a.btnLinkTop:active {
  box-shadow: 0 1px 0 0 #cccccc;
  position: relative;
  top: 2px;
  background-color: #46466D;
  text-decoration: none;
}


a.contact-link {
  width: 540px;
  font-size: 14px;
  color: #181948;
  background: #d2e7ef;
  display: block;
  text-align: center;
  padding: 20px;
  border-radius: 30px;
  margin: 30px auto;
  line-height: 1;
  text-decoration: none;
}

a.contact-link:hover {
  background: #dff1f8;
}


/* required */
.required {
  display: inline-block;
  padding: 0px 10px;
  font-size: 14px;
  background: #cc0000;
  color: #fff;
  border-radius: 20px;
}

/* form */
.form {
  display: flex;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /*--- IE10用 ---*/
  -webkit-flex-wrap: wrap;
  /*--- safari（PC）用 ---*/
  padding: 50px 0;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}
.form .item-q,
.form .item-a {
  padding: 25px 20px;
}
.form .item-q {
  width: 35%;
}
.form .item-a {
  width: 65%;
}

.submitArea {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 50px;
}

input[type="submit"] {
  width: 340px;
  height: 70px;
  border-radius: 5px;
  color: #fff;
  background-image: -moz-linear-gradient(90deg, #004e9c 0%, #0070df 100%);
  background-image: -webkit-linear-gradient(90deg, #004e9c 0%, #0070df 100%);
  background-image: -ms-linear-gradient(90deg, #004e9c 0%, #0070df 100%);
}

@media screen and (min-width: 769px) {
  input[type="submit"]:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: all 300ms ease;
  }
}
@media screen and (max-width: 768px) {
  .form {
    flex-direction: column;
    -webkit-box-direction: column;
    /*--- Androidブラウザ用 ---*/
    -webkit-flex-direction: column;
    /*--- safari（PC）用 ---*/
    border-top: none;
  }
  .form .item-q {
    width: 100%;
    border: none;
  }
  .form .item-a {
    width: 100%;
    border: none;
    padding: 10px 0;
  }
  .form .item-q {
    font-weight: bold;
    padding: 10px;
  }
}
