.fixed_btn {
	display: none;
	position: fixed;
	bottom: 10vh;
  right: 3vw;
	width: 80px;
	height: 80px;
	z-index: 10;
}
.fixed_btn__link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border-radius: 200px;
	background: linear-gradient(135deg, #03a3ff 0%,#0074db 50%,#004ea2 100%);
	opacity: 1;
	transition: opacity .3s ease;
}
.fixed_btn__link svg {
	width: 21px;
	height: 25px;
}
.fixed_btn__link svg path {
	fill: #fff;
}
@media screen and (min-width: 769px) {
	.fixed_btn__link:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 768px) {
  .fixed_btn {
    position: fixed;
    bottom: 11vh;
    bottom: 11dvh;
    right: 5vw;
    width: 60px;
    height: 60px;
    z-index: 10;
  }
  .fixed_btn__text {
    font-size: 18px;
    color: #fff;
  }
  .fixed_btn__link svg {
    width: 16px;
    height: 19px;
  }
  .fixed_btn__link svg path {
    fill: #fff;
  }
}

/* フォーム */
.contact {
  padding-top: 58px;
  padding-bottom: 118px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 20px;
  }
}

.contact__container {
  max-width: 776px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.contact__lineBox {
  //
}

.contact__lineTextBox {
  text-align: center;
}

.contact__lineText {
  display: inline-block;
  font-size: 14px;
}

.contact__lineText::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background: #000;
  margin-right: 10px;
  transform: rotate(-35deg);
  position: relative;
  top: 3px;
}

.contact__lineText::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background: #000;
  margin-left: 10px;
  transform: rotate(35deg);
  position: relative;
  top: 3px;
}

.contact__lineBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 340px;
  width: 100%;
  min-height: 60px;
  margin: 0 auto;
  border-radius: 180px;
  background: #28c052;
  text-align: center;
  margin-top: 10px;
}

.contact__lineBtnText {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: #fff;
}

.contact__formWrap {
  margin-top: 66px;
}

.contact__companyLinkBox {
  display: block;
  padding-block: 32px;
  text-align: center;
}

.contact__companyLink {
  transition: all .3s ease;
}

@media screen and (min-width: 769px) {
  .contact__companyLink:hover {
    opacity: .6;
  }
}

@media screen and (max-width: 768px) {
  .form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.form__grid {
  display: grid;
  grid-template-columns: 196px 1fr;
  align-items: center;
  gap: 28px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .form__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0;
  }
}


.form__grid--itemStart {
  align-items: flex-start;
}

.form__grid--itemStart .form__dt {
  margin-top: 14px;
}

.form__dt {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.form__dt p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .form__dt p {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }
}

.CF7_req {
  background: red;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 3px 5px 4px;
  border-radius: 4px;
}

.form__dd {
  margin: 0;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgb(204, 204, 204);
  font-size: 16px;
  border-radius: 6px;
  padding: 11.5px 9.6px;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: #aeaeae;
}

.form__submitBox {
  max-width: 290px;
  width: 100%;
  margin: 26px auto 0;
}
@media screen and (max-width: 768px) {
  .form__submitBox {
    margin: 15px auto 0;
  }
}

.form__submitBox input[type=submit] {
  width: 100%;
  text-align: center;
  min-height: 50px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: #fff;
  background: #0074db;
  border-radius: 3px;
  transition: all .2s ease;
}
@media screen and (min-width: 769px) {
  .form__submitBox input[type=submit]:hover {
    opacity: .7;
  }
}