@charset "UTF-8";

.clip-path-polygon {
  list-style: none;
  overflow: hidden;
  justify-content: center;
  display: flex;
  font-size: 18px;
  box-sizing: border-box;
}
 
.clip-path-polygon li {
  display: block;
  white-space: nowrap;
}
.clip-path-polygon li:first-of-type span {
  padding-left: 10px;
  border-left: 1px solid #fff;
}
.clip-path-polygon li.active span {
  background: #FFB62F;
  color: #fff;

}
.clip-path-polygon li span {
  cursor: default;
}
 
 .clip-path-polygon span {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 0 10px 0 10px;
  display: inline-block;
  position: relative;
  font-size: 10px;
  line-height: 20px;
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
  background: #CCC;
}

.clip-path-polygon li:first-child span{
 border-radius: 10px 0 0 10px;
}

.clip-path-polygon li:last-child  span{
  border-radius: 0 10px 10px 0;
  min-width: 140px;
  padding-left: 25px;
}

.clip-path-polygon li:nth-of-type(1) {
  z-index: 4;
}
.clip-path-polygon li:nth-of-type(2) {
  z-index: 3;
}
.clip-path-polygon li:nth-of-type(3) {
  z-index: 2;
  border-radius: 0 10px 10px 0;
}


 .clip-path-polygon span::before, .clip-path-polygon span::after {
  content: '';
  display: block;
  height: calc(100% + 2px);
  width: 122px;
  position: absolute;
  top: -1px;
  right: -122px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 20px 50%);
    clip-path: polygon(0 0, 0% 100%, 20px 50%);
}
 .clip-path-polygon span::before {
  right: -116px;
  background: inherit;
  z-index: 1;
}
.clip-path-polygon span::after {
  right: -120px;
  background: #fff;
}

 .clip-path-polygon li:last-child span::before {
 content: '';
 display: block;
 height: inherit;
 width: 122px;
 position: absolute;
 top: -1px;
 right: -122px;
 -webkit-clip-path: polygon(0 0, 0% 100%, 30px 50%);
 clip-path: polygon(0 0, 0% 100%, 30px 50%);
}

.register-header {
    text-align: left;
    padding: 10px 10px
}
.register-header h1{
    color: gray;
    font-size: 15px;
    margin-bottom: 10px;
}
.register-header div {
    width: 100%;
}
.register-header hr{
    border: 1px solid gray;
    margin-bottom: 20px;
}
.register-header table{
    width: 100%;
}
.register-header td.title {
    text-align: left;
}
.register-header td.signin {
    text-align: right;
    vertical-align: top;
}
.register-header div.signin {
    color:#81A3FF;
    border-radius:5px;
    border: 1px solid #81A3FF;
    text-align: center;
    background: white;
    font-size:14px;
}

.trial-caution-area {
    text-align: left;
    font-size: 10px;
    /* background-color: #fff; */
    padding: 5px;
    border: solid 1px #eee;
}