@charset "utf-8";

#contact_flow .heroArea {
  margin-bottom: 15px;
}

.contact_flowArea--02 {
  margin-bottom: 100px;
}
.sectionArea .contact_flow_inner {
  padding: 40px 0 0 40px;
}
@media screen and (max-width:480px) {
  .contact_flowArea--02 {
    margin-bottom: 80px;
  }
  .sectionArea .contact_flow_inner {
    padding: 20px;
  }
}

.contact_flowArea .breadcrumbs {
  display: flex;
  gap: 1em;
  margin-bottom: 50px;
}
.contact_flowArea .breadcrumbs .breadcrumbs__text {
  font-size: 12px;
  margin: 0;
}
.contact_flowArea .breadcrumbs > a[href="/"] {
  color: #3366cc;
}

.contact_flow__element {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  margin-top: 40px;
  position: relative;
}
.contact_flow__element:first-child {
  margin-top: 0;
}
.contact_flow__element::after {
  content: "";
  width: 1px;
  height: 100%;
  display: inline-block;
  background: #bfbfbf;
  position: absolute;
  z-index: 2;
  left: calc(24px / 2);
  top: calc(24px + 10px);
}
.contact_flow__element:last-child:after {
  content: none;
}
.contact_flow__num {
  background-color: #02bdd8;
  border-radius: 50%;
  width: 100%;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_flow__num .num {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}
.contact_flow__contents {
  display: grid;
  /* grid-template-columns: 1fr 360px; */
  grid-template-columns: 1fr 320px;
  gap: 40px;
  /* grid-template-columns: 1fr;
  gap: 30px; */
  align-items: center;
  background-color: #F4F8Fa;
  border-radius: 7px;
  padding: 30px 40px 25px 30px;
}
.contact_flow__contents__text {}

.contact_flow__contents__text .head {
  font-size: 18px;
  font-weight: 600;
}
.contact_flow__contents__text .text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.7;
}
.contact_flow__contents__img {}


@media screen and (max-width:480px) {
  .contact_flow__contents {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px 20px;
  }
}

.contact__btn {
  margin-top: 60px;
}
.contact__btn .btn__link {
  background-color: #02bdd8;
  font-size: 17px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  box-sizing: border-box;
  padding: 20px 10px;
  width: min(90% , 380px);
  min-height: 70px;
  margin: auto;
  border-radius: 35px;
}
.contact__btn .btn__link::after {
  content: "";
  background-image: url(/common/img/icon_arrow_right_white.png);
  width: 16px;
  height: 5px;
  background-repeat: no-repeat;
  background-position: center;

  position: absolute;
  right: 16px;
}

@media screen and (max-width:480px) {
  .contact__btn {
    margin-top: 40px;
  }
}
