/* ===== page-lecture.css — 講習・セミナーのご依頼 ===== */

.lecture-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(rgba(26,26,26,0.55), rgba(26,26,26,0.55)),
              url('/images/ibuki.jpg') 70% 30% / cover no-repeat;
  color: #fff;
}
.lecture-hero .inner { max-width: 760px; }
.lecture-hero .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.22em;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 18px;
}
.lecture-hero h1 {
  font-size: clamp(26px, 4.4vw, 42px);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
}
.lecture-hero p {
  font-size: 15px;
  font-weight: 300;
  opacity: 0.95;
}

.lecture-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 24px;
}
.lecture-section h2 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.lecture-section h2 + .lead {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 28px;
}
.lecture-section.alt { background: var(--cream-warm); max-width: none; }
.lecture-section.alt > .inner { max-width: 900px; margin: 0 auto; }

/* プロフィール */
.profile {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
.profile img { width: 100%; aspect-ratio: 515 / 700; object-fit: cover; border-radius: 6px; display: block; }
.profile .name { font-size: 20px; margin-bottom: 4px; }
.profile .name span { font-size: 13px; color: var(--text-secondary); margin-left: 10px; }
.profile .role { font-size: 13px; color: var(--accent-dark); margin-bottom: 16px; }
.profile ul { list-style: none; }
.profile li {
  font-size: 14px;
  padding: 7px 0 7px 18px;
  border-bottom: 1px solid var(--sand);
  position: relative;
}
.profile li::before {
  content: '';
  position: absolute;
  left: 0; top: 17px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
}

/* 講習メニュー */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.menu-card {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 24px;
}
.menu-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.menu-card p { font-size: 13.5px; color: var(--text-secondary); }
.menu-card .meta {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-light);
}

/* 開催形式 */
.info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.info-table th, .info-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--sand);
  vertical-align: top;
}
.info-table th { width: 150px; font-weight: 500; color: var(--text-secondary); }

/* 写真 */
.photo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.photo-row figure { margin: 0; }
.photo-row img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 6px; display: block; }
.photo-row figcaption {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
}

/* フォーム */
.form-wrap {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 32px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}
.req {
  display: inline-block;
  font-size: 11px;
  background: var(--accent);
  color: #fff;
  border-radius: 3px;
  padding: 1px 6px;
  margin-left: 8px;
  font-weight: 400;
}
.opt {
  display: inline-block;
  font-size: 11px;
  background: var(--sand);
  color: var(--text-secondary);
  border-radius: 3px;
  padding: 1px 6px;
  margin-left: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 12px 14px;
}
.form-row textarea { min-height: 160px; resize: vertical; line-height: 1.8; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  background: #fff;
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 12px; color: var(--text-light); margin-bottom: 20px; }
.form-submit {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--charcoal);
  border: none;
  border-radius: 4px;
  padding: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.form-submit:hover:not(:disabled) { background: var(--accent-dark); }
.form-submit:disabled { opacity: 0.5; cursor: default; }
.form-msg {
  margin-top: 18px;
  font-size: 14px;
  padding: 14px 16px;
  border-radius: 4px;
  display: none;
}
.form-msg.ok { display: block; background: #eef4ee; color: #35603b; }
.form-msg.ng { display: block; background: #f7eeee; color: #8a3b3b; }

@media (max-width: 680px) {
  .profile { grid-template-columns: 1fr; }
  .profile img { max-width: 260px; margin: 0 auto; }
  .lecture-section { padding: 48px 20px; }
  .form-wrap { padding: 24px 18px; }
  .info-table th { width: 110px; }
}
