@charset "UTF-8";
/* Scss Document
*****************************************************************/
/* mixin
*********************************************************************/
/* カラー */
/*$point03: linear-gradient(90deg, #ebeced 0%, #fffeea 25%, #e0dacf 55%, #f4f4f4 75%, #e1dec6 100%);*/
/*$point03: linear-gradient(90deg, #b3975f 0%, #fbf5c2 25%, #cab059 70%, #fbf5c2 100%);*/
/* media query */
/* SP縦から */
/* SP横から */
/* タブレット縦から */
/* フルワイド */
/* font */
/* Flow
*****************************************************************/
.flow {
  padding: 80px 0;
}
@media all and (max-width: 896px) {
  .flow {
    padding: 60px 0;
  }
}
@media all and (max-width: 480px) {
  .flow {
    padding: 40px 0;
  }
}
.flow .box_flow {
  padding-bottom: 100px;
  position: relative;
  display: block;
}
@media all and (max-width: 896px) {
  .flow .box_flow {
    padding-bottom: 60px;
  }
}
.flow .box_flow:before {
  content: "";
  background: url("../images/mark.png") no-repeat center center/100% auto;
  width: 90px;
  height: 50px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  position: absolute;
  display: block;
}
@media all and (max-width: 896px) {
  .flow .box_flow:before {
    width: 70px;
    height: 40px;
    bottom: 10px;
  }
}
.flow .box_flow.last {
  padding-bottom: 50px;
}
@media all and (max-width: 896px) {
  .flow .box_flow.last {
    padding-bottom: 30px;
  }
}
.flow .box_flow.last:before {
  display: none;
}
.flow .box_flow ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media all and (max-width: 896px) {
  .flow .box_flow ul {
    flex-direction: column-reverse;
  }
}
.flow .box_flow ul li {
  width: 49%;
}
@media all and (max-width: 896px) {
  .flow .box_flow ul li {
    width: 100%;
  }
}
.flow .box_flow ul li .image {
  position: relative;
}
@media all and (max-width: 896px) {
  .flow .box_flow ul li .image {
    margin: 15px 0 0;
  }
}
.flow .box_flow ul li .caption {
  font-size: 1.4rem;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media all and (max-width: 480px) {
  .flow .box_flow ul li .caption {
    font-size: 1.2rem;
    bottom: 5px;
    right: 5px;
  }
}
.flow .box_flow ul li .caption.white {
  color: #fff;
}
.flow .box_flow ul li dl {
  margin-top: 20px;
  display: flex;
}
@media all and (max-width: 896px) {
  .flow .box_flow ul li dl {
    margin-top: 0;
  }
}
.flow .box_flow ul li dl dt {
  margin: 0 10px 10px 0;
  padding: 15px 10px 10px 10px;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  background: #a6373e;
  display: block;
}
@media all and (max-width: 896px) {
  .flow .box_flow ul li dl dt {
    font-size: 1.4rem;
  }
}
.flow .box_flow ul li dl dd {
  color: #a6373e;
  font-size: 2.5rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 896px) {
  .flow .box_flow ul li dl dd {
    font-size: 2.2rem;
  }
}
.flow .box_flow ul li .text {
  margin-top: 20px;
  line-height: 1.8;
}
@media all and (max-width: 896px) {
  .flow .box_flow ul li .text {
    margin: 0;
  }
}
.flow .box_flow ul li .note {
  margin-top: 10px;
  line-height: 1.8;
}
@media all and (max-width: 896px) {
  .flow .box_flow ul li .note {
    margin-top: 5px;
  }
}
.flow .box_flow ul li .box {
  margin-top: 20px;
  display: flex;
  border: 1px solid #a6373e;
}
@media all and (max-width: 896px) {
  .flow .box_flow ul li .box {
    margin-top: 10px;
    display: block;
  }
}
.flow .box_flow ul li .box .ttl {
  padding: 10px;
  font-size: 1.4rem;
  text-align: center;
  border-right: 1px solid #a6373e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 110px;
  flex-shrink: 0;
}
@media all and (max-width: 896px) {
  .flow .box_flow ul li .box .ttl {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #a6373e;
    display: block;
  }
}
.flow .box_flow ul li .box .txt {
  padding: 5px 10px;
  font-size: 1.4rem;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 896px) {
  .flow .box_flow ul li .box .txt {
    padding: 10px;
    text-align: left;
    display: block;
  }
}
