@charset "UTF-8";
.entry-btn {
  background: linear-gradient(to right, #bc0a13 0%, #d23d3d 100%);
  color: #fff;
  font-weight: bold;
  padding: 10px;
  display: block;
  border: solid 0.5px #000;
  background-color: #000;
  text-align: center;
  max-width: 300px;
  margin: 10px 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

h1,
.f-container,
.kv-link,
.btn::after,
.back::before,
.bioSP {
  filter: brightness(0) invert(1) !important;
  -webkit-filter: brightness(0) invert(1) !important;
}

.youtube {
  filter: brightness(1) invert(0) !important;
  -webkit-filter: brightness(1) invert(0) !important;
}

.f-icons li {
  filter: brightness(0) invert(1) !important;
  -webkit-filter: brightness(0) invert(1) !important;
}

.st-btn {
  border: solid 1px #fff !important;
}

body {
  color: #ffffff !important;
  background-color: #000000 !important;
}

a,
.s-txt {
  color: #ffffff !important;
}

.n-ttl {
  border-top: #ffffff solid 1px;
  padding-top: 20px;
}

.n-ttl::after {
  border-top: 3px solid #ffffff !important;
  border-right: 3px solid #ffffff !important;
}

header .bar {
  background-color: #ffffff !important;
}

.d-date-wrap {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.modalWrapper {
  background-color: rgba(255, 0, 0, 0.4) !important;
}

#loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* 最前面に表示 */
  overflow: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading img {
  max-width: 260px;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  margin: 36px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border-radius: 100%;
  display: inline-block;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  animation-delay: -0.16s;
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.fade-in {
  animation: fadeIn 0.5s forwards;
  transition: 0.3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.m-body {
  display: none;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #000000;
  background-color: #ffffff;
}

main {
  padding: 0 15px;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #000;
  transition: 0.3s;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.5;
  }
}
.wrapper {
  max-width: 915px;
  margin: 150px auto;
}

.rinNav {
  display: block;
  margin-top: 40%;
}

.initials {
  color: #ff0000;
}

h2 {
  font-size: 8rem;
  font-weight: 100;
  max-width: -moz-fit-content;
  max-width: fit-content;
  position: relative;
}

.st-btn {
  /* background: linear-gradient(to right, #bc0a13 0%, #d23d3d 100%); */
  color: #fff;
  font-weight: bold;
  padding: 10px;
  display: block;
  border: solid 0.5px #000;
  background-color: #000;
  text-align: center;
  max-width: 300px;
  margin: 45px auto 30px;
}

.btn {
  font-size: 1.8rem;
  position: relative;
  display: block;
  max-width: 120px;
  margin-left: auto;
}
.btn::after {
  content: "";
  width: 58px;
  height: 26px;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(/image/next.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.back {
  font-size: 1.8rem;
  position: relative;
  display: block;
  max-width: 120px;
  margin: 40px auto 80px;
  text-align: right;
}
.back::before {
  content: "";
  width: 58px;
  height: 26px;
  position: absolute;
  top: 1px;
  left: 0;
  background-image: url(/image/back.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.inside {
  margin-bottom: 170px;
}

.bioSP {
  display: none;
}

.noscroll {
  overflow: hidden;
}

.modalArea {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(30, 30, 30, 0.7);
}

.modalWrapper {
  background-color: rgba(255, 255, 255, 0.8);
  width: 50%;
  height: 100vh;
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  transition: all 0.4s;
}
.modalWrapper .modalContents {
  font-size: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modalWrapper .modalContents ul {
  margin-top: 90px;
}
.modalWrapper .modalContents ul a {
  display: block;
}
.modalWrapper .modalContents .f-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
.modalWrapper .modalContents .f-icons img {
  max-width: 20px;
  display: block;
  margin-bottom: 10px;
}
.modalWrapper .modalContents .kv-link {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.modalWrapper .modalContents .kv-link img {
  max-width: 16px;
}

.panelActive {
  right: 0;
}

.closeModal {
  max-width: 30px;
  position: absolute;
  top: 3rem;
  right: 2rem;
  cursor: pointer;
}

header {
  max-width: 1200px;
  margin: auto;
  padding: 36px 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  right: 0;
  left: 0;
  z-index: 99;
}
header h1 {
  max-width: 143px;
  transition: opacity 0.3s ease-in-out;
}
header .burger-btn {
  display: block;
  width: 30px;
  height: 7px;
  position: relative;
  cursor: pointer;
}
header .bar {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #464646;
  position: absolute;
  z-index: 9;
}
header .bar-top {
  top: 0;
}
header .bar-bottom {
  bottom: 0;
  right: 0;
  width: 75%;
}

.kv-wrapper {
  padding-top: calc(10vh + 118px);
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 160px;
  justify-content: right;
  align-items: center;
  position: relative;
}
.kv-wrapper .kv {
  max-width: 737px;
  display: none;
}
.kv-wrapper ul {
  font-size: 1.8rem;
}
.kv-wrapper ul .kv-link {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  align-items: center;
}
.kv-wrapper ul .kv-link img {
  max-width: 16px;
}

.scroll-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transform: rotate(90deg);
  position: absolute;
  bottom: 28px;
  left: -40px;
}

.s-txt {
  display: block;
  color: #000;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.s-bar {
  width: 30px;
  height: 1px;
  animation: scroll 5s infinite;
  animation-delay: 1s;
  transition: ease-in-out 0.3s;
}

@keyframes scroll {
  0% {
    opacity: 1;
    background: linear-gradient(to right, #000000 100%);
  }
  10% {
    opacity: 1;
    background: linear-gradient(to right, #ff001a 10%, #000000 90%);
  }
  20% {
    opacity: 1;
    background: linear-gradient(to right, #ff001a 20%, #000000 100%);
  }
  30% {
    opacity: 1;
    background: linear-gradient(to right, #ff001a 30%, #000000 100%);
  }
  40% {
    opacity: 1;
    background: linear-gradient(to right, #ff001a 40%, #000000 100%);
  }
  50% {
    opacity: 1;
    background: linear-gradient(to right, #ff001a 50%, #000000 100%);
  }
  60% {
    opacity: 1;
    background: linear-gradient(to right, #ff001a 60%, #000000 100%);
  }
  70% {
    opacity: 1;
    background: linear-gradient(to right, #ff001a 70%, #000000 100%);
  }
  80% {
    opacity: 1;
    background: linear-gradient(to right, #ff001a 80%, #000000 100%);
  }
  90% {
    opacity: 1;
    background: linear-gradient(to right, #ff001a 90%, #000000 100%);
  }
  100% {
    opacity: 1;
    background: linear-gradient(to right, #ff001a 100%);
  }
}
.n-wrapper h2 ::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: -10px;
  width: 102%;
  height: 1px;
  background: linear-gradient(to right, #ff000d 0%, #000000 100%);
}
.n-wrapper .n-inside .n-box {
  margin: 30px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
}
.n-wrapper .n-inside .n-box .date {
  color: #7b7b7b;
  border: #e3e3e3 solid 1px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 100px;
  padding: 2px 10px;
  margin-bottom: 10px;
}
.n-wrapper .n-inside .n-box .n-txt {
  display: block;
  padding-bottom: 10px;
  border-bottom: solid #e3e3e3 0.5px;
}

.d-wrapper h2 ::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: -10px;
  width: 102%;
  height: 1px;
  background: linear-gradient(to right, #ff000d 0%, #000000 100%);
}
.d-wrapper .d-inside {
  max-width: 500px;
  margin: 30px auto;
}
.d-wrapper .d-inside img {
  box-shadow: 1px 1px 6px rgba(205, 205, 205, 0.3);
}
.d-wrapper .d-inside .d-date-wrap {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
}
.d-wrapper .d-inside .d-tg {
  color: #ffffff;
  font-weight: bold;
  background-color: #ff0000;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 2px 10px;
  margin: 40px 0 10px;
}

.n-mov-box {
  max-width: 1000px;
  margin: auto;
}

.n-mov {
  width: 100%;
  height: 500px;
}

.m-wrapper h2 ::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: -10px;
  width: 104%;
  height: 1px;
  background: linear-gradient(to right, #ff000d 0%, #000000 100%);
}
.m-wrapper .m-inside .m-box {
  max-width: 1000px;
  margin: auto;
}
.m-wrapper .m-inside .m-box .m-movie {
  width: 100%;
  height: 500px;
}
.m-wrapper .m-inside .m-box p {
  font-size: 3rem;
}
.m-wrapper .m-inside .m-box .cs {
  display: block;
  max-width: 400px;
}
.m-wrapper .m-inside .m-box a {
  max-width: 142px;
  margin-top: 15px;
}

footer {
  position: relative;
}
footer .f-main {
  filter: grayscale(100%);
  opacity: 0.6;
}
footer .f-container {
  max-width: 1200px;
  margin: 50px auto 170px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
footer .f-box .bio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer .f-box .bio p {
  text-align: right;
}
footer .f-box ul .name-container {
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: #e3e3e3 solid 0.5px;
  justify-content: space-between;
  width: 250px;
  padding: 5px 0;
}
footer .f-box ul .name-container .f-dummy {
  width: 16px;
  height: 16px;
}
footer .f-box ul .name-container .f-date {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: -moz-max-content;
  max-width: max-content;
}
footer .f-box ul .name-container .f-date .roll {
  font-size: 1rem;
}
footer .f-box ul .name-container .sns-date {
  display: flex;
  gap: 10px;
}
footer .f-box ul .name-container img {
  max-width: 16px;
}
footer .f-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto 70px;
}
footer .f-icons img {
  max-width: 16px;
}
footer .copy {
  text-align: center;
  padding: 30px 0;
  background-color: #000000;
  color: #ffffff;
  font-weight: normal;
}

#page_top {
  position: absolute;
  right: 4%;
  bottom: 3%;
  max-width: 80px;
  transition: 0.3s;
}

#page_top a {
  display: block;
  transition: 0.3s;
}

#page_top a:hover {
  opacity: 1;
}

@media screen and (max-width: 1040px) {
  .n-mov-box {
    max-width: 90vw;
  }
  .n-mov {
    width: 100%;
    height: 200px;
    display: block;
    margin: auto;
  }
  body {
    padding: unset;
  }
  main {
    padding: 0 15px;
  }
  .inside {
    margin-bottom: 80px;
  }
  .n-wrapper {
    margin: 140px auto 0;
  }
  .d-wrapper,
  .m-wrapper {
    margin: 40px auto 0;
  }
  header h1 {
    max-width: 60px;
  }
  h2 {
    font-size: 5.5rem;
  }
  .kv-wrapper {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 24px;
  }
  .kv-wrapper ul {
    padding-right: 10px;
  }
  .kv-wrapper .kv {
    max-width: 80vw;
  }
  .n-wrapper h2 ::after {
    bottom: 15px;
    left: -43px;
    width: 115%;
  }
  .d-wrapper .m-date-wrap {
    font-size: 1.6rem;
  }
  .d-wrapper h2 ::after {
    bottom: 15px;
    left: -34px;
    width: 120%;
  }
  .d-wrapper img {
    max-width: 80vw;
    display: block;
    margin: auto;
  }
  .m-wrapper h2 ::after {
    bottom: 15px;
    left: -23.8px;
    width: 115%;
  }
  .m-wrapper .m-inside .m-box {
    max-width: 90vw;
  }
  .m-wrapper .m-inside .m-box .m-movie {
    width: 100%;
    height: 200px;
    display: block;
    margin: auto;
  }
  .m-wrapper .m-inside .m-box p {
    font-size: 1.6rem;
  }
  footer .bioSP {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    padding: 0 15px;
    line-height: 1.2;
    align-items: center;
    margin: 10px auto;
    text-align: right;
  }
  footer .bioSP img {
    max-width: 60px;
  }
  footer .f-container {
    padding: 0 15px;
    margin: 20px auto 100px;
  }
  footer .f-container .f-box .bio {
    display: none;
  }
  .modalWrapper .modalContents {
    font-size: 1.6rem;
  }
  .modalWrapper .modalContents .f-icons {
    flex-direction: column;
  }
}
.tiktok {
  filter: unset !important;
  -webkit-filter: unset !important;
}/*# sourceMappingURL=style.css.map */