@charset "utf-8";
/* CSS Document */
.cate1 .imgbox {
  position: relative;
  width: clamp(350px, 50vw, 500px);
  height: 800px;
  overflow: hidden;
}
.cate1 .box1 {
  gap: 0;
}
/* 左上に固定配置 */
.cate1 .img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 340px;
  height: auto;
  border-radius: 40px;
}
/* 下2枚を重ねて絶対配置で自由に動かせるように */
.cate1 .img-2, .cate1 .img-3 {
  position: absolute;
  width: 200px;
  border-radius: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* 左下の畑（img-2） */
.cate1 .img-2 {
  top: 350px;
  right: 0px;
}
/* 右上の大根（img-3） */
.cate1 .img-3 {
  top: 450px;
  left: 20px;
}
/* 飾り野菜（右下端） */
.cate1 .img-4 {
  position: absolute;
  top: 620px;
  right: 0;
  width: 200px;
  pointer-events: none;
}
.delivery-card {
  background: #fff;
  border-radius: 16px;
  padding: clamp(20px, 5vw, 30px) clamp(24px, 6vw, 40px);
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}
/* タイトル（サービス名） */
.delivery-card .title {
  font-weight: bold;
  margin-bottom: 10px;
}
/* 金額 */
.delivery-card .price {
  font-size: clamp(20px, 2vw, 24px);
}
.delivery-card .price1 {
  font-size: 16px;
  font-weight: bold;
  color: #5DB236;
}
.cate5 .profile {
  align-items: stretch;
  gap: 30px;
}
.cate5 .boxwrap {
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}
.cate5 .imgbox {
  background-color: #fff;
  width: 190px;
  height: 190px;
  margin: -100px auto 16px;
  border-radius: 50%;
  border: #EFEFCB solid 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cate5 .imgbox img {
  width: 160px;
  height: auto;
}
.cate5 .role {
  text-align: center;
  margin-bottom: 4px;
}
.cate5 .name {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
.cate6 .gallery {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  gap: 20px;
  padding: 40px 20px;
  background: #f4f0ec;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.cate6 .item {
  width: calc(50% - 10px);
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.cate6 .gallery-1 {
  width: calc(25% - 15px);
}
.cate6 .gallery-3 {
  width: calc(25% - 15px);
}
.more .icon {
    width: 34px;
    aspect-ratio: 1 / 1;
    background-color: #4BA223;
    border: #E0ECD6 solid 2px;
    border-radius: 50%;
    transition: ease 0.3s;
}
.main-wrap .more .icon i {
    color: #FAF9F5;
    font-size: 15px;
}
.main-wrap .more p {
    color: #4BA223;
    font-family: "Quicksand", sans-serif;
    line-height: 1;
    font-weight: 700;
}
.main-wrap .more > div {
    position: relative;
    z-index: 2;
    gap: 10px;
    border-radius: 10px;
    padding: 15px;
}

.main-wrap .link-box a{
      background: #4caf1d;
  padding: 16px;
  border-radius: 20px;
  margin: 40px auto;
}
.main-wrap .link-box-inner {
  background: #fff;
  border-radius: 14px;
  padding: 24px 30px;
   flex-wrap: nowrap;
}
.main-wrap .site-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.main-wrap .logo {
  width: 250px;
  margin-bottom: 10px;
}
.main-wrap .site-info h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}
.main-wrap .site-info p {
  font-size: 14px;
  margin: 0;
  color: #333;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  .cate5 .boxwrap {
    max-width: 800px;
    flex-direction: column;
    margin: 0 auto;
  }
  .cate5 .profile {
    gap: 120px;
  }
  .cate6 .gallery {
    gap: 20px;
  }
  .cate6 .item {
    width: calc(50% - 10px);
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }
  .cate6 .gallery-1 {
    width: calc(25% - 15px);
  }
  .cate6 .gallery-3 {
    width: calc(25% - 15px);
  }
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
 .cate6  .gallery {
    gap: 12px;
  }
 .cate6  .item {
    width: calc(50% - 6px);
    height: 220px;
  }
 .cate6  .gallery-1 {
    width: calc(25% - 9px);
  }
 .cate6  .gallery-3 {
    width: calc(25% - 9px);
  }
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
 .cate6  .gallery {
    gap: 12px;
  }
 .cate6  .item {
    width: calc(50% - 6px);
    height: 160px;
  }
.main-wrap .link-box-inner {
flex-direction: column;
}

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