:root {
  /* メインカラー */
  --primary-color: #e05e32;
  --primary-light: #ff7e54;
  --primary-dark: #9e2b25;
  
  /* アクセントカラー */
  --accent-blue: #4a90e2;
  --accent-green: #50c878;
  --accent-purple: #9b59b6;
  --accent-yellow: #ffd166;
  
  /* 背景・テキストカラー */
  --background-color: #ffffff;
  --background-light: #f8f9fa;
  --text-color: #2c3e50;
  --text-light: #6c757d;
  --secondary-text-color: #ffffff;
  
  /* シャドウ */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  
  /* 角丸 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

[data-theme="dark"] {
  --primary-color: #ff7e54;
  --primary-light: #ff9d7a;
  --primary-dark: #e05e32;
  
  --accent-blue: #64b5f6;
  --accent-green: #81c784;
  --accent-purple: #ba68c8;
  --accent-yellow: #ffd54f;
  
  --background-color: #121212;
  --background-light: #1e1e1e;
  --text-color: #e0e0e0;
  --text-light: #a0a0a0;
  --secondary-text-color: #ffffff;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  line-height: 1.8;
  font-size: 18px;
  overflow-x: hidden;
  background-color: var(--background-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.container2 {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: var(--background-color);
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease;
}

/* パターン背景 */
.pattern-bg {
  background-color: var(--primary-color);
  background-image: url('images/svg/aiEDU-JP-logo.svg');
  background-repeat: repeat;
  background-size: 60px 60px;
  opacity: 0.8;
  position: fixed;
  width: 150px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  transition: background-color 0.3s ease;
}

.main-content {
  margin-left: 150px;
  min-height: 100vh;
  background-color: var(--background-color);
  position: relative;
  transition: background-color 0.3s ease;
  margin-top: 0;
}

header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 100%;
  text-align: center;
  padding: 0;
  margin: 0;
}

header .container {
  padding: 0;
  max-width: 100%;
}

header h1 {
  color: #ffffff;
  font-size: 2.8em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin: 0;
  padding: 20px 40px;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  animation: fadeInUp 1.2s ease-out, float 3s ease-in-out infinite;
}

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

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

h1,
h2,
h3,
h4 {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', Arial, sans-serif;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-top: 30px;
  transition: color 0.3s ease;
}

h1 {
  font-size: 2.2em;
}
h2 {
  font-size: 1.6em;
  margin-top: 40px;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.2em;
  margin-top: 24px;
  margin-bottom: 10px;
}

.foreword {
  background-color: var(--background-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.foreword:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.foreword-title {
  background-color: var(--primary-color);
  color: var(--secondary-text-color);
  padding: 10px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  position: relative;
  top: -20px;
  margin-left: -20px;
  margin-right: -20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.profile {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding: 20px 30px;
  border-radius: 16px;
  position: relative;
  gap: 24px;
  transition: box-shadow 0.3s, border-color 0.3s;
}


.profile img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-right: 0;
  box-shadow: 0 4px 16px rgba(224, 94, 50, 0.15);
  background: #fff;
  object-fit: cover;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-info h3 {
  margin: 0 0 4px 0;
  font-size: 1.3em;
  color: var(--primary-dark);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-info h3::before {
  content: "👤";
  font-size: 1.1em;
  margin-right: 4px;
}

.profile-info .role {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.95em;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(224, 94, 50, 0.10);
}

.timeline {
  margin: 40px 0;
  position: relative;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  height: 100%;
  width: 4px;
  background: #7d1f1a;
  background: linear-gradient(to bottom, #7d1f1a 0%, #e05e32 100%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.timeline-item:hover {
  opacity: 1;
  transform: translateX(5px);
}

.timeline-month {
  background-color: var(--primary-color);
  color: var(--secondary-text-color);
  padding: 8px 15px;
  border-radius: var(--radius-md);
  font-weight: bold;
  box-shadow: var(--shadow-sm);
  width: 120px;
  position: relative;
  padding-left: 35px;
  padding-top: 10px;
  z-index: 1;
}

.timeline-month:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-yellow);
  box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.2);
  z-index: 1;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.timeline-item:hover .timeline-month:before {
  transform: scale(1.2);
  background-color: var(--primary-color);
}

.timeline-content {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  flex: 1;
  padding-left: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.timeline-content h3 {
  margin: 0;
  background-color: #f9f9f9;
  padding-top: 10px;
  border-radius: 5px;
  display: inline-block;
}

.timeline-content img {
  max-width: 100%;
  height: auto;
  margin-top: 15px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.timeline-content img:hover {
  transform: scale(1.03);
}

.mission-box {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  margin: 30px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.mission-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #7d1f1a, #e05e32);
}

.mission-title {
  color: #e05e32;
  font-size: 24px;
  margin-top: 0;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px dashed rgba(125, 31, 26, 0.3);
}

.activities {
  display: flex;
  overflow-x: auto;
  gap: 0;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--background-light);
}

.activities::-webkit-scrollbar {
  height: 6px;
}

.activities::-webkit-scrollbar-track {
  background: var(--background-light);
  border-radius: 3px;
}

.activities::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 3px;
}

.activity {
  flex: 0 0 auto;
  width: 300px;
  margin-right: 0;
  background: var(--background-light);
  border-radius: var(--radius-md);
  padding: 15px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
}

.activity img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}

.activity:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border-radius: var(--radius-md);
}

table th {
  background-color: var(--primary-color);
  color: var(--secondary-text-color);
  padding: 15px;
  font-weight: 600;
  text-align: left;
  position: relative;
}

table th:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  opacity: 0.5;
}

table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

table tr:hover td {
  background-color: #f5f5f5;
}

.materials {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--background-light);
}

.materials::-webkit-scrollbar {
  height: 6px;
}

.materials::-webkit-scrollbar-track {
  background: var(--background-light);
  border-radius: 3px;
}

.materials::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 3px;
}

.material {
  flex: 0 0 auto;
  width: 300px;
  margin-right: 0;
  background-color: white;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.material img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.material h4 {
  margin: 10px 0;
  color: #7d1f1a;
}

.growth-section {
  background-color: #fff3f0;
  padding: 20px;
  border-radius: 5px;
  margin: 30px 0;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.growth-section h3 {
  color: #7d1f1a;
  border-bottom: 2px solid #e05e32;
  padding-bottom: 5px;
  display: inline-block;
}

.growth-section ul {
  list-style-type: none;
  padding-left: 0;
}

.growth-section ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(125, 31, 26, 0.2);
  position: relative;
}

.growth-section ul li::before {
  content: "✨";
  font-size: 1.2em;
}

.implementation-list {
  margin-top: 0px;
}

.implementation-list h3 {
  color: #7d1f1a;
  border-bottom: 2px solid #e05e32;
  padding-bottom: 5px;
  display: inline-block;
}

footer {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 40px 0;
  margin-top: 50px;
  position: relative;
}

footer:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background-color: var(--primary-color);
}

.section-title {
  font-size: 1.5em;
  font-weight: 800;
  color: var(--primary-color);
  background-color: #fff7f3;
  letter-spacing: 0.04em;
  padding: 18px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}

.section-title::before {
  content: "📊";
  margin-right: 10px;
  font-size: 1.2em;
}

.year-header {
  background-color: var(--primary-color);
  color: white;
  padding: 8px;
  text-align: center;
  margin: 40px 0 20px 0;
  border-radius: 5px;
  position: relative;
  font-weight: bold;
}

.year-header:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--primary-color);
  opacity: 0.5;
}

.logo {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 100px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
}

/* バックトップボタン */
.back-to-top {
  background-color: var(--primary-color);
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 46px;
  height: 50px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.back-to-top:hover {
  transform: translateY(-5px) rotate(360deg);
  transition: all 0.5s ease;
}

/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}
.delay-5 {
  animation-delay: 0.5s;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .pattern-bg {
    width: 50px;
  }

  .main-content {
    margin-left: 50px;
  }

  .timeline-month {
    width: 100px;
  }

  .material,
  .activity {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .pattern-bg {
    display: none;
  }

  .main-content {
    margin-left: 0;
  }

  .container {
    padding: 20px 24px;
    max-width: 100%;
  }

  .container2 {
    padding: 20px 24px;
    max-width: 100%;
  }

  .profile {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
    gap: 16px;
    margin: 20px 0;
  }

  .profile img {
    margin-bottom: 12px;
  }

  .timeline:before {
    left: 20px;
    height: calc(100% - 20px);
  }

  .timeline-item {
    flex-direction: column;
    margin-bottom: 30px;
    margin-left: 0;
  }

  .timeline-month {
    width: auto;
    padding: 6px 12px;
    font-size: 0.9em;
    padding-left: 35px;
    margin-bottom: 12px;
    align-self: flex-start;
  }

  .timeline-month:before {
    left: 4px;
    width: 16px;
    height: 16px;
    top: 11px;
  }

  .timeline-content {
    padding: 20px;
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .foreword {
    padding: 20px 24px;
    margin: 20px 0;
  }

  .foreword-title {
    padding: 12px;
    margin: -20px -24px 20px -24px;
  }

  .mission-box {
    padding: 20px 24px;
    margin: 20px 0;
  }

  .section-title {
    padding: 16px 24px;
    margin: 20px 0;
  }

  .growth-section {
    padding: 20px 24px;
    margin: 20px 0;
  }

  .implementation-list {
    margin: 20px 0;
    padding: 0 4px;
  }

  .implementation-list table {
    margin: 16px 0;
  }

  .implementation-list td,
  .implementation-list th {
    padding: 12px 16px;
  }

  .stats-scroll {
    gap: 16px;
    padding: 16px 4px;
  }

  .stat-card {
    min-width: 160px;
    max-width: 180px;
    padding: 20px 16px;
  }

  .year-header {
    margin: 30px 0 16px 0;
    padding: 12px 24px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 1.4em;
  }

  h2 {
    font-size: 1.1em;
    margin-top: 30px;
    margin-bottom: 16px;
  }

  h3 {
    font-size: 1.1em;
    margin-top: 20px;
    margin-bottom: 12px;
  }

  p {
    margin: 16px 0;
  }

  .video-hero {
    height: 32vh;
    min-height: 120px;
    max-height: 220px;
  }

  header {
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  header h1 {
    font-size: 1.8em;
    padding: 16px 24px;
    width: auto;
    max-width: calc(100% - 40px);
    margin: 0 auto;
  }

  footer {
    padding: 30px 24px;
    margin-top: 40px;
  }

  .video-hero-header {
    width: 100%;
    padding: 0 24px;
  }

  .video-hero-title {
    font-size: 1.2em;
    padding: 12px 20px;
    width: calc(100% - 48px);
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* リンクスタイル */
a {
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

a:hover {
  background-color: rgba(224, 94, 50, 0.1);
  transform: translateY(-1px);
}

a:active {
  transform: translateY(0);
}

a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

a:hover::after {
  transform: scaleX(1);
}

/* アイコン付きリンク */
a[href^="http"]::before {
  content: "↗";
  font-size: 0.9em;
  margin-right: 2px;
}

a[href^="mailto"]::before {
  content: "✉";
  font-size: 0.9em;
  margin-right: 2px;
}

/* フッターのリンクスタイル */
footer a {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

footer a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

footer a::after {
  display: none;
}

/* 画像グリッド */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--background-light);
}

.image-grid::-webkit-scrollbar {
  height: 6px;
}

.image-grid::-webkit-scrollbar-track {
  background: var(--background-light);
  border-radius: 3px;
}

.image-grid::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 3px;
}

.image-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

p, li, td, th {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', Arial, sans-serif;
  font-size: 1em;
  color: #222;
  line-height: 1.9;
}

.stat-card, .material-card {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', Arial, sans-serif;
  color: #222;
  font-size: 1.1em;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
  padding: 16px;
  min-width: 180px;
}

.stat-label {
  font-size: 0.8em;
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: 8px;
}

.stat-value {
  font-size: 1.5em;
  color: var(--primary-color);
  font-weight: bold;
  margin-top: 8px;
}

.material-title {
  font-size: 1.1em;
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: 8px;
}

.stats-scroll {
  display: flex;
  overflow-x: auto;
  gap: 32px;
  padding: 16px 0 8px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--background-light);
}

.stats-scroll::-webkit-scrollbar {
  height: 6px;
}

.stats-scroll::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 3px;
}

.stat-card {
  flex: 0 0 220px;
  min-width: 270px;
  max-width: 280px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
  padding: 24px 12px 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .stats-scroll {
    gap: 16px;
    padding: 10px 0 4px 0;
  }
  .stat-card {
    min-width: 160px;
    max-width: 180px;
    padding: 16px 6px 12px 6px;
  }
}

.video-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  z-index: 10;
}

.video-hero video {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,0.18) 0%,rgba(224,94,50,0.10) 100%);
  pointer-events: none;
}

.video-hero-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 100vw;
  pointer-events: none;
}
.video-hero-logo {
  width: 110px;
  height: 110px;
  margin-bottom: 28px;
  filter: drop-shadow(0 2px 8px rgba(224,94,50,0.10));
}
.video-hero-title {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', Arial, sans-serif;
  font-size: 2.8em;
  font-weight: 900;
  color: #fff;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 1px 0 #e05e32;
  background: rgba(0,0,0,0.18);
  border-radius: 18px;
  padding: 18px 32px 14px 32px;
  margin: 0;
  display: inline-block;
}
@media (max-width: 600px) {
  .video-hero-header {
    width: 100vw;
  }
  .video-hero-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }
  .video-hero-title {
    font-size: 1.1em;
    padding: 8px 10px 6px 10px;
  }
}
