body#contact .titleImage {
  background: url(/assets/images/title_img_contact.png) no-repeat center top;
  background-size: cover;
}

.contentsArea form {
  width: 100%;
  max-width: 847px;
  margin: 0 auto;
}

.contentsArea .required {
  color: #FF0010;
  font-size: 12px;
  text-align: right;
}

.confirmMessage {
  text-align: center;
  font-size: 16px;
  margin-bottom: 50px;
}

dl {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

dt {
  width: calc((100% - 40px) / 4);
  text-align: right;
  position: relative;
}

dt label {
  font-size: 16px;
  font-weight: bold;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

dt span {
  position: absolute;
  color: #FF0010;
  top: 15px;
  right: -17px;
  font-size: 12px;
}

dd {
  position: relative;
  width: calc((100% - 40px) / 4 * 3);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

dd.address {
  flex-direction: column;
}

dd label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  font-size: 16px;
}

select,
textarea,
input[type=text],
input[type=tel],
input[type=email] {
  background-color: #F5F5F5;
  display: block;
  width: 100%;
  height: 50px;
  border-style: none;
  font-size: 16px;
  padding: 0 20px;
  box-sizing: border-box;
}

input[type=file] {
  width: 110px;
}

.selectWrapper {
  position: relative;
  display: block;
  width: 100%;
}

.selectWrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 5px;
  background-image: url('/assets/images/select-arrow.svg');
}

.pref,
input.name,
input.zip {
  width: calc((100% - 20px) / 2);
}

textarea {
  height: 200px;
  padding: 20px;
}

.submitWrapper {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 50px 0 80px;
}

.reset {
  height: 50px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #CECECE;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  border-style: none;
}

.submit {
  height: 50px;
  width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D3000D;
  color: #FFF;
  font-weight: bold;
  font-size: 16px;
  border-style: none;
  cursor: pointer;
}

.validationError {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #FF0010;
  font-weight: bold;
}

.informationWrapper {
  display: flex;
  flex-wrap: wrap;
  background-color: #F3F3F2;
  margin-top: 80px;
}

.information {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.information:first-child {
  border-right: solid 1px #fff;
}

.informationInner {
  padding: 40px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.informationInner:nth-child(2) {
  border-top: solid 1px #fff;
}

.information .address {
  font-size: 16px;
}

.information .note {
  color: #FF0010;
  font-size: 14px;
}

.message {
  border: solid 1px #CCC;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.messageAdmin {
  background-color: #EEE;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.messageTitle {
  display: flex;
  justify-content: space-between;
}

.attachmentLink {
  color: #000;
  font-weight: bold;
}

.inputFileUpload {
  display: none;
}

.buttonFileUpload {
  height: 40px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F5F5F5;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  border-style: none;
  margin-right: 10px;
}

.fileWrapper {
  display: flex;
  align-items: center;
}

.fileWrapper a {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.errorMessage {
  text-align: center;
  color: #FF0010;
  font-weight: bold;
  font-size: 14px;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .informationWrapper {
    flex-direction: column;
  }

  .information {
    width: 100%;
  }

  .information h3 {
    font-size: 16px;
  }

  .informationInner {
    padding: 20px;
    border-top: solid 1px #fff;
  }

  .information .address {
    font-size: 12px;
  }

  .information .note {
    color: #FF0010;
    font-size: 10px;
  }
}

@media screen and (max-width: 576px) {
  dl {
    display: block;
  }

  dt {
    width: 100%;
    text-align: left;
    display: flex;
  }

  dt label {
    justify-content: flex-start;
    font-size: 14px;
    height: 30px;
  }

  dt span {
    position: static;
    display: flex;
    align-items: center;
    padding-left: 5px;
  }

  dd {
    width: 100%;
  }

  .pref,
  input.zip {
    width: 100%;
  }
}