textarea, input[type="text"], input[type="submit"], input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box; }
  textarea::-webkit-search-decoration, input[type="text"]::-webkit-search-decoration, input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
    display: none; }
  textarea::focus, input[type="text"]::focus, input[type="submit"]::focus, input[type="button"]::focus {
    outline-offset: -2px; }

.main {
  padding: 0 0 4em; }

.form {
  position: relative;
  z-index: 2;
  padding: 3em 4em;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box; }
  @media (max-width: 480px) {
    .form {
      padding: 2em; } }
  .form table {
    width: 100%; }
    .form table tr {
      display: flex;
      padding: 1em 0; }
      @media (max-width: 880px) {
        .form table tr {
          display: block; } }
      .form table tr th {
        text-align: left;
        width: 35%; }
        @media (max-width: 880px) {
          .form table tr th {
            width: 100%;
            padding: 0 0 .5em; } }
        .form table tr th p {
          text-align: left;
          display: flex;
          align-items: center; }
          .form table tr th p span {
            font-size: 11px;
            font-weight: normal;
            background: #fff;
            color: #e57c7e;
            border: solid 1px #e57c7e;
            border-radius: 5px;
            padding: 1px 5px;
            margin: 0 0 0 10px;
            box-sizing: border-box; }
            @media (max-width: 480px) {
              .form table tr th p span {
                display: inline-block;
                margin: 0 0 0 .5em; } }
      .form table tr td {
        width: 65%;
        display: block; }
        @media (max-width: 880px) {
          .form table tr td {
            width: 100%; } }
      .form table tr .mail span {
        font-size: 90%; }
      .form table tr input, .form table tr textarea {
        font-size: 100%;
        padding: .5em 1em;
        box-sizing: border-box;
        background: rgba(104, 122, 154, 0.03);
        box-shadow: 0px 0px 0px 1px rgba(104, 122, 154, 0.3);
        border-radius: 5px;
        font-family: 'Open Sans','hiragino kaku gothic pro','Noto Sans JP',sans-serif;
        color: #687a9a; }
        .form table tr input::placeholder, .form table tr textarea::placeholder {
          color: rgba(104, 122, 154, 0.3); }
      .form table tr input[type="text"], .form table tr textarea {
        width: 100%; }
      .form table tr input[type="text"]:focus {
        outline: none;
        box-shadow: 0px 0px 0px 1px #7dcaf1; }
      .form table tr textarea:focus {
        outline: none;
        box-shadow: 0px 0px 0px 1px #7dcaf1; }
      .form table tr .radiobox {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between; }
      .form table tr input[type="radio"] {
        display: none; }
      .form table tr label {
        width: 24%;
        display: block;
        position: relative;
        padding: 12px 12px 12px 42px;
        background: rgba(104, 122, 154, 0.03);
        border-radius: 5px;
        transition: .2s;
        box-sizing: border-box; }
        @media (max-width: 480px) {
          .form table tr label {
            width: 48%;
            margin: .25em 0; } }
      .form table tr label::before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 12px;
        width: 16px;
        height: 16px;
        border: solid 2px rgba(104, 122, 154, 0.4);
        border-radius: 5px;
        background: #fff; }
      .form table tr label::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 16px;
        width: 12px;
        height: 12px;
        background: #7dcaf1;
        opacity: 0;
        border-radius: 50%;
        transition: .2s; }
      .form table tr label:hover {
        cursor: pointer;
        background: #cbeaf9; }
      .form table tr input[type="radio"]:checked + label {
        background: #cbeaf9; }
      .form table tr input[type="radio"]:checked + label::after {
        opacity: 1; }
  .form__txtbox {
    line-height: 1.6;
    font-size: 90%; }
  .form .btn {
    display: flex;
    max-width: 440px; }
    @media (max-width: 480px) {
      .form .btn {
        display: block;
        max-width: 100%; } }
    .form .btn input {
      min-width: 200px;
      background: #7dcaf1;
      color: #fff;
      border: 0;
      border-radius: 2em;
      display: block;
      max-width: 200px;
      margin: 0 auto;
      padding: .75em 1em;
      box-sizing: border-box;
      font-weight: 600;
      font-size: 16px;
      text-align: center;
      text-decoration: none;
      cursor: pointer; }
      @media (max-width: 480px) {
        .form .btn input {
          margin: .5em auto; } }
  .form .prev input:nth-child(1) {
    background: #fff;
    color: #7dcaf1;
    border: solid 2px #7dcaf1; }
