/* ============================================================
   土砂災害防止・啓発キャラクターコンテスト LP
   ============================================================ */

/* ---------- リセット・基本 ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.header-logo{
margin-bottom: 0 !important;
}
body{
  background-color: #195276 !important;
}
header:not(#site-header),
footer:not(#site-footer),
.title_wrapper,
.pankuzu_list{
  display: none !important;
}
#site-header{
  height: auto !important;
}
#site-footer{
  background-color: #195276 !important;
}
.body_wrapper{
  max-width: 100% !important;
  padding-bottom: 0 !important;
}
.block_contents{
  width: 100% !important;
  margin: 0 !important;
}
:root {
  --blue:        #2e86c1;
  --blue-dark:   #1a5276;
  --blue-light:  #d6eaf8;
  --orange:      #e67e22;
  --orange-light:#fdebd0;
  --gray-bg:     #f4f7fa;
  --text:        #2c3e50;
  --text-muted:  #6b7280;
  --border:      #d1d5db;
  --radius:      12px;
  --shadow:      0 2px 16px rgba(46,134,193,0.10);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

.sec-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 16px;
}
.sec-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.bg-light { background: var(--gray-bg); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(230,126,34,0.35);
}
.btn-primary:hover { background: #cf6d17; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ---------- ヘッダー ---------- */
#site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(255,255,255,0.97);
  border-bottom: 2px solid var(--blue-light);
  z-index: 100;
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.header-logo {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-dark);
  white-space: nowrap;
}
.header-nav {
  display: flex;
  gap: 2px;
}
.header-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.header-nav a:hover { background: var(--blue-light); color: var(--blue-dark); }

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルナビ */
.mobile-nav {
  position: fixed;
  top: 60px; right: 0;
  width: 240px;
  height: calc(100vh - 60px);
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 99;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--text);
  transition: background 0.15s;
}
.mobile-nav a:hover { background: var(--blue-light); color: var(--blue-dark); }
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 98;
}
.nav-overlay.open { display: block; }

/* ---------- ヒーロー ---------- */
#hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
/* ドット背景 */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-inner { position: relative; z-index: 1; max-width: 700px; }

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

h1 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
/* 「土砂災害」大文字強調 */
.h1-disaster {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 7rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow:
    2px  2px 0 var(--orange),
   -2px  2px 0 var(--orange),
    2px -2px 0 var(--orange),
   -2px -2px 0 var(--orange),
    0    6px 18px rgba(0,0,0,0.55);
}
@media (max-width: 860px) {
  .h1-disaster { font-size: 4.5rem; }
}
@media (max-width: 540px) {
  .h1-disaster { font-size: 3.2rem; }
}
.h1-sub {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.08em;
}
.h1-main {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0,0,0,0.2);
  letter-spacing: 0.04em;
}

.hero-copy {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.hero-period-box {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 32px;
  justify-content: center;
}
.period-label {
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.period-date {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}
.period-note {
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  white-space: nowrap;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; z-index: 2;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ---------- チラシ ---------- */
#flyer { padding: 40px 0 48px; }
.flyer-box {
  border: 3px dashed var(--blue-light);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  color: var(--text-muted);
  background: var(--gray-bg);
  font-size: 1rem;
  font-weight: 500;
}

/* ---------- 目的 ---------- */
.about-text {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1rem;
}
.about-text strong { color: var(--blue-dark); }
.about-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  background: var(--blue-light);
  border-radius: 8px;
  padding: 12px 16px;
}

/* ---------- 参考資料 ---------- */
.ref-block {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-bottom: 32px;
}
.ref-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.ref-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.8;
}
.ref-text strong { color: var(--blue-dark); }

/* ---------- 募集内容 ---------- */
.req-lead {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 32px;
  color: var(--text);
  background: var(--blue-light);
  border-radius: 8px;
  padding: 20px 24px 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.req-lead strong { color: var(--blue); font-size: 1.2rem; }

.char-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.char-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--blue);
  display: grid;
  grid-template-columns: 52px 1fr 2fr;
  align-items: center;
  gap: 0 20px;
  transition: transform 0.2s;
}
.char-card:hover { transform: translateX(4px); }
.card-a { border-left-color: #e74c3c; }
.card-b { border-left-color: #2980b9; }
.card-c { border-left-color: #27ae60; }

.char-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.card-a .char-badge { background: #e74c3c; }
.card-b .char-badge { background: #2980b9; }
.card-c .char-badge { background: #27ae60; }

.char-card-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.char-card h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin: 0;
}
.card-a h3 { color: #e74c3c; }
.card-b h3 { color: #2980b9; }
.card-c h3 { color: #27ae60; }

.char-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.char-card ul {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  margin: 0;
  padding: 0;
}
.char-card ul li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  white-space: nowrap;
}
.char-card ul li::before {
  content: '・';
  position: absolute; left: 0;
  color: var(--text-muted);
}
/* 行レイアウト スマホ対応 */
@media (max-width: 640px) {
  .char-card {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
  }
  .char-card ul {
    grid-column: 1 / -1;
    margin-top: 10px;
    flex-wrap: wrap;
  }
}

/* 募集内容リード補足テキスト */
.req-lead-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  text-align: center;
  padding: 12px 0 20px;
  margin: 10px 0 0;
}

/* 郵送・持参 応募手順インライン表示 */
.apply-steps-inline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
}
.apply-steps-inline li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.apply-steps-inline li::before {
  content: '▶';
  flex-shrink: 0;
  color: var(--blue);
  font-size: 0.7rem;
  margin-top: 5px;
}

/* スペックテーブル */
.spec-table-wrap { overflow-x: auto; }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.spec-table th, .spec-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.spec-table th {
  width: 160px;
  font-weight: 700;
  color: var(--blue-dark);
  background: var(--blue-light);
  white-space: nowrap;
}
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: none; }

/* ---------- 賞・賞金 ---------- */
.prizes-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.prize-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.prize-card:hover { transform: translateY(-4px); }
.prize-gold  { border: 2px solid #f1c40f; }
.prize-silver{ border: 2px solid #adb5bd; }
.prize-bronze{ border: 2px solid #cd7f32; }

.prize-icon  { font-size: 2.4rem; margin-bottom: 10px; }
.prize-name  { font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.prize-num   { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }
.prize-money { font-size: 0.95rem; color: var(--text); }
.prize-money strong { font-size: 1.4rem; color: var(--blue-dark); font-weight: 900; }

.prizes-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- スケジュール ---------- */
.timeline {
  max-width: 560px;
  margin: 0 auto 16px;
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 12px; bottom: 12px;
  width: 3px;
  background: var(--blue-light);
  border-radius: 2px;
}
.tl-item {
  position: relative;
  margin-bottom: 32px;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -32px; top: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--blue-light);
}
.tl-date {
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 2px;
}
.tl-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.tl-label small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 8px;
}
.schedule-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- ポータルサイト応募 ---------- */
#apply-portal {
  background: #fff;
}

.portal-apply-box {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.portal-method-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.portal-apply-lead {
  background: var(--gray-bg);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
  line-height: 1.8;
}
.portal-apply-lead strong { color: var(--blue-dark); }

.portal-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 応募バナー */
.apply-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  color: #fff;
  border-radius: 16px;
  padding: 28px 40px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(230,126,34,0.40);
  transition: transform 0.2s, box-shadow 0.2s;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}
.apply-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(230,126,34,0.50);
}

.apply-banner-icon { font-size: 2rem; flex-shrink: 0; }

.apply-banner-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.apply-banner-arrow {
  font-size: 2rem;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.apply-banner:hover .apply-banner-arrow { transform: translateX(6px); }

/* 応募方法セクション末尾のバナー */
.apply-banner-bottom {
  margin-top: 36px;
}

/* apply-subテキスト */
.apply-sub {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: -24px;
  margin-bottom: 28px;
}

/* ---------- 応募方法 ---------- */
.apply-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.apply-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
}
.apply-icon { font-size: 2rem; margin-bottom: 10px; }
.apply-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 16px;
}
.apply-card ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.apply-card ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}
.apply-card ol li span {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.apply-info-box {
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.9rem;
  line-height: 1.8;
}
.apply-info-label {
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 6px;
  font-size: 0.82rem;
}
.apply-email {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.95rem;
  word-break: break-all;
}

/* ---------- 応募作品注意事項 ---------- */
.caution-block {
  background: #fff8f0;
  border: 1.5px solid #e67e22;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
}
.caution-title {
  font-size: 1rem;
  font-weight: 700;
  color: #a04000;
  margin-bottom: 12px;
}
.caution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.caution-list li {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  padding-left: 16px;
  position: relative;
}
.caution-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #e67e22;
  font-weight: 700;
}
.caution-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  border-top: 1px dashed #f0c090;
  padding-top: 10px;
  margin-top: 4px;
}

/* ダウンロード */
.dl-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
}
.dl-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 14px;
}
.dl-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--blue-light);
  transition: all 0.2s;
}
.dl-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.dl-btn-print {
  background: #fdebd0;
  border-color: #e67e22;
  color: #a04000;
}
.dl-btn-print:hover {
  background: #e67e22;
  color: #fff;
}

/* ---------- お問い合わせ ---------- */
.contact-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 32px 36px;
}
.contact-name {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 6px;
  text-align: center;
}
.contact-address {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}
.contact-label {
  flex-shrink: 0;
  width: 76px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  text-align: center;
  padding: 3px 0;
  border-radius: 4px;
}

/* ---------- フッター ---------- */
footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 24px;
  font-size: 0.82rem;
}

/* ---------- ページトップ ---------- */
#page-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(46,134,193,0.4);
  z-index: 99;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
#page-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#page-top:hover { background: var(--blue-dark); }

/* ---------- レスポンシブ ---------- */
@media (max-width: 860px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .char-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .prizes-wrap { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .apply-grid { grid-template-columns: 1fr; }
  .spec-table th { width: 120px; }
}

@media (max-width: 540px) {
  section { padding: 56px 0; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; }
  .contact-card { padding: 24px 20px; }
}


@media screen and (max-width:767px){
.cms .body_wrapper{
  padding-top:0 !important;
}
}
