/* 
 * 女性会員募集ページ専用スタイルシート
 * FIVE STAR CLUB - 高級感あふれるデザイン
 */

/* ===== 基本設定 ===== */
:root {
  --primary-color: #b8860b; /* ゴールド */
  --secondary-color: #1a1a1a; /* 濃いグレー */
  --accent-color: #d4af37; /* 明るいゴールド */
  --text-color: #333333;
  --light-color: #f9f9f9;
  --dark-color: #0a0a0a;
  --gradient-gold: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #b8860b 100%);
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --female-accent: #e83e8c; /* 女性向けアクセントカラー */
  --female-gradient: linear-gradient(135deg, #e83e8c 0%, #ff9a9e 50%, #e83e8c 100%);
}

/* ===== 女性会員募集ページ全体のスタイル ===== */
.female-recruit-page {
  background-color: var(--light-color);
  color: var(--text-color);
  font-family: 'Noto Serif JP', serif;
  line-height: 1.8;
}

/* ページヘッダー */
.page-header {
  background: var(--gradient-gold);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/pattern.png');
  background-repeat: repeat;
  opacity: 0.1;
}

.page-header h1 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 3.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
  position: relative;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-header p {
  font-size: 1.2rem;
  color: var(--dark-color);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* イントロセクション */
.intro-section {
  padding: 80px 0;
}

.intro-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.intro-section h2 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.intro-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--gradient-gold);
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.intro-text {
  flex: 1;
  min-width: 300px;
}

.intro-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

/* 特典セクション */
.benefits-section {
  padding: 100px 0;
  background-color: rgba(232, 62, 140, 0.05);
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/pattern-light.png');
  background-repeat: repeat;
  opacity: 0.05;
}

.benefits-section .container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-section h2 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
  text-align: center;
}

.benefits-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--female-gradient);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: white;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--female-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.benefit-title {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.benefit-description {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.7;
}

/* 活動の流れセクション */
.flow-section {
  padding: 80px 0;
}

.flow-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.flow-section h2 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.flow-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--gradient-gold);
}

.flow-steps {
  margin-top: 50px;
}

.flow-step {
  display: flex;
  margin-bottom: 80px;
  position: relative;
}

.flow-step:last-child {
  margin-bottom: 0;
}

.flow-step::after {
  content: '';
  position: absolute;
  top: 100px;
  left: 50px;
  width: 2px;
  height: calc(100% + 30px);
  background: linear-gradient(to bottom, var(--female-accent) 0%, rgba(232, 62, 140, 0.1) 100%);
  z-index: -1;
}

.flow-step:last-child::after {
  display: none;
}

.step-number {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: var(--female-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: white;
  margin-right: 40px;
  box-shadow: 0 5px 15px rgba(232, 62, 140, 0.3);
}

.step-content {
  flex: 1;
  padding-top: 10px;
}

.step-title {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.step-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.step-details {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: var(--box-shadow);
  border-left: 4px solid var(--female-accent);
}

.step-details p {
  margin-bottom: 15px;
}

.step-details ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.step-details li {
  margin-bottom: 10px;
}

/* 成功事例セクション */
.success-stories-section {
  padding: 100px 0;
  background-color: var(--dark-color);
  color: var(--light-color);
  position: relative;
}

.success-stories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/luxury-pattern.png');
  background-repeat: repeat;
  opacity: 0.05;
}

.success-stories-section .container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.success-stories-section h2 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 50px;
  text-align: center;
}

.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.story-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.story-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.story-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-color);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-title {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.story-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-quote {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0 20px;
}

.story-quote::before,
.story-quote::after {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent-color);
  position: absolute;
}

.story-quote::before {
  left: 0;
  top: -10px;
}

.story-quote::after {
  right: 0;
  bottom: -10px;
}

/* 応募フォームセクション */
.apply-form-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.apply-form-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.apply-form-section h2 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.apply-form-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--female-gradient);
}

.apply-form-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.apply-form-intro p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* 応募フォーム */
.apply-form {
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.apply-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--female-gradient);
}

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

.form-label {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 500;
}

.form-label .required {
  color: #d9534f;
  margin-left: 5px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--female-accent);
  box-shadow: 0 0 0 2px rgba(232, 62, 140, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-select {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  background-color: white;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

.form-select:focus {
  outline: none;
  border-color: var(--female-accent);
  box-shadow: 0 0 0 2px rgba(232, 62, 140, 0.2);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 5px;
}

.form-check-label {
  font-size: 0.95rem;
  color: var(--text-color);
}

.form-check-label a {
  color: var(--female-accent);
  text-decoration: none;
  transition: var(--transition);
}

.form-check-label a:hover {
  text-decoration: underline;
}

.form-text {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 5px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.form-col {
  flex: 1;
  padding: 0 10px;
  min-width: 250px;
}

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

.btn-submit {
  display: inline-block;
  padding: 15px 50px;
  background: var(--female-gradient);
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(232, 62, 140, 0.3);
}

/* FAQ簡易セクション */
.faq-brief-section {
  padding: 80px 0;
  background-color: rgba(232, 62, 140, 0.05);
}

.faq-brief-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-brief-section h2 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
}

.faq-brief-list {
  margin-bottom: 40px;
}

.faq-brief-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-left: 4px solid var(--female-accent);
}

.faq-brief-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-brief-question {
  padding: 25px 30px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-brief-question:hover {
  background-color: rgba(232, 62, 140, 0.05);
}

.faq-brief-question h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin: 0;
  padding-right: 20px;
  flex: 1;
}

.faq-brief-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--female-accent);
  transition: var(--transition);
}

.faq-brief-toggle i {
  transition: var(--transition);
}

.faq-brief-item.active .faq-brief-toggle i {
  transform: rotate(45deg);
}

.faq-brief-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-brief-item.active .faq-brief-answer {
  padding: 0 30px 25px;
  max-height: 1000px;
}

.faq-brief-answer p {
  margin-top: 0;
  color: var(--text-color);
  line-height: 1.8;
}

.faq-more {
  text-align: center;
}

.btn-faq-more {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: var(--female-accent);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: var(--transition);
  border: 2px solid var(--female-accent);
}

.btn-faq-more:hover {
  background-color: rgba(232, 62, 140, 0.1);
  transform: translateY(-3px);
}

/* CTA セクション */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-gold);
  position: relative;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/pattern.png');
  background-repeat: repeat;
  opacity: 0.1;
}

.cta-section .container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-section h2 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 30px;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  padding: 18px 60px;
  background-color: white;
  color: var(--female-accent);
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: var(--transition);
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background-color: var(--light-color);
}

/* レスポンシブデザイン */
@media (max-width: 1200px) {
  .page-header h1 {
    font-size: 3rem;
  }
  
  .intro-section h2,
  .benefits-section h2,
  .flow-section h2,
  .success-stories-section h2,
  .apply-form-section h2,
  .cta-section h2 {
    font-size: 2.2rem;
  }
  
  .step-number {
    width: 90px;
    height: 90px;
    font-size: 2.2rem;
  }
  
  .step-title {
    font-size: 1.6rem;
  }
  
  .story-image {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 992px) {
  .page-header {
    padding: 100px 0 60px;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .intro-section h2,
  .benefits-section h2,
  .flow-section h2,
  .success-stories-section h2,
  .apply-form-section h2,
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .intro-content {
    flex-direction: column;
  }
  
  .intro-image {
    order: -1;
    margin-bottom: 30px;
  }
  
  .flow-step {
    flex-direction: column;
    margin-bottom: 60px;
  }
  
  .flow-step::after {
    display: none;
  }
  
  .step-number {
    margin: 0 auto 20px;
  }
  
  .step-content {
    padding-top: 0;
    text-align: center;
  }
  
  .step-details {
    text-align: left;
  }
  
  .apply-form {
    padding: 40px 30px;
  }
  
  .benefit-card {
    padding: 30px 20px;
  }
  
  .cta-section {
    padding: 80px 0;
  }
  
  .btn-cta {
    padding: 15px 50px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 80px 0 50px;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .intro-section h2,
  .benefits-section h2,
  .flow-section h2,
  .success-stories-section h2,
  .apply-form-section h2,
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .step-title {
    font-size: 1.4rem;
  }
  
  .step-description {
    font-size: 1rem;
  }
  
  .apply-form {
    padding: 30px 20px;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .form-control,
  .form-select {
    padding: 12px;
  }
  
  .btn-submit {
    padding: 12px 40px;
    font-size: 1rem;
    width: 100%;
  }
  
  .benefit-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .benefit-title {
    font-size: 1.3rem;
  }
  
  .faq-brief-question h3 {
    font-size: 1.1rem;
  }
  
  .cta-section p {
    font-size: 1.1rem;
  }
  
  .btn-cta {
    padding: 12px 40px;
    font-size: 1rem;
    width: 80%;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .intro-section h2,
  .benefits-section h2,
  .flow-section h2,
  .success-stories-section h2,
  .apply-form-section h2,
  .cta-section h2 {
    font-size: 1.6rem;
  }
  
  .step-number {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .form-col {
    padding: 0;
  }
  
  .faq-brief-question {
    padding: 20px;
  }
  
  .faq-brief-item.active .faq-brief-answer {
    padding: 0 20px 20px;
  }
  
  .story-image {
    width: 90px;
    height: 90px;
  }
  
  .btn-cta {
    width: 100%;
  }
}
