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

/* ---------- 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){
}

.flow_a {
  position: relative;
  overflow: hidden;
}

.flow_a .titlebox h2 {
  color: #714F38;
  letter-spacing: .14em;
  font-weight: 400;
  line-height: 1.6;
}

.flow_a .titlebox .sub_en {
  margin-top: 4px;
  color: #95B900;
  line-height: 1;
  letter-spacing: .16em;
}

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

.flow_h .item {
  display: grid;
  grid-template-columns: clamp(300px, 36vw, 460px) 78px 1fr;
  column-gap: clamp(20px, 4vw, 60px);
  position: relative;
  width: 100%;
  padding-bottom: clamp(40px, 6vw, 70px);
}

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

.flow_h .imgbox {
  width: 100%;
  aspect-ratio: 50 / 29;
  overflow: hidden;
  border-radius: 8px;
}

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

.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: calc(70px + 18px);
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  border-left: 1px dotted rgba(149, 185, 0, .55);
  pointer-events: none;
}

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

.flow_h .circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #95B900;
  background: #FEFCFB;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px; /* STEPと数字の間隔を詰める */
}

.flow_h .circle p {
  margin: 0;
  color: #95B900;
  line-height: 1;
  letter-spacing: .08em;
  font-weight: 400;
}

.flow_h .circle p:first-child {
  font-size: 11px;
  letter-spacing: .12em;
}

.flow_h .circle p:last-child {
  font-size: 20px; /* 数字を大きめに */
  letter-spacing: .06em;
}

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

.flow_h .txtbox h3 {
  color: #95B900;
  line-height: 1.7;
  letter-spacing: .12em;
  font-weight: 400;
  margin-bottom: 16px;
}

.flow_h .txtbox p {
  color: #714F38;
}

.flow_h .more_btn {
  justify-content: flex-start;
}

@media screen and (max-width: 900px) {
  .flow_h .item {
    grid-template-columns: clamp(260px, 38vw, 360px) 72px 1fr;
    column-gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .flow_h .item {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "col"
      "imgbox"
      "txtbox";
    gap: 20px;
    padding-bottom: 56px;
    max-width: 460px;
    margin: 0 auto;
  }

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

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

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

  .flow_h .txtbox {
    grid-area: txtbox;
    width: 100%;
    margin: 0 auto;
  }

  .flow_h .txtbox h3 {
    text-align: center;
  }

  .flow_h .more_btn {
    justify-content: center;
  }
}

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

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

  .flow_h .imgbox {
    aspect-ratio: 1.35 / 1;
  }

  .flow_h .txtbox h3 {
    letter-spacing: .08em;
  }
}

/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

