/* ============================================================
   グリーン・リンク株式会社 公式サイト - style.css
   作成日: 2026-05-07
   ============================================================ */

/* ---- CSS変数 ---- */
:root {
  --forest-green: #1E4D2B;
  --mid-green:    #5A8A3C;
  --light-green:  #A8D08D;
  --gold:         #B8952A;
  --gold-light:   #D4AA4A;
  --off-white:    #F8F8F4;
  --charcoal:     #333333;
  --white:        #FFFFFF;
  --dark:         #111111;
  --border:       #DDD;
  --grad: linear-gradient(180deg,
    #1E4D2B 0%,
    #2A6535 25%,
    #3D7D3F 50%,
    #5A9A3A 75%,
    #7BBF35 100%
  );
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --radius: 6px;
  --max-w: 1100px;
  --section-pad: 64px 20px;
}

/* ---- リセット・ベース ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---- レイアウト共通 ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: var(--section-pad); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

/* ---- セクションタイトル共通 ---- */
.section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 8px;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-top: 8px;
}
.section-lead {
  color: #555;
  margin-bottom: 36px;
  max-width: 700px;
}

/* ========================================
   ヘッダー
   ======================================== */
.site-header {
  background: var(--forest-green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* ロゴ */
.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
}
.header-logo-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .05em;
}
.header-logo-sub {
  font-size: .68rem;
  color: var(--gold);
  letter-spacing: .18em;
  font-style: italic;
  margin-top: 1px;
}

/* グローバルナビ */
.global-nav { display: flex; gap: 24px; align-items: center; }
.global-nav a {
  color: rgba(255,255,255,.88);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color .2s;
  white-space: nowrap;
}
.global-nav a:hover { color: var(--gold); }
.global-nav a.active { color: var(--white); border-bottom: 2px solid var(--gold); }

/* ハンバーガー（SP） */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   ヒーローセクション
   ======================================== */
.hero {
  background: var(--grad);
  padding: 72px 20px 64px;
  text-align: center;
  color: var(--white);
}
.hero-label {
  font-size: .78rem;
  letter-spacing: .2em;
  opacity: .7;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: clamp(.9rem, 1.8vw, 1.1rem);
  opacity: .85;
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   ボタン
   ======================================== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  letter-spacing: .04em;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-white {
  background: var(--white);
  color: var(--forest-green);
}
.btn-dark {
  background: rgba(0,0,0,.5);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}
.btn-outline-green {
  background: transparent;
  color: var(--forest-green);
  border: 2px solid var(--forest-green);
}
.btn-outline-green:hover { background: var(--forest-green); color: var(--white); }

.btn-line {
  background: #06C755;
  color: var(--white);
}

/* ========================================
   CTAバー（グラデーション背景）
   ======================================== */
.cta-bar {
  background: var(--grad);
  padding: 40px 20px;
  text-align: center;
  color: var(--white);
}
.cta-bar h2 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 8px;
}
.cta-bar p {
  font-size: .9rem;
  opacity: .85;
  margin-bottom: 24px;
}
.cta-bar-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   カード共通
   ======================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 8px;
}
.card-body { font-size: .88rem; color: #555; line-height: 1.75; }
.card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--mid-green);
  border-bottom: 1px solid var(--mid-green);
}

/* ========================================
   ステップフロー
   ======================================== */
.steps {
  display: flex;
  gap: 0;
  margin-top: 32px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 130px;
  text-align: center;
  position: relative;
  padding: 20px 10px;
}
.step::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
}
.step:last-child::after { display: none; }
.step-num {
  width: 36px;
  height: 36px;
  background: var(--forest-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  margin: 0 auto 10px;
}
.step-label { font-size: .82rem; color: var(--charcoal); line-height: 1.5; }

/* ========================================
   お悩みグリッド
   ======================================== */
.worries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.worry-item {
  background: #F0F5F0;
  border-left: 4px solid var(--mid-green);
  padding: 12px 14px;
  font-size: .88rem;
  color: var(--charcoal);
  line-height: 1.65;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ========================================
   テーブル
   ======================================== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: .9rem;
}
.info-table th,
.info-table td {
  padding: 11px 14px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.info-table th {
  background: #F0F5F0;
  color: var(--forest-green);
  font-weight: 700;
  width: 36%;
  white-space: nowrap;
}

/* ========================================
   Mission / Vision / Value
   ======================================== */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.mvv-card {
  border-left: 4px solid var(--mid-green);
  background: var(--off-white);
  padding: 20px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.mvv-label {
  font-size: .72rem;
  color: var(--mid-green);
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 6px;
}
.mvv-text { font-size: .88rem; color: var(--charcoal); line-height: 1.7; }

/* ========================================
   代表挨拶
   ======================================== */
.president-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-top: 16px;
}
.president-photo {
  width: 160px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.president-photo img { width: 100%; }
.president-text { font-size: .92rem; color: #444; line-height: 2; }
.president-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 14px;
}

/* ========================================
   スケジュール
   ======================================== */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
}
.schedule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid #EEE;
  font-size: .88rem;
}
.schedule-date {
  background: var(--forest-green);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 3px;
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.schedule-status {
  font-size: .75rem;
  color: var(--mid-green);
  font-weight: 700;
  margin-left: auto;
}
.schedule-status.status-closed {
  color: #999;
  font-weight: 400;
}

/* ========================================
   FAQ
   ======================================== */
.faq-list { margin-top: 24px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 40px 16px 0;
  text-align: left;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--forest-green);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-q::before {
  content: 'Q';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--mid-green);
  transition: transform .3s;
}
.faq-item.open .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 0 16px 24px;
  font-size: .9rem;
  color: #555;
  line-height: 1.8;
  border-left: 3px solid var(--light-green);
  margin-left: 0;
}
.faq-a::before { content: 'A　'; font-weight: 700; color: var(--mid-green); }
.faq-item.open .faq-a { display: block; }

/* ========================================
   お問い合わせ方法
   ======================================== */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.contact-method {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.contact-method-icon { font-size: 2.2rem; margin-bottom: 10px; }
.contact-method-label {
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 8px;
  font-size: 1rem;
}
.contact-phone {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-green);
  margin: 8px 0;
  letter-spacing: .04em;
}
.contact-note { font-size: .82rem; color: #777; }
.qr-placeholder {
  width: 90px;
  height: 90px;
  background: #EEE;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
  font-size: .7rem;
  color: #999;
}
.qr-placeholder img { width: 90px; height: 90px; border-radius: 4px; }

/* ========================================
   Google Formsプレースホルダー
   ======================================== */
.form-embed {
  background: #F5F5F5;
  border: 2px dashed #CCC;
  border-radius: var(--radius);
  padding: 48px 20px;
  text-align: center;
  color: #999;
  margin-top: 16px;
  font-size: .9rem;
}
.form-embed iframe {
  width: 100%;
  min-height: 600px;
  border: none;
}

/* ========================================
   お問い合わせフォーム（Web3Forms）
   ======================================== */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 6px;
}
.form-label .required {
  color: #C0392B;
  font-size: .75rem;
  margin-left: 6px;
  font-weight: 700;
}
.form-label .optional {
  color: #888;
  font-size: .75rem;
  margin-left: 6px;
  font-weight: 400;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: .9rem;
  color: var(--charcoal);
  background: #FAFAFA;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--mid-green);
  box-shadow: 0 0 0 3px rgba(90,138,60,.12);
  background: #fff;
}
.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
  background: #FDF8F8;
}
.form-field-error {
  display: none;
  font-size: .78rem;
  color: #C0392B;
  margin-top: 4px;
  padding-left: 2px;
}
.form-field-error.visible { display: block; }
.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.7;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A8A3C' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 4px;
}
.form-radio-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .9rem;
  color: var(--charcoal);
  cursor: pointer;
}
.form-radio-label input[type="radio"] {
  accent-color: var(--mid-green);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--forest-green);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .15s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--mid-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.form-submit:active { transform: translateY(0); }
.form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* 送信結果メッセージ */
.form-message {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 700;
  margin-top: 16px;
  text-align: center;
}
.form-message.success {
  background: #EAF6EC;
  border: 1px solid #5A9A3A;
  color: #2A6535;
}
.form-message.error {
  background: #FDF2F2;
  border: 1px solid #E74C3C;
  color: #C0392B;
}

/* ========================================
   セミナー告知バナー（トップページ）
   ======================================== */
.seminar-banner {
  background: var(--forest-green);
  color: var(--white);
  padding: 48px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.seminar-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.seminar-banner-inner { position: relative; }
.seminar-banner-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: .08em;
}
.seminar-banner h2 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 12px;
}
.seminar-banner p {
  opacity: .85;
  margin-bottom: 24px;
  line-height: 1.9;
  font-size: .92rem;
}
.seminar-next {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  padding: 8px 20px;
  font-size: .85rem;
  margin-bottom: 24px;
}
.seminar-next strong { color: var(--gold); }

/* ========================================
   選ばれる理由
   ======================================== */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.reason {
  padding: 28px 24px;
  border-top: 3px solid var(--gold);
  background: var(--off-white);
  border-radius: 0 0 var(--radius) var(--radius);
}
.reason-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--light-green);
  line-height: 1;
  margin-bottom: 8px;
}
.reason-title {
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 8px;
  font-size: 1rem;
}
.reason-body { font-size: .88rem; color: #555; line-height: 1.7; }

/* ========================================
   フッター
   ======================================== */
.site-footer {
  background: var(--dark);
  padding: 16px 20px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}
.footer-logo-mark img { width: 38px; height: 38px; object-fit: contain; }
.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #AAA;
  font-size: .8rem;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: .75rem; color: #555; }

/* ========================================
   ページヒーロー（下層ページ共通）
   ======================================== */
.page-hero {
  background: var(--grad);
  padding: 52px 20px 44px;
  text-align: center;
  color: var(--white);
}
.page-hero-label {
  font-size: .75rem;
  letter-spacing: .2em;
  opacity: .7;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.page-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.page-hero-sub {
  font-size: .9rem;
  opacity: .82;
  letter-spacing: .05em;
}

/* ========================================
   会社スナップ（トップページ）
   ======================================== */
.about-snap {
  padding: var(--section-pad);
  background: var(--off-white);
}
.about-snap-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
}
.about-snap-photo {
  width: 220px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-snap-photo img { width: 100%; border-radius: var(--radius); }
.about-snap-text p {
  font-size: .92rem;
  color: #444;
  line-height: 2;
  margin-bottom: 20px;
}
.about-snap-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 20px;
}

/* ========================================
   注記ボックス
   ======================================== */
.note-box {
  background: #FFFBF0;
  border: 1px solid #E8D87A;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: .85rem;
  color: #7A6500;
  margin-top: 16px;
}

/* ========================================
   ライモBiz 資料請求フォームボックス
   ======================================== */
.reskilling-form-box {
  background: var(--off-white);
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  padding: 32px;
  margin-top: 32px;
}
.reskilling-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 8px;
}
.reskilling-form-lead {
  font-size: .92rem;
  color: #555;
  margin-bottom: 24px;
}
.reskilling-form-box .form-submit {
  max-width: 320px;
}

/* ========================================
   セミナーページ：会場アクセス
   ======================================== */
.access-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 16px;
}
.access-box h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 10px;
}
.access-box p { font-size: .88rem; color: #555; line-height: 1.8; }

/* ========================================
   スパム対策：ハニーポット非表示（display:noneは不可）
   ======================================== */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  overflow: hidden;
  height: 1px;
  width: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ========================================
   送信中オーバーレイ
   ======================================== */
.form-sending-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.form-sending-overlay.active {
  display: flex;
}
.form-sending-spinner {
  width: 52px;
  height: 52px;
  border: 5px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: rs-spin 0.8s linear infinite;
}
@keyframes rs-spin {
  to { transform: rotate(360deg); }
}
.form-sending-text {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.7;
}
.form-sending-text small {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.85;
}

/* ========================================
   レスポンシブ
   ======================================== */

/* タブレット (768px) */
@media (max-width: 768px) {
  :root { --section-pad: 48px 16px; }

  .global-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--forest-green);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
  }
  .global-nav.open { display: flex; }
  .global-nav a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    width: 100%;
  }
  .global-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }

  .worries { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .president-row { flex-direction: column; align-items: center; }
  .about-snap-inner { flex-direction: column; text-align: center; }
  .about-snap-photo { width: 180px; }
  .steps { flex-direction: column; align-items: center; }
  .step::after { display: none; }
}

/* スマホ (375px) */
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-bar-btns { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-nav { gap: 10px; }
  .info-table th { width: 40%; font-size: .8rem; }
  .info-table td { font-size: .82rem; }
}

/* アニメーション */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp .6s ease both;
}
.fade-up-delay-1 { animation-delay: .1s; }
.fade-up-delay-2 { animation-delay: .2s; }
.fade-up-delay-3 { animation-delay: .3s; }
