/* 
 * お問い合わせページ専用スタイルシート
 * 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;
}

/* ===== お問い合わせページ全体のスタイル ===== */
.contact-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;
}

/* コンテンツセクション */
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.contact-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 50px;
  color: var(--text-color);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 2カラムレイアウト */
.contact-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-form-column {
  flex: 1;
  min-width: 300px;
}

.contact-info-column {
  flex: 0 0 350px;
}

/* お問い合わせフォーム */
.contact-form-section {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--box-shadow);
  margin-bottom: 40px;
}

.contact-form-section h2 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-group .required-label::after {
  content: '*';
  color: #e74c3c;
  margin-left: 4px;
}

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

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.2);
}

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

.form-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.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-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

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

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

.btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--gradient-gold);
  color: white;
  border: none;
  border-radius: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-block {
  display: block;
  width: 100%;
}

/* お問い合わせ情報 */
.contact-info-section {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--box-shadow);
  margin-bottom: 40px;
}

.contact-info-section h2 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.contact-info-item {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  flex: 0 0 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
}

.contact-info-text {
  flex: 1;
}

.contact-info-text h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.contact-info-text p {
  margin: 0;
  color: var(--text-color);
}

.contact-info-text a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-text a:hover {
  text-decoration: underline;
}

/* 営業時間 */
.business-hours {
  margin-top: 30px;
}

.business-hours h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table th {
  text-align: left;
  padding: 10px 0;
  font-weight: normal;
  color: var(--secondary-color);
}

.hours-table td {
  text-align: right;
  padding: 10px 0;
  color: var(--text-color);
}

/* 地図セクション */
.map-section {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 40px;
}

.map-container {
  width: 100%;
  height: 400px;
  border: none;
}

/* FAQ簡易セクション */
.faq-section {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.faq-section h2 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 20px;
}

.faq-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.faq-question {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.faq-question::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-family: 'Playfair Display', serif;
}

.faq-answer {
  color: var(--text-color);
  position: relative;
  padding-left: 30px;
}

.faq-answer::before {
  content: 'A';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-family: 'Playfair Display', serif;
}

.faq-more {
  text-align: center;
  margin-top: 30px;
}

.faq-more a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.faq-more a:hover {
  text-decoration: underline;
}

/* プライバシーポリシー同意 */
.privacy-agreement {
  margin-top: 30px;
  padding: 20px;
  background-color: rgba(184, 134, 11, 0.05);
  border-radius: 5px;
}

.privacy-agreement p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.privacy-agreement a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.privacy-agreement a:hover {
  text-decoration: underline;
}

/* レスポンシブデザイン */
@media (max-width: 1200px) {
  .page-header h1 {
    font-size: 3rem;
  }
  
  .contact-form-section h2,
  .contact-info-section h2,
  .faq-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
  .page-header {
    padding: 100px 0 60px;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .contact-form-section,
  .contact-info-section,
  .faq-section {
    padding: 30px;
  }
  
  .map-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 80px 0 50px;
    margin-bottom: 50px;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .contact-intro {
    font-size: 1rem;
  }
  
  .contact-form-section,
  .contact-info-section,
  .faq-section {
    padding: 25px;
    margin-bottom: 30px;
  }
  
  .contact-form-section h2,
  .contact-info-section h2,
  .faq-section h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-control,
  .form-select {
    padding: 10px 12px;
  }
  
  .btn {
    padding: 12px 25px;
  }
  
  .map-container {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .contact-form-section,
  .contact-info-section,
  .faq-section {
    padding: 20px;
  }
  
  .contact-form-section h2,
  .contact-info-section h2,
  .faq-section h2 {
    font-size: 1.3rem;
  }
  
  .form-group label {
    font-size: 0.95rem;
  }
  
  .form-control,
  .form-select {
    font-size: 0.95rem;
  }
  
  .map-container {
    height: 250px;
  }
}
