/* PC向けレイアウトの指定：1000px以上では固定レイアウト */
@media print, screen and (min-width: 481px) {
  .mailform dl {
    padding: 4px;
  }
  .mailform dt {
    width: 200px;
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    padding: 2px;
  }
  .mailform dd {
    padding-left: 10px;
    display: table-cell;
    vertical-align: middle;
    text-align: left;
  }
  .mailform dd input[type="text"], .mailform dd select, dd textarea {
    width: 400px;
    max-width: 100%;
    font-family: inherit;
    padding: 2px;
    background: #fff;
    border: 1px solid #CCCCCC;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .05);
  }
  select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
  }
  select::-ms-expand {
    display: block;
  }
  ::placeholder {
    color: #CCCCCC;
  }
  dd textarea {
    width: 400px;
    max-width: 100%;
    font-family: inherit;
    padding: 2px;
    background: #fff;
    border: 1px solid #CCCCCC;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .05);
    height: 100px;
    box-sizing: border-box;
    resize: vertical;
  }
  .confirmation_btn {
    width: 110px;
    font-size: 15px;
    font-family: inherit;
    padding: 3px 0;
    border: none;
    background: #4d4d4d;
    color: #fff;
    cursor: pointer;
    letter-spacing: 2px;
    margin: 30px 0 50px 0;
  }
  .confirmation_btn02 {
    width: 110px;
    font-size: 15px;
    font-family: inherit;
    padding: 3px 0;
    border: none;
    background: #4d4d4d;
    color: #fff;
    cursor: pointer;
    letter-spacing: 2px;
    margin: 30px 0 50px 0;
  }
  .confirmation_btn:hover {
    opacity: .7;
  }
  .confirmation_btn02:hover {
    opacity: .7;
  }
  .submit_area {
    margin: 20px 0 0 0;
  }
}
/*==========================================
 スマホのスタイル
===========================================*/
@media screen and (max-width:480px) {
  .mailform dt {
    text-align: center;
    padding: 5px;
    font-size: 20px;
    width: 500px;
    margin: 0 auto;
  }
  .mailform dd {
    padding: 10px 0 10px 0;
  }
  .mailform-radio {
    margin: 0 0 0 50px;
  }
  .mailform dd input[type="text"], .mailform dd select, dd textarea {
    width: 500px;
    font-family: inherit;
    font-size: 18px;
    padding: 7px 0 7px 0;
    border: 1px solid #ddddea;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .05);
    margin: 0 0 0 50px;
    text-align: center;
    background: #fff;
  }
  select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
  }
  select::-ms-expand {
    display: block;
  }
  .confirmation_btn {
    font-family: inherit;
    padding: 5px 30px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    width: 150px;
    background: #4d4d4d;
    color: #fff;
    margin: 50px 0 100px 0;
  }
  .confirmation_btn02 {
    font-family: inherit;
    padding: 5px 30px;
    font-size: 18px;
    color: #fff;
    background: #4d4d4d;
    border: none;
    cursor: pointer;
    width: 150px;
    margin: 50px 0 100px 0;
  }
  ::placeholder {
    color: #CCCCCC;
  }
}