@charset "UTF-8";
/*　基本
=============================================================================================== */
/*　フォント
=============================================================================================== */
/*　media queries
=============================================================================================== */
/*　余白
=============================================================================================== */
/*　アニメーション
=============================================================================================== */
@keyframes loop-slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-img {
  0% {
    scale: 1;
  }
  50% {
    scale: 2;
  }
  100% {
    scale: 1;
  }
}
/*　背景ラウンド
=============================================================================================== */
body {
  background-color: #1A1A1A;
  color: #fff;
}
body.serviceBg .profile, body.serviceBg .news, body.serviceBg .service {
  background-color: #D9D7D7;
  color: #1A1A1A;
}
body.serviceBg .profile a, body.serviceBg .news a, body.serviceBg .service a {
  color: #1A1A1A;
}

/*　メインビジュアル
=============================================================================================== */
.animation-bg > div {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .animation-bg > div {
    display: block;
  }
}
.animation-bg .h1-textMain {
  font-family: "kohinoor", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
}
@media (max-width: 767px) {
  .animation-bg .h1-textMain {
    font-size: 24vw;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .animation-bg .h1-textMain {
    font-size: 170px;
  }
}
@media (min-width: 1200px) {
  .animation-bg .h1-textMain {
    font-size: 220px;
  }
}
.animation-bg .h1-textMain .titleAnime:nth-of-type(2) span {
  transition-delay: 0.2s;
}
.animation-bg .h1-textSub {
  font-family: "objektiv-variable", sans-serif;
  font-variation-settings: "wght" 300;
  letter-spacing: 0px;
  line-height: 1;
}
@media (max-width: 767px) {
  .animation-bg .h1-textSub {
    font-size: 12vw;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .animation-bg .h1-textSub {
    font-size: 52px;
    line-height: 1.8;
  }
}
@media (min-width: 1200px) {
  .animation-bg .h1-textSub {
    font-size: 84px;
    line-height: 1.6;
  }
}
.animation-bg .h1-textSub .titleAnime span {
  transition-delay: 0.4s;
}

.main-v {
  position: relative;
  width: 100%;
}
.main-v .bgRound::before {
  background-color: #1A1A1A;
}
.main-v .main-text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 100px;
  mix-blend-mode: overlay;
}
.main-v .main-text h1 {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .main-v .main-text h1 {
    display: block;
  }
}
.main-v .main-text h1 .h1-textMain {
  font-family: "kohinoor", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
}
@media (max-width: 767px) {
  .main-v .main-text h1 .h1-textMain {
    font-size: 24vw;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .main-v .main-text h1 .h1-textMain {
    font-size: 170px;
  }
}
@media (min-width: 1200px) {
  .main-v .main-text h1 .h1-textMain {
    font-size: 220px;
  }
}
.main-v .main-text h1 .h1-textSub {
  font-family: "objektiv-variable", sans-serif;
  font-variation-settings: "wght" 300;
  letter-spacing: 0px;
}
@media (max-width: 767px) {
  .main-v .main-text h1 .h1-textSub {
    font-size: 12vw;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .main-v .main-text h1 .h1-textSub {
    font-size: 52px;
    line-height: 1.8;
  }
}
@media (min-width: 1200px) {
  .main-v .main-text h1 .h1-textSub {
    font-size: 84px;
    line-height: 1.6;
  }
}

.video {
  width: 100%;
  height: calc(100vh + 100px);
  min-height: 700px;
}
@media (max-width: 767px) {
  .video {
    height: 100vh;
    min-height: 600px;
  }
}
.video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*　メッセージ
=============================================================================================== */
.profile {
  padding-top: 80px;
  padding-bottom: 240px;
  transition: 0.5s;
}

.news {
  padding-bottom: 160px;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .news {
    padding-bottom: 80px;
  }
}
.news a {
  color: #fff;
}
.news .section {
  position: relative;
}
.news .news-slide .swiper {
  width: calc(100% + 50vw - 50%);
}
.news .news-slide .news-img {
  position: relative;
  width: 100%;
  height: 315px;
  overflow: hidden;
}
.news .news-slide .news-img img {
  transition: 1s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news .news-slide h4 {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news .news-slide .news-list-box:hover .news-img img, .news .news-slide .news-list-box:focus .news-img img {
  scale: 1.3;
}
.news .more-btn {
  position: absolute;
  right: 15px;
  top: 0;
  display: inline-block;
}

.service {
  position: relative;
  transition: 0.5s;
}
.service > div {
  display: flex;
  flex-wrap: wrap;
}
.service .service-title {
  position: sticky;
  left: 0;
  top: 0;
  height: 100vh;
  padding-bottom: 120px;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .service .service-title {
    width: 100%;
    height: 30%;
    padding-bottom: 0;
    padding-top: 80px;
    margin-bottom: 50px;
    height: auto;
    mix-blend-mode: overlay;
    color: #fff;
    margin-bottom: 30vh;
  }
}
.service .service-title h2 {
  margin-bottom: 0;
  width: 100%;
}
.service .service-title .service-numWrap {
  position: relative;
}
.service .service-title .service-num {
  font-size: 150px;
  line-height: 1;
  height: 150px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.service .service-title .service-num > div {
  translate: 0 100%;
  transition: 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.service .service-title .service-num > div.prev {
  translate: 0 -100%;
}
.service .service-title .service-num > div.on {
  translate: 0 0;
  opacity: 1;
}
.service .service-title .service-numAll {
  font-size: 82px;
  line-height: 1;
}
@media (max-width: 767px) {
  .service .service-title .service-numAll {
    font-size: 30px;
    position: absolute;
    left: 170px;
    bottom: 22px;
  }
}
.service .service-contents {
  width: calc(100% - 200px);
  padding-left: 40px;
}
@media (max-width: 767px) {
  .service .service-contents {
    width: 100%;
    padding-left: 0;
    margin-top: -30vh;
  }
}
.service .service-contents > div {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .service .service-contents > div {
    height: auto;
    min-height: auto;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .service .service-contents > div.service-contents01 {
    padding-bottom: 140px;
  }
}
@media (max-width: 767px) {
  .service .service-contents > div.service-contents02 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
@media (max-width: 767px) {
  .service .service-contents > div.service-contents03 {
    padding-top: 140px;
  }
}
.service .service-contents > div h3 + p {
  font-size: 1.25rem;
}

.process {
  background: linear-gradient(#D9D7D7, #1A1A1A);
  color: #fff;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .process {
    padding-top: 160px;
  }
}
.process .process-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .process .process-box + .process-box {
    margin-top: -20px;
  }
}
@media (max-width: 767px) {
  .process .process-box {
    justify-content: center;
    border: 1px solid;
    max-width: 500px;
    margin: auto;
    border-radius: 500px;
    min-height: 500px;
    padding: 0 24px 0;
    align-items: center;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .process .process-box {
    height: 370px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .process .process-box {
    height: 230px;
  }
}
.process .process-box .boxRound {
  width: 390px;
  height: 390px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 400px;
  border: 1px solid;
  position: absolute;
  left: calc((50vw - 50%) * -1 + 50px);
  font-size: 2.625rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .process .process-box .boxRound {
    width: 250px;
    height: 250px;
    font-size: 1.75rem;
  }
}
@media (max-width: 767px) {
  .process .process-box .boxRound {
    width: 300px;
    height: 150px;
    position: unset;
    margin-bottom: 32px;
    font-size: 2rem;
    border: none;
    align-items: center;
  }
}
.process .process-box .boxText {
  margin-left: calc(440px - (50vw - 50%) + 120px);
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .process .process-box .boxText {
    margin-left: calc(300px - (50vw - 50%) + 50px);
  }
}
@media (max-width: 767px) {
  .process .process-box .boxText {
    margin-left: 0;
    margin-bottom: 56px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .process .process-box .boxText h3 {
    font-size: 1.25rem;
  }
}

.ticketBox {
  background-color: #1A1A1A;
  padding-top: 160px;
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .ticketBox {
    padding-top: 120px;
  }
}

.instaglam {
  padding-bottom: 160px;
}
.instaglam #sbi_images {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.instaglam .section {
  position: relative;
}
.instaglam .circleText-wrap {
  width: 100%;
  overflow: hidden;
  height: 360px;
  padding-top: 70px;
  position: relative;
  z-index: -1;
}
@media (max-width: 767px) {
  .instaglam .circleText-wrap {
    height: 240px;
  }
}
.instaglam .circleText {
  overflow: visible;
  width: 200%;
  margin-left: -50%;
}
.instaglam .circleText-circle {
  fill: none;
}
.instaglam .circleText-text {
  fill: #fff;
  font-size: 2px;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) and (max-width: 991px) {
  .instaglam .circleText-text {
    font-size: 3px;
  }
}
@media (max-width: 767px) {
  .instaglam .circleText-text {
    font-size: 4px;
  }
}
@media (max-width: 575px) {
  .instaglam .circleText-text {
    font-size: 5px;
  }
}
.instaglam .textBtn {
  position: absolute;
  right: 15px;
  top: 0;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fanclab {
  position: relative;
}
.fanclab::before {
  content: "";
  background-image: url(../images/fanclabImg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-clip-path: ellipse(100% 100% at top);
          clip-path: ellipse(100% 100% at top);
}
.fanclab > div,
.fanclab a {
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 680px;
  position: relative;
  z-index: 7;
  -webkit-clip-path: ellipse(100% 100% at top);
          clip-path: ellipse(100% 100% at top);
  transition: 0.5s;
}
@media (max-width: 767px) {
  .fanclab > div,
  .fanclab a {
    height: 500px;
  }
}
.fanclab > div::before,
.fanclab a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: hsla(0, 100%, 50%, 0);
  background-image: radial-gradient(at 12% 93%, #000 0px, transparent 50%), radial-gradient(at 87% 4%, #000 0px, transparent 50%), radial-gradient(at 0% 50%, #000 0px, transparent 50%), radial-gradient(at 96% 91%, #000 0px, transparent 50%);
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.fanclab > div:hover .fanclab-arrow::before, .fanclab > div:focus .fanclab-arrow::before,
.fanclab a:hover .fanclab-arrow::before,
.fanclab a:focus .fanclab-arrow::before {
  background-color: #1A1A1A;
}
.fanclab > div:hover .fanclab-arrow::after, .fanclab > div:focus .fanclab-arrow::after,
.fanclab a:hover .fanclab-arrow::after,
.fanclab a:focus .fanclab-arrow::after {
  scale: 1;
  opacity: 1;
}
.fanclab .fanclab-arrow {
  width: 108px;
  height: 108px;
  border: 1px solid #fff;
  border-radius: 200px;
  margin: 56px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 7;
  transition: 0.5s;
}
.fanclab .fanclab-arrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 21px;
  mask: url(../images/arrow.svg);
  -webkit-mask: url(../images/arrow.svg);
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-color: #fff;
  transition: 0.5s;
}
.fanclab .fanclab-arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1000px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  scale: 0;
  transition: 0.5s;
  opacity: 0;
  background-color: #fff;
  border: 1px solid #fff;
}

.fanclabWrap {
  position: relative;
  z-index: 7;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -12px;
}
@media (max-width: 767px) {
  .fanclabWrap {
    font-size: 52px;
  }
}
.fanclabWrap .letter-text {
  margin-bottom: 80px;
  font-family: "objektiv-variable", sans-serif;
  font-variation-settings: "wght" 300;
  letter-spacing: 0px;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
.fanclabWrap .letter-text .letter-text-slide {
  display: flex;
  animation: loop-slide-left 40s infinite linear 1.5s both;
}
.fanclabWrap .letter-text span {
  margin: 0 32px;
}

@keyframes loop-slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}/*# sourceMappingURL=top.css.map */