@charset "utf-8";
/* CSS Document */

/*---------------------------bxslider 横幅強制修正-----------------------------------------*/
.bxslider {
  width: auto !important;
  /* 必要に応じて調整 */
  overflow: hidden;
}

.bxslider li {
  width: 100%;
  /* 親要素に収まるよう調整 */
  box-sizing: border-box;
  /* パディングとボーダーを含めて幅を計算 */
}

/*---------------------------タイマー設定-----------------------------------------*/
.timerHidden {
  display: none;
}

.timer_change_Hidden {
  display: none;
}

.timerVisible {
  display: block;
}

/*---------------------------アニメーション設定-----------------------------------------*/
/*ふわっとjs*/
.fade {
  opacity: 0;
  transition: opacity 2s;
}

.fade.view {
  opacity: 1;
}

/*ふわっとjs プラグインinview.js*/
.fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}

.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 1s;
}

.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_bottom {
  opacity: 0;
  transform: translate(0, 30%);
  transition: 1s;
}

.fadeIn_delay01 {
  transition: 1.5s;
}

.fadeIn_delay02 {
  transition: 2s;
}

.fadeIn_bottom.is-show {
  transform: translate(0, 0);
  opacity: 1;
}


/*transparentはbase.css移行済み、JS不要*/
/*だんだん薄く*/
.transparent {
  position: relative;
  /* 基準位置とする */
}

.transparent::before {
  content: "";
  /* 疑似要素に必須 */
  width: 100%;
  /* 幅いっぱい */
  height: 100%;
  /* 高さいっぱい */
  display: block;
  /* 高さを指定するためにブロック要素にする */
  background: linear-gradient(rgba(255, 255, 255, 0) 0, #fff 95%);
  /* 徐々に透明にする */
  position: absolute;
  /*  */
  top: 0;
  left: 0;
}



/*スライドショーcss変更*/
.bx-prev {
  opacity: 0;
}

.bx-next {
  opacity: 0;
}

/*hover時にズーム＠画像のみ*/
.zoom-box {
  display: inline-block;
  overflow: hidden;
}

.c-bnr.zoom {
  display: block;
  transition-duration: .5s;
}

.c-bnr.zoom:hover {
  transform: scale(1.2);
}

/*---------------------------CSSで作るアニメーション設定-----------------------------------------*/

/*アニメーション装飾系CSS base.css移行済み、JS不要*/
.anicss_fadein_3s {
  animation-name: fade;
  animation-duration: 3s;
  animation-iteration-count: 1;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.delay-time02 {
  animation-delay: 0.5s;
}

.delay-time04 {
  animation-delay: 1s;
}

.fadein_onload {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeup_onload {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*---------------------------もっと見るボタン設定-----------------------------------------*/
.txt-hide {
  max-height: 0;
  /* ← 初期は高さゼロにして非表示 */
  overflow: hidden;
  transition: max-height 0.5s ease;
}

button.more::after {
  transition: 0.5s;
  -werbkit-transition: .2s;
}

.txt-hide.open {
  max-height: 4000px;
  /* ← 展開時の高さ（大きめに） */
}

/*---------------------------ライトボックス風-----------------------------------------*/
.lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

/* モーダル表示 */
.lb-backdrop.open {
  display: flex;
}

/* 画像 */
.lb-image {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}

/* 閉じるボタン */
.lb-close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 26px;
  color: #fff;
  background: rgba(0, 0, 0, .3);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  border: none;
}