@charset "UTF-8";

/* ========================================
   Pyrinas Pack - Product Page Styles
   ======================================== */

.pyrinas-pack .sp {
  display: none;
}

#contentsWrap.pyrinas-contents {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  color: #333;
}

.pyrinas-pack .inline_block {
  display: inline-block;
}

/* --- Key Visual --- */
.pyrinas_keyBox {
  position: relative;
  background-color: #050a14;
  overflow: hidden;
  height: calc(100svh - 60px);
  min-height: 480px;
}

.pyrinas_keyBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pyrinas_keyBg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.pyrinas_keyBg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.pyrinas_keyInner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  pointer-events: none;
}

.pyrinas_keyText,
.pyrinas_keyProduct {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pyrinas_keyText {
  transition: opacity 1.5s;
  opacity: 0;
  z-index: 2;
}

.pyrinas_keyText.view {
  opacity: 1;
}

.pyrinas_keyProduct {
  transition: opacity 1.5s 0.5s, transform 1.5s 0.5s;
  transform: translateY(5%);
  opacity: 0;
  z-index: 3;
}

.pyrinas_keyProduct.view {
  transform: translateY(0);
  opacity: 1;
}

.pyrinas_keyText picture,
.pyrinas_keyProduct picture {
  display: block;
  width: 100%;
  height: 100%;
}

.pyrinas_keyText img,
.pyrinas_keyProduct img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* --- Scroll Animation --- */
.pyrinas-pack.js-anim .pyrinas-fade {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--fade-delay, 0s);
  will-change: opacity, transform;
}

.pyrinas-pack.js-anim .pyrinas-fade.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.pyrinas-pack.js-anim .pyrinas-fade--soft {
  transform: translate3d(0, 20px, 0) scale(0.98);
}

.pyrinas-pack.js-anim .pyrinas-fade--soft.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .pyrinas-pack.js-anim .pyrinas-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media screen and (min-width: 769px) {
  .pyrinas_keyBox {
    height: calc(100svh - 70px);
  }

  .pyrinas-pack .movieWrap video,
  .pyrinas-pack .pyrinasMovie {
    max-height: calc(100svh - 70px);
  }
}

@media screen and (min-width: 769px) and (max-height: 820px) {
  .pyrinas_keyBox {
    height: calc(100svh - 60px);
    min-height: 0;
  }

  .pyrinas-pack .movieWrap video,
  .pyrinas-pack .pyrinasMovie {
    max-height: calc(100svh - 60px);
  }
}

/* --- Section Common --- */
.pyrinas-pack .boxInner {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding: 0 5%;
  box-sizing: border-box;
}

.pyrinas-pack .box01 {
  padding: clamp(50px, 7vw, 100px) 0;
}

.pyrinas-pack .sectionTitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5em;
  line-height: 1.6;
}

.pyrinas-pack .sectionTitle.gold {
  color: #c2a069;
  border-bottom: 1px solid #c2a069;
  padding-bottom: 0.5em;
  display: inline-block;
  width: 100%;
}

.pyrinas-pack .sectionTitle.white {
  color: #fff;
  border-bottom: 1px solid #c2a069;
  padding-bottom: 0.5em;
}

.pyrinas-pack .leadText {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 2;
  text-align: center;
}

.pyrinas-pack .noteText {
  font-size: 1.1rem;
  color: #c2a069;
  text-align: center;
  margin-top: 1em;
}

.bold {
  font-weight: bold;
  color: #c2a069;
}

.bold.point_text {
  font-size: 1.1em;
  border-bottom: 1px solid #c2a069;
}

/* --- Dark Section --- */
.pyrinas-pack .sectionDark {
  background: linear-gradient(180deg, #0a1628 0%, #050a14 100%);
  color: #fff;
}

.pyrinas-pack .sectionDark .leadText {
  color: rgba(255, 255, 255, 0.9);
}

/* --- Intro --- */
.pyrinas-pack .introCatch {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: #c2a069;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.pyrinas-pack .introDesc {
  text-align: center;
  line-height: 2;
  margin-bottom: 1em;
}

/* --- Recommend --- */
.pyrinas-pack .recommendList {
  list-style: none;
  max-width: 480px;
  margin: 2em auto;
  padding: 0;
}

.pyrinas-pack .recommendList li {
  position: relative;
  padding: 0.6em 0 0.6em 2em;
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(194, 160, 105, 0.3);
}

.pyrinas-pack .recommendList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 16px;
  height: 16px;
  border: 1.5px solid #c2a069;
  border-radius: 3px;
  background: rgba(194, 160, 105, 0.12);
  box-sizing: border-box;
}

.pyrinas-pack .recommendList li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1.1em;
  width: 9px;
  height: 5px;
  border-left: 2px solid #c2a069;
  border-bottom: 2px solid #c2a069;
  transform: rotate(-45deg);
  box-sizing: border-box;
}

.pyrinas-pack .faceCompare {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(20px, 5vw, 60px);
  margin-top: 3em;
  flex-wrap: wrap;
}

.pyrinas-pack .faceCompareItem {
  text-align: center;
  width: 200px;
}

.pyrinas-pack .faceCompareItem img {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.pyrinas-pack .faceCompareLabel {
  margin-top: 0.8em;
  font-size: 0.9rem;
  color: #c2a069;
}

/* --- Peel-off Pack --- */
.pyrinas-pack .ppFilmGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 2em 0;
}

.pyrinas-pack .ppFilmGrid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.pyrinas-pack .historyText {
  text-align: center;
  line-height: 2;
  margin-top: 1.5em;
}

.pyrinas-pack .ppFilmGrid.sanryopack {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pyrinas-pack .ppFilmGrid.sanryopack img {
  width: calc(100% / 3 - 8px);
}

/* --- Product Info --- */
.pyrinas-pack .productInfoBox {
  text-align: center;
  padding: 3em 2em;
  background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
  border: 1px solid rgba(194, 160, 105, 0.4);
  max-width: 700px;
  margin: 0 auto;
}

.pyrinas-pack .productInfoBox .productImg {
  max-width: 200px;
  margin: 0 auto 1.5em;
}

.pyrinas-pack .productInfoBox .productImg img {
  width: 100%;
  height: auto;
}

.pyrinas-pack .productCategory {
  font-size: 0.9rem;
  color: #c2a069;
  margin-bottom: 0.5em;
}

.pyrinas-pack .productName {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #fff;
  margin-bottom: 0.3em;
  letter-spacing: 0.05em;
}

.pyrinas-pack .productNameEn {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1em;
}

.pyrinas-pack .productPrice {
  font-size: 1.2rem;
  color: #c2a069;
}

.pyrinas-pack .productQuasiDrug {
  display: inline-block;
  font-size: 0.85rem;
  color: #fff;
  border: 1px solid #c2a069;
  padding: 0.2em 1em;
  margin-bottom: 1em;
}

/* --- How to Use --- */
.pyrinas-pack .howtoUsage {
  max-width: 800px;
  margin: 2em auto 0;
}

.pyrinas-pack .howtoUsageTopMain {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1.5em, 4vw, 3em);
  margin-bottom: 1.2em;
}

.pyrinas-pack .howtoUsageBallBlock {
  flex: 0 0 38%;
  max-width: 38%;
  text-align: center;
}

.pyrinas-pack .howtoUsageBallLabel {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  margin: 0 0 0.6em;
  line-height: 1.6;
}

.pyrinas-pack .howtoUsageBallBlock img {
  width: 55%;
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.pyrinas-pack .howtoUsageFace {
  flex: 0 0 48%;
  max-width: 48%;
}

.pyrinas-pack .howtoUsageFace img {
  width: 100%;
  height: auto;
  display: block;
}

.pyrinas-pack .howtoUsageNotes {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 2;
  color: #333;
  text-align: left;
  font-size: 0.9em;
}

.pyrinas-pack .howtoUsageNotes p {
  margin: 0 0 0.3em;
}

.pyrinas-pack .howtoTimingBox {
  /* border: 1px solid #c2a069; */
  border-radius: 12px;
  padding: clamp(1.5em, 3vw, 2.5em);
  margin: 2.5em 0;
  background: #fff;
}

.pyrinas-pack .howtoTimingPhoto {
  margin: 0 0 1.5em;
  border-radius: 8px;
  overflow: hidden;
}

.pyrinas-pack .howtoTimingPhoto img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.pyrinas-pack .howtoTimingTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  color: #333;
  text-align: center;
  margin: 0 0 1.5em;
}

.pyrinas-pack .howtoTimingTitle::before,
.pyrinas-pack .howtoTimingTitle::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: #bbb;
}

.pyrinas-pack .howtoTimingLead {
  text-align: center;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 2;
  margin: 0 0 0.2em;
}

.pyrinas-pack .howtoTimingMark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: #e7548a;
  color: #fff;
  font-size: 0.85em;
  line-height: 1;
  vertical-align: middle;
  margin: 0 0.1em;
  text-align: center;
  padding: 1px 0 0 1.5px;
  box-sizing: border-box;
}

.pyrinas-pack .howtoTimingOptions {
  display: flex;
  gap: clamp(1em, 3vw, 2em);
  margin-top: 1.5em;
}

.pyrinas-pack .howtoTimingOption {
  flex: 1;
  display: flex;
  gap: 0.7em;
  align-items: flex-start;
}

.pyrinas-pack .howtoTimingNum {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background: #e7548a;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
}

.pyrinas-pack .howtoTimingOptionText {
  flex: 1;
  min-width: 0;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.8;
}

.pyrinas-pack .howtoTimingOptionText p {
  margin: 0;
}

.pyrinas-pack .howtoTimingOptionSub {
  margin-top: 0.3em !important;
  font-size: 0.92em;
  line-height: 1.9;
}

.pyrinas-pack .howtoTimingDiagram img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.pyrinas-pack .howtoText {
  line-height: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.pyrinas-pack .movieWrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.pyrinas-pack .movieWrap video,
.pyrinas-pack .pyrinasMovie {
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 60px);
  height: auto;
  display: inline-block;
  vertical-align: top;
  background-color: #000;
  object-fit: contain;
}

/* --- Frequency --- */
.pyrinas-pack .frequencyImg {
  max-width: 900px;
  margin: 2em auto;
}

.pyrinas-pack .frequencyImg img {
  width: 100%;
  height: auto;
}

.pyrinas-pack .frequencyText {
  text-align: center;
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* --- Apply Method --- */
.pyrinas-pack .applySectionTitle {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  text-align: center;
  color: #1a2744;
  margin-bottom: 0.5em;
}

.pyrinas-pack .applySectionSub {
  text-align: center;
  color: #666;
  margin-bottom: 2em;
  font-size: 0.95rem;
}

.pyrinas-pack .applyItem {
  margin-bottom: 2.5em;
}

.pyrinas-pack .applyItemInner {
  display: flex;
  align-items: center;
  gap: clamp(1.5em, 4vw, 3em);
}

.pyrinas-pack .applyItemInner--reverse {
  flex-direction: row-reverse;
}

.pyrinas-pack .applyItemImg {
  flex: 0 0 42%;
  max-width: 42%;
}

.pyrinas-pack .applyItemImg img {
  width: 100%;
  height: auto;
  display: block;
}

.pyrinas-pack .applyItemText {
  flex: 1;
  min-width: 0;
}

.pyrinas-pack .applySteps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em;
}

.pyrinas-pack .applyStep {
  color: #00549e;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1.9;
  margin-bottom: 0.2em;
}

.pyrinas-pack .applyStep ruby rt {
  font-size: 0.5em;
  letter-spacing: 0;
}

.pyrinas-pack .applyDesc {
  color: #595757;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 2;
  margin: 0;
}

/* --- Efficacy & Ingredients --- */
.pyrinas-pack .efficacyBox {
  background: #f9f9f9;
  padding: 2em;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
  text-align: center;
}

.pyrinas-pack .ingredientGroup {
  max-width: 800px;
  margin: 2em auto 0;
  text-align: center;
}

.pyrinas-pack .ingredientGroup + .ingredientGroup {
  margin-top: 1.8em;
}

.pyrinas-pack .ingredientSubTitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #8a6d3b;
  letter-spacing: 0.12em;
  margin-bottom: 0.6em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid rgba(194, 160, 105, 0.5);
  display: inline-block;
  min-width: 8em;
}

.pyrinas-pack .ingredientText {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 2;
  color: #333;
}

.pyrinas-pack .ingredientGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 3em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pyrinas-pack .ingredientItem {
  text-align: center;
}

.pyrinas-pack .ingredientItem img {
  width: 100%;
  max-width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 0.8em;
  display: block;
}

.pyrinas-pack .ingredientItem .ingredientName {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- Related Products (reuse existing pattern) --- */
.pyrinas-pack .productText {
  display: inline-block;
  font-size: 2rem;
  line-height: initial;
  color: #c2a069;
  font-weight: normal;
  border-top: 1px solid #c2a069;
  border-bottom: 1px solid #c2a069;
  padding: 1em;
}

.pyrinas-pack .productItemWrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-top: 3em;
}

.pyrinas-pack .productItem {
  width: calc(100% / 3);
  padding: 0 1%;
  box-sizing: border-box;
  text-align: center;
}

.pyrinas-pack .productItem .producImg {
  width: 100%;
  max-width: 280px;
  margin: auto;
}

.pyrinas-pack .productItem .date {
  font-size: 0.85rem;
  color: #888;
  padding: 0.8em 0;
}

.pyrinas-pack .productItem .producName {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 1.5em auto 0;
  padding: 1.2em 1.6em;
  font-size: 0.85rem;
  line-height: 1.8;
  color: #333;
  box-sizing: border-box;
}

.pyrinas-pack .productItem .producName::before,
.pyrinas-pack .productItem .producName::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  border-color: #c2a069;
  border-style: solid;
  pointer-events: none;
}

.pyrinas-pack .productItem .producName::before {
  left: 0;
  border-width: 1px 0 1px 1px;
}

.pyrinas-pack .productItem .producName::after {
  right: 0;
  border-width: 1px 1px 1px 0;
}

.pyrinas-pack .productItem .producNameCategory {
  display: block;
  font-size: 0.8rem;
  color: #888;
}

.pyrinas-pack .productItem .producNameMain {
  display: block;
  font-size: 1rem;
  color: #8a6d3b;
  margin-top: 0.3em;
}

.pyrinas-pack .productItem .producNameEn {
  display: block;
  font-size: 0.85rem;
  color: #666;
  letter-spacing: 0.05em;
}

.pyrinas-pack .productItem .producNamePrice {
  display: block;
  margin-top: 0.5em;
  color: #333;
}

.pyrinas-pack .productItem .producNameNote {
  display: block;
  margin-top: 0.4em;
  font-size: 0.8rem;
  color: #c2a169;
  border: 1px solid #c2a169;
  width: fit-content;
  margin: 5px auto;
  padding: 0 10px;
}

.pyrinas-pack .productItem .producNameIngredients {
  display: block;
  margin-top: 0.8em;
  padding-top: 0.8em;
  border-top: 1px solid rgba(194, 160, 105, 0.3);
  font-size: 0.75rem;
  line-height: 1.9;
  color: #666;
}

.pyrinas-pack .productItemWrap:has(.productItem:only-child) .productItem {
  width: 100%;
  max-width: 400px;
}

.pyrinas-pack .productItemWrap a .producImg {
  transition: all 0.5s;
  transform: scale(1);
  transform-origin: center;
}

.pyrinas-pack .productItemWrap a:hover .producImg {
  transform: scale(1.05);
}

.pyrinas-pack .product {
  text-align: center;
}
.sp{
  display: none;
}
.pc{
  display: block;
}
/* --- Responsive --- */
@media screen and (max-width: 768px) {
  .pyrinas-pack .sp {
    display: block;
  }

  .pyrinas-pack .pc {
    display: none;
  }

  .pyrinas-pack .leadText,
  .pyrinas-pack .historyText,
  .pyrinas-pack .howtoText,
  .pyrinas-pack .frequencyText {
    text-align: left;
  }

  .pyrinas-pack .howtoUsageTopMain {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }

  .pyrinas-pack .howtoUsageBallBlock,
  .pyrinas-pack .howtoUsageFace {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .pyrinas-pack .howtoUsageBallBlock img {
    width: 40%;
    max-width: 130px;
  }

  .pyrinas-pack .howtoUsageFace img {
    max-width: 280px;
    margin: 0 auto;
  }

  .pyrinas-pack .howtoUsageNotes {
    text-align: left;
  }

  .pyrinas-pack .howtoTimingOptions {
    flex-direction: column;
    gap: 1.5em;
  }

  .pyrinas-pack .howtoTimingLead {
    text-align: left;
  }

  .pyrinas-pack .applyItemInner,
  .pyrinas-pack .applyItemInner--reverse {
    flex-direction: column;
    gap: 1.5em;
  }

  .pyrinas-pack .applyItemImg {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .pyrinas-pack .applyItemText {
    width: 100%;
    text-align: left;
  }

  .pyrinas-pack .ppFilmGrid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pyrinas-pack .ingredientGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pyrinas-pack .ingredientItem img {
    max-width: 150px;
    height: 150px;
  }

  .pyrinas-pack .productItemWrap {
    flex-direction: column;
    align-items: center;
  }

  .pyrinas-pack .productItem {
    width: 100%;
    padding: 5% 1%;
  }

  .pyrinas-pack .productText {
    font-size: 1.3rem;
  }

  .pyrinas-pack .faceCompareItem {
    width: 140px;
  }
  .pyrinas-pack .ppFilmGrid.sanryopack img {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .pyrinas-pack .pc {
    display: block;
  }

  .pyrinas-pack .sp {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }
}