/* エントリーページ用固定ヘッダー - 常に表示 */
.entry-page .fixed-header {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.entry-page .fixed-header-sp {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* エントリーページ用メニューボタン - 常に表示 */
.entry-page .menu-btn-fixed-independent {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* エントリーページとプライバシーページではh1を非表示 */
.entry-page .fixed-header .logo h1,
.entry-page .fixed-header-sp .logo h1 {
  display: none;
}

/* main-container上部にパディング追加（ヘッダー分） */
.entry-page .main-container {
  padding-top: 110px;
}

/* エントリーページ用メインビジュアル */
.entry-mv {
  height: 300px;
  background: linear-gradient(135deg, #0662b9 0%, #0550a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.entry-mv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/mv-pc.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.entry-hero {
  text-align: center;
  color: white;
  z-index: 1;
  position: relative;
}

.entry-hero-title {
  font-family: "Outfit", sans-serif;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.entry-hero-subtitle {
  font-size: 20px;
  font-weight: 500;
  opacity: 0.9;
}

/* 応募フォーム用の追加スタイル */
.entry-form-section {
  width: 90%;
  max-width: 680px;
  margin: 0 auto 0px;
  padding: 30px 0px 0px;
  background: white;
}

.entry-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 0px;
}

.entry-title {
  font-size: 46px;
  font-weight: 700;
  color: #202025;
  margin-bottom: 8px;
}

.entry-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.entry-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group.half {
  flex: 1;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  color: #202025;
}

.required {
  color: #e74c3c;
  font-weight: 700;
}

.form-input, 
.form-select, 
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-input:focus, 
.form-select:focus, 
.form-textarea:focus {
  outline: none;
  border-color: #0662b9;
}

.form-textarea {
  resize: vertical;
}

.checkbox-group, 
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label, 
.radio-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-label input, 
.radio-label input {
  margin-right: 8px;
  width: auto;
}

.privacy-check {
  margin-top: 20px;
}

.privacy-check a {
  color: #0662b9;
  text-decoration: underline;
}

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

.submit-btn {
  background: #0662b9;
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #0550a0;
}

.formrun-embed .sf-btn-group{
  width: 300px !important;
  margin: auto!important;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .entry-page .main-container {
    padding-top: 70px; /* スマホ版ヘッダー分 */
  }
  
  .entry-mv {
    height: 200px;
  }
  .entry-header{
    margin-bottom: 20px;
  }
  
  .entry-hero-title {
    font-size: 40px;
  }
  
  .entry-hero-subtitle {
    font-size: 16px;
  }
  
  .entry-form-section {
    width: 95%;
    margin: 40px 0px 0px;
    padding: 0px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 24px;
  }
  
  .entry-title {
    font-size: 34px;
  }
}