@charset "utf-8";
/* CSS Document */

div.center input{
  margin-top:15px;
}

p.center a:link {
  text-decoration: underline
}
p.center a:hover {
  text-decoration: none;
}

/* input area */

input[type=text], 
input[type=email], 
textarea{
  border:1px solid #bbb;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
}

textarea {
  max-width: 860px;
}

input[type="radio"] {
  width: 100%;
  height: 100%;
}
.acms-admin-form-checkbox,
.acms-admin-form-radio {
  padding: 5px 0;
}

/* 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:25%;
  text-align:left;
}

.content table.flow01 th {
  padding-top: 15px;
}

.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%;
}

.td2 td {
  display: flex;
}
.td2 td > div {
  margin-right: 2rem;
}
.td2 td > div input {
  margin-left: 1rem;
}

@media all and (max-width: 768px) { 
  .content table th {
    width: 100%;
    padding-top: 10px;
  }

  .td2 td {
    flex-direction: column;
  }
  .td2 td > div {
    margin-bottom: 1rem;
  }

}

/* 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;
  margin: 0.5rem 0 0;
  background: #aaa;
  float: right;
}

th.required:before {
  content: "必須";
  background: #a61f2f;
}

.notForm th:before {
  content: none;
}

/* 入力例 */
.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: 90%;
  color: #dd0000;
  padding: 0 0 0 20px;
  background: url(../images/form/icon_information.png) no-repeat 0 0.3em;
  background-size: 16px auto;
  margin: 0 0 5px 0;
}

.content span.error {
  display: inline-block;
}


input.error,
textarea.error {
  border: 1px solid #ee9899;
}

/* フォームボタン */
.form-button {
  margin-top: 40px;
}

.form-button form {
  display: inline;
  padding: 0 20px;
}


/* flow */
/* flow */

.content .flow {
  margin: 30px 0;
  overflow: hidden;
}

.flow li{
  float:left;
  width:33.3%;
  height:40px;
  line-height:40px;
  text-align: center;
  position: relative;
  overflow: visible;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.flow li::after{
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 10px;
  border-color: transparent transparent transparent #084593;
  position: absolute;
  top: 50%;
  right: -10px;
  margin-top: -20px;
  z-index: 1;
}

.flow li:last-child::after{
  display: none;
}

.flow.step01 li.flow01{	background:#084593;	color:#ffffff; }
.flow.step01 li.flow02{	background:#ebebeb; color:#aaa; }
.flow.step01 li.flow03{	background:#f5f5f5; color:#aaa; }

.flow.step01 li.flow02::after { border-color: transparent transparent transparent #ebebeb; }

.flow.step02 li.flow01{	background:#ebebeb; color:#aaa; }
.flow.step02 li.flow02{	background:#084593; color:#ffffff; }
.flow.step02 li.flow03{	background:#f5f5f5; color:#aaa; }

.flow.step02 li.flow01::after,
.flow.step03 li.flow01::after{ border-color: transparent transparent transparent #ebebeb; }

.flow.step03 li.flow01{	background:#ebebeb; color:#aaa; }
.flow.step03 li.flow02{	background:#f5f5f5; color:#aaa; }
.flow.step03 li.flow03{	background:#084593; color:#fff; }

.flow.step03 li.flow02::after{ border-color: transparent transparent transparent #f5f5f5;}



/* privacy agreement */

.agreement {
    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 {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  display: inline-block;
  min-width: 300px;
  height: 63px;
  line-height: 63px;
  font-weight: bold;
  background: #fff;
  color: #084593;
  border: 2px solid #084593;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  position: relative;
}

button.btn-02 {
  background: #fff;
  border:2px solid #c9c9c9;
  color: #000;
 }

button:hover,button:active {
  background: #084593;
  color: #fff;
}

button.btn-02:hover,
button.btn-02:active{
  background: #c9c9c9;
  color: #fff;
}

button:after{
  display: none;
}

/*button:after {
  content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: solid 2px #084593;
    border-right: solid 2px #084593;
    position: absolute;
    top: 50%;
    right: 20px;
  margin-top: -4px;
    transform: rotate(45deg);
}

button.btn-02::after {
    border-top: solid 2px #c9c9c9;
    border-right: none;
    border-left: solid 2px #c9c9c9;
    left: 20px;
    transform: rotate(-45deg);
}

button:hover::after,
button.btn-02:hover::after{
  border-color: #fff;
}*/

p.center.btn a {
  padding: 10px 20px;
  line-height: 1.6;
  text-decoration: none;
}

/* sp */

@media all and (max-width: 768px) { 
  table{
    border:none;
    width: 100%;
  }

  colgroup{
    display: none;
  }

  table th,
  table td{
    display:block;
    border:none;
    border-top:1px solid #ccc;
    padding: 15px 10px;
    width: 100%;
  }

  table tbody th + td{
    border-top:none;
  }

  input[type=text], input[type=email], textarea{
    width: 100%;
  }

  table td dl dt{
    float: none;
    width: auto;
  }

  table td dl dd{
    padding: 0 0 10px;
  }

  .btn-02{
    margin-bottom: 20px;
  }
}