@charset "utf-8";
/* CSS Document */

.flow_h .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.flow_h .item {
  display: grid;
  grid-template-columns: 45% 72px 1fr;
  gap: clamp(14px, 4vw, 20px);
  position: relative;
  width: 100%;
  padding-bottom: clamp(42px, 6vw, 70px);
}

.flow_h .item:last-child {
  padding-bottom: 0;
}

.flow_h .col-num {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.flow_h .col-num::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 78px;
  bottom: 0;
  transform: translateX(-50%);
  border-left: 1px dotted rgba(38, 39, 39, 0.45);
  pointer-events: none;
}

.flow_h .item:last-child .col-num::before {
  display: none;
}

.flow_h .circle {
  width: 64px;
  height: 64px;
  border: 1px dotted #333;
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.flow_h .circle p {
  margin: 0;
  color: #333;
  font-family: "Sen", "Noto Sans JP", sans-serif;
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.flow_h .circle p:last-child {
  margin-top: 3px;
  font-size: 16px;
}

.flow_h h3 {
  margin-bottom: 20px;
  color: #333;
  letter-spacing: 0.08em;
}

.flow_h .txtbox {
  margin-top: 16px;
}

.flow_h .imgbox {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.flow_h .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow_h .more_e2 {
  justify-content: flex-start;
  width: min(260px, 100%);
}

.flow_h .more_e2 a {
  width: 100%;
}

@media screen and (max-width: 900px) {
  .flow_h .item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "col"
      "imgbox"
      "txtbox";
    gap: 24px;
    max-width: 560px;
    margin: 0 auto;
  }

  .flow_h .col-num {
    grid-area: col;
    justify-content: flex-start;
  }

  .flow_h .imgbox {
    grid-area: imgbox;
  }

  .flow_h .txtbox {
    grid-area: txtbox;
    margin-top: 0;
  }

  .flow_h .col-num::before {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .flow_h .item {
    padding-bottom: 56px;
  }

  .flow_h .circle {
    width: 58px;
    height: 58px;
  }

  .flow_h h3 {
    margin-bottom: 16px;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

