@charset "UTF-8";

@media screen and (max-width: 767px) {
    .pc{display: none}
}
@media screen and (min-width: 768px) {
    .sp{display: none}
}

header {
    border-bottom: 2px solid #f39800;
}

footer {
    border-top: 2px solid #f39800;
}

.contact-top{
    width: 100%;
    background-color: #fef4e5;
    padding: 5em 0 4em;
    margin-bottom: 3em;
}

.contact-top-inner{
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

.contact-title{
  font-size: 40px;
  color: rgb(255, 78, 0);
  font-weight: bold;
}

.contact-subtitle{
    font-size: 20px;
    margin-top: 1em;
    line-height: 2;
}
.contact-subtitle span{
    font-weight: bold;
}
.thanks-inner{
    max-width: 1000px;
    text-align: center;
    margin: 100px auto;
}
@media screen and (max-width: 767px) {
    .contact-top{
    padding: 2em 0.5em;
    margin-bottom: 3em;
}
    .contact-title{
  font-size: 30px;
}
    .contact-subtitle{
    font-size: 16px;
}
}

/* お問い合わせフォーム */
::placeholder{
  color: #c3c3c3;
}
.Form {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  margin-bottom: 80px;
}
.radio-area li{
    list-style: none;
    padding-left: 2.5em;
    line-height: 2;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {

}
.Form-Item-Label {
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 16px;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  margin-left: 8px;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #e14949;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    padding-top: 2px;
    padding-bottom: 2px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 100%;
  background: #fff;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 100%;
  background: #fff;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  -webkit-box-shadow: 0px 5px 0px 0px #85000a;
          box-shadow: 0px 5px 0px 0px #85000a;
  border-radius: 50px;
  border:none;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #e60012;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
.Form-Btn:hover{
    -webkit-box-shadow: none;
          box-shadow: none;
      transform: translateY(5px);
    cursor: pointer;
}