@charset "utf-8";
.main > section {
  padding: 170px 0 70px 0;
}
@media only screen and (max-width: 768px) {
  .main > section {
    padding: 26px 0 30px 0;
  }
}
.main > section .title-area {
  background-color: #262626;
}
.main > section .title-area h2{
    padding: 30px 0;
    text-align: center;
    color: #cccccc;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0.01em;
    margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .main > section .title-area h2{
    font-size: 14px;
    padding: 11px 0 ;
    margin-bottom: 30px;
  }
}
.main .inner {
  width: 1000px;
  margin: 0 auto;
  color: #b2b2b2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .main .inner {
    width: auto;
    padding: 0 15px;
    display: flex;
  }
}
.headerGlobal {
  padding-top: 32px;
}
@media screen and (max-width: 620px) {
  .headerGlobal {
      padding-top: 10px;
  }
}
.headerGlobal .logo{
  margin-left: 15px;
}
.headerGlobal .inner{
  max-width: 1000px;
  width: 100%;
}
.headerGlobal h1{
  margin-top: 0;
}

.err {
  color: #d95c00;
  margin-top: 8px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .err{
    font-size: 10px;
  }
}

.label {
  margin: 0 0 0 1em;
  font-size: 14px;
  border-radius: 10px;
  color: #fff;
  padding: 2px 8px  2px 9px;
  font-weight: normal;
}
@media only screen and (max-width: 768px) {
  .label{
    font-size: 11px;
    padding: 1px 8px 2px 9px;
  }
}

.mailform {
  margin: 30px auto 0;
  letter-spacing: 0.06em;
  width: 550px;
}
@media only screen and (max-width: 768px) {
  .mailform {
    width: auto;
    margin: 0px auto ;
  }
}
.mailform dt {
    font-size: 16px;
    padding-bottom: 8px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 768px) {
  .mailform dt,
  .mailform dd{
    font-size: 13px;
  }
}
.mailform dt .required{
  background-color: #c00303;
}
.mailform dt .free{
    background-color: #9f9e9e;
}
.mailform dd {
  margin-bottom: 36px;
}
@media only screen and (max-width: 768px) {
  .mailform dd {
    margin-bottom: 18px;
  }
}
.mailform dd:last-of-type{
  margin-bottom: 96px;
}
@media only screen and (max-width: 768px) {
  .mailform dd:last-of-type{
    margin-bottom: 40px;
  }
}
.mailform.results dt {
  font-weight: normal;
  color: #b2b2b2;
  letter-spacing: 0.06em;
}
.mailform.results dd {
  font-size: 16px;
  margin-bottom: 48px;
  font-weight: bold;
  color:#fff;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 768px) {
  .mailform.results dd {
    margin-bottom: 20px;
    font-size: 13px;
  }
}
.mailform input[type="text"] {
  padding: 12px 12px;
  background-color: #fff;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #000;
}
@media only screen and (max-width: 768px) {
  .mailform input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 6px 6px;
    font-size: 13px;
    height: 28px;
    box-sizing: border-box;
  }
}
.mailform input[type="text"]::placeholder {
  color: #b4b0b0;
  font-size: 16px;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 768px) {
  .mailform input[type="text"]::placeholder {
    font-size: 10px;

  }
}
.mailform input[type="text"]:focus {
  outline:#95aafb 3px solid;
}
.mailform .error input[type="text"] {
  background-color: #fcc9c9;
}

/* チェックボックスデザイン */
input[type="checkbox"]  {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="checkbox"] {
  cursor: pointer;
  padding-left: 50px;/*label手前にチェックボックス用の余白を開ける*/
  position: relative;
  top: -2px;
}
@media only screen and (max-width: 768px) {
  input[type="checkbox"] {
    padding-left: 30px;
    top: 0;
  }
}
input[type="checkbox"]::before,
input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
}
input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #000;
  width: 30px;/*チェックボックスの横幅*/
  height: 30px;/*チェックボックスの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
@media only screen and (max-width: 768px) {
  input[type="checkbox"]::before {
      width: 20px;
      height: 20px;
  }
}
input[type="checkbox"]::after {
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
  opacity: 0;
  height: 8px;
  width: 14px;
  transform: rotate(-45deg);
  top: 3px;
  left: 8px;
}
@media only screen and (max-width: 768px) {
  input[type="checkbox"]::after {
    border-bottom: 3px solid #000;
    border-left: 3px solid #000;
    opacity: 0;
    height: 5px;
    width: 8px;
    transform: rotate(-45deg);
    top: 3px;
    left: 6px;
  }
}
input[type="checkbox"]:checked::after {
  opacity: 1;/*チェック後表示*/
}

.mailform .checkbox-area{
  padding-top: 10px;
  font-weight: 600;
  color: #fff;
}
.mailform .checkbox-area label{
  display: flex;
  padding-bottom: 28px;
}
@media only screen and (max-width: 768px) {
  .mailform .checkbox-area label{
    padding-bottom: 20px;
    font-size: 13px;
  }
}
.mailform .checkbox-area label:last-of-type{
  padding-bottom: 14px;
}
@media only screen and (max-width: 768px) {
  .mailform .checkbox-area label:last-of-type{
    padding-bottom: 5px;
  }
}
.area-privacy{
  padding-bottom: 36px;
}
@media only screen and (max-width: 768px) {
  .area-privacy{
    padding-bottom: 25px;
  }
}

.area-privacy h3{
  font-size: 16px;
  letter-spacing: 0.06em;
  padding-left: 30px;
  padding-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .area-privacy h3{
    font-size: 10px;
    padding-left: 10px;
  }
}
.area-privacy .area-privacy-txt{
  font-size: 12px;
  line-height: 1.6;
  background-color: #fff;
  padding: 12px 30px;
  color: #000;
  border-radius: 6px;
}
@media only screen and (max-width: 768px) {
  .area-privacy .area-privacy-txt{
    font-size: 10px;
    padding: 10px 10px;
  }
}
.area-check{
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .area-check{
    padding-bottom: 25px;
  }
}
.area-check label{
  display: flex;
  justify-content: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .area-check label{
    font-size: 10px;
  }
}
.area-check a{
  text-decoration: underline;
}
.area-check .err{
  margin-left: 24px;
  margin-top: 12px;
}
.btnArea{
display: flex;
align-items: center;
}
@media only screen and (max-width: 768px) {
  .btnArea{
    flex-direction: column;
  }
}

.btnArea .btn {
  cursor: pointer;
  margin: auto;
  width: 340px;
  height: 60px;
  border-radius: 30px;
  background: #dd0202;
  color: #fff;
  letter-spacing: .04em;
  font-size: 1.5rem;
  border: 1px solid transparent;
  position: relative;
}
.btnArea .btn:disabled {
  background: #b4b0b0;
  pointer-events: none;
}

@media only screen and (max-width: 768px) {
  .btnArea .btn {
    padding-bottom: 14px;
    width: 180px;
    height: 40px;
    box-sizing: border-box;
    padding: 0 15px;
    font-size: 13px;
  }
}

.btnArea .btn:hover {
  background-color: #fff;
  color: #dd0202;
}
.btnArea .btn:after {
  content: '';
  right: 16px;
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
  top: 50%;
  position: absolute;
}
.btnArea .btn:hover:after {
	border-top: 1px solid #dd0202;
	border-right: 1px solid #dd0202;
}

.btnArea .btnRevise {
  border: none;
  cursor: pointer;
  outline: 0;
  padding: 0;
  appearance: none;
  margin: auto;
  position: relative;
  background: none;
  color: #fff;
  text-decoration: underline;
  margin: 0 auto 0 16px;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 768px) {
  .btnArea .btnRevise {
    margin: 0 auto 10px;
  }
}
.btnArea .btnRevise:after {
  content: '';
  left: -15px;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(225deg);
	transform: translateY(-50%) rotate(225deg);
  top: 50%;
  position: absolute;
}
.complete p{
  font-weight: bold;
  color: #fff;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .complete p{
    font-size: 13px;
    padding-bottom: 200px;
  }
}

input.boxHalf {
  width: 180px;
}
input.boxMax {
  width: 546px;
}
.footerGlobal--sample{
  padding-top: 20px;
  border-top: 1px solid #4C4C4C;
}