/*-------------------------
  ダウンロード詳細（PC）
-------------------------*/
.download-content {
  margin-top: 80px;
  margin-bottom: 80px;
}

/* フォーム部分 */
.contact-contents {
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  padding: 8px 0 6px 0;
  position: relative;
  border-bottom: 6px solid #000;
  margin-bottom: 40px;
}

.contact-title::after {
  content: '';
  width: 100px;
  height: 6px;
  background-color: #000;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.form-item-wrap {
  display: flex;
  column-gap: 40px;
}

.label-wrap {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-end;
}

.label-wrap label {
  font-size: 16px;
  font-weight: 900;
}

.input-required {
  margin-left: 8px;
  background-color: #757575;
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  width: 32px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  display: inline-block;
}

.form-item-wrap .form-item {
  flex-basis: 50%;
}

.form-item {
  margin-bottom: 24px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  background-color: #F5F5F5;
  border-radius: 2px;
  border: 1px solid #808080;
  height: 40px;
  padding: 5px 10px;
  width: 100%;
}

input[type="checkbox"] {
  background-color: #F5F5F5;
  border: 1px solid #808080;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  cursor: pointer;
}

input[type="radio"] {
  margin-right: 10px;
  width: 1em;
  height: 1em;
}

.radio-input,
.checkbox-input li {
  margin-bottom: 10px;
}

.privacy-check {
  display: flex;
  align-items: center;
}

.privacy-check span{
  margin-left: 8px;
  font-weight: 900;
  line-height: 1.5;
}

.privacy-link {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 8px;
}

.privacy-link a {
  display: inline-block;
  color: #000;
  font-weight: 900;
  transition: all 0.5s;
}

.privacy-link a:hover {
  opacity: 0.5;
}

.submit-btn {
  width: 364px;
  height: 80px;
  max-width: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  padding: 10px 24px 10px 8px;
  font-size: 20px;
  font-weight: 900;
  margin: 40px auto 0 auto;
  transition: all 0.5s;
}

.submit-btn svg {
  margin-right: 16px;
}

.submit-btn:hover {
  background-color: #757575;
}

.submit-btn .fa-solid {
  margin-right: 16px;
  font-size: 30px;
}

.submit-btn:disabled {
  cursor: none;
  background-color: #808080;
}

.submit-btn:disabled:hover {
  cursor:auto;
  background-color: #808080;
}

#download-form {
  margin-top: 24px;
}

.btn-to-list {
  margin-top: 56px!important;
}

.btn-to-list-a {
  transition: all 0.5s;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/*-------------------------
  ￥ダウンロード詳細（SP）
-------------------------*/
@media screen and (max-width: 768px){
  .form-item-wrap {
    flex-direction: column;
  }

  .interest-list span {
    width: calc(100% - 38px);
  }

  .interest-list label {
    align-items: flex-start;
  }

  .privacy-check {
    align-items: flex-start;
  }

  .privacy-text {
    width: calc(100% - 38px);
  }
}