/* ===============================
recruitMv
=============================== */
.seedMv{
  position:absolute;
  inset:0;
  overflow:hidden;
  padding:0;
  z-index:1;
  margin: 50px 0 0;
  min-height: 100%;
}
.seedMv_slider{
  height:100%;
  overflow:visible;
}
.seedMv .swiper-wrapper{
  height:100%;
  align-items:center;
}
.seedMv .swiper-slide{
  width:min(62vw,980px);
  transition:opacity .6s ease,transform .6s ease;
  /*opacity:.82;*/
}
.seedMv_item{
  transform:scale(.62);
  transform-origin:center center;
  transition:transform .7s ease,opacity .7s ease;
}
.seedMv_shape{
  display:block;
  width:100%;
  height:auto;
  overflow:visible;
  transform-origin:center center;
  /*filter:blur(.2px);*/
}
.seedMv .swiper-slide-active{
  opacity:1;
  z-index:3;
}
.seedMv .swiper-slide-prev,
.seedMv .swiper-slide-next{
  /*opacity:.72;*/
  z-index:2;
}
.seedMv .swiper-slide-active .seedMv_item{
  transform:scale(1);
}
.seedMv .swiper-slide-prev .seedMv_item,
.seedMv .swiper-slide-next .seedMv_item{
  transform:scale(.68);
}
.seedMv .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) .seedMv_item{
  transform:scale(.52);
}
.seedMv .swiper-slide-active .seedMv_shape{
  animation:seedFloatCenter 6s ease-in-out infinite;
}
.seedMv .swiper-slide-prev .seedMv_shape,
.seedMv .swiper-slide-next .seedMv_shape{
  animation:seedFloatSideOrganic 8s ease-in-out infinite;
}

@keyframes seedFloatCenterSimple{
  0%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-5px);
  }
  100%{
    transform:translateY(0);
  }
}
@keyframes seedFloatSideOrganic{
  0%{
    transform:rotate(-1.2deg) translateY(0);
  }
  25%{
    transform:rotate(.6deg) translateY(-4px);
  }
  50%{
    transform:rotate(1.2deg) translateY(0);
  }
  75%{
    transform:rotate(-.6deg) translateY(3px);
  }
  100%{
    transform:rotate(-1.2deg) translateY(0);
  }
}

.recruitMv{
  position:relative;
  overflow:hidden;
  background:#f7f8f6;
  min-height:100vh;
  padding:0 20px;
  border-left: solid 5px var(--color-primary);
  border-right: solid 5px var(--color-green-sub);
}
.recruitMv_inner{
  position:relative;
  z-index:2;
  /*max-width:1720px;*/
  margin:0 auto;
  min-height:100vh;
}
.recruitMv_copy{
  position:absolute;
  left:40px;
  bottom:30px;
  z-index:2;
  max-width:780px;
  width: 100%;
}
.recruitMv_en {
  margin: 0 0 40px;
  color: var(--color-red-main);
  font-size: clamp(25px,3vw,38px);
  font-weight: 700;
  line-height: 1;
}
.recruitMv_title{
  margin:0 0 28px;
  line-height:1;
}
.recruitMv_title img{
  display:block;
  width:min(100%,900px);
  height:auto;
}
.recruitMv_text{
  margin:0;
  color:var(--color-red-main);
  font-size:clamp(18px,1.35vw,20px);
  font-weight:500;
  line-height:1.8;
}
.recruitMv_dataLink{
  position:absolute;
  right:40px;
  bottom:10px;
  z-index:3;
  display:block;
  width:clamp(140px,14vw,280px);
  transition:transform .3s ease;
}
.recruitMv_dataLink:hover{
  transform:translateY(3px);
}
.recruitMv_dataLink img{
  display:block;
  width:100%;
  height:auto;
}

@media (max-width:1024px){
  .seedMv .swiper-slide{
    width:76vw;
  }
  .seedMv_item{
    transform:scale(.7);
  }
  .seedMv .swiper-slide-prev .seedMv_item,
  .seedMv .swiper-slide-next .seedMv_item{
    transform:scale(.62);
  }
  .recruitMv_inner{
    min-height:720px;
  }
  .recruitMv_copy{
    position:absolute;
    left:20px;
    bottom:40px;
    z-index:2;
    max-width:900px;
  }
  .recruitMv_dataLink{
    right:20px;
    bottom:20px;
    width:160px;
	top: 120px;
  }
}
@media (max-width:767px){
  .recruitMv{
    position:relative;
    min-height:100vh;
    height:100svh;
    padding:0;
    overflow:hidden;
  }
  .recruitMv_inner{
    position:relative;
    min-height:100%;
    height:100%;
    padding:0 16px 20px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    z-index:2;
  }
  .seedMv{
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    height:68%;
    margin:0;
    overflow:visible;
    z-index:1;
  }
  .seedMv_slider,
  .seedMv .swiper-wrapper{
    height:100%;
    overflow:visible;
  }
  .seedMv .swiper-wrapper{
    align-items:center;
  }
  .seedMv .swiper-slide{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .seedMv_item{
    margin:0 auto;
    transform:scale(.92);
		width:94vw;
		max-width:94vw;
	}
  .seedMv .swiper-slide-active .seedMv_item{
    transform:scale(1.4);
  }
  .seedMv .swiper-slide-prev .seedMv_item,
  .seedMv .swiper-slide-next .seedMv_item{
    transform:scale(.9);
  }
  .seedMv .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) .seedMv_item{
    transform:scale(.9);
  }
  .seedMv_shape{
    display:block;
    width:100%;
    height:auto;
  }
	.recruitMv_copy{
	  position:relative;
	  z-index:2;
	  width:100%;
	  max-width:100%;
	  margin-top:auto;
	  padding-right:0;
	  overflow:hidden;
	  left: 0;
	}
	.recruitMv_title{
	  width:100%;
	  max-width:100%;
	}
	.recruitMv_title img{
	  display:block;
	  width:100%;
	  height:auto;
	  object-fit:contain;
	}
  .recruitMv_en{
    font-size:clamp(20px,6vw,32px);
    margin:0 0 14px;
    line-height:1.1;
  }
  .recruitMv_text{
    font-size:15px;
    line-height:1.75;
  }
  .recruitMv_dataLink{
    position:absolute;
    top:122px;
    right:12px;
    z-index:4;
    width:96px;
    margin:0;
	height: fit-content;
  }
}

/* ===============================
seedMessage
=============================== */
.seedMessage{
  position:relative;
  background:#ded1c2;
  padding:clamp(36px,5vw,72px) 0 clamp(70px,7vw,86px);
}
.seedMessage_texture{
  position:absolute;
  inset:0;
  background:url("/wp-content/uploads/2026/03/soil_texture_mask-scaled.webp") repeat center top/700px auto;
  opacity:.16;
  mix-blend-mode:soft-light;
  pointer-events:none;
}
.seedMessage_inner{
  position:relative;
  z-index:2;
  max-width:1920px;
  min-height:clamp(280px,26vw,320px);
  margin:0 auto;
}
.seedMessage_copy{
  width:min(100%,460px);
  margin:0 auto;
  position:relative;
  z-index:4;
}
.seedMessage_copy img{
  display:block;
  width:100%;
  height:auto;
}
.seedMessage_side{
  position:absolute;
  z-index:2;
}
.seedMessage_side img{
  display:block;
  width:100%;
  height:auto;
}
.seedMessage_side--01{
  left:2.5%;
  top:8%;
  width:min(13.4vw,255px);
}
.seedMessage_side--02{
  left:19%;
  top:8%;
  width:min(12.1vw,230px);
}
.seedMessage_side--03{
  right:17%;
  top:8%;
  width:min(13.4vw,255px);
}
.seedMessage_side--04{
  right:2.5%;
  top:8%;
  width:min(12.1vw,230px);
}
.seedMessage_wave {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  z-index: 5;
  width: 110%;
}
.seedMessage_wave img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width:1100px){
  .seedMessage_wave {
    width: 150%;
  }
}
@media (max-width:1024px){
  .seedMessage{
    padding:28px 0 70px;
  }
  .seedMessage_inner{
    min-height:320px;
    padding:0 12px;
  }
  .seedMessage_copy{
    width:min(100%,520px);
  }
  .seedMessage_side--01{
    left:0;
    top:0;
    width:86px;
  }
  .seedMessage_side--02{
    left:16px;
    bottom:28px;
    top:auto;
    width:78px;
  }
  .seedMessage_side--03{
    right:8px;
    bottom:28px;
    top:auto;
    width:92px;
  }
  .seedMessage_side--04{
    right:0;
    top:0;
    width:78px;
  }
  .seedMessage_wave {
    width: 160%;
	bottom: -30px;
  }
}
@media (max-width:767px){
.seedMessage_copy {
  width: min(100%,280px);
  padding: 25px 0;
}
  .seedMessage{
    padding:22px 0 20px;
  }
  .seedMessage_texture{
    background-size:460px auto;
  }
  .seedMessage_inner{
    min-height:280px;
    padding:0 8px;
  }
  .seedMessage_side--01{
    width:74px;
  }
  .seedMessage_side--02{
    width:68px;
    left:8px;
    bottom:20px;
  }
  .seedMessage_side--03{
    width:84px;
    right:4px;
    bottom:22px;
  }
  .seedMessage_side--04{
    width:68px;
    right:0;
  }
  .seedMessage_wave {
    width: 260%;
	bottom: -30px;
  }
}

/* ===============================
messageSection
=============================== */
.messageSection{
  --msgTitle:#5a3200;
  --msgText:#4b3622;
  --msgAccent:#3f6f58;
  --msgAccentStrong:#228246;
  --msgBtn:#5a9a68;
  --msgBg:url("/wp-content/uploads/2026/03/gp_message_back-scaled.webp");
  position:relative;
  overflow:hidden;
  padding:40px 20px 0;
  background:#f5f6f2;
}
.messageSection_bg{
  position:absolute;
  inset:0;
  background:var(--msgBg) center/cover no-repeat;
}
.messageSection_inner{
  position:relative;
  max-width:1200px;
  margin:0 auto;
}
.messageSection_panel {
  position: relative;
  padding: 80px 40px;
  overflow: visible;
  margin: 0 auto 100px;
}
.messageSection_blob {
  position: absolute;
  top: 5%;
  left: -40%;
  width: 110%;
  height: 110%;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
}
.messageSection_blob svg{
  display:block;
  width:100%;
  height:100%;
  transform-origin:center center;
}
.messageSection_text{
  position:relative;
  z-index:2;
  max-width:520px;
}
.messageSection_en{
  font-size:48px;
  font-weight:700;
  color:var(--msgTitle);
  margin-bottom:24px;
}
.messageSection_copy {
  font-weight: 600;
}
.messageSection_copy p {
  font-size: 110%;
  line-height: 2.3;
  color: var(--msgText);
  margin-bottom: 1.6em;
  letter-spacing: 0.8px;
}
.messageSection_copy span{
  color:var(--msgAccent);
}
.messageSection_copy strong{
  color:var(--msgAccentStrong);
}
.messageSection_btn{
  display:inline-block;
  background:var(--msgBtn);
  color:#fff;
  padding:14px 22px;
  border-radius:8px;
  text-decoration:none;
}
.messageSection_gallery{
  position:absolute;
  right:0;
  top:80px;
  width:420px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.messagePhoto{
  overflow:hidden;
  border-radius:40%;
}
.messagePhoto img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.messageSection_ground{
  height:400px;
}
@media (max-width:960px){
  .messageSection_panel{
    display:flex;
    flex-direction:column;
    padding:150px 10px 10px;
  }
  .messageSection_text{
    max-width:none;
    width:100%;
  }
  .messageSection_gallery{
    position:relative;
    top:auto;
    right:auto;
    width:min(100%,420px);
    margin:32px auto 0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
  }
  .messagePhoto,
  .photo01,
  .photo02,
  .photo03,
  .photo04,
  .photo05,
  .photo06{
    width:100%;
    margin:0;
    transform:none;
  }
.messageSection_blob {
  left: -40%;
  width: 200%;
  height: 80%;
  right: 0;
  margin: 0 auto;
}
}

.jobIntroVisual_bg{
  position:absolute;
  padding:clamp(80px,10vw,140px) 20px clamp(20px,14vw,30px);
  overflow:hidden;
  bottom: 0;
  right: 0;
  left: 0;
}
.jobIntroVisual_copy{
  position:relative;
  z-index:2;
  text-align:center;
}
.messageSection_copyImg{
  display:block;
  width:min(100%,450px);
  height:auto;
  margin:0 auto 50px;
}
.messageSection_sprout{
  display:block;
  width:clamp(200px,6vw,160px);
  height:auto;
  margin:clamp(16px,2vw,24px) auto 0;
}
.jobIntroVisual_sprout{
  position:absolute;
  left:50%;
  bottom:-5px;
  transform:translateX(-50%);
  z-index:5;
  width:110%;
}
.jobIntroVisual_sprout img{
  display:block;
  width:100%;
  height:auto;
}
@media (max-width:767px){
  .jobIntroVisual_bg{
    padding:clamp(50px,8vw,80px) 16px clamp(30px,12vw,20px);
  }
  .jobIntroVisual_copy {
    max-width: 300px;
    margin: 0 auto;
  }
  .messageSection_copyImg{
    width:min(100%,420px);
  }
  .jobIntroVisual_sprout{
   width: 220%;
  }
.messageSection_sprout {
  width: clamp(150px,6vw,160px);
}
}

/* ===============================
jobIntro
=============================== */
.jobIntro{
  position:relative;
  background:#ded1c2;
  padding: clamp(36px,5vw,72px) 0 clamp(70px,7vw,96px);
  margin: 0 auto 100px;
}
.jobIntro_titleEn{
  font-size:clamp(32px,4.2vw,56px);
  line-height:1.1;
  font-weight:700;
}
.jobIntro_titleJa{
  font-size:clamp(18px,2vw,26px);
  font-weight:500;
  padding:0 0 clamp(12px,1.5vw,20px);
  line-height:1.4;
}
.jobIntro_lead {
  font-size: 110%;
  font-weight: 500;
  padding: 0 0 20px;
}
.jobIntro_texture{
  position:absolute;
  inset:0;
  background:url("/wp-content/uploads/2026/03/soil_texture_mask-scaled.webp") repeat center top/700px auto;
  opacity:.16;
  mix-blend-mode:soft-light;
  pointer-events:none;
}
.jobIntro_inner{
  position:relative;
  z-index:1;
}
.jobIntro_head{
  position:relative;
  margin-bottom:34px;
  text-align: center;
  letter-spacing: 1px;
}
.jobIntro_nav{
  display:flex;
  justify-content:center;
  gap:18px;
  margin: 18px 0 100px;
}
.jobIntro_prev,
.jobIntro_next{
  width:54px;
  height:54px;
  border:none;
  border-radius:50%;
  background:#fff;
  box-shadow:0 6px 0 rgba(0,0,0,.08);
  cursor:pointer;
  position:relative;
  transition:transform .2s ease,box-shadow .2s ease;
}
.jobIntro_prev:hover,
.jobIntro_next:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 0 rgba(0,0,0,.1);
}
.jobIntro_prev::before,
.jobIntro_next::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:0;
  height:0;
  transform:translate(-50%,-50%);
}
.jobIntro_prev::before{
  border-top:8px solid transparent;
  border-bottom:8px solid transparent;
  border-right:12px solid #5b3500;
  margin-left:-2px;
}
.jobIntro_next::before{
  border-top:8px solid transparent;
  border-bottom:8px solid transparent;
  border-left:12px solid #5b3500;
  margin-left:2px;
}

.jobIntro_slider{
  overflow:visible !important;
  padding:34px 0 20px;
  max-width: 1480px;
  margin: 0 auto;
}
.jobIntro_slider .swiper-wrapper{
  align-items:end;
}
.jobIntro_slider .swiper-slide{
  transition:transform .45s ease,opacity .45s ease;
  opacity:.92;
}
.jobIntro_slider .swiper-slide-prev,
.jobIntro_slider .swiper-slide-next{
  transform:translateY(18px);
}
.jobIntro_slider .swiper-slide-active{
  transform:translateY(-18px);
  opacity:1;
}

.jobCard{
  height:100%;
}
.jobCard_link{
  text-align:center;
  margin:0 auto;
  background:var(--jobCardColor,#74a978);
  display:block;
  height:100%;
  padding:0 20px 20px;
  border:3px solid #fff;
  border-radius:8px;
  box-shadow:0 8px 0 rgba(0,0,0,.15);
  color:var(--jobCardColor,#74a978);
  text-decoration:none;
  transition:transform .3s ease,box-shadow .3s ease;
}
.jobCard_label{
  text-align:center;
  font-size:110%;
  letter-spacing:1px;
  padding:15px 60px;
  background:#fff;
  width:fit-content;
  border-radius:8px;
  font-weight:700;
  color:var(--jobCardColor,#74a978);
  position:relative;
  margin:-35px auto 0;
}
.jobCard_label::before{
  content:"";
  border-color:var(--jobCardColor,#74a978);
  position:absolute;
  width:calc(100% - 6px);
  height:calc(100% - 6px);
  left:3px;
  top:3px;
  border-radius:8px;
  border:2px solid;
}
.jobCard_term{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:16px auto 0;
  padding:6px 14px;
  min-height:32px;
  border-radius:999px;
  background:var(--jobCardColor,#74a978);
  color:#fff;
  font-size:12px;
  line-height:1.2;
  font-weight:700;
}
.jobCard_photo{
  margin:18px 0 0;
  border-radius:8px;
  overflow:hidden;
}
.jobCard_photo img{
  display:block;
  width:100%;
  height:auto;
}
.jobCard_bottom{
  padding:18px 0 0;
}
.jobCard_text{
  margin:0;
  color:#fff;
  font-size:110%;
  font-weight:500;
}
.jobCard_icon{
  display:inline-block;
  width:40px;
  height:40px;
  margin-top:16px;
  border-radius:50%;
  background:#fff;
  position:relative;
}
.jobCard_icon::before{
  content:"";
  position:absolute;
  top:50%;
  left:53%;
  transform:translate(-50%,-50%);
  width:0;
  height:0;
  border-top:7px solid transparent;
  border-bottom:7px solid transparent;
  border-left:11px solid var(--jobCardColor,#74a978);
}
.jobIntro_slider .swiper-slide-active{
  transform:translateY(-24px);
  z-index:2;
}
.jobIntro_slider .swiper-slide-active .jobCard_link{
  transform:scale(1.03);
  transform:translateY(-24px);
}

@media (max-width:960px){
  .jobIntro_slider{
    padding:24px 0 14px;
  }
  .jobIntro_slider .swiper-slide-prev,
  .jobIntro_slider .swiper-slide-next{
    transform:translateY(10px);
  }
  .jobIntro_slider .swiper-slide-active{
    transform:translateY(-10px);
  }
}

@media (max-width:640px){
  .jobIntro_nav{
    gap:12px;
    margin-top:14px;
  }
  .jobIntro_prev,
  .jobIntro_next{
    width:46px;
    height:46px;
  }
  .jobIntro_slider{
    padding:18px 0 8px;
  }
  .jobIntro_slider .swiper-slide-prev,
  .jobIntro_slider .swiper-slide-next{
    transform:none;
  }
  .jobIntro_slider .swiper-slide-active{
    transform:none;
  }
  .jobCard_label{
    padding:12px 28px;
    font-size:100%;
  }
}
/* ===============================
guideSign
=============================== */
.guideSign{
  position:relative;
  padding:20px 0 0;
}
.guideSign::after{
  content:"";
  display:block;
  width:100%;
  height:98px;
  margin-top:-2px;
  background:#d6cbbc;
}
.guideSign_texture {
  position: absolute;
  inset: 0;
  background: url("/wp-content/uploads/2026/03/soil_texture_mask-scaled.webp") repeat center top/700px auto;
  opacity: .16;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.guideSign_inner {
  display: flex;
  justify-content: center;
  gap: 56px;
  align-items: flex-end;
  max-width: 1280px;
  margin: 0 auto -40px;
}
.guideSign_card{
  position:relative;
  display:block;
  width:min(100%,742px);
  text-decoration:none;
  color:#fff;
  padding-bottom:69px;
  z-index: 2;
}
.guideSign_board {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding: 60px 10px 30px;
  border-radius: 20px;
  background: url("/wp-content/uploads/2026/03/wave_green_back.webp") no-repeat center/cover;
  overflow: hidden;
}
.guideSign_titleJa {
  display: block;
  font-size: 180%;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: .06em;
  text-align: center;
}
.guideSign_titleEn {
  display: block;
  margin-top: 15px;
  font-size: 200%;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}
.guideSign_icon{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:42px;
}
.guideSign_icon img{
  display:block;
  height:auto;
}
.guideSign_card:first-child .guideSign_icon img{
  width:64px;
}
.guideSign_card:last-child .guideSign_icon img{
  width:254px;
}
.guideSign_flag {
  position: absolute;
  top: -20px;
  right: 36px;
  z-index: 2;
  width: 100px;
}
.guideSign_flag img{
  display:block;
  width:100%;
  height:auto;
}
.guideSign_flagText {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.guideSign_post{
  position:absolute;
  bottom:0;
  width:96px;
  height:104px;
  background:#6f573a;
  border-radius:0 0 26px 26px;
  z-index: -1;
}
.guideSign_post-left{
  left:72px;
}
.guideSign_post-right{
  right:72px;
}
@media (max-width:1400px){
  .guideSign_inner{
    gap:32px;
    padding:0 20px;
  }
}
@media (max-width:1024px){
  .guideSign_inner{
    flex-direction:column;
    align-items:center;
  }
  .guideSign_card{
    width:100%;
    max-width:760px;
  }
}
@media (max-width:767px){
  .guideSign{
    padding-top:12px;
  }
  .guideSign::after{
    height:72px;
  }
  .guideSign_inner{
    gap:24px;
    padding:0 16px;
  }
  .guideSign_card{
    padding-bottom:52px;
  }
  .guideSign_board{
    min-height:230px;
    padding:34px 15px 20px;
    border-radius:16px;
  }
  .guideSign_titleJa{
    font-size:22px;
  }
  .guideSign_titleEn{
    margin-top:6px;
    font-size:28px;
  }
  .guideSign_icon{
    margin-top:28px;
  }
  .guideSign_card:first-child .guideSign_icon img{
    width:48px;
  }
  .guideSign_card:last-child .guideSign_icon img{
    width:180px;
  }
  .guideSign_flag{
    top:-12px;
    right:20px;
    width:88px;
  }
  .guideSign_flagText{
    top:18px;
    font-size:20px;
  }
  .guideSign_post{
    width:64px;
    height:78px;
    border-radius:0 0 20px 20px;
  }
  .guideSign_post-left{
    left:34px;
  }
  .guideSign_post-right{
    right:34px;
  }
.guideSign_card {
  font-size: 80%;
}
}

/* ===============================
peopleTop
=============================== */
.peopleTop{
  position:relative;
  padding:150px 0 120px;
  overflow:hidden;
}
.peopleTop_inner{
  position:relative;
  z-index:2;
  margin:0 auto;
}
.peopleTop_posts {
  overflow: auto;
}
.peopleTop_bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(94vw,1200px);
  aspect-ratio: 1200/1200;
  background: url(/wp-content/uploads/2026/03/appleandtomato_back.webp) no-repeat;
    background-size: auto;
  transition: transform .25s ease,opacity .25s ease;
  -webkit-mask: url('/wp-content/uploads/2026/03/seed-shape.svg') no-repeat center / contain;
  mask: url('/wp-content/uploads/2026/03/seed-shape.svg') no-repeat center / contain;
  margin: 0 auto;
  background-size: contain;
  height: min(94vw, 1200px);
opacity: 0.3;
}
.peopleTop_head{
  text-align:center;
  margin:0 0 48px;
}
.peopleTop_headEn {
  margin: 0;
  color: #4f8a63;
  font-size: clamp(32px,4.6vw,48px);
  font-weight: 700;
  line-height: 1.1;
}
.peopleTop_headJa {
  margin: 16px 0 0;
  color: #4f8a63;
  font-size: clamp(28px,2.5vw,30px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1px;
}
.peopleTop_posts {
  max-width: 1680px;
  margin: 0 auto;
}
.peopleTop_posts{
  overflow:visible;
}
.peopleTop_swiper .swiper-wrapper{
  align-items:stretch;
}
.peopleTop_swiper .swiper-slide{
  height:auto;
}
.peopleTop_card{
  position:relative;
  background:#fff;
  border:4px solid var(--cardColor,#6ea978);
  box-shadow:7px 8px 0 var(--cardColor,#6ea978);
  overflow:hidden;
}
.peopleTop_card:nth-child(odd){
  border-radius: 18px 18px 0 18px;
}
.peopleTop_card:nth-child(even){
  border-radius: 18px 18px 18px 0;
}
.peopleTop_card_link{
  display:block;
  height:100%;
  color:inherit;
  text-decoration:none;
  padding:18px 18px 26px;
}
.peopleTop_thumb{
  margin:0;
  overflow:hidden;
}
.peopleTop_thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.peopleTop_body{
  padding:24px 12px 0;
}
.peopleTop_catch {
  margin: 0 0 22px;
  font-size: clamp(18px, 0.8vw + 18px, 22px);
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--cardColor,#6ea978);
  min-height: calc(1em * 1.8 * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.peopleTop_nameRow{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin:0;
}
.peopleTop_name{
  margin:0;
  font-size:24px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:.04em;
  color:var(--cardColor,#6ea978);
}
.peopleTop_jobInline,
.peopleTop_type{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:6px 14px;
  border-radius:999px;
  background:var(--cardColor,#6ea978);
  color:#fff;
  font-size:12px;
  line-height:1.2;
  font-weight:700;
}
.peopleTop_meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin:12px 0 0;
}
.peopleTop_year{
  margin:18px 0 0;
  font-size:14px;
  line-height:1.6;
  font-weight:700;
  color:var(--cardColor,#6ea978);
}
.peopleTop_btnWrap{
  margin:54px 0 0;
  text-align:center;
}
.peopleTop_btn{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  min-width:320px;
  padding:20px 22px 20px 28px;
  border-radius:8px;
  background:#5f996a;
  color:#fff;
  text-decoration:none;
  box-shadow:0 4px 10px rgba(0,0,0,.12);
  transition:transform .25s ease,opacity .25s ease;
}
.peopleTop_btn:hover{
  transform:translateY(-2px);
  opacity:.92;
}
.peopleTop_btnText{
  font-size:28px;
  line-height:1.2;
  font-weight:700;
}
.peopleTop_btnIcon{
  position:relative;
  flex:0 0 52px;
  width:52px;
  height:52px;
  border-radius:50%;
  background:#fff;
}
.peopleTop_btnIcon::before{
  content:"";
  position:absolute;
  top:50%;
  left:53%;
  transform:translate(-50%,-50%);
  width:0;
  height:0;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-left:16px solid #5f996a;
}
@media (max-width:1180px){
  .peopleTop{
    padding:90px 0 80px;
  }
}
@media (max-width:767px){
  .peopleTop{
    padding:70px 0 64px;
  }
  .peopleTop_inner{
    width:min(100%,calc(100% - 32px));
  }
  .peopleTop_bg{
    width:calc(100% - 8px);
    height:100%;
    aspect-ratio:auto;
    border-radius:40px;
    background-size:38px 38px;
  }
  .peopleTop_head{
    margin:0 0 34px;
  }
  .peopleTop_headEn{
    font-size:clamp(32px,8vw,48px);
  }
  .peopleTop_headJa{
    margin-top:10px;
    font-size:clamp(22px,5.5vw,30px);
  }
  .peopleTop_card{
    border-width:3px;
    border-radius:36px;
    box-shadow:5px 6px 0 var(--cardColor,#6ea978);
  }
  .peopleTop_card_link{
    padding:14px 14px 18px;
  }
  .peopleTop_body{
    padding:18px 8px 0;
  }
  .peopleTop_catch{
    margin-bottom:16px;
    min-height:auto;
    font-size:14px;
  }
  .peopleTop_name{
    font-size:22px;
  }
  .peopleTop_year{
    margin-top:14px;
    font-size:13px;
  }
  .peopleTop_btn{
    width:100%;
    min-width:0;
    padding:16px 18px 16px 20px;
  }
  .peopleTop_btnText{
    font-size:20px;
  }
  .peopleTop_btnIcon{
    flex-basis:44px;
    width:44px;
    height:44px;
  }
  .peopleTop_btnIcon::before{
    border-top:8px solid transparent;
    border-bottom:8px solid transparent;
    border-left:13px solid #5f996a;
  }
}
.btn_cta {
  text-align: center;
  margin: 0 auto;
}

/* ===============================
photo_top
=============================== */
.photo_top {
  padding: 50px 10px;
  width: min(100%,1320px);
  margin: 0 auto 80px;
  border-radius: 18px;
}