
body {
  background-blend-mode: normal;
  color: #d63384;
  font-family: 'Kiwi Maru', serif;
  margin: 0;
  padding: 0 50px;
  position: relative;
  background-color: #f3f5f2;
}

header {
  position: relative;
  background-color: #f3f5f3;
  text-align: center;
  padding: 20px 0;
  overflow: hidden;
}

footer {
  position: relative;
  background-color: #f3f5f3;
  text-align: center;
  padding: 20px 0;
  overflow: hidden;
}

.header-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.footer-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 応募フォーム上の画像中央寄せ */
.recruit-img {
  text-align: center;
  margin-top: 40px;
}

.recruit-img img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

h1, h2 {
  color: #d63384;
  font-weight: 700;
  text-align: center;
}

.sentence {
  text-align: center;
  margin-bottom: 40px;
}

.prf {
  desplay: black;
  margin: 0 auto;
  margin-bottom: 40px;
}

#cast-list {
  text-align: center;
  margin-bottom: 40px;
}


#cast-list a {
  color: #d63384;            /* ピンク色 */
  font-weight: bold;         /* 太字 */
  text-decoration: none;     /* 下線を消す */
}

#cast-list a:hover {
  opacity: 0.7;              /* ホバー時の軽い演出（お好みで） */
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  background-color: #f2f2f2;
  color: #111;
  margin-top: 40px;
}

.price-table th, .price-table td {
  border: 1px solid #5b4636;
  padding: 10px;
  text-align: center;
}

.price-table th {
  background-color: #5b4636;
  color: #fff;
  font-weight: bold;
}

.price-table .note {
  font-size: 0.9em;
  color: #555;
  text-align: right;
  border: none;
  padding-top: 10px;
}

.access{
  margin-top: 40px
}

.insta-btn {
  display: inline-block;
  background-color: #d63384;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

#insta-btn {
  text-align: center;
  margin-bottom: 40px;
}

.insta-btn:hover {
  background-color: #b9246a;
}

.tiktok-btn {
  display: inline-block;
  background-color: #d63384;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

#tiktok-btn {
  text-align: center;
  margin-bottom: 40px;
}

.tiktok-btn:hover {
  background-color: #b9246a;
}

/* ページ全体のフェードアニメーション */
body.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.fade-in {
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* メニューリンク共通設定 */
#navMenu a {
  color: #d63384;
  margin: 0 10px;
  text-decoration: none;
  position: relative;
}

.form-bottom {
  text-align: center;
  margin-top: 20px;
}

/* 縦棒「|」をPCのみ表示（最後のリンク以外） */
@media (min-width: 769px) {
  #navMenu a:not(:last-child)::after {
    content: "|";
    color: #d63384;
    position: absolute;
    right: -12px;
  }
}

/* ハンバーガーメニュー */
.hamburger {
  font-size: 30px;
  color: #d63384;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* ナビゲーションの初期状態（PC） */
#navMenu {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

/* スマホ用スタイル */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  #navMenu {
    display: none;
    flex-direction: column;
    text-align: center;
    background-color: #f3f5f2;
    padding: 10px 0;
  }

  #navMenu.active {
    display: flex;
  }

  body {
    padding: 0 20px;
  }

  /* スマホでは「|」を非表示 */
  #navMenu a::after {
    content: none !important;
  }
}