@keyframes fadeInUpsmall {
  0% {
    opacity: 0;
    transform: translate3d(0, 10%, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInUpsmall {
  animation-name: fadeInUpsmall
}

@keyframes fadeInDownsmall {
  0% {
    opacity: 0;
    transform: translate3d(0, -10%, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInDownsmall {
  animation-name: fadeInDownsmall
}

@keyframes fadeInRightsmall {
  0% {
    opacity: 0;
    transform: translate3d(10%, 0, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInRightsmall {
  animation-name: fadeInRightsmall
}

@keyframes fadeInLeftsmall {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInLeftsmall {
  animation-name: fadeInLeftsmall
}

.body {
  margin: 0;
  padding: 0;
}

.mv {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.mv_title {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.pi_1_main {
  text-align: center;
  margin: 0 auto;
  margin-top: 150px;
  width: 50%;
}

.pi_1_sub {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 70px 0px 0px 0px;
  width: 100%;
}

.pi_1_sub_a {
  margin: 0 auto;
  width: 50%;
}

.pi_1_sub_a_img {
  margin-top: 50px;
}

.pi_1_sub_b {
  margin: 250px 0px 0px 50px;
  width: 80%;
}

.pi_2_sub {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 70px 0px 0px 0px;
  width: 100%;
}

.pi_main_end {
  margin-top: 200px;
  margin-bottom: 100px;
}

.pi_logo_img {
  text-align: left;
  width: 71px;
  margin-bottom: -5px;
}

.pi_main_text:visited {
  color: #000;
  /* visited時の色も同じにする */
}


.pi_main_lead {
  font-size: 11px;
  line-height: 24px;
  letter-spacing: 1px;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  color: #000;
}

.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 350px;
  height: 50px;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
  border-width: 1px;
  border-style: solid;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
  font-family: "montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;

}

.btn a:hover {
  color: #fff;
}

.btn06 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: #000;
}

.btn06 a:hover {
  background-color: #000;
  border: 1px solid #000;
}

.btn06 a:hover::after {
  border-color: #f2f2f2 #f2f2f2 transparent transparent;
}

/* リンクのコンテナ */
.link-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* リンクのスタイル */
.link-item {
  text-decoration: underline; /* 常に下線を表示 */
  font-size: 12px;
  font-family: "montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  color: #000;
}

.buy {
  text-align: center;
}