@charset "UTF-8";


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  font-family: "Zen Maru Gothic", "Kiwi Maru";
  background-color: #f8ecda;
  scroll-behavior: smooth;
  margin: auto;
  font-size: 16px;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}



/* 垂直方向にスケールを変えるキーフレーム */
@keyframes grow-progress {
  from {
    scale: 1 0;
  }

  to {
    scale: 1 1;
  }
}




/* マウスストーカーのスタイル */
.stalker {
  height: 40px;
  left: -38px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: -31px;
  transition: transform 390ms cubic-bezier(0.33, 1, 0.68, 1);
  width: 60px;
  z-index: 100000;
}

/* 画像サイズの調整 */
.stalker img {
  width: 100%;
}
@media (hover: hover){
.stalker.js-hover img {
  width: 40px;
}}





/* ===== HERO ===== */

/* 全体 */


.wrapper {
  /* padding: 40px 0; */
  position: relative;
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  /* height: 200vh; */
  /* overflow: hidden; */
}


.hero_layer {
  position: relative;
  left: 0;
  width: 100%;
  background-size: cover;
  overflow: clip;
  /* margin-top: 900px; */
}

@keyframes parallax-image {
  from {
    translate: 0 -13vh;
  }
}

/* Slider */

.slider {
  /* height: 112vh; */
  height: 100%;
  width: 100%;
  margin: auto;
}

.slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  /* デフォルトで消しとく */
  transition: 2s ease;
}

.slider li.is-active {
  opacity: 1;
  /*表示 */
}

.slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  object-fit: cover;
  justify-content: center;
  padding: 20px 80px;
}

.minitomato {
  position: absolute;
  width: 8%;
  top: 35%;
  left: 3%;
}

.mikan {
  position: absolute;
  width: 8%;
  top: 5%;
  right: 2%;
}

.ninjin {
  position: absolute;
  width: 6%;
  top: 70%;
  right: 3%;
  z-index: 10;
}

.nasu {
  position: absolute;
  width: 7%;
  top: 63%;
  left: 3%;
  z-index: 10;
}

.tomato {
  position: absolute;
  width: 8%;
  top: -2%;
  left: 31%;
}

.houren {
  position: absolute;
  width: 8%;
  top: 48%;
  right: 2%;
}

.egg {
  position: absolute;
  width: 6%;
  top: 75%;
  left: 5%;
  z-index: 10;
}

.yasai {
  width: 100%;

}

.animation {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

.ninjin,
.tomato,
.egg {
  animation-name: anim_s;
  transform: rotate(15deg);
  animation-duration: 1s;
}

@keyframes anim_s {
  50% {
    transform: rotate(-7deg);
  }

  100% {
    transform: rotate(7deg);
  }
}

.minitomato,
.mikan,
.nasu,
.houren {
  animation-name: anim_2;
  /* animation-duration: 2s; */
}

@keyframes anim_2 {
  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(5px);
  }
}

.animation {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
  /* width: 128px; */
}

.mikan,
.nasu {
  animation-name: jump_1;
  animation-duration: .8s;
}

@keyframes jump_1 {
  0% {
    transform: translate(0%, 15px) rotateX(30deg);
  }

  100% {
    transform: translate(0%, 0%);
  }
}




.mousikomi a {
  writing-mode: vertical-rl;
  position: fixed;
  top: 60%;
  right: 0;
  background-color: rgba(42, 85, 34, .7);
  color: #fff;
  border-radius: 5px 5px 5px 50px;
  padding: 25px;
  z-index: 150;
  text-decoration: none;
  outline: none;
  font-family: "Zen Maru Gothic";
  font-weight: 900;
  letter-spacing: .3rem;
}
@media (hover: hover){
.mousikomi a:hover {
  box-shadow: 4px 4px 0 #152912;
  transform: translateX(8px) translateY(-7px);
  border-radius: 5px 5px 5px 40px;
}}





.scroll {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.2em;
  opacity: 0.6;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.scroll span {
  width: 1px;
  height: 24px;
  background: #000;
  margin-top: 6px;
  animation: scrollLine 2s infinite;

}

@keyframes scrollLine {
  0% {
    opacity: 0;
    height: 0;
  }

  50% {
    opacity: 1;
    height: 24px;
  }

  100% {
    opacity: 0;
    height: 24px;
  }
}





/* ===== ナビゲーション ===== */

.header {
  position: sticky;
  top: 0px;
  right: 0px;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
  /* ガラス風 */
  gap: 10px;
  border-radius: 0 0 50px 50px;
  /* margin: 50px; */
  /* width: 700px; */
}

.header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header__inner {
  /* max-width: 1200px; */
  margin-inline: auto;
  padding: 0 20px 20px 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-top: 20px; */
}

.nav a {
  position: relative;
  margin-right: 3rem;
  padding-left: 25px;
  text-decoration: none;
  color: #2a5522;
  font-weight: 900;
  font-size: 18px;
  display: inline-block;
  margin-top: 22px;
}

.nav {
  position: absolute;
  right: 30px;
}

.nav-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-20px, -50%) scale(0.7);
  opacity: 0;
  transition: all 0.35s ease;
}

.nav-img img {
  width: 19px;
}

@media (hover: hover){
.nav a:hover .nav-img {
  transform: translate(0, -50%) scale(1.3);
  opacity: 1;
}
}
@media (hover: hover){
.nav a:hover{
  color: #fd89ff;
}}


.content {
  padding: 2rem;
  background-color: #fafafa;
}

.loopsliders {
  overflow: hidden;
  z-index: 100;
}

.loopslider {
  display: flex;
  width: max-content;
  /*中の要素の合計幅 */
  /* margin: 20px 0; */
  margin-top: 52%;
  animation: slider 50s linear infinite;
}


/* アニメーション */
@keyframes slider {
  from {
    transform: translateX(0);
    /*0からのスタート */
  }

  to {
    transform: translateX(-50%);
  }
}


/* --------------------------------------------------
 header
-------------------------------------------------- */
.hero {
  padding: 50px;
}

/* ---------- header__button ----------  */
@media screen and (min-width: 1024px) {
  .header__button {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  #header {
    display: none;
  }

  .header__button {
    width: 100px;
    height: 100px;
    position: fixed;
    top: 0;
    right: 0;
    border-radius: 100%;
    z-index: 10000;
    background-color: #2a5522;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 1000ms ease;
    margin: 15px;
  }

  .header__button__icon {
    display: grid;
    gap: 7px;
  }

  .header__button__icon span {
    display: block;
    width: 50px;
    height: 1px;
    background-color: #ffcefa;
    transition: 1000ms ease;
    transition-property: opacity, transform, background-color;
  }

  .header__button__txt {
    display: block;
    margin-top: 1em;
    font-weight: 300;
    letter-spacing: 0.12em;
    transition: 1000ms ease;
    transition-property: color;
    color: #ffcefa;
  }


  /* ---------- is-open ---------- */
  .header__button.is-open {
    background-color: #ffe6fc;
  }

  .header__button.is-open .header__button__icon span {
    background-color: #2a5522;
  }

  .header__button.is-open .header__button__icon span:nth-of-type(2) {
    opacity: 0;
  }

  .header__button.is-open .header__button__icon span:nth-of-type(1) {
    transform: translateY(8px) rotate(25deg);
  }

  .header__button.is-open .header__button__icon span:nth-of-type(3) {
    transform: translateY(-8px) rotate(-25deg);
  }

  .header__button.is-open .header__button__txt {
    color: #2a5522;
  }
}



/* --------------------------------------------------
 sitemap
-------------------------------------------------- */



button {
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  box-sizing: border-box;
  cursor: pointer;
}


@media screen and (min-width: 1024px) {
  .sitemap {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .sitemap {
    position: fixed;
    z-index: 1000;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2a5522;
    border-radius: 10% 0 0% 10%;
    /* padding: 100px 0px; */
    margin-left: 15%;
    box-sizing: border-box;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: 1000ms ease;
    transition-property: opacity, visibility;

    display: flex;
    align-items: center;

    /* 横中央 */
  }

  .menu-img {
    width: 356px;
    flex-shrink: 0;
    position: absolute;
    pointer-events: none;
    /* 画像がリンクの邪魔をしないように */
    z-index: 1;
  }

  .menu-img.right {
    width: 380px;
  }

  .menu-img img {
    width: 100%;
    height: auto;
  }

  .menu-img.right {
    right: -108%;
    bottom: 8%;
    /* margin-right: auto; */
  }



  .sitemap.is-open .menu-img.right {
    animation: poyon 0.6s ease-out 0.15s forwards;
  }



  @keyframes poyon {
    0% {
      transform: scale(0);
      opacity: 0;
    }

    60% {
      transform: scale(1.2);
      opacity: 1;
    }

    80% {
      transform: scale(0.95);
    }

    100% {
      transform: scale(1);
    }
  }

  .sitemap.is-open {
    opacity: 1;
    visibility: visible;
  }

  .sitemap__list {
    position: relative;
    z-index: 0;
    list-style: none;
    padding: 0;
    margin: 10% 0 10% 10%;
  }

  .sitemap__list li {
    margin: 20% 0;
    /* リストの間隔 */
  }


  .sitemap-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    opacity: 0;
    visibility: hidden;
  }

  .sitemap-bg.is-open {
    opacity: 1;
    visibility: visible;
  }

  .sitemap__list a {
    position: relative;
    text-decoration: none;
    color: #ffcefa;
    font-size: 25px;
    font-family: "Zen Maru Gothic";
    font-weight: 900;
    letter-spacing: .3rem;
    display: inline-flex;
   text-align: center;

  }

  .nyuukai{
    border: 2px solid #fff ;
    border-radius: 7px;
    padding: 20px;
    background-color: #ffeefe;
  }

  .nyuukai a{
    color: #2a5522;
  }

  .nav-img_2,.nav-img_3 {
  position: absolute;
  left: -14%;
  top: 50%;
  transform: translate(-25px, -50%) scale(0.7);
  opacity: 0;
  transition: all 0.35s ease;
}
  .nav-img_3 {
  position: absolute;
  left: -50%;
  top: 50%;
  transform: translate(-25px, -50%) scale(0.7);
  opacity: 0;
  transition: all 0.35s ease;
}

.nav-img_2 img 
,.nav-img_3 img{
  width: 19px;
}

@media (hover: hover){
.sitemap__list a:hover .nav-img_2 {
  transform: translate(0, -50%) scale(1.3);
  opacity: 1;
}}
@media (hover: hover){
.sitemap__list a:hover .nav-img_3{
  transform: translate(0, -50%) scale(1.3);
  opacity: 1;
}

@media (hover: hover){
.sitemap__list a:hover{
  color: #fd89ff;
}
}
}
}


/* ===== キャッチコピー ===== */




#concept-area {
  background-color: #fffbf3;
  border-radius: 50px;
  padding: 40px 0;
  margin: 2% 10%;
  /* position: sticky; */
  top: 7%;
  bottom: 25%;
  z-index: 1;
}

.hukidasi {
  display: flex;
  width: 60%;
  /* justify-content: flex-start; */
  margin-left: 70px;
  padding: 1.5%;
  justify-content: space-between;
  align-items: center;
}

.hukidasi img {
  width: 100px;
  height: auto;
  /* margin: 10px 40px 0px; */
}

.catch {
  background-color: #2a5522;
  position: relative;
  border-radius: 20px;
  padding: 20px;
  width: calc(100% - 150px);
  /* left: 0; */
  color: #fff;
  text-align: center;
  font-size: 20px;
  /* margin: 20px; */
}

.catch::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 25px;
  width: 26px;
  height: 26px;
  background: #2a5522;
  border-radius: 0 20% 80% 0;
}

.text {
  font-family: "Zen Maru Gothic";
  font-weight: 900;
  letter-spacing: .5rem;
}




/* ===== About ===== */
.about {
  margin: 50px auto 0;
  display: flex;
  position: relative;
}

/* 右 */
.about-right {
  width: 100%;
  position: relative;
}

/* 見出し帯 */
.about-title {
  position: absolute;
  right: 4%;
  /* background-color: #2a5522; */
  width: 50%;
  color: #2a5522;
  padding: 5px 0px 0px 100px;
  border-radius: 0 0 0 120px;
  display: inline-block;
  margin-bottom: 24px;
  margin-top: -40px;
}

.about-title small {
  font-size: 12px;
  display: block;
  margin-left: 22%;
  margin-bottom: -22px;
}

.about-title h2 {
  font-size: 27px;
  font-family: "Zen Maru Gothic";
  font-weight: 900;
  letter-spacing: .5rem;
}

.about-title h2::first-letter {
  font-size: 5rem;
  color: #93f083;
  text-shadow: 3px 4px 0px rgb(53, 66, 54);
}

/* 写真 */

.flex {
  display: flex;
}

.about-left {
  margin-left: 100px;
  width: 40%;
  max-width: 480px;
}

.about-left img {
  width: 100%;
  align-items: center;
  animation: fluid-animation 7s ease 0s infinite normal;
}


@keyframes fluid-animation {

  0%,
  100% {
    border-radius: 36% 64% 43% 57% / 59% 72% 28% 41%;
  }

  50% {
    border-radius: 60% 40% 48% 52% / 23% 77% 23% 77%;
  }
}

/* 説明文 */
.about-right p {
  color: #2a5522;
  line-height: 1.9;
  padding: 10px 70px 10px 0px;
  margin-top: 100px;
  margin-left: 100px;
}



#concept_line {
  position: relative;
  z-index: 2;
  /* margin-top: -200px; */
}

.mitubati {
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
}

.mitubati_inner {
  transform: translateX(-0%);
  animation-name: mitubati-slide;
  animation-duration: 12s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.mitubati img {
  width: 50px;
  height: auto;
  animation: mitubati-fuwafuwa 1s infinite alternate;

}

/* ミツバチアニメーション */
/* 孫悟空がスライドするアニメーション */
@keyframes mitubati-slide {

  0% {
    transform: translate(0vw, 0px) rotate(5deg);
  }

  /* 山① */
  10% {
    transform: translate(10vw, -25px) rotate(3deg);
  }

  25% {
    transform: translate(20vw, 20px) rotate(-3deg);
  }

  /* 谷① */
  32% {
    transform: translate(30vw, 2px) rotate(0deg);
  }

  /* 山② */
  40% {
    transform: translate(40vw, 0px) rotate(4deg);
  }

  /* 谷② */
  55% {
    transform: translate(55vw, 10px) rotate(-4deg);
  }

  /* 山③ */
  70% {
    transform: translate(70vw, -22px) rotate(3deg);
  }

  /* 谷③（右側は少し浅め） */
  85% {
    transform: translate(85vw, 10px) rotate(-2deg);
  }

  100% {
    transform: translate(110vw, 0px) rotate(5deg);
  }

}

/* 孫悟空がふわふわするアニメーション */
@keyframes mitubati-fuwafuwa {

  0%,
  100% {
    transform: translateY(0px);

  }

  50% {
    transform: translateY(-5px);
  }
}

.all_pink {
  margin-bottom: 100px;
  animation: fadeIn_3 1s ease 1s 1 normal backwards;
}

@keyframes fadeIn_3 {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pink {
  margin-bottom: -5px;
}

.pink img {
  width: 100%;
}

.concept img {
  background-color: #fff6fd;
  width: 100%;
  padding: 2% 5%;
}


.pink_2 {
  margin-top: -5px;
}

.pink_2 img {
  width: 100%;
}






/* ===== NEWS ===== */



/*----------------------------
下から上へ出現
----------------------------*/



/* 全体 */
#news {
  padding: 150px 100px 0 100px;
  /* display: flex; */
  position: relative;
  background-color: #fffbf3;
  border-radius: 50px;
  padding: 30px;
  margin: 10%;
  /* animation: floatShadow 3s ease-in-out infinite; */
  transition: 0.8s ease-in-out;
  transform: translateY(50px);
  opacity: 0;
}

#news.on {
  transform: translateY(0);
  opacity: 1.0;
}

.news_moji {
  display: flex;
  width: 100%;
  position: absolute;
  top: 0;
  padding: 30px;
  animation: fadeIn 3s ease 1s 1 normal backwards;
  overflow: hidden;
}

.news_moji img {
  width: 80px;
  opacity: .4;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


#news h2 {
  font-size: 30px;
  padding: 30px;
  font-family: "Zen Maru Gothic";
  font-weight: 900;
  letter-spacing: .5rem;
  color: #2a5522;
}

.news-inner {
  display: flex;
  align-items: flex-start;
}

.news_img {
  width: 100%;
}

.news_img img {
  width: 100%;
  margin-left: 8%
}

/* チェックボックスは非表示 */
.news-check {
  display: none;
}

/* ラッパー */
.news-wrap {
  position: relative;
  margin-left: auto;
  width: 100%;
  max-width: none;
  padding-bottom: 110px;
}

.news-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid #ddd;
  margin-left: auto;
  width: 90%;


  /* 初期状態（高さ制限） */
  max-height: 300px;
  overflow: hidden;
  position: relative;

  transition: max-height 0.6s ease, opacity 0.5s ease;
}

/* グラデーション */
.news-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 200px;
  width: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0),
      #fffcf7);

  transition: opacity 0.4s ease;
}


/* フェード上のボタン */
.news-overlay-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;

  transition: bottom 0.4s ease, opacity 0.3s ease;
  padding: 8px 28px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #333;
  cursor: pointer;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* hover */
@media (hover: hover){
.news-overlay-btn:hover {
  transform: translateX(-50%) translateY(-6px);
}}

/* 文言切替 */
.news-overlay-btn .close {
  display: none;
}

/* 開いた状態 */
.news-check:checked~.news-wrap .news-list {
  /* max-height: none; */
  max-height: 2000px;
}

.news-check:checked~.news-wrap .news-list::after {
  /* display: none; */
  opacity: 0;
}



/* 文言切替 */
.news-check:checked~.news-wrap .news-overlay-btn .open {
  display: none;
}

.news-check:checked~.news-wrap .news-overlay-btn .close {
  display: inline;
}


/* 1行 */
.news-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 26px 0;
  border-bottom: 1px solid #ddd;

  opacity: 1;
  transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.news-check:checked~.news-wrap .news-item {
  opacity: 1;
  transform: translateY(0);
}

.news-item:nth-child(1) {
  transition-delay: 0.05s;
}

.news-item:nth-child(2) {
  transition-delay: 0.1s;
}

.news-item:nth-child(3) {
  transition-delay: 0.15s;
}

/* 日付 */
.news-date {
  min-width: 80px;
  font-size: 14px;
  color: #9a9a9a;
  letter-spacing: 0.08em;
}

/* タイトル */
.news-title {
  font-size: 14px;
  color: #111;
  line-height: 1.8;
  text-align: left;
  max-width: 720px;
}

.news text {
  width: 50%;
  font-size: 48px;
  letter-spacing: 0.1em;
  margin-right: auto;
}



/* ===== メンバー紹介 ===== */
#member {
  padding: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 30px;
  margin-bottom: 40px;
  height: 50px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -40%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-family: "Zen Maru Gothic";
  font-weight: 900;
  letter-spacing: .5rem;
  color: #2a5522;
}

.member_moji {
  width: 100%;
  margin-bottom: 30px;
  animation: fadeIn_2 5s ease 1s 1 normal backwards;
}

.member_moji img {
  width: 400px;
  opacity: .2;
}

@keyframes fadeIn_2 {
  from {
    opacity: 0;
    transform: translateX(150px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.member-slider {
  /* display: flex; */
  overflow: visible;
  /* margin: 0 50px; */
}

.slick-slide {
  padding: 0 15px;
  box-sizing: border-box;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.4;
  transform: scale(0.85);
  will-change: transform;

}

.slick-center {
  transform: scale(1);
  opacity: 1;
}



.slick-center,
.member-card,
.member-card_3,
.member-card_4,
.member-card_5,
.member-card_6,
.member-card_7,
.member-card_8 {
  box-shadow: 0 10px 30px rgba(58, 56, 47, 0.2);
}

.member-card,
.member-card_3,
.member-card_4,
.member-card_5,
.member-card_6,
.member-card_7,
.member-card_8 {
  width: 100%;
  padding: 20px;
  background-color: #f6f0dc;
  border-radius: 12px;
  /* height: 620px; */
  /* height: 100%; */
  /* box-sizing: border-box; */
  text-align: center;
  /* margin: 10px; */
  /* margin: 15px; */
  justify-content: center;
}

.member-card {
  border: 2px solid #7ac6d1;
}


.member-card_3 {
  border: 2px solid #ff9b10;
}

.member-card_4 {
  border: 2px solid #ff2c2c;
}

.member-card_5 {
  border: 2px solid #ff0000;
}

.member-card_6 {
  border: 2px solid #177019;
}

.member-card_7 {
  border: 2px solid #2377ff;
}

.member-card_8 {
  border: 2px solid #f5a020;
}


.member-card img,
.member-card_3 img,
.member-card_4 img,
.member-card_5 img,
.member-card_6 img,
.member-card_7 img,
.member-card_8 img {
  padding: 10px;
  width: 100%;
  margin: 0 auto 20px;
  animation: member-animation 7s ease 0s infinite normal;
}


@keyframes member-animation {

  0%,
  100% {
    border-radius: 63% 37% 76% 24% / 25% 81% 19% 75%;
  }

  50% {
    border-radius: 51% 49% 68% 32% / 30% 76% 24% 70%;
  }
}


.member-text dl {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: 60px 1fr;
  gap: 8px 0px;
  margin: 0;
  text-align: left;
  /* margin-left: 10px; */
}

.member-text dt {
  font-weight: bold;
  width: 60px;
}

.member-text dd {
  margin: 0;
  line-height: 1.5;
  width: calc(100% - 60px);
}


.insta-link {
  width: 100%;
  text-decoration: none;
  color: #000;
  padding: 20px;
}

.material-symbols-outlined {
  font-size: 23px;
  margin-left: -20px;
  margin-top: 10px;
  color: #2a5522;
}


/* 点滅 */
.material-symbols-outlined {
  -webkit-animation: blink .4s ease-in-out infinite alternate;
  -moz-animation: blink .4s ease-in-out infinite alternate;
  animation: blink .4s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* 矢印 */
.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  z-index: 10;
}

.slick-prev {
  left: -30px;
}

.slick-next {
  right: -30px;
}

.slick-prev::before,
.slick-next::before {
  color: #2a5522;
  font-size: 40px;
}


/* -----------------------------------------------
Accordion
-------------------------------------------------- */
.track {
  width: 100%;
  /* overflow: hidden; */
  margin: 0 0 0 auto;
  display: inline-block;

}

.track_inner {
  animation: track-slide 15s linear infinite;
}

.track_inner img{
  animation: jump 5s linear infinite;
}


@keyframes jump {
  0% , 6%, 100%{
    transform: scale(1) translate3d(0,0,0);
  }

  2% {
    transform: scale(0.9) translate3d(0,10%,0);
  }

  4% {
    transform: scale(1.01) translate3d(0,-40%,0);
  }
}

.track img {
  width: 80px;
  margin-top: 50px;
  margin-bottom: -5px;

}

@keyframes track-slide {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-30%);
  }
}

#c-section {
  background-color: #fffbf3;
  margin: 0 9%;
  padding: 60px;
  border-radius: 50px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0 0.2); */

}

.c-inner {
  transition: 0.8s ease-in-out;
  transform: translateY(50px);
  opacity: 0;
}

.c-inner.on {
  transform: translateY(0);
  opacity: 1.0;
}

.c-title {
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-weight: 900;
  letter-spacing: .5rem;
  color: #2a5522;
}


.accordion {
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}


.nozoku img {
  position: absolute;
  bottom: 0;
  right: 15%;
  width: 13%;
}


.accordion-007 {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 10%;
}

.accordion-007 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* position: absolute; */
  padding: 1em 2em;
  border: 2px solid #2a5522;
  border-radius: 5px;
  color: #2a5522;
  font-weight: 700;
  cursor: pointer;
  background-color: rgba(255, 223, 255, 0.2);
  min-height: 80px;


}

.hito {
  width: 50px;
  height: 50px;
}

.accordion-007 summary::-webkit-details-marker {
  display: none;
}

.accordion-007 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-bottom: 3px solid #2a5522;
  border-right: 3px solid #2a5522;
  content: '';
  transition: transform .3s;
}

.accordion-007[open] summary::after {
  transform: rotate(225deg);

}

.accordion-007 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin-top: 20px;
  padding: .8em 1.2em;
  border: 2px solid #2a5522;
  border-radius: 5px;
  background-color: #ffffff;
  color: #2a5522;
  transition: transform .5s, opacity .5s;
}

.accordion-007[open] p {
  transform: none;
  opacity: 1;
}

.accordion-007 p::before,
.accordion-007 p::after {
  position: absolute;
  top: -15px;
  left: 1.2em;
  width: 30px;
  height: 15px;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  content: '';
}

.accordion-007 p::before {
  background-color: #2a5522;
}

.accordion-007 p::after {
  top: -12px;
  background-color: #fff;
}




/* ---------------------- 質問 ------------------------- */


button {
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  box-sizing: border-box;
  cursor: pointer;
}


.accordion_2 {
  margin: 10px;
}

.accordion__button {
  width: 100%;
  background-color: #ffffff;
  color: #2a5522;
  border-radius: 20px;
  text-align: left;
  padding: 20px 30px 18px 30px;
  position: relative;
  margin: 2px 0;
  font-family: Zen Maru Gothic;
  font-size: 16px;
}

/* 矢印 */
.accordion__button::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-right: 2px solid #2a5522;
  border-bottom: 2px solid #2a5522;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.accordion__button.is-open::after {
  transform: translateY(-50%) rotate(-135deg);
}

.accordion__content {
  display: none;
  background-color: #fff1fb;
  /* font-size: 16px; */
  line-height: 2;
  padding: 20px 30px;
  border-radius: 20px;
}


/* ===== 全体 ===== */
.faq {
  background-color: #f6e9cd;
  padding: 5% 10%;
  border-radius: 50px;
  margin: 0 5%;
  /* box-shadow: 0 9px 22px rgba(0,0,0,0.1); */
  /* animation: floatShadow 3s ease-in-out infinite; */
}

.faq-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-family: "Zen Maru Gothic";
  font-weight: 900;
  letter-spacing: .5rem;
  color: #2a5522;
}

.faq-title .en {
  display: block;
  font-size: 14px;
  color: #fd89ff;
  margin-bottom: 8px;
}

.faq-title span {
  color: #2a5522;
}


/* ===== Instagram ===== */

.insta {
  display: flex;
  justify-content: center;
  gap: 15px;
  background-color: #fffbf3;
  margin: -.5% 10%;
  padding: 30px;
  border-radius: 50px;
}

.insta-item {
  width: 20%;
  margin: 20px;
  overflow: hidden;
}
.insta-item_3{
  width: 20%;
  margin: 20px;
  overflow: hidden;
}

.insta-item img,.insta-item_3 img {
  width: 100%;
  height: auto;
  /* border: 2px solid #2a5522; */
  display: block;
  aspect-ratio: 1 / 1;
  /* 画像を強制的に正方形にする */
  object-fit: cover;

  border-radius: 10px;
  
  transition: transform .6s ease;


}

@media (hover: hover){
.insta-item img:hover,.insta-item_3 img:hover{
  transform: scale(1.1);
  border-radius: 10px;
}}

#instagram {
  padding: 5% 0;
  text-align: center;
  position: relative
}

.insta-link_2 {
  width: 100%;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 20px 30px;
  border-radius: 5px;
  font-family: "Zen Maru Gothic";
  font-weight: 900;
  letter-spacing: .3rem;
  margin: 10px;
}


.loopsliders_2 {
  overflow: hidden;
  z-index: 1000;
}

.loopslider_2 {
  display: flex;
  width: max-content;
  /*中の要素の合計幅 */
  animation: slider_2 50s linear infinite;
  margin-bottom: 7%;
  height: 400px;
}


.loopsliders_3 {
  overflow: hidden;
  z-index: 1000;
  height: 400px;
}

.loopslider_3 {
  display: flex;
  width: max-content;
  /*中の要素の合計幅 */
  /* margin: 20px 0; */
  margin-top: 0%;
  animation: slider_2 50s linear infinite reverse;
}

.loopslider_2 img {
  height: 100%;
}

/* アニメーション */
@keyframes slider_2 {
  from {
    transform: translateX(0);
    /*0からのスタート */
  }

  to {
    transform: translateX(-50%);
  }
}

svg {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-top: 100px;
  margin-bottom: -7px;
}


/* ===== FOOTER ===== */
.footer {
  background-color: #2a5522;
  width: 100%;
  height: 450px;
  margin-top: -4px;
  justify-content: space-between;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.column {
  flex-direction: column;
}
.footer__inner_bottom a {
  position: relative;
  /* margin-right: 3rem; */
  padding-left: 25px;
  text-decoration: none;
  color: #2a5522;
  font-weight: 900;
  font-size: 18px;
  display: inline-block;
  /* margin-top: 22px; */
  right: 30px;
}


.nav-img {
  position: absolute;
  left: 0;
  /* top: 50%; */
  transform: translate(-20px, -50%) scale(0.7);
  opacity: 0;
  transition: all 0.35s ease;
}

.nav-img img {
  width: 19px;
}

@media (hover: hover){
.footer__inner_bottom a:hover .nav-img {
  transform: translate(0, -50%) scale(1.3);
  opacity: 1;
}
}
@media (hover: hover){
.footer__inner_bottom a:hover{
  color: #fd89ff;
}}

.icon_flex {
  margin-top: 20px;
  display: flex;
  align-items: center;
  margin-left: -45px;
}


.usi,
.niwatori {
  width: 400px;
  opacity: 0;
  z-index: 1;
}

.usi.is-show {
  opacity: 1;
  animation: usiPoyon 1.6s cubic-bezier(.25, 1.5, .5, 1) forwards;
}

.niwatori.is-show {
  opacity: 1;
  animation: niwatoriPoyon 1.2s ease-out forwards;
}


@keyframes usiPoyon {
  0% {
    transform: translateX(0%) scale(0.6);
  }

  45% {
    transform: translateX(20px) scale(1.15) rotate(2deg);
  }

  65% {
    transform: translateX(-15px) scale(0.9) rotate(-1deg);
  }

  80% {
    transform: translateX(10px) scale(1.0);
  }

  90% {
    transform: translateX(-5px) scale(0.98);
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes niwatoriPoyon {
  0% {
    transform: translateX(140%) scale(0.6);
  }

  45% {
    transform: translateX(-20px) scale(1.15) rotate(-2deg);
  }

  65% {
    transform: translateX(15px) scale(0.9) rotate(1deg);
  }

  80% {
    transform: translateX(-10px) scale(1.00);
  }

  90% {
    transform: translateX(5px) scale(0.98);
  }

  100% {
    transform: translateX(0) scale(1);
  }
}


.usi img,
.niwatori img {
  width: 100%;
  display: block;
}


.footer__inner_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  z-index: 3;
}

.footer__inner_bottom a {
  display: block;
  text-align: center;
}

.footer a {
  color: #fff;
  text-decoration: none;
  padding: 20px;
  font-family: "Zen Maru Gothic";
  font-weight: 900;
  letter-spacing: .3rem;
  color: #ffffff;
}

.kusa {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateY(100%) scale(0.8);
  z-index: 1;
}

.kusa.is-show {
  opacity: 1;
  animation: kusaPoyon 1.4s cubic-bezier(.25, 1.4, .5, 1) forwards;
}

.kusa img {
  width: 100%;
  display: block;
}

@keyframes kusaPoyon {
  0% {
    transform: translateY(120%) scale(0.7);
  }

  50% {
    transform: translateY(-10px) scale(1.1);
  }

  70% {
    transform: translateY(6px) scale(0.95);
  }

  85% {
    transform: translateY(-3px) scale(1.02);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.usi,
.niwatori,
.footer__inner_bottom {
  position: relative;
  z-index: 2;
}

.icon {
  position: relative;
  bottom: 0;
}

.icon img {
  width: 30px;
}


.logo_bottom img {
  width: 80px;
}

/* =========================タブレットサイズ======================== */
@media screen and (max-width: 1023px) {

  .Sprout {
    display: none;
  }

  /* HERO */
  .hero {
    height: 500px;
  }


  html {
    font-size: 16px;
  }

  .mikan,
  .nasu,
  .egg {
    display: none;
  }

  .minitomato {
    width: 7%;
    top: 55%;
    left: 6%;
  }

  .ninjin {
    top: 63%;
    right: 7%;
  }


  .houren {
    top: 25%;
    right: 5.5%;
  }

  .tomato {
    width: 6%;
  }


  .yasai {
    width: 100%;

  }

  .scroll {
    display: none;
  }

  .loopslider {
    margin-top: 48%;
  }

  .hero_layer {
    margin-top: 40px;
  }


  #concept-area {
    margin: 60px 30px 0px;
  }

  .news img {
    display: none;
  }

  .about-title {
    padding: 20px 0px 20px 60px;
  }

  .about-left img {
    width: 300px;
    margin-top: 15px;
    margin-left: -46px;
  }

  .hukidasi {
    width: 100%;
    margin-left: 0px;

  }

  .catch::before {
    bottom: 18px;
  }

  .about-title {
    flex-direction: column;
  }



  /* CONCEPT */
  .concept-inner {
    flex-direction: column;
    text-align: left;
  }


  .concept-img {
    height: 250px;
  }

  /* NEWS */

  #news {
    flex-direction: column;
    margin: 30px;
  }

  #news h2 {
    font-size: 25px;
  }

  .news-inner {
    flex-direction: column;
  }

  .news_img,
  .news-wrap {
    width: 100%;
  }

  .news_img {
    display: none;
  }

  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 25px;
  }

  .member-card {
    max-width: 600px;
    /* margin: 0 auto; */
  }

  .member_moji img {
    width: 350px;
  }


  .slick-prev {
    left: -60px;
  }

  .slick-next {
    right: -60px;
  }

  /* #c-section {
    margin: 30px;
  } */

  .c-title {
    font-size: 20px;
  }

  .accordion-007 summary {
    font-size: 15px;
  }

  .accordion__button {
    font-size: 15px;
    font-weight: 700;
  }

  .loopslider_2 {
    height: 200px;
  }


  .loopsliders_3 {
    height: 200px;
  }

  .faq {
    margin: 0 2%;
    padding: 5% 2%;
  }

  .faq-list {
    width: 80%;
  }

  .insta-link_2 {
    letter-spacing: .1rem;
  }

  /* footer */
  .usi,
  .niwatori {
    width: 270px;
  }

}





/* ==========================スマホサイズ=========================== */
@media screen and (max-width: 767px) {

  body {
    font-size: 14px;
  }

  .loopslider img {
    height: 40px;
  }

  .loopslider {
    margin-top: 53%;
  }

  .slider img {
    padding: 20px 40px;
  }

  .header__button {
    width: 70px;
    height: 70px;
  }

  .header__button__icon {
    margin-top: 3px;
  }

  .header__button__icon span {
    width: 25px;
  }

  .header__button__txt {
    margin-top: .5rem;
    font-size: smaller;
  }



  .hukidasi img {
    width: 80px;
  }

  .catch {
    padding: 10px;
    width: calc(100% - 103px);
  }

  .catch::before {
    width: 20px;
    height: 20px;
    right: -15px;
  }

  .text {
    font-size: 15px;
  }

  #concept-area {
    flex-direction: column;
    margin: 17% 4% 0%;
  }


  .about-title {
    left: 50px;
    top: -23px;
    width: 100%;
    padding-bottom: 20px;
  }

  .about-title h2 {
    font-size: 20px;
    font-family: "Zen Maru Gothic";
    font-weight: 900;
    letter-spacing: .3rem;
  }

  .about-title small{
    margin-left: 18%;
  }
  .about-title h2::first-letter {
    font-size: 4rem;
  }

  .hand-line {
    width: 120px;
  }

  .hand-line path {
    stroke-width: 3;
    animation-duration: 8s;
  }

  .line-right {
    display: none;
  }

  .about-left {
    margin-left: 0px;
    max-width: 0px;
    width: 0%;
  }

  .about-left img {
    margin-left: -70px;
  }

  .about-right p {
    margin-left: 0px;
    padding: 60px 20px 10px 20px;
  }

  /* ナビ */
  .global-nav ul {
    flex-wrap: wrap;
    height: auto;
    padding: 10px;
    gap: 12px;
    justify-content: center;
  }

  .about-right p {
    margin-top: 0;
  }


  .hukidasi {
    width: 100%;
    margin-left: 0px;
    padding: 0 5%;
  }

  .nozoku img {
    width: 16%;
  }

  /* HERO */
  .hero {
    height: 300px;
  }

  .about-left img {
    display: none;
  }

  .member_moji img {
    width: 272px;
  }



  /* NEWS */

  #news {
    padding: 0px 30px 0 30px;
  }

  #news h2 {
    text-align: center;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .news-title {
    margin-left: 0;
    text-align: left;
    max-width: 100%;
  }


  .news-list {
    width: 100%;
  }

  .material-symbols-outlined {
    font-size: 10px;
  }

  /* MEMBER */


  .member_moji {
    animation: fadeIn_2 0s ease 0s 1 normal backwards;
  }

  @keyframes fadeIn_2 {
    from {
      opacity: 0;
      transform: translateX(0px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }


  #member {
    padding: 55px 55px 0px;
  }

  .member-text {
    font-size: 10px;
  }

  .section-title {
    font-size: 23px;
  }

  .c-title {
    font-size: 20px;
    padding: 25px 0;
  }

  .hito {
    width: 30px;
    height: 30px;
  }

  .member-card,
  .member-card_3,
  .member-card_4,
  .member-card_5,
  .member-card_6,
  .member-card_7,
  .member-card_8 {
    padding: 10px;
    margin: 0;
    opacity: 1;
  }


  .member-card img,
  .member-card_3 img,
  .member-card_4 img,
  .member-card_5 img,
  .member-card_6 img,
  .member-card_7 img,
  .member-card_8 img {
    padding: 0px;
  }

  .member-text dl {
    gap: 3px 0;
  }

  .member-text dd {
    padding: 0 10px 0 0;
  }

  .slick-prev::before {
    left: -10px;
    font-size: 28px;
  }

  .slick-prev {
    left: -40px;
  }

  .slick-next {
    right: -40px;
  }

  .slick-next::before {
    right: -10px;
    font-size: 28px;
  }

  .insta {
    flex-direction: column;
    /* 縦並びに変更 */
    align-items: center;
    gap: 1px;
    margin-top: -11px;
    margin-bottom: 40px;
  }

  .insta-item,.insta-item_3 {
    width: 100%;
    max-width: 250px;
  }

  .insta-item img ,.insta-item_3 img{
    width: 100%;
    height: auto;
    display: block;
  }

  .insta-item_3{
    display: none;
  }

  .insta-link {
    padding-left: 0px;
  }

  .accordion {
    flex-direction: column;
    padding: 0px;
  }

  .accordion__button {
    padding: 20px 20px 18px 11px;
  }

  .accordion__button::after {
    right: 10px;
    width: 4px;
    height: 4px;
  }

  #c-section {
    padding: 20px;
  }

  .faq-title {
    font-size: 22px;
  }

  .faq-list {
    width: 100%;
  }

  /* INSTAGRAM */

  /* FOOTER */

  .footer {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 40px 0;
  }

  .usi,
  .niwatori {
    width: 200px;
    margin: 20px 0;
  }

  .footer__inner_bottom {
    order: 2;
    /* 真ん中に持ってくる */
    margin: 20px 0;
    margin-left: 82px;
  }

  .usi {
    order: 1;
    width: 300px;
  }

  .niwatori {
    display: none;
  }

  .sitemap__list li{
    margin: 10% 0;
  }
  .sitemap__list a {
    font-size: 25px;
  }

  .menu-img img {
    width: 90%;
  }

  .menu-img.left {
    margin-bottom: -20px;
    /* margin-left: 20px; */
  }

  .insta-link_2 {
    margin: 0px;
  }

  .svg {
    margin-bottom: -4px;
  }

  .mousikomi a {
  padding: 15px 19px;
  }

  .sitemap__list{
    margin: 10% 0 10% 3%;
  }
  .sitemap__list a{
    font-size: 20px;
  }

  .menu-img.right{
    width: 347px;
    right: -104%;
    bottom: -5%;
  }

 
}





@media screen and (max-width: 500px) {

  .stalker {
    height: 20px;
  }

  @media (hover: hover){
  .stalker.js-hover {
    width: 20px;
  }
  }
  .menu-img img {
    display: none;
  }

  .sitemap__list li{
    margin: 20% 0;
  }
  .sitemap__list{
    margin: 10% 0 10% 3%;
  }

  .sitemap__list {
    font-size: 20px;
  }



  #concept-area {
    margin: -45px 30px 0px;
  }

  .loopslider_2 {
    margin-bottom: 60px;
  }

  .mitubati img{
    width: 42px;
  }
  .insta {
    border-radius: 20px;
    margin: -2.5% 5%;
  }

  .icon_flex {
  margin-left: 32px;
}
.insta-link_2{
  padding: 17px 12px;
}
}