/*----- MV -----*/

.section-top {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--beige);
}
.section-top__contents-wrapper {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  animation: mvFadeInPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}

@keyframes mvFadeInPop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section-top #main-title {
  transform-origin: center bottom;

  animation: titleBounceRepeat 3.5s ease 1.7s;
}

@keyframes titleBounceRepeat {
  0% {
    transform: scale(1);
  }
  4% {
    transform: scale(1.1, 0.9);
  }
  9% {
    transform: scale(0.95, 1.08);
  }
  13% {
    transform: scale(1.04, 0.97);
  }
  16% {
    transform: scale(0.99, 1.01);
  }
  20% {
    transform: scale(1);
  }
  60% {
    transform: scale(1);
  }
}

.section-top .cls-1 {
  fill: none !important;
}
#top-info-title {
  display: block;
  position: relative;
  top: -50px;
  width: 100%;
  height: auto;
  overflow: visible;
}
#top-info-title .cls-3 {
  transform-origin: center center;
  animation: poyon 2.4s infinite ease-in-out;
}
@keyframes poyon {
  0% {
    transform: scale(1); /* 最初は等倍 */
  }
  10% {
    transform: scale(1.04, 0.94); /* 横にちょっと潰れて縦に縮む（溜め） */
  }
  20% {
    transform: scale(0.98, 1.04); /* 縦にビヨーンと伸びて飛び出す */
  }
  30% {
    transform: scale(1.01, 0.99); /* 反動で少し戻る */
  }
  40% {
    transform: scale(1);
  }
  50%,
  100% {
    transform: scale(
      1
    ); /* 元のサイズに戻って、後半は静止（メリハリを出すため） */
  }
}

.button-reservation.top.top-sp {
  display: none;
}
.button-reservation.top {
  width: 80% !important;
  position: relative;
  z-index: 1;
}
.button-reservation.top a {
  position: relative;
  z-index: 2;
}
.button-reservation.top a::before {
  width: 160px;
  animation: shake-up 3s infinite ease-in-out;
}
@keyframes shake-up {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% + 15px));
  }
}
.button-reservation.top a::after {
  right: 16px;
  width: 23px;
  height: 23px;
}
.button-reservation.top .button-reservation__sub-text {
  margin-bottom: 0px;
}
.button-reservation.top .button-reservation__character {
  position: absolute;
  right: 7px; /* 右端基準にしておくとtranslateXでの計算がしやすくなります */
  bottom: 0;
  width: 80px;
  z-index: -1; /* ボタンの裏側に配置 */
  transform: translateX(0);
  animation: character-peek 6s infinite;
  animation-delay: 2.7s;
}
@keyframes character-peek {
  /* 0%〜15%: ボタンの裏に隠れている */
  0%,
  15% {
    transform: translateX(0);
  }

  /* 18%〜30%: ちょっとだけ右に出て耳をブルブル */
  18% {
    transform: translateX(40%) rotate(-3deg);
  }
  22% {
    transform: translateX(40%) rotate(3deg);
  }
  26% {
    transform: translateX(40%) rotate(-3deg);
  }
  30% {
    transform: translateX(40%) rotate(0deg);
  }

  /* 40%〜65%: 右方向へしっかり登場 */
  40%,
  65% {
    transform: translateX(110%);
  }

  /* 75%〜100%: 左へ移動してボタンの裏へ戻る */
  75%,
  100% {
    transform: translateX(0);
  }
}

.button-reservation.top .button-reservation__balloon {
  position: absolute;
  width: 190px;
  /* キャラクターが登場する右側（translateX(110%)した位置）の上付近に合わせて調整 */
  right: -80px;
  top: -42px;
  opacity: 0;
  z-index: 2; /* ボタンやキャラクターより手前に表示 */
  animation: balloon-pop 6s infinite;
  animation-delay: 2.7s;
}

@keyframes balloon-pop {
  0%,
  45%,
  100% {
    opacity: 0;
    transform: translateY(10px) scale(0.8);
  }

  50%,
  65% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  70% {
    opacity: 0;
    transform: translateY(-5px) scale(0.9);
  }
}
.section-top__slide-wrapper {
  position: relative !important;
  height: 100%;
}
.section-top__slide-wrapper .illust01 {
  position: absolute !important;
  top: 0%;
  left: 10%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 130px;
}
.section-top__slide-wrapper .illust02 {
  position: absolute !important;
  top: 3%;
  right: 11%;
  transform: translate(50%, -50%);
  z-index: 1;
  width: 230px;
}
.section-top__slide-wrapper .illust03 {
  position: absolute !important;
  bottom: 5%;
  left: 12%;
  transform: translate(-50%, 50%);
  z-index: 1;
  width: 160px;
}
.section-top__slide-wrapper .illust04 {
  position: absolute !important;
  bottom: 0;
  right: 8%;
  transform: translate(50%, 50%);
  z-index: 1;
  width: 150px;
}
/* Splideのスライダー */
.splide__pagination {
  bottom: -23px !important;
}
.splide__pagination__page.is-active {
  background: var(--orange) !important;
}
.section-top__splide .splide__track {
  border: 2px solid #000 !important;
  border-radius: 30px;
}
.splide__slide img {
  border-radius: 25px;
}
@media screen and (max-width: 991.8px) {
  .section-top__info-wrapper {
    flex-basis: 55% !important;
  }
  .section-top__slide-wrapper {
    flex-basis: 45% !important;
  }
  .section-top {
    padding-top: 15.85vw;
    padding-bottom: 8.06vw;
  }
  #top-info-title {
    top: -5.04vw;
  }

  .button-reservation.top {
    width: 90% !important;
  }
  .button-reservation.top a::before {
    width: 13.1vw;
    left: -2.82vw;
  }

  .button-reservation.top a::after {
    right: 1.61vw;
    width: 2.32vw;
    height: 2.32vw;
  }
  .button-reservation.top .button-reservation__character {
    width: 8.53vw;
  }

  .button-reservation.top .button-reservation__balloon {
    width: 18.29vw;
    right: -7.31vw;
    top: -3.65vw;
  }

  @keyframes balloon-pop {
    0%,
    45%,
    100% {
      opacity: 0;
      transform: translateY(10px) scale(0.8);
    }

    50%,
    65% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    70% {
      opacity: 0;
      transform: translateY(-5px) scale(0.9);
    }
  }
  .section-top__slide-wrapper .illust01 {
    width: clamp(76px, 20vw, 100px);
  }
  .section-top__slide-wrapper .illust02 {
    width: clamp(116px, 17.1vw, 130px);
  }
  .section-top__slide-wrapper .illust03 {
    width: clamp(111px, 15.6vw, 120px);
  }
  .section-top__slide-wrapper .illust04 {
    width: clamp(80px, 11.57vw, 87px);
  }
  /* Splideのスライダー */
  .splide__pagination {
    bottom: -2.32vw !important;
  }
}

@media screen and (max-width: 781.8px) {
  .section-top {
    padding-top: 16vw;
    padding-bottom: 16vw;
  }
  #top-info-title {
    top: 0;
  }
  .button-reservation.top {
    display: none;
  }
  .button-reservation.top.top-sp {
    display: block;
  }

  .button-reservation.top.top-sp {
    width: 100% !important;
    margin-top: clamp(130px, 37.33vw, 180px);
  }
  .button-reservation.top.top-sp a::before {
    width: 26.9vw;
    left: -2.82vw;
  }

  .button-reservation.top.top-sp a::after {
    right: 3.46vw;
    width: clamp(20px, 4vw, 30px);
    height: clamp(20px, 4vw, 30px);
  }

  .button-reservation.top.top-sp .button-reservation__character {
    right: 50%;
    transform: translateX(50%) translateY(0);
    bottom: 0;

    animation-name: character-peek-up;
    width: 16.33vw;
    max-width: 92px;
  }

  /* --- 吹き出しの位置を変更 --- */
  .button-reservation.top.top-sp .button-reservation__balloon {
    left: 50%;
    right: auto;
    top: auto;
    bottom: min(17.33vw, 94px);
    transform: translateX(-50%);
    animation-name: balloon-pop;
    width: 50vw;
    max-width: 250px;
  }

  @keyframes character-peek-up {
    0%,
    15% {
      transform: translateX(50%) translateY(0);
    }

    18% {
      transform: translateX(50%) translateY(-30px) rotate(-3deg);
    }
    22% {
      transform: translateX(50%) translateY(-30px) rotate(3deg);
    }
    26% {
      transform: translateX(50%) translateY(-30px) rotate(-3deg);
    }
    30% {
      transform: translateX(50%) translateY(-30px) rotate(0deg);
    }

    40%,
    65% {
      transform: translateX(50%) translateY(-70px);
    }

    75%,
    100% {
      transform: translateX(50%) translateY(0);
    }
  }
  @keyframes balloon-pop {
    0%,
    45%,
    100% {
      opacity: 0;

      transform: translateX(-50%) translateY(10px) scale(0.8);
    }

    50%,
    65% {
      opacity: 1;
      transform: translateX(-50%) translateY(0) scale(1);
    }

    70% {
      opacity: 0;
      transform: translateX(-50%) translateY(-5px) scale(0.9);
    }
  }

  /* Splideのスライダー */
  .splide__pagination {
    bottom: clamp(-30px, -3.33vw, -18px) !important;
  }
}
.illust-wrapper {
  position: relative;
  overflow: visible;
}
.illust-wrapper .left,
.illust-wrapper .right {
  will-change: transform, opacity;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  animation: kakukaku-hover 2s steps(2, end) infinite;
}
/* .illust-wrapper.is-active .left {
  animation: walkFromLowTopLeft 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
}

.illust-wrapper.is-active .right {
  animation: walkFromLowTopRight 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
} */
.illust-wrapper.center {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
/* @keyframes walkFromLowTopLeft {
  0% {
    opacity: 0;
    transform: translate(-100px, -50px) rotate(-4deg);
  }
  25% {
    opacity: 1;
    transform: translate(-75px, -35px) rotate(4deg) translateY(-6px);
  }
  50% {
    transform: translate(-50px, -20px) rotate(-4deg) translateY(0);
  }
  75% {
    transform: translate(-25px, -5px) rotate(4deg) translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes walkFromLowTopRight {
  0% {
    opacity: 0;
    transform: translate(100px, -50px) rotate(4deg);
  }
  25% {
    opacity: 1;
    transform: translate(75px, -35px) rotate(-4deg) translateY(-6px);
  }
  50% {
    transform: translate(50px, -20px) rotate(4deg) translateY(0);
  }
  75% {
    transform: translate(25px, -5px) rotate(-4deg) translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
} */
@media screen and (max-width: 768px) {
  .illust-wrapper.center {
  width: 55vw;
}
.section-pickup .illust-wrapper.center{
  width: 45vw;
}
.section-access .illust-wrapper.center{
  width: 60vw;
}
}


/* 見出しのアニメーション */
/* .site-title-wrapper {
  overflow: visible !important;
}
.site-title-svg #svg-part {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
  overflow: visible;
  transform-box: fill-box;
  transform-origin: center;
}

.site-title-wrapper.is-active #svg-part {
  animation: svgPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.site-title-wrapper.is-active #svg-part:nth-child(1) { animation-delay: 0.1s; }
.site-title-wrapper.is-active #svg-part:nth-child(2) { animation-delay: 0.2s; }
.site-title-wrapper.is-active #svg-part:nth-child(3) { animation-delay: 0.3s; }
.site-title-wrapper.is-active #svg-part:nth-child(4) { animation-delay: 0.4s; }
.site-title-wrapper.is-active #svg-part:nth-child(5) { animation-delay: 0.5s; }
.site-title-wrapper.is-active #svg-part:nth-child(6) { animation-delay: 0.6s; }
.site-title-wrapper.is-active #svg-part:nth-child(7) { animation-delay: 0.7s; }
.site-title-wrapper.is-active #svg-part:nth-child(8) { animation-delay: 0.8s; }
.site-title-wrapper.is-active #svg-part:nth-child(9) { animation-delay: 0.9s; }
.site-title-wrapper.is-active #svg-part:nth-child(10) { animation-delay: 1s; }


@keyframes svgPopIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
} */



/*----- お知らせ ------*/
.section-news {
  background-color: var(--white01);
  padding: 120px 30px 70px;
}
.section-news .contents-wrapper {
  position: relative;
  z-index: 11;
  padding: 60px;
  border-radius: 20px;
  background-color: #fff;
}


#section-title__news {
  width: 80%;
  height: auto;
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  border-bottom: 1px dashed #ddd;
}

.news-link {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 20px 10px;
  text-decoration: none;
  color: #000;
}

.news-link__item-meta {
  display: flex;
}

.news-date {
  display: block;
  font-size: 16px;
  width: 110px;
  flex-shrink: 0;
  padding-top: 3px;
}

.news-category {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  padding: 3px 12px;
  border-radius: 4px;
  margin-right: 20px;
  width: 90px;
  text-align: center;
  flex-shrink: 0;
}

.cat-info {
  background-color: var(--orange);
}

.news-text {
  flex: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .section-news {
    padding: 8.53vw 1.21vw;
  }
  .section-news .contents-wrapper {
    padding: 6.09vw 4.87vw;
  }
}
@media screen and (max-width: 781px) {
  #section-title__news {
    width: 54vw;
    max-width: 330px;
    margin: 0 auto;
    display: block;
  }
  .section-news .illust-wrapper {
    width: 40%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .section-news {
        padding: 12.53vw 8vw;
    }
  .section-news .illust-wrapper {
    margin: 0 auto;
    width: 50vw;
    max-width: 280px;
    padding: 7.46vw 6.66vw;
  }
  #section-title__news {
    width: 48vw;
    max-width: 330px;
    margin: 0 auto;
    display: block;
  }
  .news-link {
    flex-direction: column;
    padding: 5.33vw 2.66vw;
  }
  .news-link__item-meta {
    padding-bottom: 2.66vw;
  }
  .news-date {
    font-size: clamp(13px, 2.33vw, 15px);
    width: clamp(80px, 13.58vw, 83px);
    padding-top: 0.8vw;
  }

  .news-category {
    font-size: clamp(13px, 2.33vw, 15px);
    padding: 0.8vw 3.2vw;
    margin-right: 0px;
    width: clamp(90px, 16.66vw, 138px);
  }

  .news-text {
    font-size: clamp(16px, 2.66vw, 18px);
  }
}

/*----- 出展者紹介 -----*/
.section-exhibitor {
  position: relative;
  z-index: 10;
}
.section-exhibitor::before {
  content: "";
  position: absolute;
  background-color: var(--red);
  border-radius: 0 140px 0px 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 80%;
  z-index: -1;
}
.section-exhibitor .section-title {
  padding-top: 120px;
}
.section-exhibitor .exhibitor-contents-wrapper {
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  margin-top: 60px;
}
.section-title {
  text-align: center;
}

#section-title__exhibitor-search,
#section-title__exhibitor-pickup {
  width: 25%;
  height: auto;
}

.section-exhibitor__title {
  margin-bottom: 30px !important;
}
.section-exhibitor__title p {
  font-size: 28px;
  font-weight: 500;
}

.section-exhibitor ul {
  list-style: none;
  display: flex;
  padding-left: 0px;
}

.section-exhibitor ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000 !important;

  text-decoration: none !important;
}
.section-exhibitor ul li a span {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

/* 出展者カテゴリー */
.section-exhibitor ul.category {
  margin-bottom: 60px !important;
  gap: 20px;
}

.section-exhibitor ul.category li {
  width: calc(100% / 6);
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}
.section-exhibitor.is-active ul.category li,
.section-exhibitor ul.category.is-active li {
  animation: popInItemSlow 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.section-exhibitor.is-active ul.category li:nth-child(1),
.section-exhibitor ul.category.is-active li:nth-child(1) { animation-delay: 0.1s; }

.section-exhibitor.is-active ul.category li:nth-child(2),
.section-exhibitor ul.category.is-active li:nth-child(2) { animation-delay: 0.28s; }

.section-exhibitor.is-active ul.category li:nth-child(3),
.section-exhibitor ul.category.is-active li:nth-child(3) { animation-delay: 0.46s; }

.section-exhibitor.is-active ul.category li:nth-child(4),
.section-exhibitor ul.category.is-active li:nth-child(4) { animation-delay: 0.64s; }

.section-exhibitor.is-active ul.category li:nth-child(5),
.section-exhibitor ul.category.is-active li:nth-child(5) { animation-delay: 0.82s; }

.section-exhibitor.is-active ul.category li:nth-child(6),
.section-exhibitor ul.category.is-active li:nth-child(6) { animation-delay: 1.0s; }

@keyframes popInItemSlow {
  0% {
    opacity: 0;
    transform: translateY(20px); /* 下に配置・縮小 */
  }
  /* 最初の1%で「はっきり」表示（フェードインさせない） */
  1% {
    opacity: 1;
    transform: translateY(20px);
  }
  /* 到達（少し勢いよく元の位置より上へ・少し膨らむ） */
  70% {
    opacity: 1;
    transform: translateY(-3px); /* 行き過ぎるバウンド */
  }
  /* 本来の位置へピタッと着地 */
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-exhibitor ul.category li a {
  border-radius: 10px;
  padding: 10px 10px 15px;
}

.section-exhibitor ul.category li a img {
  width: 70%;
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  animation: kakukaku-hover 2s steps(2, end) infinite;
}

@keyframes kakukaku-hover {
  from {
    transform: rotate(-4deg) scale(var(--scale-factor, 1));
  }
  to {
    transform: rotate(8deg) scale(var(--scale-factor, 1));
  }
}

.section-exhibitor ul.category li a:hover img {
  --scale-factor: 1.5;
  animation-timing-function: ease-in-out;
}
.section-exhibitor ul.category li a span {
  height: 60px;
  display: flex;
  align-items: center;
}
.section-exhibitor ul.category li .business {
  border: 2px solid #f285b8;
  background-color: #ffe9f4;
}
.section-exhibitor ul.category li .agriculture {
  border: 2px solid #ff9d00;
  background-color: #ffebca;
}
.section-exhibitor ul.category li .forestry {
  border: 2px solid #7ebf95;
  background-color: #d3ffe2;
}
.section-exhibitor ul.category li .fishery {
  border: 2px solid #05c7f2;
  background-color: #caf8ff;
}
.section-exhibitor ul.category li .chiikiokoshi {
  border: 2px solid #9b7610;
  background-color: #ffd773;
}
.section-exhibitor ul.category li .way-of-working {
  border: 2px solid #a75af9;
  background-color: #ddbdff;
}

/* 出展者キーワード */
.section-exhibitor ul.keyword {
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: calc(6 * 100vw / 1440);
}

.section-exhibitor__keyword-subtitle {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px !important;
}
.section-exhibitor ul.keyword li{
  opacity: 0;
  transform: translateY(20px); /* 20px下からスタート */
  will-change: transform, opacity;
}
.section-exhibitor.is-active ul.keyword li,
.section-exhibitor ul.keyword.is-active li {
  animation: popInkeyword 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.section-exhibitor.is-active ul.keyword li:nth-child(1),
.section-exhibitor ul.keyword.is-active li:nth-child(1) { animation-delay: 0.1s; }

.section-exhibitor.is-active ul.keyword li:nth-child(2),
.section-exhibitor ul.keyword.is-active li:nth-child(2) { animation-delay: 0.28s; }

.section-exhibitor.is-active ul.keyword li:nth-child(3),
.section-exhibitor ul.keyword.is-active li:nth-child(3) { animation-delay: 0.46s; }

.section-exhibitor.is-active ul.keyword li:nth-child(4),
.section-exhibitor ul.keyword.is-active li:nth-child(4) { animation-delay: 0.64s; }

.section-exhibitor.is-active ul.keyword li:nth-child(5),
.section-exhibitor ul.keyword.is-active li:nth-child(5) { animation-delay: 0.82s; }

.section-exhibitor.is-active ul.keyword li:nth-child(6),
.section-exhibitor ul.keyword.is-active li:nth-child(6) { animation-delay: 1.0s; }


@keyframes popInkeyword {
  0% {
    opacity: 0;
    transform: translateY(20px); /* 下に配置・縮小 */
  }
  /* 最初の1%で「はっきり」表示（フェードインさせない） */
  1% {
    opacity: 1;
    transform: translateY(20px);
  }
  /* 到達（少し勢いよく元の位置より上へ・少し膨らむ） */
  70% {
    opacity: 1;
    transform: translateY(-3px); /* 行き過ぎるバウンド */
  }
  /* 本来の位置へピタッと着地 */
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-exhibitor ul.keyword li a {
  padding: 10px 17px;
  border-radius: 9999px;
}
.section-exhibitor ul.keyword li a.keyword-work-style {
  border: 2px var(--red) solid;
  color: #000;
  background-color: #fff;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.section-exhibitor ul.keyword li a.keyword-work-style:hover {
  border: 2px var(--red) solid;
  color: #fff !important;
  background-color: var(--red);
}
.section-exhibitor ul.keyword li a.keyword-lifestyle {
  border: 2px var(--orange) solid;
  color: #000;
  background-color: #fff;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.section-exhibitor ul.keyword li a.keyword-lifestyle:hover {
  border: 2px var(--orange) solid;
  color: #fff !important;
  background-color: var(--orange);
}




/* ------出展者スライダー-------- */
.section-pickup {
  background-color: var(--white01);
  padding: 140px 0 410px;
}
.section-pickup::before {
  content: "";
  position: absolute;
  background-color: var(--white01);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  top: -250px;
  z-index: 0;
}
/* .section-pickup::after {
  content: "";
  position: absolute;
  background-color: var(--white01);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  bottom: -120px;
  z-index: 0;
} */
.section-pickup .section-title {
  z-index: 1;
}
.exhibitor-splide {
  margin-top: 60px !important;
  min-width: 100%;
  z-index: 1;
}
.exhibitor-splide .splide__track{
  overflow: visible;
}
.exhibitor-splide ul {
  list-style: none !important;
}
.exhibitor-splide ul li {
  background-color: #fff;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(0);
}
.exhibitor-splide ul li:hover{
  transform: translateY(-10px);
}

.exhibitor-splide ul li a {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  color: #000;
}
.exhibitor-card {
  padding: 30px;
}
.exhibitor-card__text-wrapper {
  width: 100%;
  text-align: left;
  box-sizing: border-box;
}
.exhibitor-card__img img {
  border-radius: 20px;
}
.exhibitor-card__prefecture {
  margin-top: 10px;
  background-color: var(--red);
  padding: 7px 14px;
  border-radius: 9999px;
  display: inline-block;
}
.exhibitor-card__prefecture p {
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
}
.exhibitor-card__title {
  margin-top: 5px;
  margin-bottom: 10px;
}
.exhibitor-card__title p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}
/* .exhibitor-splide .splide__pagination li {
  background: inherit !important;
} */
.exhibitor-splide .splide__pagination__page {
  background: #ccc !important; /* アクティブじゃない時のドットの色 */
  opacity: 0.5;
}

.exhibitor-splide .splide__pagination__page.is-active {
  background: var(--red) !important; /* アクティブな時のドットの色 */
  opacity: 1;
}
.exhibitor-splide .splide__pagination li {
  background-color: inherit;
}
.exhibitor-splide .splide__arrow {
  background-color: var(--brown);
  width: 70px;
  height: 70px;
  opacity: 1;
}

.exhibitor-splide .splide__arrow--prev {
  left: calc(50% - 290px);
}
.exhibitor-splide .splide__arrow--next {
  right: calc(50% - 290px);
}

.exhibitor-splide .splide__arrow svg {
  fill: #fff;
  height: 30px;
  width: 30px;
}
@media screen and (max-width: 1280px) {
  .section-pickup {
    padding: 140px 0 300px;
  }
  .exhibitor-splide .splide__arrow {
    width: 50px;
    height: 50px;
  }

  .exhibitor-splide .splide__arrow--prev {
    left: 10px;
  }
  .exhibitor-splide .splide__arrow--next {
    right: 10px;
  }
}
@media screen and (max-width: 992px) {
  .section-pickup {
    padding: 9.75vw 0 31.7vw;
  }
  .section-exhibitor::before {
    border-radius: 9.14vw;
    height: 95%;
  }
  .section-exhibitor .section-title {
    padding-top: 9.75vw;
  }
  .section-exhibitor .exhibitor-contents-wrapper {
    padding: 6.09vw 3.65vw;
    margin-top: 7.31vw;
  }

  .section-exhibitor__title {
    margin-bottom: 3.65vw !important;
  }
  .section-exhibitor__title p {
    font-size: clamp(20px, 3.17vw, 28px);
  }
  .section-exhibitor__title .title-icon {
    flex-basis: clamp(35px, 4.87vw, 43px) !important;
  }
  .section-exhibitor ul li a span {
    font-size: clamp(18px, 2.43vw, 20px);
  }

  /* 出展者カテゴリー */
  .section-exhibitor ul.category {
    flex-wrap: wrap;
    margin-bottom: 7.31vw !important;
    gap: 2.43vw;
  }

  .section-exhibitor ul.category li {
    width: calc((100% - (2.43vw * 2)) / 3);
  }
  .section-exhibitor ul.category li a {
    padding: 1.21vw 0;
  }
  .section-exhibitor ul.category li a span {
    height: 7.31vw;
  }

  /* 出展者キーワード */

  .section-exhibitor__keyword-subtitle {
    font-size: clamp(18px, 2.43vw, 22px);
    margin-bottom: 0.97vw !important;
  }
  .section-exhibitor ul.keyword li {
    margin-top: 0px !important;
    margin-bottom: clamp(5px, 0.36vw, 7px) !important;
    margin-left: clamp(5px, 0.36vw, 7px) !important;
  }
  .section-exhibitor ul.keyword li a {
    padding: 1.21vw 2.07vw;
  }

  /* 出展者スライダー */
  .exhibitor-splide {
    margin-top: 7.31vw !important;
  }
  .exhibitor-card {
    padding: 1.95vw;
  }
  .exhibitor-splide ul li {
    border-radius: 1.82vw;
  }
  .exhibitor-card__img img {
    border-radius: 1.82vw;
  }
  .exhibitor-card__prefecture {
    margin-top: 1.21vw;
    padding: 0.73vw 1.46vw;
  }

  .exhibitor-card__title {
    margin-bottom: 1.21vw;
    margin-top: 0.6vw;
  }
  .exhibitor-card__title p {
    font-size: clamp(18px, 4.8vw, 22px);
  }
  .exhibitor-splide .splide__arrow {
    width: 5.48vw;
    height: 5.48vw;
  }

  .exhibitor-splide .splide__arrow--prev {
    left: 1.21vw;
  }
  .exhibitor-splide .splide__arrow--next {
    right: 1.21vw;
  }
  .exhibitor-splide .splide__arrow svg {
    height: 1.82vw;
    width: 1.82vw;
  }
}

@media screen and (max-width: 768px) {
  .section-pickup {
    padding: 18.66vw 0 40vw;
  }
  .section-exhibitor::before {
    border-radius: 12.19vw;
    height: 95%;
  }
  .section-exhibitor .section-title {
    padding-top: 18.66vw;
  }
  .section-exhibitor .exhibitor-contents-wrapper {
    padding: 8vw 5.33vw;
    margin-left: 8vw !important;
    margin-right: 8vw !important;
  }
  #section-title__exhibitor-search,
  #section-title__exhibitor-pickup {
    width: 54vw;
    max-width: 330px;
  }
  .section-exhibitor__title {
    /* margin-bottom: 3.65vw !important; */
    gap: 2.66vw;
  }
  /* .section-exhibitor__title p {
  font-size:  clamp(20px, 5.33vw, 22px);
} */

  .section-exhibitor ul li a span {
    font-size: clamp(18px, 2.43vw, 20px);
  }
  /* 出展者カテゴリー */
  .section-exhibitor ul.category {
    margin-bottom: 7.31vw !important;
    gap: 2.43vw;
  }

  .section-exhibitor ul.category li {
    width: calc(100% / 2 - (2.43vw / 2));
  }
  .section-exhibitor ul.category li a {
    padding: 0 0 3.2vw;
  }
  .section-exhibitor ul.category li a span {
    height: clamp(50px, 7.81vw, 61px);
  }

  /* 出展者キーワード */
  .section-exhibitor__keyword-subtitle {
    font-size: clamp(18px, 2.43vw, 22px);
    margin-bottom: 0.97vw !important;
  }

  .section-exhibitor ul.keyword li a {
    padding: 1.33vw 3.2vw;
  }
  /* 出展者スライダー */
  .exhibitor-splide {
    margin-top: 7.31vw !important;
  }
  .exhibitor-card {
    padding: 5.33vw;
  }
  .exhibitor-splide ul li {
    border-radius: 2.66vw;
  }
  .exhibitor-card__img img {
    border-radius: 2.66vw;
  }
  .exhibitor-card__prefecture {
    margin-top: 2.13vw;
    padding: 1.33vw 2.66vw;
  }

  .exhibitor-card__title {
    margin-bottom: 2.66vw;
    margin-top: 1.33vw;
  }

  .exhibitor-splide .splide__arrow {
    height: 10.66vw;
    width: 10.66vw;
  }

  .exhibitor-splide .splide__arrow--prev {
    left: 6.93vw;
  }
  .exhibitor-splide .splide__arrow--next {
    right: 6.93vw;
  }
  .exhibitor-splide .splide__arrow svg {
    height: 4.26vw;
    width: 4.26vw;
  }
}

/* ------働く移住フェアとは-------- */
.section-wrapper.section-about {
  background-color: var(--beige);
  padding: 30px 30px 200px;
  /* border-radius: 140px 140px 0 0; */
  z-index: 10;
}
.section-wrapper.section-about::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  top: -200px;
  left: 0;
  width: 100%;
  height: 230px;
  z-index: 10;
  background-image: url("/wp-content/uploads/2026/08/about-bg.svg");
}
.section-wrapper.section-about::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: 0;
  width: 100%;
  height: 230px;
  z-index: -1;
  background-color: var(--beige);
}
.section-about .section-title {
  z-index: 11;
}

#section-title__about {
  width: 46%;
  height: auto;
}

.illust-wrapper.center .about-illust-right {
  display: flex;
  align-items: flex-end;
  z-index: 11;
}
.section-about .recommend-contents__inner {
  position: relative;
  z-index: 2;
  margin-top: 60px !important;
}

.section-about .recommend-explain-text {
  margin-bottom: 35px !important;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: transform, opacity;
}
.section-about .recommend-explain-text.is-active {
  opacity: 1;
  transform: translateY(0);
}
.section-about .recommend-list__title {
  text-align: center;
  background-color: var(--orange);
  padding: 10px 100px;
  border-radius: 9999px;
  z-index: 1;
  display: inline-block;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}
.recommend-list .recommend-list__contents .checkbox {
  opacity: 0;
  transform: translateX(-10px);
  will-change: transform, opacity;
}

.recommend-list.is-active .recommend-list__title {
  animation: fadeInBase 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s forwards;
}

.recommend-list.is-active .recommend-list__contents .checkbox {
  animation: fadeInItem 0.5s ease-out 0.1s forwards;
}

.recommend-list .recommend-list__contents .checkbox-text {
  opacity: 0;
  transform: translateX(-10px);
  will-change: transform, opacity;
}

.recommend-list.is-active .recommend-list__contents .checkbox-text {
  animation: fadeInItem 0.4s ease-out forwards;
}


.recommend-list.is-active .recommend-list__contents-wrapper .recommend-list__contents:nth-child(1) .checkbox-text {
  animation-delay: 0.6s;
}


.recommend-list.is-active .recommend-list__contents-wrapper .recommend-list__contents:nth-child(2) .checkbox-text {
  animation-delay: 0.8s;
}


.recommend-list.is-active .recommend-list__contents-wrapper .recommend-list__contents:nth-child(3) .checkbox-text {
  animation-delay: 1.0s;
}

.recommend-list.is-active .recommend-list__contents-wrapper .recommend-list__contents:nth-child(4) .checkbox-text {
  animation-delay: 1.2s;
}


/* ---------------------------------------------------
   Keyframes（アニメーションの定義）
--------------------------------------------------- */
@keyframes fadeInBase {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInItem {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-about .recommend-list__title::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 0%;
  width: 104px;
  height: 100%;
  background-image: url("/wp-content/uploads/2026/07/octopus.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: octopus-swim 2s steps(1, end) infinite;
}
@keyframes octopus-swim {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}
.section-about .recommend-list {
  text-align: center;
}
.section-about .recommend-list__title p {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
}
.section-about .recommend-list__contents-wrapper {
  padding: 55px 40px 40px;
  background-image:
    linear-gradient(
      0deg,
      transparent calc(100% - 1px),
      #f0f0f0 calc(100% - 1px)
    ),
    linear-gradient(
      90deg,
      transparent calc(100% - 1px),
      #f0f0f0 calc(100% - 1px)
    );
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  background-color: #fbfbfb;
  margin-top: -30px;
  position: relative;
  text-align: left;
  border-radius: 20px;
}
.section-about .recommend-list__contents {
  margin-bottom: 17px;
  gap: 10px;
}

.section-about .recommend-list__contents p {
  font-size: 22px;
  font-weight: 500;
}

.section-about .town {
  position: relative;
  width: 200%;
  top: 0px;
  z-index: 2;
  /* animation: shake-up-town 4s infinite ease-in-out; */
}

/* @keyframes shake-up-town {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% + 30px));
  }
} */

.section-about .town .cloud01 {
  position: absolute;
  width: 100%;
  max-width: 120px !important;
  top: 120px;
  left: 60px;
  z-index: 3;
  animation: shake-up-cloud01 4s infinite ease-in-out;
}
@keyframes shake-up-cloud01 {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% + 30px));
  }
}

.section-about .town .cloud02 {
  position: absolute;
  width: 100%;
  max-width: 230px !important;
  top: 0px;
  left: 260px;
  z-index: 3;
  animation: shake-up-cloud02 4s infinite ease-in-out;
}

@keyframes shake-up-cloud02 {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% + 10px));
  }
}
.section-about .town .cloud03 {
  position: absolute;
  width: 100%;
  max-width: 120px !important;
  top: -40px;
  left: 59%;
  z-index: 3;
  animation: shake-up-cloud03 5s infinite ease-in-out;
}
@keyframes shake-up-cloud03 {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% + 40px));
  }
}
.section-about .town .bird {
  position: absolute;
  width: 100%;
  max-width: 90px !important;
  top: 20px;
  left: 140px;
  z-index: 3;
  animation: shake-up-bird 3s infinite ease-in-out;
}
@keyframes shake-up-bird {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% + 10px));
  }
}




/* 注目コンテンツ */
.section-about .contents-title {
  opacity: 0;
  transform: translateY(20px) rotate(-5deg);
  transition: opacity 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.6s ease-out;
  will-change: transform, opacity;
  transform-origin: center center;
}
.section-about .contents-title.is-active {
  opacity: 1;
  transform: translateY(0) rotate(-5deg);
  animation: bounceVertical 2s cubic-bezier(0.28, 0.84, 0.42, 1) 0.8s;
}
@keyframes bounceVertical {
  0% {
    transform: translateY(0) rotate(-5deg) scaleY(1);
  }
  /* 踏み込み（一瞬沈んで潰れる準備） */
  10% {
    transform: translateY(2px) rotate(-5deg) scaleY(0.92);
  }
  /* ジャンプ！（上に大きく跳ねて縦に少し伸びる） */
  30% {
    transform: translateY(-18px) rotate(-5deg) scaleY(1.08);
  }
  /* 着地（落ちてきて少し潰れる） */
  45% {
    transform: translateY(2px) rotate(-5deg) scaleY(0.94);
  }
  /* 跳ね返り（小さく上に浮く） */
  60% {
    transform: translateY(-4px) rotate(-5deg) scaleY(1.02);
  }
  /* 元の位置へ戻る */
  75% {
    transform: translateY(0) rotate(-5deg) scaleY(1);
  }
  /* 静止時間（余韻） */
  100% {
    transform: translateY(0) rotate(-5deg) scaleY(1);
  }
}
.section-about .contents-title img {
  max-width: 500px;
}
.section-about .contents-column {
  margin-top: 60px !important;
}
.section-about .contents-item {
  display: flex;
  flex-direction: column;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}
.section-about .contents-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.section-about .contents-item.brown {
  background-color: var(--brown);
  box-shadow: inset 0 0 14px 6px #5e3721;
  transform: translateY(30px);
}
.section-about .contents-item.orange {
  background-color: var(--orange);
  box-shadow: inset 0 0 14px 6px #b3641d;
  transform: translateY(60px);
}
.section-about .contents-item.red {
  background-color: var(--red);
  box-shadow: inset 0 0 14px 6px #b5350d;
  transform: translateY(90px);
}
.section-about .contents-column.is-active .contents-item.brown {
  animation: popUpBrown 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s forwards;
}

.section-about .contents-column.is-active .contents-item.orange {
  animation: popUpOrange 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards;
}

.section-about .contents-column.is-active .contents-item.red {
  animation: popUpRed 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s forwards;
}
@keyframes popUpBrown {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* orange: 60px → 本来の 30px へ */
@keyframes popUpOrange {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(30px);
  }
}

/* red: 90px → 本来の 60px へ */
@keyframes popUpRed {
  0% {
    opacity: 0;
    transform: translateY(90px);
  }
  100% {
    opacity: 1;
    transform: translateY(60px);
  }
}

.section-about .contents-item-image {
  position: relative;
}
.section-about .contents-item-image .illust {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 110px;
  transform-origin: center center;
}
.section-about .contents-item-image .illust img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center center;
}

.section-about .contents-item img {
  border-radius: 20px;
}
.section-about .contents-item p {
  color: #fff;
}
.section-about .contents-item .contents-name {
  margin: 20px 0 10px;
}
/* ホバー */
.section-about .contents-item:hover .contents-item-image .illust img {
  animation: shakeIllust 0.5s ease-in-out 1;
}
@keyframes shakeIllust {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(4deg);
  } /* 右に少し傾く */
  40% {
    transform: rotate(-4deg);
  } /* 左に少し傾く */
  60% {
    transform: rotate(2deg);
  } /* 右に少し傾く（弱め） */
  80% {
    transform: rotate(-2deg);
  } /* 左に少し傾く（弱め） */
  100% {
    transform: rotate(0deg);
  } /* 元に戻る */
}

.section-about .contents-item .button-detail {
  margin-top: auto;
}
.section-about .contents-item:hover .button-detail a {
  color: var(--red) !important;
}

.section-about .contents-item:hover .button-detail a::after {
  transform: translateY(-50%) translateX(6px);
  background-image: url("/wp-content/uploads/2026/07/arrow-red.svg");
}

/* 横へテキスト流す */
.marquee-text-wrapper.position-at-border {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-50%); 
    z-index: 0;
}


.marquee-text-track {
    display: flex;
    width: max-content;
    animation: marquee-slide 60s linear infinite;
}

.marquee-text-list {
    display: flex;
    white-space: nowrap;
}


.marquee-text-list span {
    font-size: 56px;
    font-weight: 900;
    color: #f1dc97;
    padding: 0 24px;
    letter-spacing: 2px;
    line-height: 1;
}

/* アニメーション定義 */
@keyframes marquee-slide {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 1280px) {
  .section-about .contents-title img {
    max-width: 420px;
  }
  .section-about .button-detail a::after {
    right: 9px;
    width: 30px;
  }
}
@media screen and (max-width: 992px) {
  /* ------働く移住フェアとは-------- */
  .section-wrapper.section-about {
    padding: 1.21vw 0px 20.12vw;
    /* border-radius: 12.19vw 12.19vw 0 0; */
  }
  .section-wrapper.section-about::before {
    top: -24.39vw;
    height: 28.04vw;
  }
  .section-about .recommend-contents__inner {
    margin-top: 6.09vw !important;
    margin-bottom: 7.31vw;
  }
  .section-about .recommend-contents__text-wrapper {
    flex-basis: 60% !important;
  }
  .section-about .recommend-contents__town-wrapper {
    flex-basis: 40% !important;
  }
  .section-about .recommend-explain-text {
    margin-bottom: 4.26vw !important;
  }
  .section-about .recommend-list__title {
    padding: 0.97vw 7.31vw;
  }
  .section-about .recommend-list__title::after {
    right: -2px;
    top: 0%;
    width: 7.31vw;
  }

  .section-about .recommend-list__title p {
    font-size: clamp(20px, 2.56vw, 24px);
  }
  .section-about .recommend-list__contents-wrapper {
    padding: 6.7vw 2.68vw 3.04vw;
    margin-top: -3.65vw;
    border-radius: 1.82vw;
  }
  .section-about .recommend-list__contents {
    margin-bottom: 1.82vw;
    gap: 1.21vw;
  }

  .section-about .recommend-list__contents p {
    font-size: clamp(16px, 2.43vw, 20px);
  }

  .section-about .town {
    width: 300%;
  }
  .section-about .town .cloud01 {
    top: 13.41vw;
    left: 2.43vw;
  }
  .section-about .town .cloud02 {
    max-width: 150px !important;
    left: 14.6vw;
  }
  .section-about .town .cloud03 {
    max-width: 120px !important;
    top: -2.43vw;
    left: 33.29vw;
  }
  .section-about .town .bird {
    max-width: 70px !important;
    top: 4.51vw;
    left: 9.75vw;
  }

  /* 注目コンテンツ */
  .section-news .contents-wrapper {
    padding: 7.46vw 6.66vw;
  }

  .section-about .contents-title img {
    width: clamp(330px, 40.24vw, 350px);
  }

  .section-about .contents-column {
    margin-top: 6.09vw !important;
  }
  .section-about .contents-item {
    padding: 3.04vw 2.43vw;
    border-radius: 1.82vw;
  }
  .section-about .contents-item img {
    border-radius: 1.82vw;
  }
  .section-about .contents-item .contents-name {
    margin: 2.43vw 0 1.21vw;
  }
  .section-about .contents-item-image .illust {
    bottom: -2.43vw;
    width: 8.53vw;
  }
  /* 横へテキスト流す */

.marquee-text-list span {
    font-size: clamp(36px, 6.09vw, 56px);
    padding: 0  min(24px, 2.43vw);
}
}
/* 注目コンテンツボタン */
@media screen and (max-width: 992px) {
  .section-about .button-detail a {
    min-height: 48px;
    padding: 1.21vw 0 !important;
    font-size: clamp(16px, 2.19vw, 18px);
  }
  .section-about .button-detail a::after {
    right: 0.97vw;
    width: clamp(18px, 2.19vw, 20px);
  }
  .section-about .button-detail a:hover::after {
    transform: translateY(-50%) translateX(4px);
  }
}
@media screen and (max-width: 781px) {
  .section-about .town {
    width: 200%;
    margin-top: 13.33vw;
  }
  .section-about .town .cloud01 {
    max-width: inherit !important;
    width: clamp(80px, 20vw, 150px);
    top: 23.66vw;
    left: 0;
  }
  .section-about .town .cloud02 {
    max-width: inherit !important;
    width: clamp(130px, 20vw, 200px);
  }
  .section-about .town .cloud03 {
    max-width: inherit !important;
    width: clamp(80px, 20vw, 150px);
    left: 60.29vw;
  }
  .section-about .town .bird {
    max-width: inherit !important;
    width: clamp(60px, 14vw, 110px);
    top: 9.51vw;
    left: 15.75vw;
  }
}
@media screen and (max-width: 768px) {
  /* ------働く移住フェアとは-------- */
  .section-wrapper.section-about {
    padding: 13.33vw 8vw min(185px, 48vw);
  }
  .section-wrapper.section-about::before {
    top: -40vw;
    height: 48vw;
    background-image: url("/wp-content/uploads/2026/08/about-bg-sp.svg");
  }
  #section-title__about {
    width: 86vw;
  }
  .section-about .recommend-contents__inner {
    margin-top: 6.09vw !important;
    margin-bottom: 7.31vw;
  }
  .section-about .recommend-explain-text {
    margin-bottom: 8vw !important;
    margin-left: 6.66vw;
    margin-right: 6.66vw;
    line-height: 2;
  }
  .section-about .recommend-list__title {
    padding: 0.97vw 13.33vw;
  }
  .section-about .recommend-list__title::after {
    width: 13.33vw;
  }

  .section-about .recommend-list__contents-wrapper {
    padding: 7.46vw 6.66vw 5.33vw;
    margin-top: -3.65vw;
    border-radius: 2.66vw;
  }
  .section-about .recommend-list__contents .checkbox {
    flex-basis: 30px !important;
  }
  .section-about .recommend-list__contents {
    margin-bottom: 4.8vw;
    gap: 1.86vw;
  }

  .section-about .recommend-list__contents p {
    line-height: 1.2;
  }

  /* 注目コンテンツ */
  .section-about .contents-title img {
    width: clamp(330px, 40.24vw, 350px);
  }
  .section-about .contents-column {
    margin-top: 6.09vw !important;
  }
  .section-about .contents-item {
    padding: 7.46vw 6.66vw 6.4vw;
    border-radius: 2.66vw;
  }
  .section-about .contents-item img {
    border-radius: 2.66vw;
  }
  .section-about .contents-item .contents-name {
    margin: 2.43vw 0 1.21vw;
  }
  .section-about .contents-item.orange {
    transform: inherit;
  }
  .section-about .contents-item.red {
    transform: inherit;
  }
  .section-about .contents-item-image .illust {
    width: 21.33vw;
  }
}
/* 注目コンテンツボタン */

@media screen and (max-width: 768px) {
  .section-about .button-detail a {
    min-height: 48px;
    padding: 1.21vw 0 !important;
    font-size: clamp(16px, 2.19vw, 18px);
  }
  .section-about .button-detail a::after {
    right: 0.97vw;
    width: clamp(18px, 2.19vw, 20px);
  }
  .section-about .button-detail a:hover::after {
    transform: translateY(-50%) translateX(4px);
  }
}
@media screen and (max-width: 768px) {
  .section-about .button-detail a {
    padding: 1.21vw 0 !important;
    font-size: clamp(20px, 5.6vw, 22px);
  }
  .section-about .button-detail a::after {
    right: 2.93vw;
    width: clamp(20px, 2.19vw, 22px);
  }
}

/*--------- 開催概要 ----------------*/
.section-access {
  background-color: var(--orange);
  position: relative;
  padding: 50px 30px 120px;
}
.section-access::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  top: -290px;
  left: 0;
  width: 100%;
  height: 810px;
  z-index: 10;
  background-image: url("/wp-content/uploads/2026/08/wave-orange.svg");
}
.section-access .section-title {
  z-index: 10;
}
#section-title__access {
  width: 21%;
  height: auto;
}
.section-access .access-contents-wrapper {
  padding: 60px 40px;
  margin-top: 60px;
  background-color: #fff;
  border-radius: 20px;
  z-index: 10;
}
.section-access .event-summary-row {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid #cbcbcb;
}
.section-access .event-summary-row:last-child {
  border-bottom: inherit;
}
.section-access .event-summary-row dt {
  width: 300px;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  padding-left: 15px;
}

.section-access .event-summary-row dd {
  margin: 0;
  flex-grow: 1;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
}
.section-access .venue-detail {
  font-size: 18px;
  font-weight: 400;
  display: block;
  line-height: 1.4;
}
.section-access .step-title {
  text-align: center;
  margin-top: 60px;
  opacity: 0; /* 最初は非表示 */
  transform: translateY(-20px); /* 上から落ちてくるようにマイナス指定 */
  will-change: transform, opacity;
}

/* -----------------------------------
   2. 画面内に入ったらアニメーション実行 (リピートなし)
----------------------------------- */
.section-access.is-active .step-title,
.section-access .step-title.is-active {
  /* 0.6秒間でバウンド表示。1回のみ実行して最後（100%）の位置で停止 */
  animation: bounceVerticalStep 2s cubic-bezier(0.28, 0.84, 0.42, 1) 0.1s forwards;
}

@keyframes bounceVerticalStep {
  0% {
    opacity: 0;
    transform: translateY(0) scaleY(1);
  }
  /* パッとはっきり表示しながら一瞬沈んで潰れる */
  10% {
    opacity: 1;
    transform: translateY(2px) scaleY(0.92);
  }
  /* ジャンプ！（大きく跳ねて縦に少し伸びる） */
  30% {
    opacity: 1;
    transform: translateY(-18px) scaleY(1.08);
  }
  /* 着地（落ちてきて少し潰れる） */
  45% {
    opacity: 1;
    transform: translateY(2px) scaleY(0.94);
  }
  /* 跳ね返り（小さく上に浮く） */
  60% {
    opacity: 1;
    transform: translateY(-4px) scaleY(1.02);
  }
  /* 元の位置へ戻る */
  75% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
  /* 静止時間（着地状態を維持して100%へ） */
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}
.section-access .step-title figure {
  width: 40%;
}
.section-access .step-column {
  gap: 60px;
}

.section-access .step-column .step-item {
  background-color: var(--beige);
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-access .step-column .step-item:nth-child(1)::before,
.section-access .step-column .step-item:nth-child(2)::before {
  content: "";
  position: absolute;
  right: -55px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  aspect-ratio: 1 / 2;
  background-image: url("/wp-content/uploads/2026/07/arrow-beta-brown.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.section-access .step-column .step-count {
  background-color: var(--brown);
  padding: 7px 14px;
  border-radius: 9999px;
  display: block;
  margin-bottom: 40px;
  width: 100%;
}

.section-access .step-column .step-count p {
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 22px;
}
.section-access .step-column .step-image {
  position: relative;
  text-align: center;
  width: 50%;
}
.section-access .step-column .step-image .step-icon-accent {
  position: absolute;
  top: 10%;
  right: 5%;
  translate: 50% -50%;
  width: 50px;
  opacity: 0; /* 初期状態は非表示 */
}

.section-access .step-column .step-item:nth-child(3) .step-image .step-icon-accent {
  right: 0%;
}

/* アニメーション指定（共通のキーフレームを呼び出す） */
.section-access .step-column .step-item:nth-child(1) .step-image .step-icon-accent {
  animation: stepSeq1 4s ease-in-out infinite;
}

.section-access .step-column .step-item:nth-child(2) .step-image .step-icon-accent {
  animation: stepSeq2 4s ease-in-out infinite;
}

.section-access .step-column .step-item:nth-child(3) .step-image .step-icon-accent {
  animation: stepSeq3 4s ease-in-out infinite;
}

/* ===============================================
   Keyframes (すべての要素で85%〜100%をフェードアウトに同期)
   =============================================== */

/* 1つ目：0%（0s）から出現開始 */
@keyframes stepSeq1 {
  0% { opacity: 0; transform: scale(0); }
  5% { opacity: 1; transform: scale(1); }
  10% { transform: scale(1.08, 0.92); } /* 溜め */
  15% { transform: scale(0.95, 1.05); } /* 伸ばす */
  20% { transform: scale(1.02, 0.98); } /* 反動 */
  25%, 85% { opacity: 1; transform: scale(1); } /* 表示維持 */
  93%, 100% { opacity: 0; transform: scale(0.8); } /* 一斉に消える */
}

/* 2つ目：20%（0.8s後）から出現開始 */
@keyframes stepSeq2 {
  0%, 20% { opacity: 0; transform: scale(0) rotate(-20deg); }
  32% { opacity: 1; transform: scale(1.25) rotate(10deg); }
  40%, 85% { opacity: 1; transform: scale(1) rotate(0deg); } /* 表示維持 */
  93%, 100% { opacity: 0; transform: scale(0.8); } /* 一斉に消える */
}

/* 3つ目：40%（1.6s後）から出現開始 */
@keyframes stepSeq3 {
  0%, 40% { opacity: 0; transform: translateY(-40px) scale(0.8); }
  52% { opacity: 1; transform: translateY(5px) scale(1.05, 0.95); }
  58%, 85% { opacity: 1; transform: translateY(0) scale(1); } /* 表示維持 */
  93%, 100% { opacity: 0; transform: translateY(-10px) scale(0.8); } /* 一斉に消える */
}
.section-access .step-column .title {
  text-align: center;
  margin-bottom: 20px;
}
.section-access .step-column .title p {
  font-size: 24px;
  font-weight: 600;
}

.section-access .step-column .button-detail a {
  color: #fff !important;
  background-color: var(--brown);
}
.section-access .step-column .button-detail a::after {
  background-image: url("/wp-content/uploads/2026/07/arrow-white.svg");
}

.section-access
  .step-column
  .button-reservation
  .button-reservation__main-text {
  font-size: 20px;
}
.section-access .step-column .button-reservation a::before {
  animation: shake-up 3s infinite ease-in-out;
}

/* 開催概要 */
@media screen and (max-width: 1280px) {
  .section-access::before {
    top: -160px;
    height: 320px;
  }
  .section-access .step-column {
    gap: 40px;
  }
  .section-access .step-column .step-item:nth-child(1)::before,
  .section-access .step-column .step-item:nth-child(2)::before {
    right: -35px;
    width: 22px;
  }
  .section-access .step-column .step-item {
    padding: 25px 21px;
  }
  .section-access
    .step-column
    .button-reservation
    .button-reservation__main-text {
    font-size: 18px;
  }
  .section-access .step-column .button-reservation a::before {
    left: -29px;
    top: -5%;
  }
  .section-access .step-column .button-reservation a::after {
    right: 7px;
    width: 15px;
    height: 15px;
  }
}

/* 開催概要 */
@media screen and (max-width: 992px) {
  .section-access {
    padding: 0px 0px 9.75vw;
  }
  .section-access::before {
    top: -18.29vw;
    height: 30.48vw;
  }
  .section-access .access-contents-wrapper {
    padding: 6.09vw 3.65vw;
    margin-top: 7.31vw;
  }
  .section-access .event-summary-row {
    padding: 2.92vw 0;
  }
  .section-access .event-summary-row dt {
    width: 21.95vw;
    font-size: clamp(18px, 52.19vw, 20px);
    padding-left: 1.82vw;
  }

  .section-access .event-summary-row dd {
    font-size: clamp(20px, 2.43vw, 22px);
  }
  .section-access .venue-detail {
    font-size: clamp(16px, 1.95vw, 18px);
  }
  .section-access .step-title {
    margin-top: 7.31vw;
  }
  .section-access .step-title figure {
    width: 40%;
  }
  .section-access .step-column {
    gap: 3.65vw;
  }

  .section-access .step-column .step-item {
    padding: 1.95vw 1.21vw;
  }
  .section-access .step-column .step-item:nth-child(1)::before,
  .section-access .step-column .step-item:nth-child(2)::before {
    right: -3.41vw;
    width: 1.7vw;
  }

  .section-access .step-column .step-count {
    padding: 0.73vw 1.46vw;
    margin-bottom: 3.65vw;
  }

  .section-access .step-column .step-count p {
    font-size: clamp(20px, 2.43vw, 22px);
    line-height: 1.2;
  }
  .section-access .step-column .title {
    margin-bottom: 2.43vw;
  }
  .section-access .step-column .title p {
    font-size: clamp(18px, 2.19vw, 19px);
  }

  .section-access
    .step-column
    .button-reservation
    .button-reservation__main-text {
    font-size: clamp(15px, 1.82vw, 15.5px);
  }
  .section-access .step-column .button-reservation a::before {
    left: -3.53vw;
    top: -5%;
  }
  .section-access .step-column .button-reservation a::after {
    right: 0.6vw;
    width: clamp(10px, 1.21vw, 12px);
    height: clamp(10px, 1.21vw, 12px);
  }
  .section-access .step-column .step-image .step-icon-accent {
    width: clamp(30px, 3.65vw, 40px);
  }
}

/* 開催概要 */
@media screen and (max-width: 781px) {
  .section-access {
    padding: 0px 0px 18.66vw;
  }
  .section-access::before {
    top: -21.33vw;
  }
  #section-title__access {
    width: 40%;
  }
  .section-access .access-contents-wrapper {
    padding: 8vw 6.66vw;
    margin-left: 8vw !important;
    margin-right: 8vw !important;
  }
  .section-access .event-summary-row {
    padding: 2.92vw 0;
  }
  .section-access .event-summary-row dt {
    width: 21.95vw;
    font-size: clamp(16px, 4.26vw, 18px);
    padding-left: 1.33vw;
  }

  .section-access .event-summary-row dd {
    font-size: clamp(16px, 4.26vw, 18px);
  }
  .section-access .venue-detail {
    font-size: clamp(14px, 4vw, 16px);
  }
  .section-access .step-title {
    margin-top: 8vw;
  }
  .section-access .step-title figure {
    width: 100%;
  }
  .section-access .step-column {
    gap: 13.33vw;
  }

  .section-access .step-column .step-item {
    padding: 5.33vw;
    text-align: center;
  }
  .section-access .step-column .step-item:nth-child(1)::before,
  .section-access .step-column .step-item:nth-child(2)::before {
    width: 5.33vw;
    right: auto;
    left: 50%;
    top: auto;
    bottom: -13.33vw;
    transform: translateX(-50%) rotate(90deg);
  }
  .section-access .step-column .step-count {
    padding: 1.33vw 6.66vw;
    margin-bottom: min(60px, 16vw);
  }

  .section-access .step-column .title {
    margin-bottom: 5.33vw;
  }
  .section-access .step-column .title p {
    font-size: clamp(20px, 5.33vw, 22px);
  }

  .section-access
    .step-column
    .button-reservation
    .button-reservation__main-text {
    font-size: clamp(18px, 4.8vw, 20px);
  }
  .section-access .step-column .button-reservation a::after {
    right: 4vw;
    width: clamp(16px, 4.8vw, 20px);
    height: clamp(16px, 4.8vw, 20px);
  }
  .section-access .step-column .step-image .step-icon-accent {
    width: clamp(40px, 12vw, 50px);
  }
}



/*----------- タクソノミーを右から左へ -------------*/

.taxonomy-ticker-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 45px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: var(--brown);
}

.ticker-row {
    display: flex;
    width: 100%;
    overflow: visible;
    user-select: none;
}

.ticker-track {
    display: flex;
    gap: 12px;
    width: max-content;
}


.ticker-track:hover {
    animation-play-state: paused;
}


.ticker-track.ticker-to-left {
    animation: marquee-left 80s linear infinite;
}


.ticker-track.ticker-to-right {
    animation: marquee-right 80s linear infinite;
}

.ticker-list {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.ticker-list li{
  margin: 0;
}
.ticker-list li a {
    display: inline-block;
    align-items: center;
    padding: 8px 18px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    color: var(--brown);
    text-decoration: none;
    font-size: 18px;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-weight: 500;
}

.ticker-list li a:hover {
    background-color: var(--orange);
    color: #ffffff;
    border-color: #fff;
}

.ticker-list li.ticker-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    background: none !important;
    border: none !important;
    flex-shrink: 0;
}


.ticker-list li.ticker-divider img {
    height: 110px;
    width: auto;
    aspect-ratio: 2 / 1;
    object-fit: contain;
    display: block;
    max-width: none;
    margin: -20px 0;
}

/* 右から左へ */
@keyframes marquee-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 左から右へ */
@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@media screen and (max-width: 992px){
  .taxonomy-ticker-wrapper {
    padding: 4.87vw 0;
    gap: 1.46vw;
}
.ticker-list {
    gap: 1.34vw;
}

.ticker-list li a {
    padding: 0.73vw 1.95vw;
    font-size: clamp(16px, 1.95vw, 18px);
}


.ticker-list li.ticker-divider img {
    height: clamp(110px, 13.41vw, 120px);
    margin: -2.43vw 0;
}
}
@media screen and (max-width: 768px){
  .taxonomy-ticker-wrapper {
    padding: min(10.66vw, 60px) 0;
    gap: 3.2vw;
}
.ticker-list {
    gap: min(2.34vw, 13px);
}

.ticker-list li a {
    padding: min(1.6vw, 8px) min(5.86vw, 20px);
    font-size: clamp(16px, 1.95vw, 18px);
}
.ticker-list li.ticker-divider img {
    height: clamp(110px, 13.41vw, 120px);
    margin: min(-2.34vw, -22px) 0;
}
}