@charset "utf-8";
/* CSS Document */
.flow_section {
  display: none;
}

.flow_section.active {
  display: block;
}
body.gjs-dashed .flow_section {
  display: block;
}

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

.flow_h .item {
  display: grid;
  grid-template-columns: clamp(260px, 32vw, 400px) 72px 1fr;
  column-gap: clamp(10px, 3vw, 40px);
  position: relative;
  padding-bottom: 30px;
  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: calc(56px + 22px);
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  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 h3{
  margin-bottom: 10px;
  color: #33CBBB;
}


.flow_h .txtbox .title {
  margin: 0 0 10px;
  letter-spacing: .02em;
}

.flow_h .txtbox .text {
  margin: 0;
  line-height: 2;
  text-align: justify;
}

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

.flow_h .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flow_h .circle {
  width: clamp(130px, 9vw, 150px);
  aspect-ratio: 1 / 1;
  border: none;
  border-radius: 0;
  background: url("https://booboo-pet.co.jp/system_panel/uploads/images/circle3.png") no-repeat center center / contain;
  text-align: center;
}
.flow_h .circle p {
  margin: 0;
  line-height: 1;
  color: #fff;
    font-family: "Quicksand", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 768px) {
  .flow_h .item {
    position: relative;
    padding-top: 28px;
  }

  .flow_h .col-num {
    position: absolute;
    left: -6px;
    top: -8px;
    z-index: 3;
    margin-bottom: 0;
  }

  .flow_h .circle {
    width: clamp(78px, 20vw, 104px);
  }

  .flow_h .circle p:first-child {
    font-size: 12px;
  }

  .flow_h .circle .entitle3,
  .flow_h .circle .entitle4 {
    font-size: clamp(24px, 7vw, 34px);
  }
}
@media screen and (max-width: 768px) {
    .flow_h h3 {
  text-align: center;
}
    
  .flow_h .col-num {
    grid-area: col;
  }

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

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

  .flow_h .item {
    gap: 20px;
    padding-bottom: 50px;
    max-width: 400px;
    margin: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "col"
      "imgbox"
      "txtbox";
  }

  .flow_h .col-num {
    justify-content: flex-start;
    align-items: flex-start;
      margin-bottom: -10px;
  }

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

  .flow_h .inner {
    padding: 0;
  }

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

  .flow_h .imgbox {
    max-width: 400px;
    justify-self: center;
  }

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

@media screen and (max-width: 576px) {
  .flow_h .txtbox {
    width: 100%;
  }
}

.flow_section {
  scroll-margin-top: 120px;
}


.flow_h h3 {
  color: #7b5d50;
  font-weight: 700;
}

.flow_h .txtbox {
  color: #7b5d50;
}

.flow_h .imgbox {
  border-radius: clamp(24px, 4vw, 46px);
}

.flow_h .col-num::before {
  border-left: 1px dotted rgba(239, 127, 171, 0.45);
}
/* ---------- works ---------- */
.works_section {
  position: relative;
  overflow: hidden;
}

.works_section .works_list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.works_section .works_item {
  position: relative;
}

.works_section .works_imgbox {
  position: relative;
  margin-bottom: 18px;
}

.works_section .works_main_img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: clamp(18px, 2vw, 28px);
}

.works_section .works_icon {
  position: absolute;
  right: -4%;
  bottom: -18%;
  width: clamp(76px, 6vw, 100px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-sizing: border-box;
}

.works_section .works_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #f5ce69;
  line-height: 1;
}

.works_section .works_txt {
  margin-top: 10px;
  letter-spacing: 0.08em;
}

.works_section .works_note {
  letter-spacing: 0.08em;
}

@media screen and (max-width: 900px) {
  .works_section .works_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 28px;
  }
}

@media screen and (max-width: 576px) {
  .works_section .works_list {
    grid-template-columns: 1fr;
    width: min(320px, 100%);
  }
}
/* ---------- local support ---------- */
.local_support_section {
  position: relative;
  overflow: hidden;
}

.local_support_section .local_support_box {
  width: min(1280px, 100%);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(54px, 7vw, 90px) clamp(42px, 7vw, 100px);
  align-items: center;
  gap: clamp(50px, 7vw, 90px);
  border-radius: clamp(42px, 7vw, 90px);
  background: #fffbed;
  box-sizing: border-box;
}

.local_support_section .local_support_imgbox {
  width: min(38%, 420px);
  flex: none;
}

.local_support_section .masked_img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

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

.local_support_section .local_support_txtbox {
  flex: 1;
  min-width: 0;
}

.local_support_section .local_support_txtbox h3 {
  margin-bottom: clamp(22px, 3vw, 36px);
  color: #7b5d50;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.local_support_section .local_support_txtbox .body_txt {
  max-width: 580px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 900px) {
  .local_support_section .local_support_box {
    flex-direction: column;
    text-align: center;
  }

  .local_support_section .local_support_imgbox {
    width: min(360px, 100%);
  }

  .local_support_section .local_support_txtbox .body_txt {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }
}

@media screen and (max-width: 576px) {
  .local_support_section .local_support_box {
    padding: 44px 24px;
    border-radius: 36px;
  }
}
.local_support_section .local_support_titlebox {
  margin-bottom: -20px;
  position: relative;
  z-index: 2;
}
/* ---------- 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){
}

