@charset "UTF-8";
/* 変数　*/
/* search-kusa.php　*/
/* 変数　*/
.search-main {
  margin: 0 auto;
  width: 95%;
  font-size: 2.4rem;
}
.search-main ul {
  margin-top: 100px;
}

/* single-kusa.php　*/
/* 変数　*/
.acf-map {
  width: 100%;
  height: 400px;
}

.acf-map img {
  max-width: inherit !important;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.4%;
  /* fontもともと16px相当なので64.4%で10px相当にしている */
  scroll-behavior: smooth;
  position: relative;
}

.body {
  padding: 0px;
  margin: 0px;
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 1.6rem; /*16px*/
  color: #3d3d3d;
}

/* リストの点を消す */
ul {
  padding-left: 0;
}

li {
  list-style: none;
}

/* aの挙動 */
/* ヘッダー フッター*/
header a,
footer a {
  display: inline-block;
  text-decoration: none;
  transition: all ease 0.2s;
  color: #232b0b;
}
header a:hover,
footer a:hover {
  color: #fd7f7f;
}

body {
  width: 100%;
  background-image: url("../img/原っぱ.jpg");
  background-size: cover;
  background-attachment: fixed;
}

header {
  width: 100%;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: left;
  row-gap: 30px;
  padding: 20px 0 0 20px;
}
header .header-logo {
  width: 150px;
  left: 0;
  border-radius: 47% 54% 56% 42%/31% 66% 36% 69%;
}
header .navigation {
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 2rem;
}
header .navigation ul {
  position: relative;
}
header .navigation ul li {
  margin-bottom: 10px;
}
header .navigation ul li img {
  width: 32px;
}
header .navigation ul::before {
  position: absolute;
  left: -100px;
  top: -3px;
  display: block;
  content: "";
  width: 300px;
  height: 40px;
  border-radius: 3px;
  background: radial-gradient(circle, rgb(230, 242, 142) 0%, rgb(253, 187, 45) 100%);
  z-index: -1;
}

.front-page-main {
  margin: 0 auto;
  width: 95%;
}

.butterfly {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}
.butterfly img {
  width: 150px;
  transform-origin: center bottom;
  animation: patapata 2s linear infinite;
}

@keyframes patapata {
  0%, 100% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
}
.ladybug {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}
.ladybug img {
  width: 50px;
  transform-origin: center bottom;
  animation: mogomogo 5s linear infinite;
}

@keyframes mogomogo {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  25% {
    transform: translateX(100px) translateY(-100px);
  }
  50% {
    transform: translateX(200px) translateY(-50px) scale(-1, 1);
  }
  100% {
    transform: translateX(-50%) translateY(0) scale(-1, 1);
  }
}
.search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 50px;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  height: 700px;
  background-image: url("../img/search-background3.jpeg");
  background-size: cover;
  border-radius: 60% 40% 80% 42%/50% 80% 60% 90%;
  animation: yurayura 5s linear infinite;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.5);
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.8rem;
  transform: translateX(-500px);
  opacity: 0;
  transition: all ease-in-out 1.5s;
}
.search form table tr {
  height: 60px;
}
.search form table tr .search-cat {
  padding-right: 10px;
  font-weight: bold;
}
.search form table tr .options {
  font-size: 2.4rem;
}
.search form table tr .options .radio-label {
  position: relative;
  cursor: pointer;
  padding-left: 25px;
  color: #232b0b;
  transition: all ease 0.5s;
}
.search form table tr .options .radio-label::before,
.search form table tr .options .radio-label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  z-index: -1;
}
.search form table tr .options .radio-label::before {
  background-color: #f3f3f3;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 5px;
}
.search form table tr .options .radio-label::after {
  background-color: #000000;
  border-radius: 50%;
  opacity: 0;
  width: 16px;
  height: 16px;
  left: 7px;
}
.search form table tr .options .radio-label:hover {
  color: #fd7f7f;
}
.search form table tr .options input:checked + .radio-label::after {
  opacity: 1;
}
.search form table tr .options input:checked + .radio-label {
  color: #fc4040;
}
.search form table tr .options .visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
.search form table tr .options input::-moz-placeholder {
  background-color: #f3f3f3;
  border-radius: 5px;
}
.search form table tr .options input::placeholder {
  background-color: #f3f3f3;
  border-radius: 5px;
}
.search form .search-btn-area {
  text-align: center;
  margin-top: 30px;
}
.search form .search-btn-area #btn {
  background-color: #fc6e6e;
  border-radius: 5px;
  padding: 5px 10px;
}

@keyframes yurayura {
  0% {
    border-radius: 80% 70% 90% 72%/80% 90% 70% 90%;
  }
  50% {
    border-radius: 60% 60% 70% 62%/70% 70% 60% 60%;
  }
  100% {
    border-radius: 80% 70% 90% 72%/80% 90% 70% 90%;
  }
}
.search.move {
  transform: translateX(0px) translateY(-5%);
  opacity: 0.9;
}

.pickup-area {
  width: 100%;
  margin: 0 auto 200px;
  text-align: center;
  background-image: radial-gradient(rgba(254, 242, 99, 0.6), rgba(209, 253, 254, 0) 72%);
}
.pickup-area a {
  display: inline-block;
  text-decoration: none;
  color: #232b0b;
  transition: all ease 1s;
}
.pickup-area a:hover {
  background: radial-gradient(circle, rgb(253, 128, 45) 0%, rgba(253, 128, 45, 0) 70%);
  font-weight: bold;
}
.pickup-area h1 {
  font-size: 4.8rem;
  margin-bottom: 50px;
  color: #232b0b;
  font-family: "Zen Kurenaido", sans-serif;
}
.pickup-area h2 {
  margin-bottom: 20px;
  color: #232b0b;
  font-family: "Zen Kurenaido", sans-serif;
}

.swiper {
  width: 100%;
  max-width: 1000px;
  height: 400px;
  margin: 0px auto;
  padding: 0 20px;
}

.swiper-slide {
  font-size: 18px;
}

.swiper-card {
  width: 100%;
  height: 100%;
  padding: 0rem;
  text-align: center;
  border-radius: 20px;
}

.swiper-card-img-wrapper {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  border: yellow solid 2px;
}

.swiper-card-img-wrapper img {
  display: block;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  margin-bottom: 10px;
  transition: all ease 1s;
}
.swiper-card-img-wrapper img:hover {
  scale: 120%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #f3f3f3;
}

/* 前へ次への矢印位置をカスタマイズ */
.swiper-button-prev:after {
  position: absolute;
  left: 150px;
  top: 380px;
}

.swiper-button-next:after {
  position: absolute;
  right: 150px;
  top: 380px;
}

footer {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: center;
  background-color: rgba(253, 255, 194, 0.9);
}
footer .footer-logo {
  width: 100px;
  left: 0;
  border-radius: 47% 54% 56% 42%/31% 66% 36% 69%;
}
footer .footer-navigation {
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 2rem;
}
footer .footer-navigation ul {
  position: relative;
}
footer .footer-navigation ul li img {
  width: 30px;
}/*# sourceMappingURL=style.css.map */