@charset "UTF-8";
@keyframes fuwaMenu {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
/*フェードインアニメ*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.product_detail__tab_list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 104.8rem;
  width: 74.8571428571%;
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}
.product_detail__tab_list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  cursor: pointer;
  aspect-ratio: 524/78;
  max-width: 52.4rem;
  width: 50%;
  border-bottom: solid 7px #d9d9d9;
}
.product_detail__tab_list__item.is-active {
  border-bottom: solid 7px #183b73;
}
.product_detail__list__item {
  display: none;
  opacity: 0;
}
.product_detail__list__item.is-active {
  display: block;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}

.ec-message {
  margin-bottom: 4.8rem;
}

.product_detail_message__in {
  max-width: 80rem;
  width: 77.8210116732%;
  margin-bottom: 1.6rem;
}
.product_detail_message__message-link .plus,
.product_detail_message__message-link .allow {
  display: none;
  width: 1.7rem;
  height: 19px;
  aspect-ratio: 17/19;
}
.product_detail_message__message-link .plus.is-active,
.product_detail_message__message-link .allow.is-active {
  display: inline-block;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.product_detail_message__headline {
  max-width: 60rem;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 1.6rem;
}
.product_detail_message__message-note {
  margin-bottom: 4.8rem;
}
.product_detail_message__textarea {
  display: none;
  width: 100%;
  padding: 4.8rem 0;
  background-color: #000000;
}
.product_detail_message__textarea.is-active {
  display: inline-block;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
}
.product_detail_message__textarea__in {
  padding: 0;
  margin: 0 auto;
  max-width: 80rem;
  width: 77.8210116732%;
}
.product_detail_message__textarea__in p {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .js-fadeIn {
    opacity: 0;
    transform: translateY(50px);
    transition: ease-in, opacity 1s, transform 1s;
  }
  .js-fadeIn--active {
    opacity: 1;
    transform: translateY(0);
  }
  .js-reveal {
    opacity: 0;
    transform: translateY(20%);
    transition: opacity 2s ease, transform 2s ease;
  }
  .js-reveal.delay {
    transition-delay: 0.3s;
  }
  .js-reveal--active {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .js-fadeIn {
    opacity: 0;
    transform: translateY(50px);
    transition: ease-in, opacity 1s, transform 1s;
  }
  .js-fadeIn--active {
    opacity: 1;
    transform: translateY(0);
  }
  .js-reveal {
    opacity: 0;
    transform: translateY(20%);
    transition: opacity 2s ease, transform 2s ease;
  }
  .js-reveal.delay {
    transition-delay: 0.3s;
  }
  .js-reveal--active {
    opacity: 1;
    transform: translateY(0);
  }
  .product_detail__tab_list {
    width: 100%;
  }
  .product_detail__tab_list__item {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 524/78;
    width: 50%;
    font-size: 28px;
  }
}
