@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;
  padding-bottom: clamp(42px, 6vw, 70px);
  width: 100%;
}

.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: 0px;
  transform: translateX(-50%);
  border-left: 1px dotted rgba(38,39,39,.45);
  pointer-events: none;
}

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

.flow_h .circle{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #9ABBA6;
  align-items: center;
  justify-content: center;
  text-align: center;
    border: none;
    
}

.flow_h .circle p{
  margin: 0;
  line-height: 1.1;
  letter-spacing: .08em;
  color: #fff;
  font-size: 12px;
}

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

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

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

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

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

/* 予約ボタン */
.flow_h .flow_btns{
  gap: 14px;
  flex-wrap: wrap;
}

.flow_h .flow_btns a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 150px;
  padding: 8px 16px;
  border: 1px solid #9ABBA6;
  border-radius: 999px;
  color: #333;
}

.flow_h .flow_btns a i{
  width: 18px;
  height: 18px;
  background: #9ABBA6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
}

.flow_h .flow_btns a p{
  position: relative;
  padding-right: 22px;
}



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

  .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){
}

