html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
/* スクロールセクションのラッパー */
.wrapper {
  height: 100dvh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
/* 各セクション */
.section {
  position: relative;
  height: 100dvh;
  width: 100%;
  scroll-snap-align: start;
  overflow-x: hidden;
  overflow-y: hidden;
}
/* 背景動画 */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}
/* セクション内コンテンツ */
.content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
/*TOP*/
.main_img_area {
  height: 100%;
  position: relative;
}
.main_logo_area {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.main_logo {
  height: 100%;
  width: 80%;
  background-image: url("../img/main01_pc_logo.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.main_logo img {
  height: 100%;
}
.info_text02 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 1.00);
  background: rgba(0, 0, 0, 1);
  color: rgba(255, 255, 255, 1.00);
  font-family: 'Shippori Mincho', serif;
  letter-spacing: 0em;
  font-size: 1vw;
  width: 100%;
  padding: 1% 0;
  font-weight: 400;
}
.info_text02 .head {
  display: inline;
  font-weight: 700;
}
.info_text02 ul {
  display: flex;
  justify-content: center;
  padding: 0 1%;
}
.info_text02 li {
  margin-right: 2%;
  padding-bottom: 0.2%;
}
.info_text02 li:last-child {
  margin-right: 0%;
  padding-bottom: 0.2%;
}
.info_text02 li.ajast {
  margin: 0.5% 0;
  font-size: 1.5vw;
  letter-spacing: 0.2em;
  color: #F06D6F;
  font-weight: 700;
}
/*アナザー*/
#another_main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/main02_pc_bg.jpg");
  background-size: cover;
  opacity: 0;
}
/* アニメーションは .animate が付いた時だけ動かす */
#another_main.animate {
  animation: fadeCycle 20s ease-in-out infinite;
}
@keyframes fadeCycle {
  /* 0%～47.5%：透明キープ（0～約9.5秒） */
  0%, 47.5% {
    opacity: 0;
  }
  /* 50%～97.5%：不透明キープ（10秒～約19.5秒） */
  50%, 97.5% {
    opacity: 1;
  }
  /* 100%：最後に透明へ（約20秒） */
  100% {
    opacity: 0;
  }
}
.sec01 {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  background-image: url("../img/main01_pc_bg.jpg");
  background-size: cover;
}
.sec01 img {
  height: 100%;
}
.movie {
  z-index: 50;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* mix-blend-mode: multiply;*/
  mix-blend-mode: screen;
  opacity: 1;
  pointer-events: none;
  -webkit-user-select: none; /* Safari, Chrome */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
  user-select: none; /* 標準 */
}
.movie video {
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.sec02 {
  background: #fff;
  color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  padding: 2rem;
  font-family: "Yu Mincho", "Hiragino Mincho Pro", serif;
}
#section2 .bg-video {
  opacity: 0.05;
  filter: grayscale(100%);
  /* WebKit（古い Safari など）対応 */
  -webkit-filter: grayscale(100%);
  /* 必要なら描画を高速化 */
}
.banner_list_area {
  display: flex;
  align-items: center;
}
.banner_list li {
  width: 20%;
	/*01*/
	  width: 10%;
}
.banner_list li a {
  width: 100%;
}
.banner_list li img {
  width: 100%;
  height: auto;
}
.info_text02 ul.banner_list {
  margin-top: 1%;
  width: 100%;
}
.info_text02 ul.banner_list:first-child {
  justify-content: flex-end;
	justify-content: center;

}
.info_text02 ul.banner_list:last-child {
 /* justify-content: flex-start;*/

}
.info_text02 .banner_list li:first-child {
  margin-right: 1%;
}
@media screen and (max-width: 800px) {
  /*アナザー*/
  #another_main {
    z-index: 8;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  /* スナップとスムーズをリセット */
  .wrapper {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
  }
  /* セクションのスナップポイント指定を解除 */
  .section {
    scroll-snap-align: none !important;
  }
  .section.ajast {
    overflow-y: auto;
  }
  .sec01 {
    flex-direction: column;
  }
  .info_text02 {
    position: relative;
  }
  .main_img_area {
    height: auto;
  }
  .main_img_area.ajast {
    /*height: 100%;*/
  }
  .main_img_area.ajast img {
    /* height: auto;*/
  }
  .main_logo_area {
    height: 95%;
  }
  .sec01 img {
    width: 100%;
  }
  .info_text02 {
    font-size: 3vw;
  }
  .info_text02 ul {
    flex-direction: column;
  }
  #section2 .content {
    padding: 0 2%;
  }
  #section2 .text-container {
    font-size: 3vw;
  }
  .banner_list_area {
    flex-direction: column;
  }
  .info_text02 .banner_list {
    display: flex;
    flex-direction: row;
  }
		.info_text02 ul.banner_list {
  margin-top: 0%;
}
	.info_text02 ul.banner_list:first-child {
  margin-top: 2%;
}
  .banner_list {
    justify-content: center;
    align-items: center;
  }
  .banner_list li {
    width: 30%
  }
  .info_text02 .banner_list li:first-child {
    margin-right: 1%;
  }
  .info_text02 ul.banner_list:first-child {
    justify-content: center;
    /* display: block;*/
  }
  .info_text02 ul.banner_list:last-child {
    justify-content: center;
    /* display: block;*/
  }
}