@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);
	}
}
.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: 800px;
  margin: 0 auto 50px;
  font-family: "Noto Sans JP", sans-serif;
}
#pi-contents img {
  width: 100%;
  height: auto;
}
#pi-contents a img {
 transition: all 0.3s;
}
#pi-contents a:hover img {
  transform: scale(1.05);
  transition:1s all;
}
#pi-contents section {
  margin-top: 120px;
}
#pi-contents section.instagram-reel {
  margin-top: 0;
}
.color_area {
  margin-bottom: 200px;
}
.main_title {
  margin: 40px 0 120px;
}
.main_title h2 {
  font-weight: 400;
  font-size: 35px;
  letter-spacing: 0.16em;
  text-align: left;
  color: #000;
  opacity: 0;
  margin: 0 0 1em;
  padding: 0 60px;
}
.mincho {
  font-family: "Noto Serif JP", serif;
}
.main_title p {
  font-weight: 300;
  font-size: 20px;
    line-height: 1.5;
  letter-spacing: 0.2em;
  text-align: left;
  color: #555;
  opacity: 0;
  margin: 0;
  padding: 0 60px;
}
.lp_ttl {
  color: #000;
  font-weight: 300;
  font-size: 35px;
  letter-spacing: 0.16em;
  text-align: center;
  margin-bottom: 1em;
}
.reel_list > ul {
  padding: 0;
  list-style: none;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.reel_list li {
  width: 100%;
}
.hacobune-app-container[data-v-6230ae80] {
  padding: 0;
}
.hacobune-unit-video-outline[data-v-1c72f55c] {
  padding: 0;
}
.item_point > ol {
  padding: 0;
  list-style: none;
}
.item_point li {
    display: grid;
    justify-content: center;
    justify-items: center;
    margin-bottom: 120px;
    position: relative;
    padding: 0 60px 60px;
}
.item_point li:last-child {
  margin-bottom: 60px;
}
.item_point li.point01 {
  background: #e6d9d3;
}
.item_point li.point02 {
  background: #dcd8d3;
}
.item_point li.point03 {
  background: #d3ddd7;
}
.item_point li .point_no {
  position: absolute;
  top: -45px;
  left: 60px;
  font-size: 56px;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 0;
}
.item_point li .point_no span {
  transform: rotate(-90deg);
  display: inline-block;
  font-size: 15px;
  width: 1em;
  margin-top: 2.4em;
}
.item_point li h4 {
  padding: 80px 0 40px;
  margin: 0;
  font-size: 28px;
  text-align: center;
  line-height: 1.5;
}
.item_point li p {
  margin: 0 0 50px;
  line-height: 2;
  font-size: 18px;
  font-weight: 300;
}
.item_point li .photo_bg {
  background: #fff;
  padding: 3%;
  box-shadow: 4px 4px 7px 0px rgba(0, 0, 0, 0.4);
}
.item_point li .photo_bg img {
  opacity: 0;
}
.item_point li .point_photo_multiple {
  position: relative;
  width: 100%;
  height: 800px;
}
.point_photo_multiple .multiple01 {
  width: 60%;
  position: absolute;
  top: 0;
  left: 0;
}
.point_photo_multiple .multiple02 {
  width: 60%;
  right: 0;
  bottom: 0;
  position: absolute;
}
.buy_btn {
  width: 500px;
  margin: 50px auto 0;
  text-align: center;
  overflow: hidden;
}
.buy_btn a {
  border: 1px #151b28 solid;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #151b28;
  text-decoration: none;
  line-height: 65px;
  display: flex;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
}
.buy_btn a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  width: 5px;
  height: 5px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #635A64;
}
.buy_btn a:hover {
  background-color: #635A64;
  border: 1px solid #635A64;
  color: #fff;
}
.buy_btn a:hover::after {
  border-color: #FFF;
}

/* SP固有 */
@media screen and (max-width: 768px) {
  #pi-contents {
    width: 100%;
  }
  .sp {
    display: block;
  }
  .main_title h2 {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.16em;
    padding: 0 20px;
    font-family: "Noto Sans JP", sans-serif;
  }
  .main_title p {
    font-size: 12px;
    line-height: 25px;
    letter-spacing: 0.2em;
    padding: 0 20px;
  }
  .main_title {
    margin: 20px 0 60px;
  }
  .instagram-reel {
    padding: 0 20px;
  }
  .lp_ttl {
    font-size: 20px;
    font-family: "Noto Sans JP", sans-serif;
  }
  .reel_list > ul {
    gap: 0;
  }
  .hacobune-unit-video[data-v-1c72f55c] {
    margin: 0;
  }
  .item_point > ol {
    padding-top: 20px; 
  }
  .item_point li {
    padding: 0 20px 60px;
  }
  .item_point li .point_no {
    left: 30px;
    font-size: 35px;
    top: -30px;
  }
  .item_point li .point_no span {
    font-size: 12px;
  }
  .item_point li h4 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    padding: 50px 0 20px;
    line-height: 2;
  }
  .item_point li p {
    font-size: 16px;
    line-height: 1.6;
  }
  .item_point li .point_photo_only {
    width: 80%;
  }
  .item_point li .point_photo_multiple {
    height: 100vw;
  }
  .item_point li:last-child {
    margin-bottom: 30px;
  }
  .buy_btn {
    width: 80vw;
    margin-top: 3em;
  }
  .buy_btn a {
    line-height: 3.5em;
    font-size: 13px;
  }
  .hacobune-univideo .hacobune-video-js.videojs-default-skin.hacobune-vjs-fluid {
    padding-top: 177.77777777777777%;
  }
}