/* Scss Document  painting*/
/* mixin
*********************************************************************/
/* media query */
.area_header {
  background-image: url("../images/main.jpg");
}

.specified ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5px;
}
.specified ul li {
  font-size: 1.6rem;
  line-height: 1.1em;
  padding: 10px;
  border: #FEAF00 solid 1px;
  margin: 5px;
}

.box_flow ul {
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.box_flow ul li {
  border: #EEE3C9 solid 3px;
  border-radius: 16px;
  box-sizing: border-box;
  margin: 5px;
  padding: 10px;
  width: 48%;
  position: relative;
  text-align: center;
}
.box_flow ul li h3 {
  background-color: #EEE3C9;
  font-size: 1.4rem;
  line-height: 1em;
  padding: 4px;
  margin: 0 0 5px;
  color: #077FB0;
}
.box_flow ul li .column {
  display: flex;
}
.box_flow ul li .column p {
  text-align: left;
  padding: 0 0 0 8px;
  line-height: 1.4em;
}
.box_flow ul li .column .thumb {
  line-height: 0em;
}
.box_flow ul li .kome {
  position: absolute;
  bottom: -20px;
  font-size: 1.1rem;
  line-height: 1.4em;
  text-align: left;
}
@media all and (max-width: 1025px) {
  .box_flow ul li {
    width: 48%;
  }
}
@media all and (max-width: 768px) {
  .box_flow h2 {
    font-size: 3rem;
  }
  .box_flow ul li {
    width: 100%;
  }
  .box_flow ul li .kome {
    position: static;
    padding: 4px 0 0;
    bottom: auto;
  }
}
