/* ========================================
   下層ページ共通スタイル
   ======================================== */

/* ページヒーロー */
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-hero-content::before {
  content: '';
  position: absolute;
  inset: -100px;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.page-hero-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  opacity: 0.8;
  margin-bottom: 12px;
}

.page-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: 0.15em;
}

/* パンくずリスト */
.breadcrumb {
  background: #f9f7f4;
  padding: 12px 0;
  border-bottom: 1px solid #e8e4de;
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  list-style: none;
  font-size: 12px;
  color: #888;
}

.breadcrumb li:not(:last-child)::after {
  content: '>';
  margin-left: 8px;
  color: #ccc;
}

.breadcrumb a {
  color: #666;
}

.breadcrumb a:hover {
  color: #8b7355;
}

/* グレー背景セクション */
.section-gray {
  background: #f9f7f4;
}

/* ========================================
   メッセージセクション
   ======================================== */
.message-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.message-image {
  flex: 0 0 280px;
}

.message-img {
  width: 280px;
  height: 360px;
  border-radius: 4px;
}

.message-text {
  flex: 1;
}

.message-catch {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.message-text p {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 16px;
}

.message-name {
  margin-top: 32px;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}

.name-large {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* ========================================
   役員紹介
   ======================================== */
.officers-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.officer-card {
  text-align: center;
  width: 240px;
}

.officer-img {
  width: 240px;
  height: 300px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.officer-info {
  text-align: center;
}

.officer-position {
  font-size: 12px;
  color: #8b7355;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.officer-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.officer-name-en {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.05em;
}

/* ========================================
   アクセス
   ======================================== */
.access-content {
  max-width: 800px;
  margin: 0 auto;
}

.access-map {
  margin-bottom: 24px;
}

.access-info {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.access-info strong {
  color: #1a1a1a;
}

/* ========================================
   お問い合わせフォーム
   ======================================== */
.contact-intro {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.contact-intro p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.required-note {
  margin-top: 12px;
  font-size: 13px;
  color: #888;
}

.required {
  color: #c0392b;
  font-weight: 500;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: #fff;
  transition: border-color 0.3s ease;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23888' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b7355;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.form-privacy {
  text-align: center;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #8b7355;
}

.checkbox-label a {
  color: #8b7355;
  text-decoration: underline;
}

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

.btn-submit {
  border: none;
  cursor: pointer;
  font-family: inherit;
  min-width: 240px;
}

/* ========================================
   プライバシーポリシー
   ======================================== */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-intro {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 48px;
}

.policy-section {
  margin-bottom: 36px;
}

.policy-section h3 {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8e4de;
}

.policy-section p {
  font-size: 14px;
  line-height: 2;
  color: #555;
}

.policy-section ul {
  margin-top: 12px;
  padding-left: 20px;
}

.policy-section li {
  font-size: 14px;
  line-height: 2;
  color: #555;
  list-style: disc;
}

.policy-date {
  margin-top: 48px;
  font-size: 14px;
  color: #888;
  text-align: right;
}

/* ========================================
   レスポンシブ（下層ページ）
   ======================================== */
@media (max-width: 768px) {
  .page-hero {
    height: 220px;
  }

  .message-content {
    flex-direction: column;
    gap: 32px;
  }

  .message-image {
    flex: none;
    text-align: center;
  }

  .message-img {
    width: 200px;
    height: 260px;
    margin: 0 auto;
  }

  .message-catch {
    font-size: 18px;
  }

  .officers-grid {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .contact-intro {
    text-align: left;
  }
}
