/* CSS Document */
.graybox01 {
  background-color: #f4f4f4;
  display: flex;
  position: relative;
}
.graybox01 .num {
  position: absolute;
  left: 0;
}

.txt_emp01 {
  display: flex;
}
.txt_emp01 > * {
  margin: 0;
}
.txt_emp01 > *:nth-of-type(1) span {
  display: flex;
  background-color: #00a54f;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
}

.bdrbtn {
  display: block;
  text-align: center;
  border-radius: 100px;
  position: relative;
}
.bdrbtn:visited, .bdrbtn:link, .bdrbtn:hover, .bdrbtn:active {
  color: #ffffff;
  text-decoration: none;
}
.bdrbtn:after {
  content: "";
  display: block;
  border-top: 2px #ffffff solid;
  border-right: 2px #ffffff solid;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.type01.bdrbtn {
  background-color: #f04237;
  box-shadow: 0px 5px 0 #c0352c;
}
.type02.bdrbtn {
  background-color: #061e81;
  box-shadow: 0px 5px 0 #051867;
}

.loginbox {
  display: flex;
  position: relative;
}
.min.loginbox {
  align-items: center;
}
.loginbox p {
  margin: 0;
}
.loginbox:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #00a54f;
}

.graybox01 {
  padding: 30px;
}
.graybox01 .num {
  top: -25px;
}

.txt_emp01 > *:nth-of-type(1) {
  flex: 0 0 28px;
  max-width: 28px;
}
.txt_emp01 > *:nth-of-type(1) span {
  height: 28px;
}
.txt_emp01 > *:nth-of-type(2) {
  flex: 0 0 calc(100% - 28px);
  max-width: calc(100% - 28px);
}

.bdrbtn {
  padding: 0.7em 0 0.5em;
}
.bdrbtn:hover {
  text-decoration: underline;
}
.bdrbtn:after {
  width: 8px;
  height: 8px;
}

.loginbox:after {
  left: 54px;
}
.loginbox.min:after {
  height: calc(100% - 16px);
  top: 8px;
}
.loginbox > *:nth-of-type(1) {
  flex: 0 0 50px;
  max-width: 50px;
}
.loginbox > *:nth-of-type(2) {
  flex: 0 0 calc(100% - 50px);
  max-width: calc(100% - 50px);
}

