/*
テキストグラデーション
----------*/
.gradient{
 
}
.gradient .title{
    animation: AnimationTitle 5s ease infinite;
    background-image: linear-gradient(90deg, rgba(247, 93, 139, 1), rgba(254, 220, 64, 1));
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1;
  }
  @keyframes AnimationTitle {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
  }

/* ハンバーガーメニュー */
.hamburger-menu {
  width: 50px; /* 円の大きさ */
  height: 50px;
  background-color: var(--primary-color); /* 背景色 */
  border: 2px solid var(--primary-color); /* 円の枠線 */
  border-radius: 50%; /* 円形 */
  display: flex;
  flex-direction: column; /* 縦方向に並べる */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); /* オプション: 光の効果 */
  z-index: 9999;
}

/* 三本の線 */
.hamburger-menu span {
  display: block;
  width: 60%; /* 線の横幅 */
  height: 3px; /* 線の太さ */
  background-color: #fff; /* 線の色 */
  margin: 2px 0; /* 線同士の間隔 */
  transition: transform 0.3s ease; /* 開閉時のアニメーション */
}

/* トグルメニュー初期状態 */
.toggle-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgb(230, 252, 231);
  color: #333;
  transition: right 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  border-right: 0;
  z-index: 9998;
  .container{
    padding: clamp(20px,4vw,40px);
    display: flex;
    flex-direction: column;
  }
  .toggle-menu-logo-area{
    margin-bottom: clamp(30px,6vw,60px);
    figure{
      max-width: 200px;
      margin-right: auto;
      img{
        width: 100%;
      }
    }
  }
  .toggle-menu-nav-lists{
    display: flex;
    flex-direction: column;
    .toggle-menu-nav-list{
      a{
        color: var(--base-black-color);
      }
    }
  }
}

.toggle-menu.active {
  right: 0;
  opacity: 1;
}

.toggle-menu ul {
  list-style: none;
  padding: 0;
}

.toggle-menu li {
  margin: 10px 0;
}

.toggle-menu a {
  text-decoration: none;
  font-size: clamp(18px,2.2vw,22px);
}

/* PCスタイル */
@media (min-width: 864px) {
  .toggle-menu {
      width: 100vw;
      height: 60vh;
  }
}

/* PCではグローバルナビを表示 */
@media (min-width: 864px) {
  .gloval-nav {
    display: block;
  }
  .toggle-nav {
    display: none;
  }
}

/* SPではグローバルナビを非表示、ハンバーガーメニューを表示 */
@media (max-width: 863px) {
  .gloval-nav {
    display: none;
  }
  .toggle-nav {
    display: flex;
  }
}

/*swiper*/
/* fvコンテナ：幅を最大1200pxに固定し、中央寄せ */
.fv {
  width: 100%;
  margin: 0 auto;
  /* 必要に応じて overflow:hidden; する場合もあり */
}

/* Swiper全体 */
.fv-swiper {
  width: 100%;
  position: relative;
}

/* スライド1枚あたりの幅を固定  */
.swiper-slide {
  width: clamp(250px,45vw,400px);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 画像はスライド幅に合わせて表示 */
.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* 中央スライド(アクティブ)を拡大量を抑える */
.fv-swiper .swiper-slide-active {
  transform: scale(1); /* 少しだけ拡大に変更 */
  opacity: 1;
}

/* 前後スライドの縮小率を少なめに */
.fv-swiper .swiper-slide-prev,
.fv-swiper .swiper-slide-next {
  transform: scale(1); /* 少しだけ拡大に変更 */
  opacity: 1;
}
.swiper-pagination{
  width: 20px;
  height: 20px;
}
/* ナビゲーションボタン (色・サイズはお好みで) */
.swiper-button-prev,
.swiper-button-next {
  color: #000;
  width: 40px;
  height: 40px;
}
/*

スライドカスタム

-----------*/
/* Swiper全体 */
.fv-swiper {
  width: 100%;
  position: relative;
  padding-bottom: 5em;
}
.swiper-slide {
  border-radius: 1em;
  position: relative;
  img{
    border-radius: 0.7em;
  }
  .catchcopy-area{
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.25);
    padding: clamp(1em,3vw,2.5em);
    .sub-title{
      line-height: 1.2;
      border:1px solid var(--base-black-color);
      border-radius: 50px;
      display: inline-block;
      padding:0.25em 1em;
      font-size: 18px;
      font-size: clamp(16px, 2.5vw, 18px);
      min-height: 0vw;
      margin-top: 0;
    }
    .sub-content{
      margin: 0;
      line-height: 1.6;
    }
}
.image-area{
  width: 100%;
  height: 100%;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1em;
    border: clamp(2px,4vw,4px) solid var(--base-black-color);
  }
}
.video-area{
  width: 100%;
  height: 100%;
  video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1em;
    border: clamp(2px,4vw,4px) solid var(--base-black-color);
  }
} 
}
/* ページネーションの基本デザイン */
.swiper-pagination {

}

/* ページネーションの丸いドット */
.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0.5;
  transition: opacity 0.3s, background-color 0.3s;
}

/* アクティブなページネーションのスタイル */
.swiper-pagination-bullet-active {
  background-color: rgb(0, 157, 255);
  opacity: 1;
}
.swiper-button-next, .swiper-button-prev {
  top:auto;
  bottom: 0;
}
.swiper-button-next{
  right: var(--swiper-navigation-sides-offset, 6vw);
}
.swiper-button-prev{
  left: var(--swiper-navigation-sides-offset, 6vw);
}
.swiper-button-next::before{
  content:"NEXT";
  font-size: 18px;
  font-size: clamp(16px, 2.5vw, 18px);
  min-height: 0vw;
  font-weight: 900;
  margin-right: 1em;
}
.swiper-button-next::after{
  font-size: clamp(24px, 3.6vw,36px);
}
.swiper-button-prev::after{
  content:"PREV";
  font-size: 18px;
  font-size: clamp(16px, 2.5vw, 18px);
  min-height: 0vw;
  font-weight: 900;
  margin-left: 1em;
}
.swiper-button-prev::before{
    content:'prev';
    font-family: swiper-icons;
    font-size: clamp(24px, 3.6vw,36px);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}