/***  media ***/
/***  color ***/
/*** font ***/
/*** reset ***/
html {
  color: #1f1f1f;
  font-size: 20px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
body {
  margin: 0;
  color: #1f1f1f;
  font-size: 20px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}
a {
  color: #1f1f1f;
  text-decoration: none;
}
a:link,
a:visited {
  color: #1f1f1f;
  text-decoration: none;
}
ol,
dl,
ul,
li,
dt,
dd {
  list-style: none;
  margin: 0;
  padding: 0;
}
fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
a {
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.7;
}
.outerBlock {
  overflow: hidden;
}
.innerBlock {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
#wrapper {
  position: relative;
  padding: 0;
  overflow: hidden;
}
#content {
  padding: 80px 0 114px;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
  #content {
    padding: 30px 0 60px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
	header
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#header {
  background-color: #00b6aa;
}
#header .innerBlock {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}
#header .logo {
  position: absolute;
  top: 30px;
  left: 20px;
}
#header h1 {
  font-size: 38px;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  #header {
    padding: 10px 0;
  }
  #header .innerBlock {
    display: block;
    height: auto;
  }
  #header .logo {
    position: static;
  }
  #header h1 {
    font-size: 20px;
    text-align: center;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
	footer
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#footer {
  padding: 30px 0 10px;
  background-color: #00b6aa;
}
#footer .footerLayout {
  display: flex;
  justify-content: center;
  margin: 0 0 30px;
}
.footerData {
  text-align: center;
}
#footer .logo {
  margin: 0 0 30px;
}
#footer .footLink {
  display: flex;
}
#footer .footLink li {
  margin-right: 2em;
}
#footer .footLink li a {
  font-size: 16px;
  color: #ffffff;
}


#footer .footerData p {
  line-height: 1.6;
  font-size: 16px;
  color: #ffffff;
  margin-top: 8px;
  margin-bottom: 0;
}
#footer .footerData .logo_title {
  font-size: 20px;
}
#footer .copyright {
  font-size: 12px;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 20px 0;
  }
  #footer .footerLayout {
    display: block;
    margin: 0 0 20px;
  }
  #footer .logo {
    margin: 0 0 20px;
  }
  #footer .footLink {
    display: block;
  }
  #footer .footLink li {
    margin-right: 0;
  }
  #footer .footLink li a {
    font-size: 14px;
  }
  #footer .footerData p {
    font-size: 14px;
  }
  #footer .copyright {
    font-size: 12px;
    color: #ffffff;
    text-align: center;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
	content
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.flow {
  display: flex;
}
.flowArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 33.333%;
  height: 80px;
  margin: 0 0 80px;
  font-size: 25px;
  font-weight: bold;
  background-color: #F2F2F2;
}
.flowArrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -44px;
  bottom: 0;
  z-index: 1;
  width: 44px;
  height: 100%;
  margin: auto;
  background-image: url("../img/flow_arrow.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.flowArrow.active {
  color: #ffffff;
  background-color: #00b6aa;
}
.flowArrow.active::after {
  background-image: url("../img/flow_arrow_active.png");
}
.flowArrow:nth-child(1) {
  z-index: 3;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.flowArrow:nth-child(2) {
  z-index: 2;
}
.flowArrow:last-child {
  z-index: 1;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.flowArrow:last-child::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .flowArrow {
    height: 40px;
    margin: 0 0 30px;
    font-size: 13px;
  }
  .flowArrow::after {
    right: -16px;
    width: 16px;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
	form
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.form {
  margin: 0 0 80px;
}
.form::after {
  content: "";
  display: table;
  clear: both;
}
.formTtl {
  float: left;
  position: relative;
  width: 310px;
  padding-top: 12px;
  padding-right: 80px;
  font-weight: bold;
  text-align: right;
}
.required {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  font-size: 15px;
  color: #ffffff;
  border-radius: 10000px;
  background-color: #00b6aa;
}
.required.none {
  color: #1f1f1f;
  background-color: #F2F2F2;
}
.inputBox {
  float: left;
  width: 100%;
  margin-left: -310px;
  padding-left: 340px;
}
.inputBox.checkBox {
  display: flex;
  flex-wrap: wrap;
  padding-top: 12px;
}
/* .inputBox.double {
  margin-top: -33px;
} */
.inputBox.double .inputTxt {
  margin: 0 0 20px;
}
.confirm .inputBox {
  padding-top: 8px;
}
.itemText {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: bold;
}
.postCord {
  display: flex;
  align-items: center;
}
.postCord .inputTxt {
  width: 120px;
}
.postCord .separate {
  margin: 0 0 20px;
  padding: 0 5px;
}
a.privacyLink {
  display: inline-block;
  margin-left: 30px;
  padding-right: 30px;
  color: #c1c1c1;
  background: url("../img/icon_linkArrow.png") no-repeat right center;
}
.privacyTxt {
  line-height: 1.8;
  font-size: 13px;
}
.sendBox {
  display: flex;
  justify-content: center;
}
.sendBtn {
  display: block;
  align-items: center;
  justify-content: center;
  max-width: 370px;
  width: 100%;
  height: 80px;
  font-size: 25px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  background-color: #00b6aa;
}
.sendBtn:disabled {
  cursor: auto;
  color: #1f1f1f;
  background-color: #f2f2f2;
}
.prevBtn {
  margin-top: 30px;
  display: block;
  align-items: center;
  justify-content: center;
  max-width: 370px;
  width: 100%;
  height: 80px;
  font-size: 25px;
  font-weight: bold;
  color: #1f1f1f;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  background-color: #f2f2f2;
}
input[type=text],
input[type=tel],
input[type=email],
textarea,
select {
  appearance: none;
  padding: 0 20px;
  line-height: 1.4;
  font-size: 20px;
  color: #1f1f1f;
  border: 1px solid #c1c1c1;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #c1c1c1;
}
textarea {
  width: 100%;
  min-height: 150px;
  padding: 15px 20px;
  line-height: 1.6;
}
input[type=text],
input[type=tel],
input[type=email],
select {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
}
input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
input[type=checkbox] + label {
  display: inline-block;
  position: relative;
  min-width: 156px;
  padding-left: 26px;
  font-weight: bold;
}
input[type=checkbox] + label::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 1px solid #c1c1c1;
}
input[type=checkbox]:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 2px;
  bottom: 0;
  width: 13px;
  height: 18px;
  margin: auto;
  background: url("../img/icon_check.png") no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  .form {
    margin: 0 0 30px;
  }
  .formTtl {
    float: none;
    width: 100%;
    margin-bottom: 15px;
    padding: 5px 0 0 46px;
    text-align: left;
  }
  .formTtl.privacyBox {
    display: none;
  }
  .required {
    left: 0;
    right: auto;
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .inputBox {
    float: none;
    margin-left: 0;
    padding-left: 0;
  }
  .inputBox.checkBox {
    display: flex;
    flex-wrap: wrap;
    padding-top: 12px;
  }
  .inputBox.double {
    margin-top: 0;
  }
  .inputBox.double .inputTxt {
    margin: 0 0 20px;
  }
  .confirm .inputBox {
    padding-top: 8px;
  }
  .itemText {
    margin: 0 0 5px;
    font-size: 13px;
  }
  .postCord {
    display: flex;
    align-items: center;
  }
  .postCord .inputTxt {
    width: 120px;
  }
  .postCord .separate {
    margin: 0 0 20px;
    padding: 0 5px;
  }
  a.privacyLink {
    margin: 8px 0 0;
  }
  .sendBtn {
    height: 60px;
    font-size: 20px;
  }
  .prevBtn {
    height: 60px;
    font-size: 20px;
  }
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea,
  select {
    padding: 0 12px;
    font-size: 16px;
  }
  textarea {
    padding: 12px 20px;
  }
  input[type=text],
  input[type=tel],
  input[type=email],
  select {
    height: 40px;
  }
}

.form_data .inputCheck {
  margin-right: 24px;
}



/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
	thanksBox
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.thanksBox p {
  margin: 0 0 50px;
  padding: 0;
  font-weight: bold;
  text-align: center;
}
.thanksBox p small {
  display: inline-block;
  padding-top: 10px;
  font-size: 15px;
  font-weight: normal;
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
	バリデーション
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.formContent .formError .formErrorContent {
  font-size: 14px;
  border: none;
  box-shadow: none;
}
.formContent .formErrorArrow {
  display: none;
}
