.contact .section-title {
  display: flex;
  align-items: center;
}

.contact .section-title .line-decoration {
  display: inline-block;
  width: 30px;
  height: 60px;
  background-image: linear-gradient(#f8d61d 50%, rgba(255, 255, 255, 0) 51%);
  background-size: 10px 10px;
}

.contact .section-title .title-value {
  margin-left: 3rem;
  font-size: 4rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .contact .section-title .title-value {
    font-size: 2rem;
  }
}

.contact__title {
  margin-top: 12rem;
}

@media screen and (max-width: 767px) {
  .contact__title {
    margin-top: 4rem;
  }
}

.input__form {
  padding-bottom: 16rem;
  /* animations */
  /* styles */
}

@media screen and (max-width: 767px) {
  .input__form {
    padding-bottom: 4rem;
  }
}

@keyframes radio-select {
  0% {
    transform: scale(0, 0);
  }
  65% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}

.input__form .form {
  font-size: 1.6rem;
}

.input__form .form .required {
  color: #EA555B;
}

.input__form .form__notice {
  margin-top: 13rem;
  padding-left: 18rem;
}

@media screen and (max-width: 1365px) {
  .input__form .form__notice {
    margin-top: 8rem;
    padding-left: 12rem;
  }
}

@media screen and (max-width: 1023px) {
  .input__form .form__notice {
    margin-top: 4rem;
    padding-left: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .input__form .form__notice {
    padding-left: 0;
  }
}

.input__form .form__notice ul li + li {
  margin-top: 1.5rem;
}

.input__form .form__row.contact-type {
  margin-top: 12rem;
}

@media screen and (max-width: 767px) {
  .input__form .form__row.contact-type {
    margin-top: 4rem;
  }
}

.input__form .form__row.name {
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  .input__form .form__row.name {
    margin-top: 4rem;
  }
}

.input__form .form__row.kana {
  margin-top: 2rem;
}

.input__form .form__row.tel, .input__form .form__row.email {
  margin-top: 4rem;
}

.input__form .form__row.inquiry {
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  .input__form .form__row.inquiry {
    margin-top: 4rem;
  }
}

.input__form .form__title {
  padding: 0 18rem;
  font-size: 1.8rem;
}

@media screen and (max-width: 1365px) {
  .input__form .form__title {
    padding: 0 12rem;
  }
}

@media screen and (max-width: 1023px) {
  .input__form .form__title {
    padding: 0 4rem;
  }
}

@media screen and (max-width: 767px) {
  .input__form .form__title {
    padding: 0;
  }
}

.input__form .form__input {
  display: flex;
  flex-wrap: wrap;
}

.input__form .form__input input {
  padding: 3rem 2rem;
}

.input__form .form__input.contact-type {
  padding-left: 18rem;
}

@media screen and (max-width: 1365px) {
  .input__form .form__input.contact-type {
    padding-left: 12rem;
  }
}

@media screen and (max-width: 1023px) {
  .input__form .form__input.contact-type {
    padding-left: 6rem;
  }
}

@media screen and (max-width: 767px) {
  .input__form .form__input.contact-type {
    padding-left: 1rem;
  }
}

.input__form .form__input.contact-type ul {
  width: 100%;
  padding: 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
}

.input__form .form__input.contact-type ul li {
  width: calc(100% / 3);
  margin-top: 6rem;
}

@media screen and (max-width: 1365px) {
  .input__form .form__input.contact-type ul li {
    width: calc(100% / 2);
  }
}

@media screen and (max-width: 767px) {
  .input__form .form__input.contact-type ul li {
    width: 100%;
    margin-top: 3rem;
  }
}

.input__form .form__input.contact-type ul li label {
  display: block;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-weight: normal;
}

.input__form .form__input.contact-type ul li input {
  height: 1px;
  width: 1px;
  opacity: 0;
}

.input__form .form__input.contact-type ul li .outside {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #CCCCCC;
  border-radius: 50%;
  box-sizing: border-box;
  background: #F3F3F3;
}

.input__form .form__input.contact-type ul li .inside {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: #00A0E9;
  left: 3px;
  top: 3px;
  transform: scale(0, 0);
}

.no-transforms .input__form .form__input.contact-type ul li .inside {
  left: auto;
  top: auto;
  width: 0;
  height: 0;
}

.input__form .form__input.contact-type ul li input:checked + .outside .inside {
  animation: radio-select 0.1s linear;
  transform: scale(1, 1);
}

.no-transforms .input__form .form__input.contact-type ul li input:checked + .outside .inside {
  width: 20px;
  height: 20px;
}

.input__form .form__input.name, .input__form .form__input.kana {
  margin-top: 1rem;
  padding: 0 18rem;
  justify-content: space-between;
}

@media screen and (max-width: 1023px) {
  .input__form .form__input.name, .input__form .form__input.kana {
    padding: 0 12rem;
  }
}

@media screen and (max-width: 767px) {
  .input__form .form__input.name, .input__form .form__input.kana {
    padding: 0;
  }
}

.input__form .form__input.name input, .input__form .form__input.kana input {
  width: calc((100% - 20px) / 2);
}

.input__form .form__input.tel, .input__form .form__input.email, .input__form .form__input.inquiry {
  margin-top: 1rem;
  padding: 0 18rem;
}

@media screen and (max-width: 1023px) {
  .input__form .form__input.tel, .input__form .form__input.email, .input__form .form__input.inquiry {
    padding: 0 12rem;
  }
}

@media screen and (max-width: 767px) {
  .input__form .form__input.tel, .input__form .form__input.email, .input__form .form__input.inquiry {
    padding: 0;
  }
}

.input__form .form__input.tel input, .input__form .form__input.email input, .input__form .form__input.inquiry input {
  width: 100%;
}

.input__form .form__input.tel textarea, .input__form .form__input.email textarea, .input__form .form__input.inquiry textarea {
  width: 100%;
  padding: 2rem;
}

.input__form .form__rule {
  margin-top: 6rem;
  padding: 0 18rem;
}

@media screen and (max-width: 1023px) {
  .input__form .form__rule {
    padding: 0 12rem;
  }
}

@media screen and (max-width: 767px) {
  .input__form .form__rule {
    margin-top: 4rem;
    padding: 0;
  }
}

.input__form .form__rule .rule__list {
  background-color: white;
  border: solid 1px #cccccc;
  padding: 1.75rem;
  overflow-y: scroll;
  height: 300px;
}

.input__form .form__rule .rule__list .list {
  font-size: 1.4rem;
}

.input__form .form__rule .rule__list .list h2 {
  font-size: 1.6rem;
  font-weight: normal;
}

.input__form .form__rule .rule__list .list > li + li {
  margin-top: 2rem;
}

.input__form .form__rule .rule__confirm {
  margin-top: 4rem;
}

.input__form .form__rule .rule__confirm .confirm__title {
  text-align: center;
  font-size: 3rem;
}

.input__form .form__rule .rule__confirm .confirm__text {
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 410px) {
  .input__form .form__rule .rule__confirm .confirm__text {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 359px) {
  .input__form .form__rule .rule__confirm .confirm__text {
    font-size: 1.2rem;
  }
}

.input__form .form__rule .rule__confirm .confirm__check {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .input__form .form__rule .rule__confirm .confirm__check {
    margin-top: 4rem;
  }
}

.input__form .form__rule .rule__confirm .confirm__check label {
  display: block;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-weight: normal;
  font-size: 3rem;
}

@media screen and (max-width: 767px) {
  .input__form .form__rule .rule__confirm .confirm__check label {
    font-size: 2.2rem;
  }
}

.input__form .form__rule .rule__confirm .confirm__check input {
  height: 1px;
  width: 1px;
  opacity: 0;
}

.input__form .form__rule .rule__confirm .confirm__check .outside {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #CCCCCC;
  box-sizing: border-box;
  background: #F3F3F3;
}

.input__form .form__rule .rule__confirm .confirm__check .inside {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #00A0E9;
  left: 3px;
  top: 3px;
  transform: scale(0, 0);
}

.no-transforms .input__form .form__rule .rule__confirm .confirm__check .inside {
  left: auto;
  top: auto;
  width: 0;
  height: 0;
}

.input__form .form__rule .rule__confirm .confirm__check input:checked + .outside .inside {
  animation: radio-select 0.1s linear;
  transform: scale(1, 1);
}

.no-transforms .input__form .form__rule .rule__confirm .confirm__check input:checked + .outside .inside {
  width: 20px;
  height: 20px;
}

.input__form .form__submit {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
}

.input__form .form__submit .btn-confirm {
  background-color: #e9488e;
  color: #fff;
  font-weight: bold;
  width: 42rem;
  padding: 4rem 0;
  text-align: center;
  font-size: 3rem;
}

@media screen and (max-width: 767px) {
  .input__form .form__submit .btn-confirm {
    width: 100%;
    padding: 2.2rem 0;
    font-size: 2.2rem;
  }
}

.input__form .form__submit .btn-confirm:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.confirm {
  padding-bottom: 20rem;
}

@media screen and (max-width: 767px) {
  .confirm {
    padding-bottom: 4rem;
  }
}

.confirm__notice {
  margin-top: 6rem;
  text-align: center;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .confirm__notice {
    margin-top: 4rem;
    font-size: 2rem;
  }
}

.confirm__input {
  margin-top: 4rem;
  padding: 0 10rem;
}

@media screen and (max-width: 1023px) {
  .confirm__input {
    padding: 0 4rem;
  }
}

@media screen and (max-width: 767px) {
  .confirm__input {
    margin-top: 2rem;
    padding: 0;
  }
}

.confirm__input label {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: solid 1px #3C3C3C;
}

@media screen and (max-width: 767px) {
  .confirm__input label {
    flex-wrap: wrap;
  }
}

.confirm__input label .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: flex-start;
  padding-top: 4rem;
  width: 200px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .confirm__input label .title {
    width: 100%;
    justify-content: flex-end;
    flex-direction: row-reverse;
    padding-top: 3rem;
  }
}

.confirm__input label .value {
  display: block;
  padding: 4rem 2rem;
  width: calc(100% - 200px - 30px);
  font-size: 1.8rem;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .confirm__input label .value {
    width: 100%;
    padding: 3rem 1rem 4rem;
  }
}

.confirm__action {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .confirm__action {
    margin-top: 2rem;
    flex-direction: column-reverse;
  }
}

.confirm__action .btn {
  width: 42rem;
  padding: 4rem 0;
  font-size: 3rem;
  color: #3C3C3C;
}

@media screen and (max-width: 767px) {
  .confirm__action .btn {
    width: 100%;
    margin-top: 3rem;
    padding: 2.2rem 0;
    font-size: 2.2rem;
  }
}

.confirm__action .btn:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.confirm__action .btn + .btn {
  margin-left: 6rem;
}

@media screen and (max-width: 767px) {
  .confirm__action .btn + .btn {
    margin-left: 0;
  }
}

.confirm__action .btn-return {
  background-color: lightgray;
}

.confirm__action .btn-send {
  background-color: #F8891D;
}

.complete {
  padding-bottom: 20rem;
}

@media screen and (max-width: 767px) {
  .complete {
    padding-bottom: 4rem;
  }
}

.complete__notice {
  margin-top: 8rem;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
}

@media screen and (max-width: 1535px) {
  .complete__notice {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .complete__notice {
    margin-top: 6rem;
  }
}

.complete__guide {
  margin-top: 4rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .complete__guide {
    text-align: left;
  }
}

.complete__guide p {
  font-size: 1.6rem;
  line-height: 2;
}

.complete__guide p + p {
  margin-top: 2rem;
}

.complete__action {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
}

.complete__action .btn {
  width: 42rem;
  padding: 4rem 0;
  font-size: 3rem;
  color: #3C3C3C;
}

@media screen and (max-width: 767px) {
  .complete__action .btn {
    width: 100%;
    padding: 2.2rem 0;
    font-size: 2.2rem;
  }
}

.complete__action .btn-return {
  background-color: lightgray;
}
