/*-------------------------
  Contact（PC）
-------------------------*/
.mainview {
  width: 100%;
  height: 400px;
  margin-top: 80px;
  background-image: url(../../assets/img/contact-back.jpg);
  background-size: cover;
  background-position: center;
}

.mainview-wrap {
  display: flex;
  text-align: center;
  align-items: center;
}

.mainview-title {
  text-transform: uppercase;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.484;
}

.mainview-title-ja {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.458;
  text-indent: 0.5em;
  position: relative;
}

.mainview-title-ja::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0.6em;
  transform: translate(0, -50%);
}

/* フォーム部分 */
.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="radio"] {
  width: 20px;
  height: 20px;
}

.checkbox-wrap {
  padding: 16px 0;
  margin-bottom: 24px;
}

.interest-list {
  margin-top: 18px;
}

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

.interest-list li {
  font-weight: 900;
  line-height: 1.5;
}

.interest-list span {
  margin-left: 8px;
}

.interest-list li:not(:last-of-type) {
  margin-bottom: 8px;
}

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

.form-item.textarea {
  margin-bottom: 0;
}

.form-item textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  background-color: #F5F5F5;
  border-radius: 2px;
  border: 1px solid #808080;
  padding: 10px;
  margin-bottom: 40px;
}

.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:disabled {
  cursor: none;
  background-color: #808080;
}

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

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

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

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

/*-------------------------
  Contact（SP）
-------------------------*/
@media screen and (max-width: 768px){
  .mainview {
    width: 100%;
    height: 250px;
    margin-top: 60px;
  }

  .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);
  }
}