@charset "utf-8";
/* CSS Document */

div.center input{
	margin-top:15px;
}

/* input area */

input[type=text],
input[type=tel],
select,
textarea{
	border:1px solid #bbb;
	padding: 10px;
	font-size: 16px;
	border-radius: 5px;
}

.phone .tel a {
  display: inline-block;
  color: #333;
  margin-top: 5px;
  font-size: 34px;
  font-weight: bold;
}

/* 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; }

.acms-admin-form-checkbox { display: block; }

/* 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:60px;
	line-height:60px;
	text-align: center;
	border: solid 1px #fff;
	border-left: none;
	position: relative;
	overflow: visible;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.flow li:after{
	content: '';
	display: none;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 0 30px 30px;
	border-color: transparent transparent transparent #1699bb;
	position: absolute;
	top: 50%;
	right: -30px;
	margin-top: -30px;
	z-index: 1;
}

.flow.step02 li.flow02:after{ display: block; }

.flow.step01 li.flow01{	background:#1699bb;	color:#ffffff; }
.flow.step01 li.flow02{	background:#fafafa; color:#999; }
.flow.step01 li.flow03{	background:#eee; color:#999; }

.flow.step01 li.flow01:after { display: block; }

.flow.step02 li.flow01{	background:#eee; color:#999; }
.flow.step02 li.flow02{	background:#1699bb; color:#ffffff; }
.flow.step02 li.flow03{	background:#fafafa; color:#999; }

.flow.step02 li.flow01:after { display: block; }

.flow.step03 li.flow01{	background:#fafafa; color:#999; }
.flow.step03 li.flow02{	background:#eee; color:#999; }
.flow.step03 li.flow03{	background:#1699bb; color:#ffffff; }

/* privacy agreement */

.agreement {
    text-align: center;
    margin-bottom: 30px;
}

.agreement p{
    text-align: center!important;
}

.agreement label {
    display: inline-block;
    margin: 10px 0 0;
    background: #eee;
    padding: 10px 20px;
    cursor: pointer;
}

.agreement label input {
    vertical-align: middle;
    margin: -1px 4px 0 0;
}

/* button */

.btn-area {
	margin: 30px 0;
}

form button {
  display: inline-block;
  min-width: 300px;
  height: 60px;
  line-height: 46px;
  background: #0ba2c7;
  margin: 20px;
  border: 1px solid #0ba2c7;
  position: relative;
  font-family: 'Barlow', 'Noto Sans Japanese';
  font-weight: bold;
  font-size: 114%;
  color: #fff;
  text-decoration: none;
  text-align: center;
  outline: none;
  transition: all .1s;
	cursor: pointer;
}
button.btn-02 {
  border-color: #555;
  background: #fff;
  color: #555;
}

form button:hover, form button:active,
button.btn-02:hover,button.btn-02:active {
	border-radius: 35px;
}


form button:after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  transform: rotate(45deg);
}

button.btn-02:after {
  border-top: solid 2px #555;
  border-right: none;
  border-left: solid 2px #555;
  left: 20px;
  transform: rotate(-45deg);
}

