/*
Theme Name: つばさ
Template: astra
Author: 株式会社スカイドリーム
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.13.1.1777883061
Updated: 2026-05-04 17:24:21

*/
:root {
  --navy:    #042C53;
  --dark:    #0C447C;
  --main:    #1D5FA8;
  --mid:     #378ADD;
  --light:   #85B7EB;
  --pale:    #B5D4F4;
  --bg:      #E6F1FB;
  --bgsoft:  #F0F7FF;
  --amber:   #FAC775;
  --amber-d: #BA7517;
  --white:   #FFFFFF;
  --text:    #1a2e42;
  --textsub: #3A6080;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ========== HEADER / NAV ========== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(55,138,221,0.15);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 24px rgba(4,44,83,0.12); }

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--dark);
  font-weight: 400;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--mid);
  border-radius: 1px;
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--main); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--main);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--dark) !important; color: var(--white) !important; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--bgsoft) 0%, var(--bg) 50%, #D6EEFA 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero::before {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,138,221,0.12) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  left: -80px; bottom: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,95,168,0.08) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite 2s;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mid);
  color: var(--white);
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-title span { color: var(--main); }

.hero-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--textsub);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

.btn-primary {
  background: var(--main);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-primary:hover { background: var(--dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--main);
  border: 1.5px solid var(--main);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-outline:hover { background: var(--bg); transform: translateY(-1px); }

.hero-img-wrap {
  position: relative;
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--pale) 0%, var(--light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dark);
  box-shadow: 0 20px 60px rgba(4,44,83,0.18);
  overflow: hidden;
  position: relative;
}
.hero-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
}
.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(4,44,83,0.14);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
}
.badge-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== SECTION BASE ========== */
section { padding: 90px 24px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--mid);
  border-radius: 1px;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 14px;
}

.section-lead {
  font-size: 15px;
  line-height: 1.9;
  color: var(--textsub);
  max-width: 640px;
}

/* ========== ABOUT / PILLARS ========== */
.about-section { background: var(--white); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.pillar-card {
  background: var(--bgsoft);
  border: 1px solid rgba(55,138,221,0.18);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(4,44,83,0.12);
}

.pillar-icon {
  width: 52px; height: 52px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  border: 1px solid rgba(55,138,221,0.2);
}

.pillar-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.pillar-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--textsub);
}

/* ========== SERVICE ========== */
.service-section { background: var(--bgsoft); }

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 50px;
}

.service-box {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(55,138,221,0.15);
}

.service-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--textsub);
}

.service-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mid);
  flex-shrink: 0;
  margin-top: 7px;
}

.flow-section {
  margin-top: 50px;
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(55,138,221,0.15);
}

.flow-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.flow-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.flow-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 20px 16px;
  background: var(--bgsoft);
  border-radius: 12px;
  border: 1px solid rgba(55,138,221,0.15);
  position: relative;
}

.flow-step-num {
  width: 28px; height: 28px;
  background: var(--main);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.flow-step h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.flow-step p { font-size: 12px; color: var(--textsub); }

/* ========== GALLERY ========== */
.gallery-section { background: var(--navy); }
.gallery-section .section-eyebrow { color: var(--pale); }
.gallery-section .section-eyebrow::before { background: var(--pale); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-lead { color: var(--pale); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(55,138,221,0.3), rgba(133,183,235,0.2));
  border: 1px solid rgba(181,212,244,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--pale);
  transition: transform 0.25s;
  overflow: hidden;
  position: relative;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item-label {
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  text-align: center;
  font-size: 11px;
  color: var(--pale);
  background: rgba(4,44,83,0.5);
  padding: 4px;
}

.event-strip {
  margin-top: 40px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  border: 1px solid rgba(181,212,244,0.15);
}
.event-strip p {
  font-size: 14px;
  color: var(--pale);
  line-height: 1.9;
}

/* ========== STAFF ========== */
.staff-section { background: var(--white); }

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.staff-card {
  border: 1px solid rgba(55,138,221,0.18);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(4,44,83,0.1);
}

.staff-icon {
  width: 64px; height: 64px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  border: 2px solid var(--pale);
}

.staff-role {
  font-size: 12px;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.staff-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.staff-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--textsub);
}

.staff-quote {
  margin-top: 48px;
  padding: 28px 40px;
  background: var(--bgsoft);
  border-left: 4px solid var(--main);
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--dark);
  font-style: italic;
}

/* ========== VOICES ========== */
.voices-section { background: var(--bgsoft); }

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.voice-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(55,138,221,0.15);
  position: relative;
  transition: transform 0.25s;
}
.voice-card:hover { transform: translateY(-4px); }

.voice-quote-mark {
  font-family: Georgia, serif;
  font-size: 60px;
  color: var(--bg);
  line-height: 1;
  margin-bottom: -10px;
  display: block;
}

.voice-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--textsub);
  margin-bottom: 18px;
}

.voice-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.voice-name::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--mid);
  border-radius: 1px;
}

/* ========== FAQ ========== */
.faq-section { background: var(--white); }

.faq-list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(55,138,221,0.18);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  background: var(--bgsoft);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg); }

.faq-q-badge {
  background: var(--main);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  width: 26px; height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-q-arrow {
  margin-left: auto;
  font-size: 12px;
  color: var(--mid);
  transition: transform 0.25s;
}
.faq-item.open .faq-q-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 24px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--textsub);
  background: var(--white);
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 20px 24px;
}

/* ========== CTA BAND ========== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--main) 60%, var(--mid) 100%);
  padding: 72px 24px;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 15px;
  color: var(--pale);
  margin-bottom: 32px;
  line-height: 1.8;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--main);
  font-size: 15px;
  padding: 15px 36px;
}
.cta-section .btn-primary:hover { background: var(--bg); }

/* ========== RECRUIT ========== */
.recruit-section { background: var(--bgsoft); }

.recruit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.recruit-box {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(55,138,221,0.15);
}

.recruit-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bg);
}

.recruit-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.recruit-box ul li {
  font-size: 13px;
  color: var(--textsub);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}
.recruit-box ul li::before {
  content: '▸';
  color: var(--mid);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 2px;
}

/* ========== ACCESS ========== */
.access-section { background: var(--white); }

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.access-card {
  background: var(--bgsoft);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(55,138,221,0.15);
}

.access-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.access-card p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--textsub);
}

.map-placeholder {
  margin-top: 32px;
  height: 240px;
  background: linear-gradient(160deg, var(--bg), var(--pale));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dark);
  border: 1px solid rgba(55,138,221,0.2);
}

/* ========== CONTACT ========== */
.contact-section { background: var(--bgsoft); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(55,138,221,0.15);
}

.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(55,138,221,0.2);
}

.contact-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-item p { font-size: 13px; color: var(--textsub); line-height: 1.7; }

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(55,138,221,0.15);
}

.contact-form h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(55,138,221,0.3);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  background: var(--bgsoft);
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--mid);
  box-shadow: 0 0 0 3px rgba(55,138,221,0.12);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.required {
  color: var(--mid);
  font-size: 11px;
  margin-left: 4px;
}

/* ========== FOOTER ========== */
footer {
  background: var(--navy);
  color: var(--pale);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(181,212,244,0.15);
}

.footer-logo img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(0.9); }

.footer-desc {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(181,212,244,0.7);
  margin-bottom: 16px;
}

.footer-address {
  font-size: 12px;
  color: rgba(181,212,244,0.5);
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(181,212,244,0.65);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--white); }
.footer-links a::before { content: '›'; color: var(--mid); }

.footer-bottom {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(181,212,244,0.4);
}

.footer-bottom a {
  color: rgba(181,212,244,0.4);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--pale); }

/* ========== SCROLL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { order: -1; }
  .hero-photo { height: 240px; }
  .pillars, .staff-grid, .voices-grid, .recruit-grid { grid-template-columns: 1fr; }
  .service-grid, .contact-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
}/* ========== ASTRA干渉リセット＆reveal修正 ========== */
.ast-container { max-width: 100% !important; }
#page, .site { padding: 0 !important; margin: 0 !important; }
.entry-content, .ast-article-single { padding: 0 !important; margin: 0 !important; }

.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

section {
  padding: 90px 24px !important;
}

#masthead,
.site-header,
.main-header-bar,
.ast-primary-header-bar {
  display: none !important;
}

#colophon,
.site-footer,
.footer-widget-area,
.ast-small-footer {
  display: none !important;
}

#content,
#primary,
.content-area {
  padding: 0 !important;
  margin: 0 !important;
}

body {
  padding-top: 0 !important;
}