@charset "utf-8";

:root {
  --viewport: 750;
}

* {
  user-select: none;
}

body {
  color: #fff;
/*  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Sans", "Segoe UI", "Meiryo", sans-serif;*/
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  text-align: center;
  background: #bd0101;
}
body:after {
  content: "";
  width: 100%;
  height: 100lvh;
  background: url(../img/samurai.svg) center center no-repeat;
  background-size: auto 80%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width:767px) {
  body:after {
    background-size: 120vw auto;
  }
}

h2 {
  margin-bottom: 1em;
}
h2 .sub {
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  font-size: 50%;
}

.fw900 {
  font-weight: 900;
}

.inner {
  width: 90vw;
  max-width: 1080px;
  height: 80vh;
  min-height: max-content;
  background: rgba(0,0,0,.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  .inner {
    height: 90vh;
    min-height: initial;
    padding: 30px;
  }
}

.frame {
  width: 100%;
  max-height: 60vh;
  overflow: auto;
  scrollbar-width: none;
}

.off {
  transform: translateY(calc(100vw / var(--viewport) * 20));
  opacity: 0;
  transition: all 1s;
}
.active .off {
  transform: translateY(0);
  opacity: 1;
}
.delay02 {
  transition-delay: .2s;
}
.delay04 {
  transition-delay: .4s;
}
.delay06 {
  transition-delay: .6s;
}
.delay08 {
  transition-delay: .8s;
}
.delay10 {
  transition-delay: 1s;
}

#menu {
  display: none;
}
.menu {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50px;
  height: 50px;
  transition: transform 250ms ease;
  cursor: pointer;
  z-index: 200;
}
.menu span {
  position: relative;
  display: block;
  width: 50%;
  height: 2px;
  background-color: #fff;
  float: left;
  transform-origin: center center;
  transition: transform 250ms ease;
  z-index: 200;
}
.menu span:nth-of-type(1) {
  transform: translateY(-5px);
}
.menu span:nth-of-type(3) {
  transform: translateY(5px);
}
.nav {
  position: fixed;
  top: 0;
  left: -70vw;
  width: 70vw;
  height: 100lvh;
  margin: 0;
  padding: 0;
  background: #000;
  transition: left .5s ease;
  z-index: 1;
}
.nav ul {
  position: relative;
  list-style-type: none;
  margin: 100px 0;
  padding: 0;
}
.nav ul li {
  position: relative;
}
.nav ul li:after {
  content: "";
  display: block;
  width: calc(100vw / var(--viewport) * 324);
  height: calc(100vw / var(--viewport) * 21);
  background: url(../img/line.webp) center center no-repeat;
  background-size: 100% auto;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.nav ul li a {
  text-decoration: none;
  display: block;
  padding: 0.8em 0;
}
.nav ul li:first-child a {
}
#menu:checked ~ .menu {
  background-color: transparent;
  transform: rotate(360deg);
  transition: transform 250ms ease;
}
#menu:checked ~ .menu span {
  background-color: white;
  transition: transform 250ms ease;
}
#menu:checked ~ .menu span:nth-of-type(1) {
  transform: translateY(1px) rotate(45deg);
}
#menu:checked ~ .menu span:nth-of-type(2) {
  display: none;
}
#menu:checked ~ .menu span:nth-of-type(3) {
  transform: translateY(-1px) rotate(-45deg);
}
#menu:checked ~ .nav {
  left: 0px;
  transition: left 500ms ease;
}
@media screen and (min-width:768px) {
  .nav {
    left: -300px;
    width: 300px;
  }
  .nav ul li:after {
    width: 162px;
    height: 11px;
  }
}

section {
  height: 100lvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.icon_samurai {
  width: calc(100vw / var(--viewport) * 36);
  display: inline-block;
  margin-top: calc(100vw / var(--viewport) * 10);
}
.photo {
  margin-top: 1.8em;
}
.photo img {
  width: calc(100vw / var(--viewport) * 250);
}
.swiper {
  width: 100%;
  margin-top: 1.8em;
}
.swiper-slide .imgBox {
  width: calc(100vw / var(--viewport) * 250);
  display: block;
  margin: 0 auto;
  position: relative;
}
.swiper-slide .icon:after {
  content: "";
  background: url(../img/icon_samurai.webp) center center no-repeat;
  background-size: 100% auto;
  width: calc(100vw / var(--viewport) * 60);
  height: calc(100vw / var(--viewport) * 60);
  position: absolute;
  right: calc(100vw / var(--viewport) * 20);
  bottom: 0;
}
.swiper-slide img {
  width: calc(100vw / var(--viewport) * 250);
  display: block;
  margin: 0 auto;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  width: calc(100vw / var(--viewport) * 24);
  height: calc(100vw / var(--viewport) * 24);
  background: #fff;
  opacity: 1;
}
.swiper-pagination-clickable .swiper-pagination-bullet-active {
  background: #F4E190;
}
@media screen and (max-width:767px) {
  .swiper-wrapper {
    padding-bottom: 3em;
  }
}
@media screen and (min-width:768px) {
  .icon_samurai {
    width: 30px;
    margin-top: 10px;
  }
  .photo img {
    width: 108px;
  }
  .swiper {
    overflow: auto;
    scrollbar-width: none;
  }
  .swiper-wrapper {
    display: grid !important;
    gap: 16px;
    grid-template-columns: repeat(5, 1fr);
  }
  .swiper-slide .imgBox {
    width: 108px;
  }
  .swiper-slide .icon:after {
    width: 40px;
    height: 40px;
    right: 0;
  }
  .swiper-slide img {
    width: 108px;
  }
  .swiper-pagination {
    display: none;
  }
}

#rookie img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}












#footer {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Sans", "Segoe UI", "Meiryo", sans-serif;
  background: #000;
  padding: 1em 0;
}
#footer copyright span {
  font-size: 50%;
  vertical-align: super;
}