/* HEROセクション全体 */
.player-entry-hero {
  background-color: #fb2877;
  transform: skewY(-3deg);
  margin-top: 100px;
  margin-bottom: 60px;
}

.player-entry-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 600px;
  display: flex;
  transform: skewY(3deg); /* 中の傾きを打ち消す */
}

/* 左カラム（テキスト） */
.player-entry-hero-text {
  flex: 1;
  display: flex;
  justify-content: center;     /* 横方向中央 */
  align-items: center;         /* 縦方向中央 */
  min-width: 280px;
}

.player-entry-hero-text-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  text-align: left;
}

/* テキスト内要素 */
.player-entry-hero-sub {
  font-size: 16px;
  background: #fff;
  color: #fb2877;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.player-entry-hero-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.player-entry-hero-desc {
  font-size: 18px;
  margin-bottom: 30px;
}

.player-entry-hero-tweet {
  display: inline-block;
  background: #1DA1F2;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}

/* 右カラム（画像） */
.player-entry-hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}

.player-entry-hero-image img {
  max-width: 100%;
  height: auto;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .player-entry-hero {
    margin-top: 30px; /* 150px → 80px に変更 */
}

  .player-entry-hero-inner {
    flex-direction: column;
    padding: 60px 20px;
    min-height: auto;
    text-align: center;
  }

  .player-entry-hero-text {
    order: 2;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 30px;
  }

  .player-entry-hero-text-inner {
    align-items: center;
  }

  .player-entry-hero-title {
    font-size: 32px;
  }

  .player-entry-hero-image {
    order: 1;
  }
}


/* aboutセクション全体 */
.player-entry-about {
  padding: 100px 20px;
  background-color: #fff;
  text-align: center;
}

.player-entry-about-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* タイトル＋下線 */
.player-entry-about-title {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  margin-bottom: 24px;
  display: inline-block;
}

.player-entry-about-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #fb2877;
  margin: 8px auto 0;
}

/* テキスト */
.player-entry-about-desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* 画像 */
.player-entry-about-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
}

/* ボタン */
.player-entry-about-button {
  display: inline-block;
  background-color: #fb811a;
  color: #fff;
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  transition: background 0.3s;
}

.player-entry-about-button:hover {
  background-color: #e46d00;
}


/* 募集セクション全体 */
.player-entry-recruit {
  background-color: #fdc2d8;
  transform: skewY(-3deg);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.player-entry-recruit-inner {
  transform: skewY(3deg); /* 中身は正位置 */
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* タイトル */
.player-entry-recruit-title {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  margin-bottom: 24px;
}

.player-entry-recruit-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #fb2877;
  margin: 8px auto 0;
}

/* 本文 */
.player-entry-recruit-desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* 注意書き（グレー小文字） */
.player-entry-recruit-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 30px;
}

/* ボタン */
.player-entry-recruit-button {
  display: inline-block;
  background-color: #fb2877;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.player-entry-recruit-button:hover {
  background-color: #e51965;
}


/* 稼げる仕組みセクション */
.player-entry-structure {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.player-entry-structure-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* H2 タイトル */
.player-entry-structure-title {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  margin-bottom: 40px;
}

.player-entry-structure-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #fb2877;
  margin: 8px auto 0;
}

/* 共通見出しH3 */
.player-entry-structure-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* 時給ボックス */
.player-entry-structure-wage-box {
  background: rgba(4, 18, 130, 0.12);
  border: 4px solid #041282;
  padding: 24px;
  font-size: 24px;
  font-weight: bold;
  color: #041282;
  margin-bottom: 12px;
}

/* 審査注意書き */
.player-entry-structure-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 40px;
}

/* カード一覧 */
.player-entry-structure-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* 各カード */
.player-entry-structure-card {
  background: rgba(253, 160, 94, 0.1);
  border: 4px solid #fda05e;
  border-radius: 8px;
  padding: 20px;
  width: 280px;
  box-sizing: border-box;
  text-align: center;
}

.player-entry-structure-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-bottom: 10px;
}

.player-entry-structure-game {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.player-entry-structure-calc {
  font-size: 14px;
  margin-bottom: 4px;
}

.player-entry-structure-amount {
  font-size: 22px;
  font-weight: bold;
  color: #fb2877;
  margin-bottom: 6px;
}

.player-entry-structure-smallnote {
  font-size: 12px;
  color: #666;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .player-entry-structure-cards {
    flex-direction: column;
    align-items: center;
  }

  .player-entry-structure-card {
    width: 100%;
    max-width: 320px;
  }
}


/* プレイヤーになる流れセクション */
.player-entry-flow {
  padding: 100px 20px;
  background: #fff;
}

.player-entry-flow-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

/* タイトル */
.player-entry-flow-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}

.player-entry-flow-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #fb2877;
  margin: 8px auto 0;
}

/* ステップ一覧 */
.player-entry-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

/* 各ボックス */
.player-entry-flow-box {
  display: flex;
  align-items: center;
  border: 3px solid #fb2877;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  text-align: left;
  gap: 20px;
}

.player-entry-flow-box img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.player-entry-flow-text {
  flex: 1;
}

.player-entry-flow-step {
  font-weight: bold;
  color: #fb2877;
  margin-bottom: 6px;
  font-size: 16px;
}

.player-entry-flow-desc {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .player-entry-flow-box {
    flex-direction: column;
    text-align: center;
  }

  .player-entry-flow-box img {
    margin-bottom: 12px;
  }

  .player-entry-flow-text {
    text-align: center;
  }
}

/* フォームをセクション */
.player-entry-form-section {
  background-color: #fdc2d8;
  transform: skewY(-2deg);
  padding: 80px 20px;
  margin-bottom: 120px; /* ← セクション下の余白を追加 */
}

.player-entry-form-inner {
  transform: skewY(2deg);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.player-entry-form-title {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.player-entry-form-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #fb2877;
  margin: 8px auto 0;
}

.player-entry-form-text {
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.player-entry-form-text small {
  font-size: 14px;
  color: #555;
}

.player-entry-form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.player-entry-form-fields label {
  font-size: 16px;
  text-align: left;
}

.player-entry-form-fields input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 6px;
  margin-top: 6px;
}

.player-entry-form-fields button {
  background-color: #fb2877;
  color: #fff;
  font-size: 18px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.player-entry-form-fields button:hover {
  background-color: #e01465;
}
