/* ## header ===============================
ãƒ˜ãƒƒãƒ€ãƒ¼è¨­å®š */

body{
  padding-top: 180px;
}
.test:after {
  content: "";
  display: block;
  background-color: #ddd;
  width: 100px;
  height: 100px;
}
/* -- default -------------------*/
#header * {
  box-sizing: border-box;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  max-width: 100%;
  text-align:left;
  border-bottom: 1px solid #CACACA;
  background-color: #F5F5F5;
  display: block;
  margin: 0;
  padding: 0;
  height: 82px;
  overflow: hidden;
  box-sizing: border-box;
}
@media print {
  #header {position:absolute}
}
.head_body {
  position: relative;
  display: flex;
  width: 900px;
  height: 100%;
  margin:0 auto;
  padding:0;
}
.headMain {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 100%;
  background-color: #FFFFFF;
  overflow: hidden;
}
/* -- title logo -------------------*/
.logo {
  width: 125px;
}
.logo a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: bold;
  font-size: 30px;
  text-decoration: none;
  line-height: 1;
}
.logo a img {
  width: 100%;
}

/* --flow -------------------*/
.flow{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 650px;
  background: #F5F5F5;
  position: relative;
}
.flow ul{
  display: flex;
  justify-content: space-between;
  width: 360px;
  height: 52px;
  position: relative;
  z-index: 1;
}
.flow:before {
  height: 2px;
  width: 360px;
  display: block;
  margin: 0 auto;
  content: "";
  background: #034694;
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
}
.flow li{
  position: relative;
  height: 100%;
  z-index: 10;
  list-style: none;
}
.flow li p{
  position: absolute;
  margin: 0;
  bottom: 0;
  left: 50%;
  line-height: 1.2;
  color: #034694;
  min-width: 100px;
  text-align: center;
  transform: translateX(-50%);
}
.flow li span{
  display: block;
  border-radius: 50%;
  border: 2px solid #034694;
  background: #FFF;
  color: #034694;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
}
.flow li.on span{
  background: #999;
  border-color: #999999;
  color: #FFF;
}
.flow li.act span{
  background: #034694;
  border-color: #034694;
  color: #FFF;
}
.flow li.act p{
  color: #034694;
}
@media screen and (min-width: 769px) {
  .flow li {
    margin-right: 130px;
  }
  .flow li:last-of-type {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  body{
    padding-top: 120px;
  }
  #header {
    height: auto;
  }
  .head_body {
    display: block;
    width: 100%;
  }
  .headMain {
    width: 100%;
    height: 48px;
  }
  .logo {
    width: 63px;
  }
  .flow {
    width: 100%;
    height: 65px;
  }
  .flow:before {
    width: 250px;
    max-width: 100%;
    top: 22px;
  }
  .flow ul {
    width: 250px;
  }
  .flow li p {
    min-width: 60px;
    font-size: 10px;
  }
}