@charset "UTF-8";
/* ==========================
common
============================ */
html {
  font-size: 62.5%;
}

body {
  font-family:
   "Inter",
    Arial,
    sans-serif;
  font-style: normal;
  color: #FFF;
  background-color: beige;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.section__topic {
  font-family: Arial;
  font-weight: 700;
  font-size: 6rem;
  line-height: 1.3;
  text-align: center;
}


/* ==========================
header
============================ */
/* header */
.header h1 {
  display: none;
}

.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFF;
  color: #004E08;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1001;
}

.bar {
  width: 40%;
  height: 2px;
  background-color: #004E08;
  margin: 2px 0;
  transition: all 0.3s ease;
}

.text {
  margin-top: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* ✕ ボタンアニメーション */
.circle.active .bar1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.circle.active .bar2 {
  transform: rotate(-45deg) translate(0, 0);
}

/* メニューの開閉（例：非表示 → 表示） */

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.95);
  align-items: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
}

/* 表示状態 */
.nav-menu.show {
  opacity: 1;
  visibility: visible;
}

/* メニュー項目 */
.nav-menu ul {
  list-style: none;
  padding: 0;
}

.nav-menu {
  background: #1E5523;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  align-items: center;
}

.nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 15%;
}

.nav__logo__pc {
  display: none;
}

.nav__btn {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 15%;
  z-index: 100;
}

.nav__image {
  display: none;
}

.nav__left {
 position: absolute;
 top: 0;
 
}

.nav__logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
}

.nav__list{
  margin: 120px 0 0 20px;
  
}

.nav__item {
  font-size: 2.4rem;
  line-height: 1;
  margin-top: 52px;
  color: #FFF;
}

a {
  text-decoration: none;
  color: #FFF;
}

.nav__item img {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 24px;
}

.nav.active {
  transform: translateX(0);
}

.header__btn {
  display: block;
  width: 18px;
  height: 11px;
  cursor: pointer;
  position: absolute;
  top: 37px;
  right: 6.4%;
}

/* header pc */
@media screen and (min-width: 769px) {
  /* ,nav初期表示 */
  /* メニューボタン */
.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #FFF;
  color: #004E08;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.bar {
  width: 40%;
  height: 3px;
  background-color: #004E08;
  margin: 4px 0;
  transition: all 0.3s ease;
}

.text {
  margin-top: 6px;
  font-size: 1.4rem;
  text-transform: uppercase;
}

/* ✕ ボタンアニメーション */
.circle.active .bar1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.circle.active .bar2 {
  transform: rotate(-45deg) translate(3px, -4px);
}

/* メニューの開閉（例：非表示 → 表示） */


.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.95);
  align-items: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
}

/* 表示状態 */
.nav-menu.show {
  opacity: 1;
  visibility: visible;
}

/* メニュー項目 */
.nav-menu ul {
  list-style: none;
  padding: 0;
}

.nav-menu {
  background: #004E08;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  align-items: center;
}

.nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: none;
}

.nav__logo__pc {
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;
}

.nav__btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 7%;
}

.nav__image {
  display: block;
  width: 85%;
  height: 100vh;
  object-fit: cover;
}



.nav__left {
 position: absolute;
 display: flex;
 top: 0;
 width: 100%;
}

.nav__list{
  margin-top: 170px;
  min-width: 20vw;
  margin: 14% 0 0 4%;
}

.nav__item {
  font-size: 1.6vw;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
  margin-top: 5vh;
}

.nav__item img {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 24px;
}

/* .nav__item a:hover {
  opacity: 0.8;
} */

.nav__item {
  overflow: hidden; /* 1つ目の影を隠す */
  color: transparent; /* テキスト本体は透明にする */
  /*
   影の設定
   1つ目：Y方向の位置にマイナスに設定してテキスト本体の上に配置、ぼかしなし
   2つ目：位置はテキスト本体と同じ、ぼかしなし
  */
  text-shadow: 0 -1.5em 0 #FFF, 0 0 0 #FFF;
  transition: text-shadow 0.3s;
}

.nav__item:hover {
  text-shadow: 0 0 0 #FFF, 0 1.5em 0 #FFF; /* 2つの影の位置を上方向に1.5emずつずらす */
}

.nav__item a {
  color: inherit;
}

.nav.active {
  transform: translateX(0);
}

.header__btn {
  display: block;
  width: 18px;
  height: 11px;
  cursor: pointer;
  position: absolute;
  top: 37px;
  right: 6.4%;
}
}/* pc 769px */


/* ==========================
main
============================ */
/* article header */
.article__header h2 {
  display: none;
}

 /*-------------------------------------------
#home
-------------------------------------------*/
#home__sp {
  display: block;
  width: 100%;  /* ホームセクションの高さを設定 */  
  height: 600px;
  position : relative; /* 相対位置を設定 */
}

#home__pc {
  display: none;
}

.fade li {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  animation: fade 15s infinite;
  animation-timing-function: ease-in-out;
}

.fade li:nth-child(1) {
  animation-delay: 0s;
}
.fade li:nth-child(2) {
  animation-delay: 3.75s;
}
.fade li:nth-child(3) {
  animation-delay: 7.5s;
}
.fade li:nth-child(4) {
  animation-delay: 11.25s;
}


.fade li img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
/* 画像フェードインアニメーション */
@keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.mainImg .mainImg__pc {
  display: none;
}

.mainImg .mainImg__sp {
  width: 100%;
}

.mainlogo__pc {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  z-index: 100;
}

.munuBtn__pc {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 15%;
  cursor: pointer;
}

.footprints {
  display: none;
}

.mainTopics {
  padding: 20px 10px;
  background-color: #004E08;
  text-align: center;
  margin-top: -1px;
}

.mainTopics__profile {
  width: 55%;
}

.mainTopics__txt {
 font-size: 1.2rem;
 line-height: 2;
 text-align: center;
 white-space: nowrap;
 margin-top: 20px;
}



.mainTopics__illust {
  display: inline-block;
  position: fixed;
  bottom: 20%;
  right: 1.4%;
  width: 20%;
  transition: opacity 1s ease;
}

/* スクロール時に付与するクラス */
.mainTopics__illust.shake {
  animation: shakeX 1s infinite;
}

/* 左右に揺れるアニメーション */
 @keyframes shakeX {
      0%, 100% {
        transform:rotate(0deg);
      }
      50% {
        transform: rotate(10deg);
      }

      
    }



/* article header pc */
@media screen and (min-width: 769px) {
  /* .mainImg .mainImg__pc {
    display: block;
    width: 100%;
  } */

  .mainImg .mainImg__sp {
    display: none;
  }

  /*-------------------------------------------
#home
-------------------------------------------*/
#home__sp {
  display: none;
}

#home__pc {
  display: block;
  width: 100%;  /* ホームセクションの高さを設定 */  
  height: 100vh;
  position : relative; /* 相対位置を設定 */
}

.fade li {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  animation: fade 15s infinite;
  animation-timing-function: ease-in-out;
}

.fade li:nth-child(1) {
  animation-delay: 0s;
}
.fade li:nth-child(2) {
  animation-delay: 3.75s;
}
.fade li:nth-child(3) {
  animation-delay: 7.5s;
}
.fade li:nth-child(4) {
  animation-delay: 11.25s;
}


.fade li img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
/* 画像フェードインアニメーション */
@keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}




  .mainlogo__pc {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
  }

  .munuBtn__pc {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 7%;
    z-index: 20;
    cursor: pointer;
  }

 

  .mainTopics {
    width: 100%;
    display: flex;
    padding: 0;
    margin: -1px 0;
    position: relative;
  }


 .footprints {
    display: block;
  }

  /* あひる本体 */



  .mainTopics__illust {
    position: absolute;
    top: -100%;
    right: -20%;
    width: 20%;
    animation: duckWalk 10s ease-in-out forwards;
    z-index: 10;

  }
  /* あひるの動き：右上→左下へカーブ */
  @keyframes duckWalk {
    0%   { top: -205%; right: -20%; transform: rotate(5deg);}
    10%   { top: -195%; right: -15%; transform: rotate(-10deg);}
    20%   { top: -175%; right: -10%; transform: rotate(30deg);}
    30%   { top: -155%; right: 0%; transform: rotate(10deg);}
    40%  { top: -140%; right: 5%; transform: rotate(30deg);}
    50%  { top: -120%; right: 10%; transform: rotate(-10deg);}
    60%  { top: -94%; right: 12%; transform: rotate(20deg);}
    70%  { top: -70%; right: 12%; transform: rotate(-12deg);}
    80%  { top: -45%; right: 12%; transform: rotate(5deg);}
    90%  { top: -25%; right: 7%; transform: rotate(-20deg);}
    100%  { top: -10%; right: 5%; transform: rotate(-10deg);}
    /* 100%  { top: -10%; right: 4%; transform: rotate(0deg);} */
    /* 100%  { top: 0%; right: 5%; transform: rotate(20deg);} */
    /* 70% { top: 20%; right: 5%; transform: rotate(0deg);}
    77% { top: 40%; right: 3%; transform: rotate(15deg);}
    84% { top: 60%; right: 1%; transform: rotate(-30deg);}
    91% { top: 80%; right: -10%; transform: rotate(-15deg);}
    100% { top: 100%; right: -20%; transform: rotate(-30deg);} */
  }

  .footprint {
    opacity: 0;
    animation: stepFade 0.8s ease forwards;
  }
  /* アニメーション順序（表示の遅延） */
  /* .footprints__A { animation-delay: 0s; }
  .footprints__B { animation-delay: 0.2s; }
  .footprints__C { animation-delay: 0.4s; }
  .footprints__D { animation-delay: 0.6s; }
  .footprints__E { animation-delay: 0.8s; }
  .footprints__F { animation-delay: 1.0s; }
  .footprints__G { animation-delay: 1.2s; }
  .footprints__H { animation-delay: 1.4s; }
  .footprints__I { animation-delay: 1.6s; }
  .footprints__J { animation-delay: 1.8s; }
  .footprints__K { animation-delay: 2.0s; }
  .footprints__L { animation-delay: 2.2s; }
  .footprints__M { animation-delay: 2.4s; } */

  .footprints__A { animation-delay: 10s; }
  .footprints__B { animation-delay: 10.2s; }
  .footprints__C { animation-delay: 10.4s; }
  .footprints__D { animation-delay: 10.6s; }
  .footprints__E { animation-delay: 10.8s; }
  .footprints__F { animation-delay: 11s; }
  .footprints__G { animation-delay: 11.2s; }
  /* .footprints__H { animation-delay: 2.8s; }
  .footprints__I { animation-delay: 3.2s; }
  .footprints__J { animation-delay: 3.6s; }
  .footprints__K { animation-delay: 4.0s; }
  .footprints__L { animation-delay: 4.4s; }
  .footprints__M { animation-delay: 4.8s; } */


  @keyframes stepFade {
    0%   { opacity: 0; transform: scale(0.7) rotate(0deg); }
    50%  { opacity: 1; transform: scale(1.05) rotate(3deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
  }

  .footprints__A {
    position: absolute;
    top: -137%;
    right: 9%;
    width: 6%;
    max-width: 100px;
    min-width: 50px;
  }

  .footprints__B {
    position: absolute;
    top: -104%;
    right: 1%;
    width: 5%;
    max-width: 100px;
    min-width: 50px;
  }

  .footprints__C {
    position: absolute;
    top: -98%;
    right: 19%;
    width: 5%;
    max-width: 100px;
    min-width: 50px;
  }

  .footprints__D {
    position: absolute;
    top: -69%;
    right: 6%;
    width: 5%;
    max-width: 100px;
    min-width: 50px;
  }

  .footprints__E {
    position: absolute;
    top: -50%;
    right: 22%;
    width: 5%;
    max-width: 100px;
    min-width: 50px;
  }

  .footprints__F {
    position: absolute;
    top: -30%;
    right: 7%;
    width: 5%;
    max-width: 100px;
    min-width: 50px;
  }

  .footprints__G {
    position: absolute;
    top: -7%;
    right: 22%;
    width: 5%;
    max-width: 100px;
    min-width: 50px;
  }

  .footprints__H {
    position: absolute;
    top: 78%;
    right: 3%;
    width: 6%;
    max-width: 100px;
    min-width: 50px;
  }

  .footprints__I {
    position: absolute;
    top: 96%;
    right: 14%;
    width: 5%;
    max-width: 100px;
    min-width: 50px;
  }

  .footprints__J {
    position: absolute;
    top: 109%;
    right: 1%;
    width: 7%;
    max-width: 100px;
    min-width: 50px;
  }

  .footprints__K {
    position: absolute;
    top: 127%;
    right: 11%;
    width: 5%;
    max-width: 100px;
    min-width: 50px;
  }

  .footprints__L {
    position: absolute;
    top: 138%;
    right: 0%;
    width: 4%;
    max-width: 100px;
    min-width: 50px;
  }

  .footprints__M {
    position: absolute;
    top: 157%;
    right: 5%;
    width: 6%;
    max-width: 100px;
    min-width: 50px;
  }
  .mainTopics__profile {
    margin: 64px 0 64px 6%;
    align-self: flex-start;
    width: 24%;

  }

  .mainTopics__txt {
    font-size: 1.2vw;
    line-height: 2;
    text-align: center;
    width: 40%;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

}/* pc 769px */

/* information */
.section--information {
  background-image: url(../images/information-background-sp.png);
  background-size: cover;
  background-color: #FFF;
  width: 100%;
  padding: 50px 0;
  }

  .section__topic--information {
    font-size: 3.2rem;
    color: #004E08;
    margin: 0 auto;
  }

  .information__list {
    max-width: 340px;
    margin: 32px auto 0;
  }

  .information__topic {
    display: grid;
    font-size: 1.6rem;
    color: black;
    margin: 40px ;
    list-style: none;
  }

  .information__topic:first-of-type {
    margin-top: 22px;
  }

  .information__topic span {
    border-bottom: solid 2px;
  }

  .information__topic a {
    color: #000;
  }

  .btn {
    width: 220px;
    display: block;
    padding: 16px 0 18px;
    background: #004E08;
    border-radius: 20px;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    margin-top: 16px;
    transition: 0.4s;
    margin: 30px auto 0;
    text-decoration: none;
  }

  .btn:hover {
  background-color: #fff;
  border: 2px solid #004E08;
  color: #004E08;
}


/* .information pc */
@media screen and (min-width: 769px) {
  .section--information {
  background-image: url(../images/information-background-pc.png);
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  height: 500px;
  }
  
  .section__topic--information {
    font-size: 6.0rem;
    color: #004E08;
    margin: 0 auto;
    padding-top: 34px;
  }

  .information__list {
    max-width: 743px;
    margin: 32px auto 0;
  }

  .information__topic {
    display: block;
    font-size: 2.2rem;
    color: black;
    margin: 40px ;
    list-style: none;
  }

  .information__topic:first-of-type {
    margin-top: 22px;
  }

  .information__topic span {
    margin-left: 100px;
    border-bottom: solid 2px;
  }

  .btn {
    width: 312px;
    display: block;
    padding: 16px 0 18px;
    background: #004E08;
    border-radius: 20px;
    color: #FFF;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    margin-top: 16px;
    transition: 0.4s;
    margin: 30px auto 0;
    text-decoration: none;
  }

}/* pc 769px */

/* .lineUp */
.section--lineUp {
  background-image: url(../images/vegetable-sp.png);
  background-size: cover;
  background-color: #FFF;
  width: 100%;
  height: 600px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.section__topic--lineUp {
  font-size: 3.2rem;
  color: #004E08;
  background-color: rgba(255, 255, 255, 0.80);
  border-radius: 40px;
  width: 240px;
  margin: 0 auto;
  padding: 31px 0;
}

.btn-B {
  width: 220px;
  display: block;
  padding: 16px 0 18px;
  background: #FFF;
  border-radius: 20px;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin-top: 16px;
  transition: 0.4s;
  margin: 44px auto 0;
  text-decoration: none;
}

.btn-B:hover {
  background-color: #004E08;
  color: #FFF;
}


/* .lineUp pc */
@media screen and (min-width: 769px) {
  .section--lineUp {
    background-image: url(../images/vegetable-pc.png);
    background-size: cover;
    width: 100%;
    height: 978px;
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
  .section__topic--lineUp {
    font-size: 7.2rem;
    color: #004E08;
    background-color: rgba(255, 255, 255, 0.80);
    border-radius: 40px;
    width: 500px;
    margin: 0 auto;
    padding: 31px 0;
    z-index: 1;
  }

  .btn-B {
    width: 312px;
    display: block;
    padding: 16px 0 18px;
    background: #FFF;
    border-radius: 20px;
    color: #000000;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    margin-top: 16px;
    transition: 0.4s;
    margin: 44px auto 0;
    text-decoration: none;
    z-index: 1;
  }

  .section--lineUp {
  position: relative;
  overflow: hidden;
  background: none;
  background-color: #FFF;
}

/* 背景画像アニメーション用の擬似要素 */
.section--lineUp::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/vegetable-pc.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: circle(0 at 50% 50%);
  -webkit-clip-path: circle(0 at 50% 50%);
  z-index: 0;
  transition: clip-path 5s cubic-bezier(0.4, 0, 0.2, 1),
              -webkit-clip-path 5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* アニメーション発火後：画面全体に背景を広げる */
.section--lineUp.animate-bg::before {
  clip-path: circle(150% at 50% 50%);
  -webkit-clip-path: circle(150% at 50% 50%);
}

}/* pc 769px */

/* .event */
.section--event {
  width: 100%;
  background-color: #004E08
}

.event__duck__pc {
  display: none;
}

  .event__img1 {
   display: none;
  }
  .event__img2 {
   display: none;
  }
  .event__img3 {
    display: none;
  }
  .event__img4 {
    display: none;
  }
  .event__img5 {
    display: none;
  }
  .event__img6 {
    display: none;
  }

.event__top {
  background-image: url(../images/event-background-sp.png);
  background-size: cover;
  width: 100%;
  height: auto;
}

.event__pc {
  display: none;
}

.event__topic {
  padding: 24% 35px 20px;
}

.section__topic--event {
  font-size: 3.2rem;
}

.event__sp {
  width: 100%;
}

.event__txt {
  font-size: 1.2rem;
  margin-top: 20px;
  text-align: center;
  white-space: nowrap;
}

.btn-C {
  width: 220px;
  display: block;
  padding: 16px 0 18px;
  background: #FFF;
  border-radius: 20px;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin-top: 16px;
  transition: 0.4s;
  margin: 20px auto 0;
  text-decoration: none;
}

.btn-C:hover {
  background-color: #004E08;
  color: #FFF;
}

/* .event pc */
@media screen and (min-width: 769px) {
  .section--event {
    width: 100%;
    background-color: #004E08
  }

  .event__line {
    display: flex;
    gap: 1%;
    padding: 30px 0 0 50px;
    margin-top: -1px;
  }

  .event__duck__pc {
    display: block;
    width: 13%;
  }

  .event__img1 {
    display: block;
    width: 12%;
    height: fit-content;
  }
  .event__img2 {
    display: block;
    width: 23%;
    height: fit-content;
  }
  .event__img3 {
    display: block;
    width: 10%;
  }
  .event__img4 {
    display: block;
    width: 10%;
  }
  .event__img5 {
    display: block;
    width: 10%;
  }
  .event__img6 {
    display: block;
    width: 10%;
  }



  .event__img1,
.event__img2,
.event__img3,
.event__img4,
.event__img5,
.event__img6 {
  animation-name: bounce;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

/* 順番に動かすために遅延をつける */
.event__img1 { animation-delay: 0s; }
.event__img2 { animation-delay: 0.2s; }
.event__img3 { animation-delay: 0.4s; }
.event__img4 { animation-delay: 0.6s; }
.event__img5 { animation-delay: 0.8s; }
.event__img6 { animation-delay: 1s; }

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}


  .event__top {
    background-image: none;
    width: auto;
    height: auto;
  }

  .event__image {
    display: flex;
    margin-top: -2.2%;
    padding: 50px 50px 50px 100px;
    background-image: url(../images/event-background-pc3.png);
    background-size: 100%;
    background-repeat: repeat-y;
  }

  .event__topic {
    display: flex;
    flex-flow: column;
    margin-left: 5%;
    margin-right: 5%;
    padding: 0;
  }

  .section__topic--event {
    font-size: 5vw;
  }

  .event__txt {
    font-size: 1.8vw;
    margin-top: 15%;
    text-align: center;
    white-space: nowrap;
  }

  .event__pc {
    display: flex;
    width: 55%;
    object-fit: cover;

  }

  .event__sp {
    display: none;
  }

  .btn-C {
    display: block;
    padding: 16px 0 18px;
    background: #FFF;
    border-radius: 20px;
    color: #000000;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    margin-top: 16px;
    transition: 0.4s;
    text-decoration: none;
    margin-top: 15%;
  }

}/* pc 769px */

/* .access */
.section--access {
  background-color: #004E08;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.section__topic--access {
  font-size: 3.2rem;
  margin: 0 auto;
}

.map {
  text-align: center;
  border-radius: 20px;
  width: 100%;
  height: 150px;
  margin-top: 20px;
}

.access-list {
  font-size: 1.2rem;
  list-style: none;
  margin-top: 10px;
}

.access__topic {
  display: flex;
}

.access__item {
  text-align: left;
  width: 20%;
  white-space: nowrap;
}

.access__footprints {
  display: none;
}

/* .access pc */
@media screen and (min-width: 769px) {
  .section--access {
    background-color: #004E08;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
  }

  .section__topic--access {
    font-size: 6rem;
    margin: 0 auto;
    padding: 40px 0;
  }

  .map {
    text-align: center;
    border-radius: 40px;
    width: 100%;
    height: 700px;
  }

  .access-list {
    font-size: 3.2rem;
    font-weight: 700;
    list-style: none;
    margin-top: 40px;
  }

  .access__topic {
    display: flex;
  }

  .access__item {
    text-align: left;
    width: 20%;
    white-space: nowrap;
  }

  .access__footprints {
    display: block;
    
  }


  .footprints__1 {
    position: absolute;
    right: 32%;
    width: 90px;
    margin-top: 100px;
  }

   .footprints__2 {
    position: absolute;
    right: 26%;
    width: 90px;
    margin-top: 170px;
  }

  .footprints__3 {
    position: absolute;
    right: 18%;
    width: 90px;
    margin-top: 100px;
  }

  .footprints__4 {
    position: absolute;
    right: 10%;
    width: 90px;
    margin-top: 170px;
  }

  .footprints__5 {
    position: absolute;
    right: 0%;
    width: 200px;
    margin-top: 20px;

  }

 .foot {
  opacity: 0;
  transform: translateY(1px);
  transition: opacity 1s ease, transform 1s ease;
}

/* 順番に表示（ディレイ付き） */
.foot.show1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.foot.show2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.foot.show3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}
.foot.show4 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.5s;
}

}/* pc 769px */

/* ==========================
footer
============================ */
/* footer */
.footer h2 {
  display: none;
}

.footer__group {
  padding: 41px 9.6% 48px;
}

.footer__flex {
  text-align: center;
}

.footer__logo {
  width: 20%;
}

.menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 10px;
  margin-top: 30px;
}

.menu__item {
  font-size: 1.6rem;
  width: 47.85%;
  color: #000;
  list-style: none;
  white-space: nowrap;
  text-align: center;
}

.menu__item:nth-child(3) {
  padding-left: 30px;
}

.menu__item:last-child {
  padding-left: 15px;
}

.menu__item a {
    text-decoration: none;
    color: #004E08;
}

.menu__item a:hover {
    opacity: 0.4;
}

.copy {
  color: #000;
  text-align: center;
}

/* .footer pc */
@media screen and (min-width: 769px) {
  .footer__flex {
    text-align: center;
    margin-top: 70px;
  }

  .footer__logo {
    width: 10%;
  }
  
  .menu__list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 50px;
    margin-top: 70px;
  }

  .menu__item {
  font-size: 3rem;
  color: #004E08;
  list-style: none;
  white-space: nowrap;
  text-align: center;
  }

  /* .menu__item a{
  padding-bottom: 5px;
  position: relative;
}
  .menu__item a::before {
    background: #004E08;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  .menu__item a:hover::before {
    transform-origin: center top;
    transform: scale(1, 1);
  } */

  .menu__item:nth-child(3) {
    padding-left: 0;
  }
  
  .menu__item:last-child {
    padding-left: 0;
  }

  .menu__item a {
    text-decoration: none;
    color: #004E08;
  }

  .menu__item a:hover {
    opacity: 0.4;
  }

  .copy {
    color: #000;
    margin: 34px 0;
    text-align: center;
  }

}/* pc 769px */