@charset "utf-8";
/* CSS Document */

div.center input{
  margin-top:15px;
}

/* input area */

input[type=text], 
textarea,
select{
  border:1px solid #bbb;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
}

/* icon */

.require, 
.norequire{
  float: right;
  display: inline-block;
  font-size: 78%;
  padding: 0 5px;
  color: #fff;
  border-radius: 5px;
}

.require  { background: #666; }
.norequire{ background: #ccc; }

/* base */

table {
  width:100%;
}

table th,
table td {
  padding:10px;
}

.content table th {
  width:150px;
  text-align:left;
}

.content table dl {
  margin : 0;
}

.content table table {
  width: 500px;
  background: none;
  margin : 0;
}

table table th,
table table td {
  background: none;
  border: none;
  padding: 3px;
}

table table th {
  width: 160px;
  font-size: 85%;
}

/* dl */

table td dl dt{
  float:left;
  clear:left;
  padding:0 10px 0 0;
  width:13em;
}

table td dl dd{
  padding:0 0 10px 15em;
}


/* ul */

table td ul li{
  float:left;
  margin-right:10px;
  width:200px;
}

/* 必須アイコン */

th:before {
  content: "任意";
  display: block;
  font-size: 10px;
  font-weight: normal;
  text-align: center;
  color: #fff;
  width: 30px;
  height: 15px;
  line-height: 15px;
  border-radius: 2px;
  margin: 4px 0 0;
  background: #666;
  float: right;
}

th.required:before {
  content: "必須";
  background: #FB5556;
}

/* 入力例 */
.content .example {
  font-size: 78%;
  color: #666;
  margin: 3px;
  padding: 0;
}


/* メールアドレス入力文 */
.content .email-text {
  font-size: 85%;
  margin: 10px 0 5px;
}

/* --- エラー -- */

.content .error {
  font-size: 85%;
  color: #dd0000;
  padding: 0 0 0 15px;
  background: url(../images/form/icon_information.png) no-repeat 0 0.2em;
  margin: 5px 0;
}

.content table table p.error {
  font-size: 91%;
}


input.error,
textarea.error {
  border: 1px solid #ee9899;
}

/* フォームボタン */
.form-button form {
  display: inline;
  padding: 0 20px;
}

/* flow */

.content .flow {
  margin: 30px 0;
  overflow: hidden;
}

.flow li{
  float:left;
  width:33.3%;
  height:40px;
  line-height:40px;
  text-align: center;
  border: solid 1px #ed9d11;
  border-left: none;
  position: relative;
  overflow: visible;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.flow li:first-child {
  border-left: solid 1px #ed9d11;
}
.flow li:after{
  content: '';
  display: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #ed9d11;
  position: absolute;
  top: 50%;
  right: -10px;
  margin-top: -10px;
  z-index: 1;
}

.flow.step02 li.flow02:after{ display: block; }

.flow.step01 li.flow01{	background:#ed9d11;	color:#ffffff; }
.flow.step01 li.flow02{	background:#fff; color:#333; }
.flow.step01 li.flow03{	background:#fff; color:#333; }

.flow.step01 li.flow01:after { display: block; }

.flow.step02 li.flow01{	background:#fcfcdc; color:#ed9d11; }
.flow.step02 li.flow02{	background:#ed9d11; color:#ffffff; }
.flow.step02 li.flow03{	background:#fff; color:#333; }

.flow.step02 li.flow01:after { display: block; }

.flow.step03 li.flow01{	background:#fcfcdc; color:#ed9d11; }
.flow.step03 li.flow02{	background:#fcfcdc; color:#ed9d11; }
.flow.step03 li.flow03{	background:#ed9d11; color:#ffffff; }

/* privacy agreement */

.agreement {
    text-align: center;
    margin-bottom: 30px;
}
.agreement p {
    text-align: center;
    margin-bottom: 30px;
}

.agreement label {
    display: inline-block;
    margin: 10px 0 0;
    background: #fff7ee;
    padding: 10px 20px;
    cursor: pointer;
}

.agreement label input {
    vertical-align: middle;
    margin: -1px 4px 0 0;
}

/* button */

.btn-area {
  margin: 30px 0;
}

button {
  display: inline-block;
  min-width: 300px;
  height: 60px;
  font-size: 114%;
  line-height: 60px;
  background: #ed9d11;
  border: solid 1px #ed9d11;
  color: #fff;
  text-decoration: none;
  text-align: center;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

button.btn-02 {
  background: #fcfcdc;
  color: #ed9d11;
}

button:hover,button:active {
  background: #fff;
  color: #333;
}

button:hover::after,button:active::after {
  border-color: #333;
}

button:after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  transform: rotate(45deg);
}

button.btn-02:after {
  border-top: solid 1px #ed9d11;
  border-right: none;
  border-left: solid 1px #ed9d11;
  left: 20px;
  transform: rotate(-45deg);
}
button.btn-02:hover::after { border-color: #333; }

