@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-5%);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		transform: translateX(0px);
	}
}
@keyframes anime {
  0% {
    transform: scale(.95);
    opacity: 1
  }

  90% {
    opacity: .1
  }

  to {
    transform: scale(1.2, 1.4);
    opacity: 0
  }
}
.active.fadeInDawn {
    animation-name: fadeInDown;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.active.fadeInLeft {
    animation-name: fadeInLeft;
    animation-duration: 3s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.active.fadeIn {
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.sp {
  display: none;
}
#pi-contents {
  width: 500px;
  margin: 0 auto 50px;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Noto Serif JP", serif !important;
}
#pi-contents img {
  width: 100%;
  height: auto;
}
#pi-contents a img {
 transition: all 0.3s;
}
#pi-contents a:hover img {
  opacity: 0.7;
}
.btn_box {
  position: relative;
  display: grid;
  justify-content: center;
}
#pi-contents .btn {
  width: 350px;
  line-height: 50px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-radius: 40px;
  text-decoration: none;
  background-color: #BFB2B6;
  color: #fff;
  text-align: center;
  transition: .2s;
  margin: 0 auto;
  display: block;
  position: relative;
}
#pi-contents .btn:before,
#pi-contents .btn:after {
  content: "";
  position: absolute;
  z-index: -10;
  width: 350px;
  height: 50px;
  top: 0;
  left: 0;
  border-radius: 200px;
  background: #bfb2b66b;
}
#pi-contents .btn:before {
  animation: anime 1s ease-out infinite;
}
#pi-contents .btn:after {
  animation: anime 1s ease-out 1s infinite;
}
.main_title {
  margin-bottom: 5px;
}
.main_title > p {
  color: #767676;
  margin: 35px 0 20px;
  font-size: 14px;
  line-height: 21px;
}
.point_area .point_no {
  font-size: 10px;
  color: #767676;
  border: 1px solid #767676;
  display: inline-block;
  padding: 0 6px;
  line-height: 20px;
}
.point_area dl {
  margin: 10px 0 30px 0;
}
.point_area .point_ttl {
  font-size: 22px;
  color: #767676;
  margin: 10px 0;
}
.point_area .point_tx {
  margin: 0;
  color: #767676;
  font-size: 14px;
  line-height: 1.5;
}
.reel_list > ul {
  padding: 0;
  list-style: none;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}
.reel_list li {
  width: 100%;
  line-height: 0;
}
.reel_list li img {
  display: block;
}
.reel_list li iframe {
  min-width: 100% !important;
}
.pick_items > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 0;
}

.pick_items li {
  margin: 0;
  padding: 0;
  line-height: 0; /* ← インライン要素の余白対策 */
}

.pick_items img {
  display: block; /* ← インライン画像の隙間防止 */
  width: 100%;
  height: auto;
}

.pick01 {
  grid-column: span 2;
}
.pick02 {
  grid-row-start: 2;
}
.pick03 {
  grid-row-start: 2;
}
.pick05 {
  grid-row-start: 3;
}
.pick06 {
  grid-column: span 2;
}
.point_area .btn_box {
  margin: 30px 0 60px;
}
.hacobune-app-container {
  padding: 0 !important;
  width: 100% !important;
}
.hacobune-unit-video {
  margin: 0 !important;
}
.hacobune-unit-video-outline {
  display: none;
}
.recommend-point .point_area {
  margin: 60px 0 0 0;
}

/* SP固有 */
@media screen and (max-width: 768px) {
  #pi-contents {
    width: 100%;
  }
  .main_title > p {
    margin: 35px 20px 20px;
  }
  .point_area dl {
    padding: 0 20px;
  }
  .point_area .point_no {
      margin-left: 20px;
  }
  .hacobune-univideo .hacobune-video-js.videojs-default-skin.hacobune-vjs-fluid {
    padding-top: 177.77777777777777%;
  }
  #pi-contents .btn {
    width: 80vw;
  }
  #pi-contents .btn:before, #pi-contents .btn:after {
    width: 80vw;
  }
}