@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;
}


.pi_title_logo {
  width: 50%;
  margin-top: 70px;
  margin-bottom: -30px;
  margin-left: 60px;
}

.pi_title_logo_right {
  width: 50%;
  margin-top: 70px;
  margin-bottom: -30px;
  margin-left: 450px;
}

.pi_main {
  text-align: center;
  margin: 0 auto;
  margin-top: 100px;
  font-size: 0;
}

.pi_sub {
  width: 100%;
  display: flex;
  flex-direction: row;
  font-size: 0;
}


.pi_end {
  margin-bottom: 100px;
}

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


.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: "cormorant-garamond", 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: 13px;
  font-family: "cormorant-sc", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1px;
  color: #000;
}

.buy {
  text-align: center;
}