/* bodyタグのスタイル */
body {
  background-color: #f8f9fa;
  font-family: 'Arial', sans-serif;
}

/* h1タグのスタイル */
h1 {
  color: #343a40;
}

/* タイトルセクションコンテナのスタイル */
.title-section-container {
  height: 500px;
  width: 100%;
  background-color: #ebddff;
}

/* タイトルセクションのスタイル */
.title-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 0 auto;
}

/* タイトルセクション内のlottie-playerのスタイル */
.title-section lottie-player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  object-fit: cover;
  overflow: visible;
  opacity: 0.33;
}

/* タイトルロゴのスタイル */
.title-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
  max-width: 100%;
}

/* ダウンロードセクションのスタイル */
.download-section {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

/* ダウンロードロゴのスタイル */
.download-logo {
  transition: transform 0.3s;
  max-height: 106px;
}

/* ダウンロードロゴのホバー時のスタイル */
.download-logo:hover {
  transform: scale(1.05);
}

/* セクションのスタイル */
.section {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

/* 画像プレースホルダーのスタイル */
.image-placeholder {
  width: 100%;
  padding-bottom: 100%;
  background-color: #ededed;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ededed;
}

/* 画像プレースホルダー内のlottie-playerのスタイル */
.image-placeholder lottie-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* デモボタンのスタイル */
.demo-button {
  display: block;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #343a40;
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  color: #343a40;
  transition: transform 0.3s;
  height: 80px;
  white-space: nowrap;
}

.demo-button:hover {
  transform: scale(1.05);
}

.demo-icon {
  width: 55px;
  height: 55px;
  margin-right: 10px;
}

.demo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.demo-text strong {
  font-size: 1.6em;
}

.demo-text br {
  display: none;
}

/* デモボタン内のリンクのスタイルをリセット */
.demo-button:link, .demo-button:visited {
  color: #343a40;
  text-decoration: none;
}

/* h2タグのスタイル */
h2 {
  color: #854fe6;
}

/* pタグのスタイル */
p {
  color: #6c757d;
}

/* フッターのスタイル */
.footer {
  background-color: #343a40;
  width: 100%;
}

/* フッター内のh5タグのスタイル */
.footer h5 {
  color: #ffffff;
}

/* フッター内のpタグのスタイル */
.footer p {
  color: #dcdcdc;
}

/* フッターロゴのスタイル */
.footer-logo {
  width: 100px;
  background-color: white;
  padding: 5px;
  border-radius: 5px;
}

/* フッター内のリンクのスタイル */
.footer a.link {
  color: #dcdcdc;
  text-decoration: underline;
}

/* フッター内のリンクのホバー時のスタイル */
.footer a.link:hover {
  color: #ffffff;
  text-decoration: none;
}

/* フッター内のpタグのマージンリセット */
.footer p {
  margin: 0;
}

/* メディアクエリ: 画面幅が576px以下の場合のフッター内のpタグのスタイル */
@media (max-width: 576px) {
  .footer p {
    margin-bottom: 10px;
  }
}

/* 余白 */
.spacer {
  height: 50px;
}