/* リセット */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Kosugi Maru", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.7;
  color: #333;
  background: #ffefef;
}
section {
  padding: 32px 16px;
}

h1{
  text-align: center;
}
.inner-narrow {
  max-width: 750px;
  margin: 0 auto;
}
h2{
	color: #ff3366;
  text-align: center;
	margin-bottom: 1rem;
}
.inner-wide {
  max-width: 1040px;
  margin: 0 auto;
}
/* スマホだけ改行 */
.br-sp {
  display: none;
}

@media (max-width: 599px) {
  .br-sp {
    display: inline;
  }
}

/* FV */
.fv-text {
  text-align: center; /* テキスト全体中央揃え */
  padding: 0 16px; /* 左右のパディング（必要に応じて調整） */
}

.fv-text .fv-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.3em;
}

.fv-text h1 {
	margin-top: 1rem;
  font-size: 1.8rem;
	color: #993300;
}

.fv-text .fv-catch {
  font-size: 2.4rem; /* 大きめ */
  font-weight: bold;
  margin-top: 0;
	color: #ff3366;
}
@media (max-width: 599px) {
.fv-text h1 {
  font-size: 1.2rem;
	margin-bottom: 1rem;
}  
.fv-text .fv-catch {
    font-size: 1.8rem; /* スマホで最適サイズ */
    line-height: 1.3;
  }
}

.fv-text .fv-label {
  display: block;     /* p要素の幅いっぱいに */
  margin-bottom: 0.3em;
}


.fv-image {
  width: 100%;
  max-width: 750px; /* 元画像の横幅に合わせて最大幅を制限 */
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.fv-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* スマホでは横幅いっぱいに */
@media (max-width: 767px) {
  .fv-image {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}


/* リード */
.lead p {
  margin-bottom: 16px;
	text-align: center;
}

.deadline {
  text-align: center;
  font-size: 1.1rem;
	color: red;
}

/* プレゼント */
.present-box {
  text-align: center;
}

.present img {
  max-width: 100%;
  border-radius: 12px;
}

.present-text {
  margin-top: 12px;
}
.present-text strong{
	font-size: 120%;
}
/* 応募の流れ */
.flow ol {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  counter-reset: step;
}

.flow li {
  counter-increment: step;
  background: #fff;
  border-radius: 16px;
  padding: 16px 16px 16px 56px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.5;
  position: relative;
}

/* 丸数字 */
.flow li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ff3366;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* 募集要項 */
.outline h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #333;
}

/* 対象・締切の本文 */
.outline p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* 注意事項リスト */
.notes {
  margin-top: 8px;
  padding-left: 1.2em;
}

.notes li {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #555;
}


/* キャラクター */
.characters-list {
  display: grid;
  grid-template-columns: 1fr;   /* スマホ：1列 */
  gap: 24px;
  margin-top: 24px;
}

@media (min-width: 600px) {
  .characters-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .characters-list {
    grid-template-columns: repeat(3, 1fr); /* PC：3列 */
  }
}

.character-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;

  /* ▼ 追加：出現前の状態 */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ▼ 追加：表示された状態 */
.character-card.is-show {
  opacity: 1;
  transform: translateY(0);
}


.character-card img {
  width: 80%;   /* 元の100%から80%に縮小 */
  max-width: 300px; /* 必要に応じて最大幅を制限 */
  height: auto;
  display: block;
  margin: 0 auto;  /* 中央寄せ */
}
.character-card h3 {
  margin-top: 8px;
  font-size: 1rem;
}

.volume {
  font-size: 0.8rem;
  color: #777;
}

.desc {
  font-size: 0.85rem;
  margin-top: 8px;
}


.volume {
  font-size: 0.8rem;
  color: #777;
}

.desc {
  font-size: 0.85rem;
  margin-top: 8px;
}

/* CTA */
.cta {
  text-align: center;
}

.btn {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 14px;
  background: #ff3366;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 999px;
}

/* PC */
@media (min-width: 768px) {
  section {
    padding: 48px 24px;
  }
  .btn {
    font-size: 1.2rem;
  }
}
/* フッター */
.site-footer {
  margin-top: 64px;
  padding: 24px 16px;
  background: #f7f7f7;
}

.site-footer .copyright {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #777;
  text-align: center;
}
