.cf7__list {
  width: 700px;
  margin-bottom: 60px;
  font-size: 1.2em;
}


.cf7__list dt {
  width: 35%;
  padding-top: 15px;
  padding-bottom: 10px;
}

.cf7__list dd {
  width: 70%;
}

.cf7__list dd.check{
  padding-top: 30px;
  display: flex;
  align-items: center;
}

.cf7__list.confirm dt{
  border-bottom: 1px solid #333;
}

.cf7__list.confirm dd{
  padding-top: 10px;
  padding-bottom: 20px;
}


/* input・textarea */
.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.wpcf7-acceptance{
  display: flex;
}

.wpcf7-list-item {
    display: inline-block;
    margin-left: 0 !important;
}

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* チェックボックス */
input[type="checkbox"]:checked {
  border: 1px solid #000;
  background: #000;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
}


/* 送信ボタン */
.cf7__button {
  padding-left: 72px;
  text-align: center;
}

input[type="submit"] {
  width: 260px;
  height: 60px;
  background: #000;
  color: #fff;
  transition: opacity .6s;
}

input[type="submit"]:hover {
  opacity: .6;
}


@media screen and (max-width: 600px) {
.cf7__list {
  width: 100%;
  margin-bottom: 60px;
  font-size: 1.2em;
}

  .cf7__list dt {
    width: 100%;
    margin-bottom: 0px;
    padding-top: 0;
  }

  .cf7__list dd {
    width: 100%;
    margin-bottom: 15px;
  }

  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0;
  }

  .cf7__list dd .wpcf7-checkbox,
  .cf7__list dd .wpcf7-radio {
    padding: 15px 0 0;
  }

  .cf7__list dd.check{
    width: 100%;
  padding-top: 30px;
  display: flex;
  align-items: center;
  font-size: 0.8em;
}

.cf7__list.confirm dd{
  padding-top: 20px;
  padding-bottom: 40px;
}

  /* 送信ボタン */
  input[type="submit"] {
    width: 180px;
    height: 56px;
  }

}