/* 株式会社スカイライトインターナショナル 共通スタイル */
:root {
  --navy: #1b2a4a;
  --navy-light: #2c3e63;
  --accent: #c9a253;
  --ink: #2b2b2b;
  --gray: #6b7280;
  --bg-light: #f5f6f8;
  --white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light; }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.9;
  font-size: 16px;
}
section { background: var(--white); }
img { max-width: 100%; }
a { color: var(--navy); }

/* ヘッダー */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid #e5e7eb;
}
.header-inner {
  max-width: 1100px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.brand { font-weight: 700; font-size: 1.05rem; color: var(--navy); text-decoration: none; letter-spacing: .05em; }
nav.global ul { display: flex; gap: 4px; list-style: none; flex-wrap: wrap; }
nav.global a {
  display: block; padding: 6px 12px; text-decoration: none;
  font-size: .9rem; font-weight: 500; color: var(--ink); border-radius: 6px;
  white-space: nowrap;
}
nav.global a:hover, nav.global a.current { background: var(--bg-light); color: var(--navy); }

/* ヒーロー */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, #3d5380 100%);
  color: var(--white);
  padding: 90px 20px 100px;
}
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero .en {
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem; letter-spacing: .35em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(1.5rem, 4vw, 2.4rem); font-weight: 700; letter-spacing: .08em; line-height: 1.6; }
.hero p.lead { margin-top: 22px; max-width: 640px; font-size: 1rem; opacity: .92; }
.hero .cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 13px 30px; border-radius: 8px;
  text-decoration: none; font-weight: 700; font-size: .95rem;
  transition: opacity .2s;
}
.btn:hover { opacity: .85; }
.btn-gold { background: var(--accent); color: var(--navy); }
.btn-ghost { border: 1px solid rgba(255,255,255,.6); color: var(--white); }

/* セクション共通 */
section { padding: 76px 20px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: Georgia, serif; letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent); font-size: .85rem; margin-bottom: 10px;
}
h2.section-title { font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--navy); letter-spacing: .06em; margin-bottom: 34px; }
.alt { background: var(--bg-light); }

/* カード */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.card {
  background: var(--white); border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 26px 24px;
}
.card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); display: inline-block; }
.card p { font-size: .93rem; color: var(--ink); }

/* 数字ハイライト */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; text-align: center; }
.stat { background: var(--white); border-radius: 12px; padding: 30px 20px; border: 1px solid #e5e7eb; }
.stat .num { font-size: 1.7rem; font-weight: 700; color: var(--navy); }
.stat .num small { font-size: 1rem; }
.stat .label { color: var(--gray); font-size: .88rem; margin-top: 6px; }

/* テーブル */
table.company { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
table.company th, table.company td { padding: 15px 18px; text-align: left; font-size: .95rem; border-bottom: 1px solid #eceff3; }
table.company th { width: 170px; background: var(--bg-light); color: var(--navy); font-weight: 700; white-space: nowrap; }
table.company tr:last-child th, table.company tr:last-child td { border-bottom: none; }

/* 代表挨拶 */
.message { display: flex; gap: 34px; align-items: flex-start; flex-wrap: wrap; }
.message .body { flex: 1; min-width: 280px; }
.message .sign { margin-top: 18px; font-weight: 700; color: var(--navy); }

/* フロー */
ol.flow { list-style: none; counter-reset: n; max-width: 720px; }
ol.flow li { counter-increment: n; position: relative; padding: 0 0 26px 58px; }
ol.flow li::before {
  content: counter(n, decimal-leading-zero);
  position: absolute; left: 0; top: -2px;
  font-family: Georgia, serif; font-size: 1.35rem; color: var(--accent); font-weight: 700;
}
ol.flow li::after { content: ""; position: absolute; left: 16px; top: 34px; bottom: 6px; width: 1px; background: #d7dbe2; }
ol.flow li:last-child::after { display: none; }
ol.flow strong { color: var(--navy); }
ol.flow p { font-size: .92rem; color: var(--gray); }

/* フォーム */
form.contact { max-width: 640px; }
form.contact label { display: block; font-weight: 700; font-size: .92rem; margin: 20px 0 6px; color: var(--navy); }
form.contact .req { color: #c0392b; font-size: .8rem; margin-left: 6px; }
form.contact input[type=text], form.contact input[type=email], form.contact input[type=tel], form.contact textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #cfd4dc; border-radius: 8px;
  font-size: 1rem; font-family: inherit; background: var(--white);
}
form.contact textarea { min-height: 160px; resize: vertical; }
form.contact input:focus, form.contact textarea:focus { outline: 2px solid var(--navy-light); border-color: var(--navy-light); }
form.contact button {
  margin-top: 28px; padding: 14px 46px; background: var(--navy); color: var(--white);
  font-size: 1rem; font-weight: 700; border: none; border-radius: 8px; cursor: pointer;
}
form.contact button:hover { background: var(--navy-light); }
.hp-field { display: none; }

/* 帯CTA */
.band {
  background: var(--navy); color: var(--white); text-align: center; padding: 60px 20px;
}
.band h2 { font-size: 1.3rem; letter-spacing: .06em; margin-bottom: 14px; }
.band p { opacity: .9; font-size: .95rem; }
.band .btn { margin-top: 24px; }

/* フッター */
footer { background: #14203a; color: #cbd2df; padding: 46px 20px 30px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.footer-inner .name { color: var(--white); font-weight: 700; margin-bottom: 8px; }
.footer-inner p, .footer-inner a, .footer-inner li { font-size: .88rem; color: #cbd2df; }
.footer-inner ul { list-style: none; }
.footer-inner li { margin-bottom: 6px; }
.copyright { text-align: center; margin-top: 34px; font-size: .8rem; color: #8b94a7; }

@media (max-width: 640px) {
  section { padding: 56px 16px; }
  .hero { padding: 64px 16px 70px; }
  .header-inner { justify-content: center; }
}
