/*
Theme Name: dash
Description: オリパDASH LP専用テーマ
Version: 1.0
Author: あなたの名前
*/
 body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
 background: linear-gradient(135deg, #5c5c5c, #333333);
  color: #fff;
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
	 padding-bottom: 80px; /* 追従ボタンが被らないよう余白確保 */
}

/* ===== セクション ===== */
section {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
}

/* ===== 見出し ===== */
h1, h2, h3 {
  font-family: 'Bangers', cursive;
  text-align: center;
  color: #FFD700;
  text-shadow: 2px 2px 8px #FF0000;
  margin-bottom: 20px;
}
h2 {
  font-size: 48px;
  animation: glow 1.5s infinite alternate;
}
h3 {
  font-size: 28px;
  border-left:10px solid #ffff;
  padding-left: 10px;
  margin-top: 40px;
}

/* ===== パラグラフ・リスト ===== */
p, li {
  color: #fff;
  margin-bottom: 12px;
	font-size:1.2rem;
}

ul {
  padding-left: 20px;
  list-style-type: square;
}

/* ===== ボタン ===== */
.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0);
  color: white;
  font-size: 20px;
  font-weight: bold;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 0 15px #ff0080;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px #fff;
}

/* ===== 画像枠 ===== */
.img2 {
  width: 100%;
  max-width: 600px;
  border: 3px solid #FFD700;
  border-radius: 10px;
  box-shadow: 0 0 15px #FFD700;
  margin: 20px 0;
}

/* ===== リンク ===== */
a {
  color: #7df9ff;
  font-weight: bold;
  text-decoration: underline;
}
a:hover {
  color: #ff69b4;
  text-shadow: 0 0 5px #ff69b4;
}

/* ===== アニメーション ===== */
@keyframes glow {
  0% {
    text-shadow: 0 0 5px #ff0, 0 0 15px #f0f, 0 0 20px #0ff;
  }
  100% {
    text-shadow: 0 0 20px #ff6347, 0 0 30px #f0f, 0 0 40px #0ff;
  }
}
.oripadash-howto {
  background: linear-gradient(135deg, #3a3a3a, #1e1e1e);
  color: #fff;
  padding: 40px 20px;
  font-family: "Helvetica Neue", sans-serif;
}

.oripadash-howto h3 {
  font-size: 26px;
  margin-bottom: 10px;
  text-align: center;
}

.oripadash-howto h4 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #FFD700;
}

.oripadash-howto .intro,
.oripadash-howto .note,
.oripadash-howto .around-text {
  font-size: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.step-card {
  background: #222;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
  transition: 0.3s;
}

.step-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.step-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
  color: #ffcc00;
}

.image-wrapper {
  margin-top: 20px;
  text-align: center;
}

.image-wrapper img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 0 8px #000;
}
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e1e1e;
  padding: 10px 12px;
  display: flex;
  gap: 12px;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
  flex-wrap: wrap;
}

.fixed-cta .cta-btn {
  flex: 1;
  min-width: 140px;
  text-align: center;
  background: linear-gradient(135deg, #c62828, #ff8f00);
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255, 87, 34, 0.6);
  transition: all 0.3s ease;
}

.fixed-cta .cta-btn:hover {
  filter: brightness(1.1);
}

