:root {
  --bg-dark: #05070b;
  --bg-section: #0c1018;
  --accent: #e0b100;
  --accent-soft: #c0c0c0;
  --text-main: #f5f5f5;
  --text-sub: #a0a7b5;
  --danger: #ff4242;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  background: radial-gradient(circle at top left, #202538 0, #05070b 55%);
  color: var(--text-main);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(5, 7, 11, 0.9);
  border-bottom: 1px solid rgba(160, 167, 181, 0.15);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: conic-gradient(from 220deg, #e0b100, #70788a, #e0b100);
  box-shadow: 0 0 18px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 5px;
  border: 1px solid rgba(5,7,11,0.9);
  box-shadow: inset 0 0 8px rgba(0,0,0,0.8);
}

.logo-text-main {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.logo-text-sub {
  font-size: 0.7rem;
  color: var(--text-sub);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  font-size: 0.9rem;
}

nav a {
  position: relative;
  color: var(--text-sub);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--danger));
  transition: width 0.2s ease-out;
}

nav a:hover {
  color: var(--text-main);
}

nav a:hover::after {
  width: 100%;
}

.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.2rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% -40%;
  background:
    radial-gradient(circle at 0 0, rgba(224,177,0,0.20), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(255,66,66,0.16), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.8rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent-soft);
  margin-bottom: 0.9rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--accent);
}

.hero-copy {
  color: var(--text-sub);
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.hero-meta-block {
  border-left: 2px solid rgba(224,177,0,0.6);
  padding-left: 0.9rem;
}

.hero-meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 0.2rem;
}

.hero-meta-value {
  font-size: 0.98rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffdf5e);
  color: #181818;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border: 1px solid rgba(230,210,110,0.9);
  white-space: nowrap;
}

.btn-primary span.icon {
  font-size: 1.15rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(160,167,181,0.6);
  color: var(--text-sub);
  background: rgba(7,10,16,0.75);
  font-size: 0.9rem;
}

.btn-secondary span.icon {
  font-size: 1.1rem;
}

.hero-right {
  position: relative;
}

.hero-card {
  background: radial-gradient(circle at top, #191f2c 0, #06070a 55%);
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(160,167,181,0.16);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.7),
    0 0 0 1px rgba(0,0,0,0.5);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.hero-card-title {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.hero-card-chip {
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(224,177,0,0.7);
  color: var(--accent);
  background: rgba(224,177,0,0.06);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.stat {
  background: rgba(9,12,20,0.9);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(110,120,140,0.3);
  min-height: 70px;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-sub);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.1rem;
}

.stat-note {
  font-size: 0.7rem;
  color: var(--text-sub);
  margin-top: 0.15rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
  font-size: 0.7rem;
}

.badge {
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  background: rgba(30, 180, 130, 0.12);
  border: 1px solid rgba(30, 180, 130, 0.6);
  color: #8be2b7;
}

.badge-danger {
  background: rgba(255,66,66,0.1);
  border-color: rgba(255,66,66,0.7);
  color: #ff9a9a;
}

section {
  padding: 3.2rem 1.2rem;
  background: var(--bg-section);
  border-top: 1px solid rgba(160,167,181,0.08);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.section-lead {
  font-size: 0.96rem;
  color: var(--text-sub);
  max-width: 40rem;
  margin-bottom: 1.7rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.list-check {
  list-style: none;
  font-size: 0.92rem;
  color: var(--text-main);
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.list-check span.icon {
  color: #26d38b;
  margin-top: 0.15rem;
}

.pill {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(160,167,181,0.5);
  color: var(--text-sub);
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.card {
  padding: 1.1rem 1rem;
  border-radius: 14px;
  background: radial-gradient(circle at top, #181c26 0, #05070b 60%);
  border: 1px solid rgba(160,167,181,0.18);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  font-size: 0.9rem;
}

.card-title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(224,177,0,0.7);
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.card-body {
  font-size: 0.88rem;
  color: var(--text-sub);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.info-table th,
.info-table td {
  border-bottom: 1px solid rgba(160,167,181,0.25);
  padding: 0.55rem 0.4rem;
  text-align: left;
}

.info-table th {
  width: 5.5rem;
  color: var(--text-sub);
  font-weight: 500;
  white-space: nowrap;
}

.info-table td strong {
  color: var(--accent);
  font-weight: 600;
}

.tel-link {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.notice {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--text-sub);
}

footer {
  background: #040509;
  border-top: 1px solid rgba(160,167,181,0.35);
  padding: 1.6rem 1.2rem 1.8rem;
  font-size: 0.8rem;
  color: var(--text-sub);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-logo {
  font-size: 1rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.3rem;
}

.footer-contact {
  text-align: right;
  font-size: 0.8rem;
}

.footer-contact div {
  margin-bottom: 0.1rem;
}

.footer-contact .tel-link {
  font-size: 0.9rem;
}

.copyright {
  text-align: right;
  font-size: 0.75rem;
  margin-top: 0.4rem;
  color: rgba(160,167,181,0.7);
}

/* レスポンシブ */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 640px) {
  nav ul {
    display: none;
  }

  .hero {
    padding-top: 2.4rem;
  }

  section {
    padding: 2.5rem 1.1rem;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    margin-top: 0.8rem;
  }

  .nav-inner {
    padding-inline: 1rem;
  }
}

/* ACCESS セクション用レイアウト */
.access-layout {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;   /* 高さをそろえる */
  margin-top: 1.5rem;
}

.access-left,
.access-right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

/* 地図の縦横比固定＋角丸・影 */
.map-embed {
  position: relative;
  width: 100%;
  flex: 1 1 auto;              /* 右カラムいっぱいに広がる */
  padding-top: 62%;            /* 高さ調整：左の文章量に合わせてここを増減 */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* notice を下寄せにしたい場合 */
.access-right .notice {
  margin-top: 0.8rem;
}

/* スマホでは縦並び */
@media (max-width: 900px) {
  .access-layout {
    flex-direction: column;
  }

  .map-embed {
    padding-top: 56.25%;  /* モバイルでは一般的な16:9 */
  }
}
