

/* タイトル */
h1 {
  position: absolute;
  top: 28%;
  right: 20%;
  width: 60%;
  height: auto;
  z-index: 610;
  font-size: 20px;
  color: #fff;
  text-shadow:black 1px 1px 15px, black -1px 1px 15px,black 1px -1px 15px, black -1px -1px 15px;
}
h2 {
  position: absolute;
  top: 30%;
  right: 25%;
  width: 60%;
  height: auto;
  z-index: 600;
  font-size: 60px;
  color: #fff;
  text-shadow:black 1px 1px 25px, black -1px 1px 25px,black 1px -1px 25px, black -1px -1px 25px;
  
}
/* ここまで */




/* 共通 */
section {
    clear: both;
}





.sectiontitle {
    padding-top: 100px;
    padding-bottom: 10px;
    font-size: 35px;
    text-align: center;
}


.about {
  display: flex;
  justify-content: center; /* 横方向中央 */
}
.left {
  display: flex;       /* 子をフレックス化 */
  align-items: center; /* 縦方向中央 */
}
.left img {
  width: auto;
  height: 300px;
  padding-right: 40px;
}
.right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.name {
  font-size: 50px;
}
.low {
  text-align: center;
  display: block;
  padding-top: 30px;
}
h3 {
  text-align: left;
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  padding: 0 5px;
}











/* メイン画像ギャラリー */
.slideBox {
  height: 890px;
  overflow: hidden;
  position: relative;
}

/* imgのみ */
.item1 {
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 30s 0s infinite;
  animation: anime 30s 0s infinite;
}

.item1:nth-of-type(2) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}

.item1:nth-of-type(3) {
  -webkit-animation-delay: 20s;
  animation-delay: 20s;
}

/* ふわっとアニメーション */
@keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
/* メイン画像ギャラリーここまで */



.video-scroll-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px;
}

.video-row-wrapper {
  flex: 1;
  max-width: 100%;
  overflow: hidden;
}

.video-row {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video-row::-webkit-scrollbar {
  display: none;
}

.video-row iframe {
  flex-shrink: 0;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  border: none;
  width: 100%;
}

.scroll-btn {
  font-size: 32px;
  padding: 10px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  color: #333;
  transition: color 0.3s;
}

.scroll-btn:hover {
  color: #000;
}



.trackrecord{
  padding-top: 30px;
  display: flex;
  justify-content: center;
  text-align: center;
}




.snsicon {
  padding-top: 50px;
  padding-bottom: 100px;
  display: flex;
  justify-content: center;
}
.snsicon img {
  margin: 0 30px;
  padding: 0;
  width: 50px;
}







@media (max-width: 950px) {
  .about {
    flex-direction: column;
    align-items: center; /* 中央寄せ */
  }

  .left {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .left img {
    height: auto;
    max-width: 50%;
    margin: 0 auto; /* 画像を中央寄せ */
    padding: 0 0;
  }

  .right {
    align-items: center; /* テキスト中央寄せしたい場合 */
    text-align: center;
  }

  .name {
    font-size: 40px;
  }


  h1 {
    font-size: 14px;
    width: 80%;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    top: 45%;
  }

  h2 {
    font-size: 32px;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}

