
/* ==============================
   priv layout
============================== */

.main--priv {
  position: relative;
  overflow: hidden;
}

.priv {
  position: relative;
  z-index: 2;
  width: min(95%, 500px);
  margin: 0 auto;
  padding: 108px clamp(5.3vw, 7.8vw, 60px) 72px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  text-align: left;
  border-left: 1px solid var(--black);
  border-right: 1px solid var(--black);

  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 黒バー終了後に付けるクラス */
.priv.is-enter {
  opacity: 1;
  transform: translateY(0);
}

.orange {
  color: var(--orange);
}
.priv__maintitle {
  font-size: 2.8rem;
  margin-bottom: 56px;
}

.priv__title {
  font-size: 2rem;
  margin-bottom: 24px;
}

.priv__list {
  font-family:"DotGothic16",sans-serif;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 48px;
  text-align: left;
  list-style: disc; /* ● を表示 */
  padding-left: 1.5em; /* 左に余白 */
}

.priv__list li a {
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-color: var(--black);
  text-underline-offset: 6px; /* 好みで調整 */
  text-decoration-thickness: 1px;

  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}

.priv__list li a:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

.topback {
  margin-top: 40px;
  text-align: center;
}

/* ★表示アニメ */

.priv__maintitle,
.priv__section,
.topback {
  opacity: 0;
  transform: translateY(24px); 
  transition:
    opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.priv.is-enter .priv__maintitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.priv.is-enter .priv__section {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.priv.is-enter .topback {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.8s;
}


/* ////////////////////////////
    pc 769px～
//////////////////////////// */

@media screen and (min-width:769px) {

  .priv {
  width: min(90%, 900px);
  margin: 0 auto;
  padding: 120px clamp(5.3vw, 7.8vw, 60px) 64px;
  text-align: left;
  }

  .priv__maintitle {
  font-size: 4.8rem;
  margin-bottom: 96px;
  }

  .priv__title {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }

  .priv__list {
    font-family:"DotGothic16",sans-serif;
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 72px;
  }

  .priv__value .priv__catch {
      font-size: 2rem;
      margin-bottom: 8px;
  }

  .priv__value .priv__txt{
    text-align: center;
    margin-bottom: 24px;
  }

  .topback {
    margin-top: 64px;
  }
}