.elementor-2109 .elementor-element.elementor-element-308242d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-c50a99c *//* ============================================================
   アクセスページ — カスタムCSS
   貼り付け先: 固定ページ > カスタムCSS
   ============================================================ */

/* ======= CSS変数（global.cssと共通） ======= */
:root {
  --main:       #057bc0;
  --sub:        #fbee2e;
  --dark:       #1a1a1a;
  --cta:        #06C755;
  --main-light: #e8f4fb;
  --navy:       #0a1a2e;
}

/* ======= ローディング ======= */
#loading {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--main);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s ease;
}
#loading.flash { background: #fff; transition: background .15s ease; }
#loading.hidden { opacity: 0; pointer-events: none; }
.loading-logo {
  width: 160px; height: 60px;
  display: flex; align-items: center; justify-content: center;
}
.loading-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ======= セクション共通 ======= */
.section-label {
  font-size: 13px; font-weight: 700; letter-spacing: .25em;
  color: var(--main); text-align: center; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(26px, 4vw, 44px); font-weight: 900;
  text-align: center; line-height: 1.3; margin-bottom: 60px;
}
.section-title .blue { color: var(--main); }

/* ======= 共通ボタン ======= */
.anchor-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border: 2px solid var(--main); border-radius: 50px;
  color: var(--main); background: #fff; text-decoration: none;
  font-size: 15px; font-weight: 700; letter-spacing: .04em;
  transition: background .2s, color .2s, transform .2s;
}
.anchor-btn:hover { background: var(--main); color: #fff; transform: translateY(-2px); }
.anchor-btn.filled { background: var(--main); color: #fff; border-color: var(--main); }
.anchor-btn.filled:hover { opacity: .88; }

.filled-btn {
  display: inline-block; padding: 14px 48px;
  background: var(--main); color: #fff; border-radius: 50px; text-decoration: none;
  font-size: 15px; font-weight: 700; letter-spacing: .06em;
  transition: opacity .2s, transform .2s;
}
.filled-btn:hover { opacity: .88; transform: translateY(-2px); }

/* ======= LINE アイコン ======= */
.line-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ======= ヘッダー ======= */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,.08);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 70px;
}
.header-logo { display: flex; align-items: center; text-decoration: none; }
.header-logo img { height: 38px; }
.header-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--cta); color: #fff; text-decoration: none;
  padding: 11px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 700; letter-spacing: .06em;
  transition: opacity .2s, transform .2s;
}
.header-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ======= ヒーロー ======= */
.hero {
  position: relative;
  margin-top: 70px;
  height: clamp(320px, 50vw, 480px);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-color: #ccc;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,123,192,.85) 0%, rgba(10,26,46,.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: #fff;
}
.hero-sub {
  font-size: clamp(11px, 1.6vw, 14px);
  font-weight: 700; letter-spacing: .3em;
  margin-bottom: 16px;
  opacity: .85;
}
.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900; letter-spacing: .08em;
}
.hero-shape {
  position: absolute; bottom: -1px; left: 0; width: 100%;
  line-height: 0;
}
.hero-shape svg { display: block; width: 100%; height: auto; }

/* ======= 校舎選択 ======= */
.campus-select {
  padding: 60px 20px 0;
  text-align: center;
}
.campus-btns {
  display: flex; justify-content: center; gap: 20px;
  flex-wrap: wrap;
}
.campus-btn {
  display: inline-block; padding: 16px 48px;
  background: var(--main); color: #fff; border-radius: 50px;
  text-decoration: none; font-size: 16px; font-weight: 700;
  letter-spacing: .06em;
  transition: opacity .2s, transform .2s;
  min-width: 220px; text-align: center;
}
.campus-btn:hover { opacity: .88; transform: translateY(-2px); }

/* ======= 校舎セクション ======= */
.campus-section {
  padding: 80px 20px;
  max-width: 900px; margin: 0 auto;
}
.campus-section .section-title { margin-bottom: 40px; }

.campus-img {
  width: 100%; border-radius: 16px;
  overflow: hidden; margin-bottom: 28px;
  background: #e0e0e0;
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  color: #999; font-size: 14px;
}
.campus-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.map-btn-wrap { text-align: center; margin-bottom: 36px; }
.map-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  background: var(--main); color: #fff; border-radius: 50px;
  text-decoration: none; font-size: 15px; font-weight: 700;
  letter-spacing: .04em;
  transition: opacity .2s, transform .2s;
}
.map-btn:hover { opacity: .88; transform: translateY(-2px); }
.map-btn svg { flex-shrink: 0; }

/* 情報テーブル */
.info-table {
  width: 100%; border-collapse: collapse;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  font-size: 15px;
}
.info-table th {
  background: var(--main) !important; color: #fff !important;
  padding: 16px 20px; font-weight: 700;
  text-align: center; white-space: nowrap;
  width: 120px; vertical-align: middle;
  border-right: 1px solid rgba(255,255,255,.2);
}
.info-table td {
  background: #fff !important; color: var(--dark) !important;
  padding: 16px 20px; line-height: 1.8;
  vertical-align: middle;
}
.info-table tr + tr th,
.info-table tr + tr td {
  border-top: 1px solid #eee;
}

/* セパレーター */
.section-divider {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, #ddd, transparent);
  margin: 0 auto; max-width: 600px;
}

/* ======= CTAカード ======= */
.cta-card-section {
  padding: 40px 20px 100px;
}
.cta-card {
  max-width: 700px; margin: 0 auto;
  background: linear-gradient(135deg, #0a1a2e 0%, #0d2a4a 50%, #0a1a2e 100%);
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,.18);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}
.cta-tag {
  display: inline-block;
  background: var(--cta); color: #fff;
  padding: 6px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 24px;
}
.cta-card-title {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 900; line-height: 1.5;
  margin-bottom: 20px;
}
.cta-card-title .green { color: var(--cta); }
.cta-card-text {
  font-size: 14px; line-height: 2;
  color: rgba(255,255,255,.7); margin-bottom: 32px;
}
.cta-line-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cta); color: #fff; text-decoration: none;
  padding: 16px 40px; border-radius: 50px;
  font-size: 16px; font-weight: 700; letter-spacing: .06em;
  transition: opacity .2s, transform .2s;
}
.cta-line-btn:hover { opacity: .9; transform: translateY(-2px); }
.cta-line-btn svg { flex-shrink: 0; }

/* ======= フッター ======= */
#footer { background: var(--navy); color: #fff; padding: 70px 40px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr auto; gap: 60px;
  margin-bottom: 50px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-left { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 20px; letter-spacing: .06em; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contacts a {
  font-size: 13px; color: rgba(255,255,255,.7); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: color .2s;
}
.footer-contacts a:hover { color: var(--sub); }
.footer-nav { display: grid; grid-template-columns: repeat(3, auto); gap: 40px; }
.footer-nav-group h4 {
  font-size: 12px; letter-spacing: .2em; color: var(--sub); font-weight: 700;
  margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 2px solid var(--sub); display: inline-block;
}
.footer-nav-group ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav-group ul li a { font-size: 13px; color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.footer-nav-group ul li a:hover { color: #fff; }
.footer-bottom { text-align: center; font-size: 12px; color: rgba(255,255,255,.35); padding-top: 20px; }

/* ======= スティッキーフッター ======= */
#sticky-footer {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 28px; box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  gap: 16px;
}
.sf-msg { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); letter-spacing: .04em; flex: 1; }
.sf-msg .hl { color: var(--sub); font-weight: 900; }
.sticky-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--cta); color: #fff; text-decoration: none;
  padding: 10px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 700; letter-spacing: .06em;
  transition: opacity .2s, transform .2s; white-space: nowrap; flex-shrink: 0;
}
.sticky-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ======= スクロールアニメーション ======= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; }
.anim.visible { animation: fadeUp .6s ease forwards; }

/* ======= レスポンシブ ======= */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(2, auto); gap: 24px; }
}

@media (max-width: 768px) {
  #site-header { padding: 0 16px; height: 60px; }
  .hero { margin-top: 60px; height: 70vh; }
  .campus-select { padding: 48px 16px 0; }
  .campus-btns { gap: 12px; }
  .campus-btn { padding: 14px 32px; font-size: 14px; min-width: 180px; }
  .campus-section { padding: 56px 16px; }
  .info-table th,
  .info-table td { padding: 14px 16px; font-size: 14px; }
  .info-table th { width: 90px; }
  .cta-card { padding: 36px 24px; }
  .cta-line-btn { padding: 14px 28px; font-size: 14px; }

  #sticky-footer { padding: 10px 16px; flex-wrap: nowrap; gap: 10px; }
  .sf-msg { font-size: 12px; white-space: nowrap; }
  .sticky-cta { padding: 9px 14px; font-size: 12px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { grid-template-columns: repeat(2, auto); gap: 20px; }
  #footer { padding: 50px 20px 30px; }
}

@media (max-width: 480px) {
  .campus-btns { flex-direction: column; align-items: center; }
  .campus-btn { width: 100%; max-width: 280px; }
  .info-table { font-size: 13px; }
  .info-table th { width: 80px; padding: 12px; }
  .info-table td { padding: 12px; }

  .footer-nav { grid-template-columns: 1fr; }
  .sf-msg .hide-sp { display: none; }
  #sticky-footer { padding: 9px 12px; }
  .sf-msg { font-size: 11px; }
  .sticky-cta { font-size: 11px; padding: 8px 12px; }
}/* End custom CSS */