@charset "UTF-8";

*, ::after, ::before { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  text-align: left;
  background-color: #000;
}

img { width: 100%; display: block; }

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background: #C5318A;
  margin: 70px auto 0;
}
footer span { color: #fff; font-size: 10px; line-height: 1.2; display: block; }
footer a { color: #fff; }

/* Wrapper & Background */
.wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}
.wrapper:before {
  content: "";
  background-color: #0A1F2E;
  width: 100%; min-height: 100vh;
  background-size: cover; background-position: top center;
  position: fixed; z-index: -2; top: 0;
}

.typing-container { position: relative; }

/* Tap Reveal System */
.cover-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 20;
  cursor: pointer;
  transition: opacity 0.3s;
}

/* --- タップ後に出現するボタンのスタイル --- */
.after-open-btn {
    display: none;
    width: 120%;   
    margin-left: -10%; /* 左側に調整 */
    margin-top: 0px;
    animation: 
         fadeIn 0.5s ease forwards,
         dokidoki 1.5s infinite 0.5s; 
}


/* 鼓動アニメーション */
@keyframes dokidoki {
    0%   { transform: scale(1.0); }
    5%   { transform: scale(1.05); }
    10%  { transform: scale(1.0); }
    15%  { transform: scale(1.05); }
    20%  { transform: scale(1.0); }
    100% { transform: scale(1.0); }
}

/* フェードイン */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn { width: 100%; margin: 3.5% auto 0; }
.btn a { display: block; }
.midashi_btn {
  margin: 0px auto;
  color: #ffffff;
  font-size: 0.4em;
  text-align: center;
  font-weight: bold;
}

.sec{
  width: 95%;
   margin-left: auto;
  margin-right: auto;
}

.topimg2{
  position: absolute;
  top: 0%;  
  left: 0%; 
  width: 100%; 
  height: auto;
  z-index: 15;
  background: none;
  -webkit-mask-image: radial-gradient(ellipse at center, black 98%, transparent 98%);
  mask-image: radial-gradient(ellipse at center, black 98%, transparent 98%);
  filter: blur(0.4px);
}

/* TOP Video */
.top-visual-box {
  position: relative;
  width: 100%;
  line-height: 0;
}
.top-video {
  position: absolute;
  top: 16.8%;  
  left: 5.4%; 
  width: 42%; 
   border: 3px solid #ffffff;
  height: auto;
  z-index: 10;
  border-radius: 7%;
  background: none;
  -webkit-mask-image: radial-gradient(ellipse at center, black 98%, transparent 98%);
  mask-image: radial-gradient(ellipse at center, black 98%, transparent 98%);
  filter: blur(0.4px);
}

/* Last Movie */
.last-movie {
  display: block;
  width: 85%; 
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

/* Floating Push Button */
div#push {
  position: fixed;
  bottom: 4%; right: 3%;
  width: 24%;
  z-index: 150;
}
div#push img {
  border-radius: 10px; 
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 15px 30px rgba(0, 0, 0, 0.7);
}

/* Slider Adjustment */
.slick-slide img {
  width: 70%;
  margin: 0px auto;
  border-radius: 25px;
}

.slider-line {
  margin-top: 20px !important; /* メイン画像との隙間 */
  width: 80% !important;      /* 下の画像だけ少し小さくしたい場合など調整 */
  border-radius: 20px !important; /* 角丸がいらない場合は0に */
}


.cp-section {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 50px;
}


/* ロゴを枠線の上に被せるテクニック */
.cp-logo {
 position: absolute;
  top: 17.6%;  
  left: 23%; 
  width: 9%; 
  height: auto;
  z-index: 10;
  background: none;
  -webkit-mask-image: radial-gradient(ellipse at center, black 98%, transparent 98%);
  mask-image: radial-gradient(ellipse at center, black 98%, transparent 98%);
  filter: blur(0.4px);
}

.cp-header {
  text-align: center;
  margin-bottom: 20px;
}

.cp-main-title {
  font-size: 21px;
  color: #ffffff; /* 紫っぽい色 */
  margin-left: 4%;
  text-shadow: 
    0 0 5px rgba(76, 14, 83, 0.6),
    0 0 10px rgba(76, 14, 83, 0.6),
    0 0 15px rgba(76, 14, 83, 0.6);
}


.cp-image-box img {
  margin-top: -2%;
  max-width: 42%;
  margin-left: 8%;
  border-radius: 5px;
}

.cp-text-box {
 position: absolute;
  top: 17.52%;  
  left: 0;   /* 左端を固定 */
  right: 0;  /* 右端を固定 */
  width: 100%; 
  height: auto;
  z-index: 5;
  background: none;
}

.slider {
  pointer-events: none; /* マウスや指の操作をすべて無視する */
}