/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 28 2025 | 05:42:36 */
/* リスト全体（白カードにして読みやすく） */
.pains__list{
  list-style: none;
  margin: 0;
  padding: 22px 18px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
}

/* 各項目 */
.pains__item{
  position: relative;
  padding: 14px 12px 14px 44px;     /* チェック分の左余白 */
  border-radius: 12px;
  list-style-type: none;
}

/* 行の区切り：やりすぎない薄線 */
.pains__item + .pains__item{
  margin-top: 6px;
  border-top: 1px dashed rgba(0,0,0,.10);
}

/* チェックマーク */
.pains__item::before{
  content: "✓";
  position: absolute;
  left: 12px;
  top: 14px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #e4002b;                   /* 赤チェック */
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}

/* テキスト */
.pains__text{
  display: inline-block;
  color: #111;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: .01em;
}

/* 2行目を自然にインデント */
.pains__text br + span,
.pains__text br{
  /* br自体は触れない。text側のスタイルで整える */
}
.pains__text{
  text-indent: 0;
}
.pains__text{
  /* 2行目以降の開始位置を揃える（チェック位置と揃える） */
  padding-left: 0;
}

/* ホバーで軽く浮かせる（LPっぽい） */
@media (hover:hover){
  .pains__item:hover{
    background: rgba(255,255,255,.55);
    transform: translateY(-1px);
    transition: .18s ease;
  }
}

/* スマホ最適化 */
@media (max-width: 768px){
  .pains{
    padding: 44px 0;
  }
  .pains__list{
    padding: 18px 14px;
  }
  .pains__item{
    padding: 12px 10px 12px 40px;
  }
  .pains__item::before{
    left: 10px;
    top: 12px;
    font-size: 21px;
  }
  .pains__text{
    font-size: 16px;
    line-height: 1.75;
  }
}
/* =========================
   FAQ (Non-accordion / List)
========================= */
.faq2{
  padding: 56px 16px;
  background: #fff;
}

.faq2__inner{
  max-width: 920px;
  margin: 0 auto;
}

.faq2__title{
  font-size: 22px;
  line-height: 1.35;
  text-align: center;
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #111;
}

.faq2__lead{
  text-align: center;
  margin: 0 0 22px;
  color: #555;
  font-size: 14px;
}

.faq2__list{
  display: grid;
  gap: 14px;
}

.faq2__item{
  border: 1px solid #e0f1ff;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  overflow: hidden;
}

.faq2__q,
.faq2__a{
  display: flex;
  align-items: flex-start;
  gap: 2px;
  padding: 16px;
}

.faq2__q{
  background: #f6fbff;
  border-bottom: 1px dashed #e0f1ff;
}

.faq2__q p{
  margin: 0;
  font-weight: 800;
  color: #111;
  font-size: 15px;
  line-height: 1.65;
}

.faq2__a p{
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.9;
}

.faq2__badge{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  flex: 0 0 28px;
  margin-top: 2px;
}

.faq2__badge--q{
  background: #e53935;
}

.faq2__badge--a{
  background: #1976d2;
}

.faq2__a strong{
  background: linear-gradient(transparent 60%, rgba(255,214,0,.6) 60%);
  font-weight: 900;
}

/* hover */
@media (hover:hover){
  .faq2__item:hover{
    border-color: rgba(138,174,211,.8);
    transform: translateY(-1px);
    transition: .15s ease;
  }
}

/* mobile */
@media (max-width: 480px){
  .faq2{
    padding: 44px 14px;
  }
  .faq2__title{
    font-size: 20px;
  }
  .faq2__q,
  .faq2__a{
    padding: 14px;
  }
  .faq2__q p{
    font-size: 14px;
  }
}

.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.popup.is-animated {
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}
