@charset "UTF-8";
/* CSS Document */

/*====================オープニングアニメーション====================*/
#anime{
	max-width:1280px;
	width:100%;
	height:0 auto;
	margin:0 auto;
    align-items:center;
    justify-content:center;
	
}

#anime video{
	max-width:1280px;
	width:100%;
	height:0 auto;
	margin:0 auto;
}

.logo_fadein{
	background:#FFFFFF;
	position:fixed;
	max-width: 1280px;
	height:100%;
	width:100%;
	z-index:999;
}

.logo_fadein p {
	position:fixed;
	display:none;
	z-index:9999;
}



/*====================詳しく見る====================*/
.button{
	margin:0 auto;
	padding:30px 0;
	max-width:1280px;
	width:100%;
	height:auto;
}


.button a {
  display: block;
  max-width: 350px;
  margin:0 auto;
  padding:20px 0;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(
    to right,
    #FFC44C 0%,
    #FFC44C 50%,
    #74E0FF 50%,
    #74E0FF 100%
  );
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
  transition: background-position ease 0.4s;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}

.button a:hover {
  background-position: 0 0;
}

/*====================ボタン====================*/
.botan{
	align-items:center;
	padding:10%;
}


.botan a{
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin:0 auto;
    border-radius: 9999px;
    max-width: 200px;
    padding: 10px 20px;
    font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #fff;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
    background-position: 1% 50%;
    background-size: 200% auto;
    transition: all 0.3s ease-out;
}
.botan a:hover {
    color: #fff;
    background-position: 99% 50%;
}

/*====================動画====================*/

.douga {
  text-align: center;
  color: #FF6AB9;
  margin-top: 10%;
}

.slider-wrapper {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.slider {
  width: 100%;
  overflow: hidden; /* ここでスライダー全体の内容を隠す */
}

.slider-container {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
  width: 100%; 
}

.video {
  min-width: 100%;
  height: auto;
  flex: 0 0 100%;
}

button {
  background-color: transparent; /* 背景を透明にして矢印を目立たせます */
  color: #FF6AB9; /* 矢印の色を明るくします */
  border: 4px solid #FF6AB9; /* ボーダーで輪郭を強調 */
  padding: 12px 20px; /* ボタンのパディング */
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 24px; /* 矢印のサイズを大きくします */
  border-radius: 50%; /* ボタンを丸くします */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* シャドウを追加して立体的に見せます */
  transition: all 0.3s ease; /* アニメーション効果 */
}

/* ホバー時のスタイル */
button:hover {
  background-color: #FF6AB9; /* ホバー時に背景色を変える */
  color: white; /* 矢印の色を白に */
  border-color: #FF4E9E; /* ホバー時にボーダー色を変える */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* ホバー時にシャドウを強調 */
}

/* ボタンがクリックされたときのスタイル */
button:active {
  transform: translateY(-50%) scale(0.95); /* クリック時に少し縮むエフェクト */
}


.prev {
  left: -50px; /* スライダーの外側 */
}

.next {
  right: -50px; /* スライダーの外側 */
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 20px; /* スライダーの外側 */
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #D6D6D6;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: #575757;
}
