main {
  width: 100%;
  padding-left: clamp(50px, 6.5vw, 89px);
  padding-right: 46px;
}
.main.active {
  visibility: hidden;
}


.lang {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-top: 22px;;
}
.lang ul {
  display: flex;
}
.lang li {
  cursor: pointer;
}
.lang li.n-active {
  text-decoration: underline;
}
.lang .ja {
  padding: 6px 16px 6px 0;
  border-right: 1px solid #707070;
}
.lang .en {
  color: #666666;
  padding: 6px 0 6px 16px;
}

.inquiry {
  width: 100%;
  max-width: 522px;
  margin-top: 37px;
  padding-bottom: 58px;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.17em;
  line-height: calc(26 / 14);
}
.label {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 17px;
}
.select {
  display: inline-block;
  width: 100%;
  height: 40px;
  padding-left: 19px;
  border: 1px solid #707070;
  font-size: 13px;
  color: #666666;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../images/arrow.png");
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: right 12px center;
}
option[selected][disabled] {
  display: none;
}
input {
  width: 100%;
  height: 40px;
  padding-left: 19px;
  border: 1px solid #707070;
}
input::placeholder {
  outline: 0;
  font-size: 13px;
  color: #666666;
}
.container {
  display: flex;
  column-gap: 36px;
}
.inner {
  width: 100%;
}
textarea {
  width: 100%;
  height: 230px;
  padding-left: 19px;
  padding-top: 20px;
}
textarea::placeholder {
  font-size: 13px;
  line-height: 2;
}
.privacy-box {
  display: flex;
  column-gap: 20px;
  margin-top: 41px;
}
.privacy-box input {
  width: 16px;
  height: 16px;
}
.privacy {
  font-size: 13px;
  position: relative;
}
.privacy::after {
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  content: '';
  width: 12px;
  height: 12px;
  background-image: url(../images/link-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.privacy .link {
  text-decoration: underline;
}
.submit {
  width: 160px;
  height: 45px;
  margin-top: 42px;
  border-radius: 8px;
  background-color: #333333;
}
.submit input {
  color: #ffffff;
  width: 100%;
  height: 45px;
  padding: 0;
  border-radius: 8px;
  background-color: transparent;
}
.submit:hover input {
  font-size: 14px;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #333333;
  transition: .4s;
  cursor: pointer;
}

.footer {
  width: 130px;
  margin: 52px 46px 33px auto;
  font-size: 10px;
}


  /* -768px
  ------------------------------ */
  @media screen and (max-width:768px) {
    main {
      padding-left: 26px;
      padding-right: 24px;
      margin-top: 33px;
    }

    .container {
      flex-direction: column;
    }
    .container input {
      width: 70.8%;
    }
    
    .footer {
      margin: 60px 24px 30px auto;
    }

  }