@charset "utf-8";

/* --------------------
  style
-------------------- */
.radius_box{
  padding: 5px 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
}


.mail{
  color: #e85d00;
  border-color: #e85d00;
  font-size: 22px;
  letter-spacing: -0.1em;
  text-align: center;
  -webkit-transition: 0.4s ease-out;
  -moz-transition: 0.4s ease-out;
  -ms-transition: 0.4s ease-out;
  -o-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}
.mail:hover{
  color: #ffffff;
  background: #e85d00;
}

.html,
.site{
  position: relative;
  color: #008be8;
  border-color: #008be8;
  font-size: 22px;
  letter-spacing: -0.1em;
  text-align: center;
  -webkit-transition: 0.4s ease-out;
  -moz-transition: 0.4s ease-out;
  -ms-transition: 0.4s ease-out;
  -o-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}
.html:hover,
.site:hover{
  color: #ffffff;
  background: #008be8;
}
.mail .fa-envelope,
.html .fa-desktop,
.site .fa-sitemap{
  padding-right: 5px;
  font-weight: bold;
}

/* --------------------
  text
-------------------- */
.text_center{
  text-align: center;
  margin-bottom: 20px;
}
.text_notice{
  width: 100%;
  margin-bottom: 20px;
}
.text_confirm{
  padding-top: 10px;
  margin-bottom: 30px;
  border-top: 1px solid #ccc;
  font-size: 20px;
}
.text_error{
  color: #c00000;
  font-size: 20px;
}
.text_error-message{
  font-size: 18px;
  font-weight: bold;
}

/* --------------------
  button
-------------------- */
.button{
  width: 10em;
  padding: 10px;
  background: #FFF;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-family: 'Makinas';
  font-size: 14px;
  text-align: center;
  -webkit-transition: 0.4s ease-out;
  -moz-transition: 0.4s ease-out;
  -ms-transition: 0.4s ease-out;
  -o-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}
.button_send{
  color: #008be8;
  border-color: #008be8;
}
.button_send:hover{
  color: #ffffff;
  background: #008be8;
}
.button_cancel{
  color: #666;
  border-color: #666;
}
.button_cancel:hover{
  color: #ffffff;
  background: #666;
}

/* --------------------
  table
-------------------- */

.table_form{
  width: 100%;
  margin-bottom: 30px;
  border-top: 1px solid #ccc;
}
.table_form th,
.table_form td,
.table_form dt,
.table_form dd{
  border-bottom: 1px solid #ccc;
  text-align: left;
  vertical-align: top;
}
.table_form th,
.table_form dt{
  padding: 14px 16px 14px 10px;
  background: #d5ceb1;
  border-bottom: 1px solid #fff;
}
.table_form td,
.table_form dd{
  padding: 14px 0 14px 16px;
  border-left: 1px solid #ccc;
}
.table_form dt{
  width: 18em;
  clear: left;
  float: left;
}
.table_form dt span{
  display: inline-block;
  margin-left: 5px;
  color: #c00;
  font-size: 14px;
}
.table_form dd{
  min-height: 33px;
  padding: 12px 0 12px 21em;
  border-left: 1px solid #ccc;
}
.table_form dt.table_form-textarea{
  height: 132px;
}

/* --------------------
  form
-------------------- */
.input_text{
  width: 500px;
  padding: 2px 5px;
  border: 2px solid #999;
  border-radius: 5px;
  font-family: 'Makinas';
  font-size: 16px;
}
.form_error{
  padding: 20px;
  border: 1px solid #999;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  font-size: 16px;
}

/* --------------------
  768px以下
-------------------- */
@media screen and (max-width: 768px) {
  .text_notice{
    padding: 0 10px;
  }
  .text_confirm{
    margin: 0 10px 30px;
  }

  .button_send:hover{
    color: #008be8;
    background: #fff;
    border-color: #008be8;
  }
  .button_cancel:hover{
    color: #666;
    background: #fff;
    border-color: #666;
  }


  .table_form dt{
    width: 100%;
    clear: left;
    float: none;
  }
  .table_form dd{
    padding: 12px 10px;
    border-left: none;
  }
  .table_form dt.table_form-textarea{
    height: auto;
  }
  .input_text{
    width: 100%;
  }
  .form_error{
    padding: 10px;
    margin: 10px;
  }
}