@charset "utf-8";
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="reset"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="reset"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
.under_mv{
    -webkit-background-size: cover;
    background-size: cover;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.page_title {
    font-size: 5rem;
    font-weight: bold;
    color: #c00;
}
input[type="text"], input[type="email"], input[type="password"], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* for focus animation */
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 2px;
  border: 1px solid #aaa;
  padding: 5px;
  box-sizing: border-box;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
  box-shadow: 0 0 7px #aaaaff;
}
select {
  padding: 5px;
}
input[type="submit"], input[type="reset"], button {
    background: #cc0000;
    padding: 5px 10px;
    width: 150px;
    color: #fff;
    border-radius: 5px;
    height: 70px;
    margin: 15px 30px;
}
input[type="reset"], input[type="submit"].back {
    background: #CBCBCB;
}
input[type="submit"]:hover, input[type="reset"]:hover, button:hover {
    opacity: .8;
}
input[type="submit"]:active, input[type="reset"]:active, button:active {
    opacity: .8;
}
.btn_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 560px;
    padding: 50px 70px;
    margin: 60px auto 0;
    background: #F2F2F2;
    box-sizing: border-box;
}
.btn_text {
    font-weight: bold;
    text-align: center;
    margin: auto;
  padding-bottom: 15px;
}

.msgarea {
  color:#ff0000;
  margin: 20px 0px;
  padding: 10px 20px 10px 20px;
  background-color: #eeeeee;
  border: 1px solid #000088;
}

p.errmsg {
  color:#ff0000;
  margin:0px;
}
.flow {
    text-align: center;
}
.bt_btn {
    text-align: center;
    margin-top: 60px;
    text-decoration: underline;
}
.pp_outer {
    max-width: 900px;
    width: 100%;
    margin: 50px auto 20px;
    height: 280px;
    overflow-y: scroll;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #000;
    font-size: 1.5rem;
}
.pp_midashi {
    font-weight: bold;
}
.pp_data {
    text-align: right;
    margin: 15px 0;
}
.pp_inner {
    padding: 0 25px;
}
.pp_info {
    margin: 15px 15px 0;
}
.pp_info a{
  text-decoration: underline;
}
.pp_check {
    max-width: 900px;
    margin: auto;
    width: 100%;
}
.pp_check label,
.pp_check input{
  cursor: pointer;
}
@media screen and (min-width: 750px) {
  .root-container {
    max-width: 979px;
    width: 90%;
    margin: 110px auto 100px;
}
.form-element-container {
    display: table;
    width: 100%;
    margin: 70px auto 0;
    border-top: 1px solid #000;
}
  .form-field-input-pair {
    display: table-row;
  }
.form-field {
    display: table-cell;
    width: 236px;
    vertical-align: middle;
    text-align: center;
    padding: 30px 0;
    background: #CBCBCB;
    border-bottom: 1px solid #000;
  box-sizing: border-box;
}
.form-input {
    display: table-cell;
    padding: 24px 20px;
    border-bottom: 1px solid #000;
  box-sizing: border-box;
}
  
}
@media screen and (max-width: 750px) {
.root-container {
    padding: 70px 5%;
}
  .form-element-container {
    border-top: 1px solid #000;
    margin-top: 50px;
  }
  .form-field-input-pair {
  }
  .form-field {
    width: 100%;
    padding: 15px;
    background: #CBCBCB;
    border-bottom: 1px solid #000;
  box-sizing: border-box;
  }
  .form-input {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #000;
  box-sizing: border-box;
  }
.btn_box {
    padding: 30px 5%;
    flex-direction: column;
    align-items: center;
}
}

@media print {
  .root-container {
    max-width: 979px;
    width: 90%;
    margin: 110px auto 100px;
}
.form-element-container {
    display: table;
    width: 100%;
    margin: 70px auto 0;
    border-top: 1px solid #000;
}
  .form-field-input-pair {
    display: table-row;
  }
.form-field {
    display: table-cell;
    width: 236px;
    vertical-align: middle;
    text-align: center;
    padding: 30px 0;
    background: #CBCBCB;
    border-bottom: 1px solid #000;
  box-sizing: border-box;
}
.form-input {
    display: table-cell;
    padding: 24px 20px;
    border-bottom: 1px solid #000;
  box-sizing: border-box;
}
  
}
.w_all {width: 100%;}
.w_full {width: 75%;}
.w_half {width: 50%;}
.w_25pc {width: 25%;}

.required {color: red;}