@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 {
  width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-bottom: 100px;
}

.video {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
}

h1 {
  font-size: 1.6rem;
  line-height: 28px;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  text-align: left;
  margin: 0px auto;
  margin-bottom: 10px;
  margin-top: 30px;
  width: 800px;
}

.pi_lead {
  font-size: 1.3rem;
  font-weight: 300;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  text-align: left;
  line-height: 24px;
  letter-spacing: 1px;
  width: 800px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.color-ball {
  width: 12px;
  /* 正方形のサイズ */
  height: 12px;
  background-color: #000;
  /* 背景色 */
  border: 0.5px solid #898989;
  /* 枠線 */
  display: inline-block;
  /* 横に並べるための設定 */
}

.color-ball_container {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-bottom: 10px;
}

.items_buy-title {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: normal;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  text-align: left;
  margin-bottom: 10px;
}

.items_buy-container {
  padding: 15px 0px;
  font-size: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.items_buy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
  width: 90px;
}

.items_buy-text {
  text-decoration: underline;
  font-size: 10px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
}


.item_main {
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: underline;
  font-weight: normal;
}

.item_lead {
  font-size: 1.2rem;
  line-height: 2.1rem;
  margin-bottom: 28px;
}

/* コンテナ */
.container {
  display: flex;
  flex-direction: column;
  width: 456px;
  margin-top: 40px;
  margin: 0 auto;
}

.container_item {
  margin-bottom: 40px;
}

.container_item_1 {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  width: 800px;
  gap: 50px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.container_title {
  font-weight: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.container_coordinate {
  display: flex;
  /* margin-bottom: 90px; */
  flex-direction: column;
  font-size: 0;
  width: 200px;
  gap: 1px;
}

.coordinate_template {
  display: flex;
  font-size: 0;
}


.title_item {
  font-size: 20px;
}

.img_main {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  width: 456px;
  gap: 1px;
}

.img_sub {
  font-size: 0;
  width: 156.2px;
}

.title_coordinate {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  /* margin: 0 auto; */
  padding: 0.7em 1.2em;
  border: none;
  border-radius: 25px;
  background-color: #000000;
  color: #fff;
  font-size: 10px;
}

.button::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: '';
}

.button:hover {
  background-color: #000000;
}

.button-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* margin: 10px; */
  padding: 0.7em 1.2em;
  border: none;
  border-radius: 25px;
  background-color: #000000;
  color: #fff;
  /* font-weight: 600; */
  font-size: 10px;
}

.button-2::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: '';
}

.button-2:hover {
  background-color: #000000;
}

.profile_background {
  background-color: #f6f6f6;
  padding: 3%;
  text-align: center;
  width: 800px;
  margin: 0 auto;
}

.profile_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

.profile_container img {
  width: 120px;
}

.profile_name {
  font-size: 14px;
  line-height: 1rem;
  letter-spacing: 0.5px;
  font-weight: 300;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  text-align: left;
  font-weight: bold;
}

.highlight {
  font-weight: normal;
  font-size: 11px;
  line-height: 25px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #9B9B9B;
}

.profile_text {
  font-size: 1.2rem;
  font-weight: 300;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  text-align: left;
  line-height: 21px;
  letter-spacing: 1px;
}