@charset "utf-8";
/*  flow.css
---------------------------------------------- */

/*  pc
---------------------------------------------- */
/*----------------------------
 flow
 ----------------------------*/
#flow .flow-sent p {
  text-align: center;
}
#flow .flow-sent_txt01 {
  margin-bottom: 40px;
  font-size: 2.8rem;
}
#flow .flow-sent_txt02 {
  font-family: "Noto Sans JP", sans-serif;
}
#flow .flow-figure {
  position: relative;
  width: fit-content;
  margin: 80px auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}
#flow .flow-figure::before {
  content: "";
  position: absolute;
  top: calc(60px / 2 - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background: #d3cbc6;
}
#flow .flow-figure_item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#flow .flow-figure_item__num {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 60px;
  height: 60px;
  background: #b19e72;
  color: #fff;
  font-size: 32px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 0.7;
  border-radius: 50%;
  z-index: 1;
}
#flow .flow-figure_item__num::before {
  content: "STEP";
  font-size: 12px;
}
#flow .flow-figure_item__ttl {
  width: 45px;
  min-height: 265px;
  flex-grow: 1;
  margin-top: -35px;
  padding: 45px 0 20px;
  background: #fff;
  writing-mode: vertical-rl;
  border-radius: 0 0 40px 40px;
  align-content: center;
}
#flow .flow-list {
  padding: 80px 0 90px;
  background: #fff;
}
#flow .flow-list_wrap__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 4%;
}
#flow .flow-list_wrap__item:not(:last-child) {
  padding-bottom: 70px;
}
#flow .flow-list_wrap__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(110px / 2 - 1.5px);
  width: 3px;
  height: 100%;
  background: #d3cbc6;
}
#flow .flow-list_wrap__item .num {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex: 0 0 auto;
  width: 110px;
  height: 110px;
  background: #b19e72;
  color: #fff;
  font-size: 54px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 0.7;
  border-radius: 50%;
  z-index: 1;
}
#flow .flow-list_wrap__item .num::before {
  content: "STEP";
  font-size: 20px;
}
#flow .flow-list_wrap__item .desc-ttl {
  font-size: 2rem;
}
#flow .flow-list_wrap__item .desc-txt {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
}

/*----------------------------
 service
 ----------------------------*/
#service {
  margin-top: 120px;
  padding-top: 80px;
}
#service .service-head {
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.8rem;
}
#service .service-wrap {
  display: flex;
  justify-content: space-between;
  gap: 3.5%;
}
#service .service-wrap_item {
  width: 50%;
}
#service .service-wrap_item__img {
  position: relative;
  display: block;
  overflow: hidden;
}
#service .service-wrap_item__img img {
  transition: transform 0.6s ease;
}
#service .service-wrap_item__img:hover img {
  transform: scale(1.1);
}
#service .service-wrap_item .label {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background: #3b5d7a;
  color: #fff;
  font-weight: 500;
}
#service .service-wrap_item .label-name {
  font-size: 2.4rem;
}
#service .service-wrap_item .label-view {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
}
#service .service-wrap_item .label-view::after {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../common/img/btn_arrow3.svg) no-repeat center / contain;
}
#service .service-wrap_item__txt {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
}

/*  mobile & smart phone
---------------------------------------------- */
@media only screen and (max-width: 959px) {
  /*----------------------------
 flow
 ----------------------------*/
  #flow .flow-sent_txt01 {
    margin-bottom: 30px;
  }
  #flow .flow-sent_txt02 {
    font-size: 14px;
  }
  #flow .flow-figure {
    width: 100%;
    margin: 30px auto 60px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  #flow .flow-figure::before {
    top: 0;
    left: calc(55px / 2 - 1px);
    width: 2px;
    height: 100%;
  }
  #flow .flow-figure_item {
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
  }
  #flow .flow-figure_item__num {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
  #flow .flow-figure_item__num::before {
    font-size: 10px;
  }
  #flow .flow-figure_item__ttl {
    width: calc(100% - 55px / 2);
    min-height: inherit;
    height: 40px;
    flex-grow: inherit;
    margin: 0 0 0 -30px;
    padding: 0 10px 0 40px;
    writing-mode: inherit;
    border-radius: 0 40px 40px 0;
  }
  #flow .flow-list {
    padding: 60px 0;
  }
  #flow .flow-list_wrap::before {
    content: none;
  }
  #flow .flow-list_wrap__item {
    gap: 10px;
  }
  #flow .flow-list_wrap__item:not(:last-child) {
    padding-bottom: 30px;
  }
  #flow .flow-list_wrap__item:not(:last-child)::before {
    left: calc(55px / 2 - 1px);
    width: 2px;
    height: 100%;
  }
  #flow .flow-list_wrap__item .num {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
  #flow .flow-list_wrap__item .num::before {
    font-size: 10px;
  }
  #flow .flow-list_wrap__item .desc-txt {
    margin-top: 5px;
    font-size: 14px;
  }

  /*----------------------------
 service
 ----------------------------*/
  #service {
    margin-top: 60px;
    padding-top: 60px;
  }
  #service .service-wrap {
    flex-direction: column;
    gap: 30px;
  }
  #service .service-wrap_item {
    width: 100%;
  }
  #service .service-wrap_item .label {
    height: 40px;
    padding: 0 10px;
  }
  #service .service-wrap_item .label-name {
    font-size: 16px;
  }
  #service .service-wrap_item .label-view {
    gap: 5px;
  }
  #service .service-wrap_item .label-view::after {
    width: 14px;
    height: 14px;
  }
  #service .service-wrap_item__txt {
    margin-top: 10px;
    font-size: 14px;
  }
}
