.page-content {
  border-radius: 20px;
  padding: 200px;
  font-family: "Arial Rounded MT Bold", "Hiragino Maru Gothic ProN", sans-serif;
}

.page-content p {
  font-size: 22px;
  font-weight: bold;
  color: #ff2f92;
  text-align: center;
  background: #fff;
  padding: 16px 20px;
  border-radius: 30px;
  margin-bottom: 30px;
  box-shadow: 0 6px 0 #ff2f92;
}

.page-content h1 {
  text-align: center;
  font-size: 64px;             
  font-weight: 900;          
  letter-spacing: 0.08em;      
  
  color: #ff2fcf;
  
/* 影 */
text-shadow:
    2px 2px 0 #000,
    -2px 2px 0 #000,
    2px -2px 0 #000,
    -2px -2px 0 #000,
    0 0 10px #ff2fcf,
    0 0 20px #ff2fcf;
margin: 40px 0;
}

.page-content h2 {
  display: block;
  width: fit-content;      
  margin: 150px auto 20px;    
  background: linear-gradient(135deg, #ff2f92, #00e5ff);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
}

.page-content video {
  display: block;
  margin: 0 auto 40px;
  max-width: 80%;
}

.setumei {
  width: 75%;
  background: #f4f4f4;
  border-left: 8px solid #ff2f92;
  border-right: 8px solid #00e5ff;
  padding: 20px;
  margin: 20px 20px 20px 115px;
  border-radius: 12px;
  line-height: 1.8;
  font-size: 16px;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 30px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.back-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 40px;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 40px;
  box-shadow: 0 6px 0 #d4a900;
  transition: transform 0.1s, box-shadow 0.1s;
}

.back-btn:hover {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #d4a900;
}

.weapon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.weapon-list img {
  width: calc(50% - 8px);
}

.video {
  position: relative;
  width: 80%;
  margin: 0 auto 80px;
}

.video video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.video-setumei {
  position: absolute;      
  top: 100%;               
  left: 100px;
  width: 75%;

  background: #ff2f92;
  color: #fff;
  padding: 12px;
  border-radius: 20px;
  text-align: center;

  opacity: 0;             
  transform: translateY(-10px);
  transition: 0.4s;

  /* 説明文で動画がクリック出来ないのを防ぐやつ */
  pointer-events: none;
  z-index: 10;
}

.video.show .video-setumei {
  opacity: 1;
  transform: translateY(0) scaleY(1);
}




