@charset "UTF-8";
/* Giga CSS (main.css) */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #2b2b2b;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.no_pc {
  display: inline;
}

.no_sp {
  display: none;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

fieldset {
  border: none;
  outline: 0;
}

ul, ol {
  list-style: none;
}

ul, ol, li, h1, h2, h3, h4, h5, h6, dl, dt, dd, a, strong {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: normal;
}

div {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

img, a img {
  border: none;
}

table {
  letter-spacing: 1px;
}

iframe {
  border: none;
}

strong {
  font-weight: bold;
}

/* ============================================
 base
============================================ */
html {
  overflow-y: scroll;
}

html, body {
  width: 100%;
  height: auto;
  color: #2b2b2b;
  min-width: 320px;
  letter-spacing: -0.2px;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
  word-break: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes loadingAnim {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}
@keyframes tenten {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #000000;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 200px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#exterior_wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}

#main-container {
  position: relative;
  overflow: hidden;
}

.header-sns {
  margin-top: 0px;
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 1;
}
.header-sns ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header-sns li {
  margin: 5px 0;
}
.header-sns li:nth-child(even) {
  margin: 5px 5px 5px 0;
}
.header-sns a {
  background: #c0b4a0;
  padding: 10px;
  width: 2em;
  height: 2em;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 18px;
  font-size: 4.8vw;
}

#parallax-container {
  position: relative;
  padding-top: 100dvh;
  padding-top: calc(var(--vh, 1vh) * 100);
  padding-bottom: 150dvh;
  padding-bottom: calc(var(--vh, 1vh) * 150);
}

.parallax-layer {
  z-index: 10;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 30dvh;
  min-height: calc(var(--vh, 1vh) * 30);
  top: 0;
  margin: 0 auto;
  margin-bottom: 30dvh;
  margin-bottom: calc(var(--vh, 1vh) * 30);
}

#layerbg {
  z-index: 0;
  position: fixed;
  top: 0;
  margin: 0;
  width: 100%;
  background-position: 50% 50%;
  box-shadow: none;
}

#layer1 {
  z-index: 10; /* 最背面 */
  overflow: visible;
}

#layer2 {
  z-index: 11;
  overflow: visible;
}

#layer3 {
  z-index: 12;
  box-shadow: none;
  overflow: visible;
}

#layer4 {
  z-index: 13;
  overflow: visible;
}

#layer5 {
  z-index: 14; /* 最前面 */
  overflow: visible;
}

#layer6 {
  z-index: 15; /* 最前面 */
  overflow: visible;
}

#section01_video-area {
  background: #000;
  position: fixed;
  z-index: -2; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#video_section01 {
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
}

:root {
  --youtube-aspect-ratio: (9 / 16);
}

.youtube-background-cover-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.youtube-background-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(110vw, 110vh / var(--youtube-aspect-ratio));
  height: max(110vh, 110vw * var(--youtube-aspect-ratio));
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

.video_mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  background: url("../images/bg_mesh2.png") repeat;
  opacity: 0.7;
}

/* simplebar用 */
.simplebar-track {
  background: transparent; /* バーの背景色を設定できます*/
  border-radius: 0;
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 0;
}

.simplebar-track.simplebar-vertical {
  border: solid 2px #2b2b2b;
  width: 6px;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1; /* デフォルトだと薄くなっています。*/
}

.simplebar-track .simplebar-scrollbar::before {
  background: #2b2b2b; /* ここでバーの色を設定 */
  border-radius: 0;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

h2 {
  text-align: center;
}
h2 img {
  width: 50%;
}

.container {
  width: 100%;
  min-height: 30dvh;
  min-height: calc(var(--vh, 1vh) * 30);
  padding: 5px;
}

#news {
  background: url(../images/news-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 2% 2% 7% 2%;
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.4), 0px 0px 12px rgba(0, 0, 0, 0.4);
}
#news .nozokikuma {
  position: absolute;
  top: -95px;
  width: 105px;
  left: 50%;
  transform: translate(-50%, 0);
  transform-origin: center;
}

.news-wrap {
  position: relative;
  padding: 10% 7% 11% 8%;
  background-image: url(../images/news-bg-inner.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% 100%;
}
.news-wrap .arrow {
  position: absolute;
  right: 30px;
  top: 34%;
  width: 20px;
}
.news-wrap .news-list {
  padding: 0px 30px 0px 15px;
  min-height: 10em;
  max-height: 16em;
}
.news-wrap .news-list ul li {
  margin: 18px auto;
}
.news-wrap .news-list ul li:first-child {
  margin-top: 0;
}
.news-wrap .news-list .date {
  font-size: 11px;
  font-size: 2.9333333333vw;
  font-weight: 400;
  font-family: copperplate, "Noto Sans JP", sans-serif;
  font-style: normal;
  color: #9f2828;
}
.news-wrap .news-list .tit {
  font-size: 12px;
  font-size: 3.2vw;
  font-weight: bold;
  flex: 1;
}
.news-wrap .andmore {
  position: absolute;
  right: 5%;
  bottom: 5%;
  width: 22%;
}

#works {
  background: url(../images/works-bg.png) no-repeat center;
  background-size: cover;
  padding: 2% 2% 5% 2%;
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.4), 0px 0px 12px rgba(0, 0, 0, 0.4);
}
#works .arukikuma {
  position: absolute;
  top: -48px;
  width: 60px;
  right: 3%;
}

.works-wrap {
  display: flex;
  overflow: hidden;
}
.works-wrap .works-box {
  margin: 1%;
  flex: 1;
  padding: 2%;
  background: #d8d0c2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.works-wrap .works-box .works-img {
  position: relative;
  margin-top: 5%;
}
.works-wrap .works-box .works-text .works-title {
  font-size: 10px;
  font-size: 2.6666666667vw;
  text-align: center;
  font-weight: 400;
  font-family: copperplate, "Noto Sans JP", sans-serif;
  font-style: normal;
  color: #9f2828;
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 10px;
}
.works-wrap .works-box .works-text .works-desc {
  font-size: 7px;
  font-size: 1.8666666667vw;
}
.works-wrap .works-main {
  flex: 3;
  display: block;
}
.works-wrap .works-main .works-img {
  border: solid #2b2b2b 2px;
}
.works-wrap .andmore {
  position: absolute;
  right: 4%;
  bottom: 7%;
  width: 19%;
}

.works-arrow {
  margin: 5px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper {
  margin: 0 auto;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.swiper .box-playlist .date {
  margin: 10px 0 5px;
  font-size: 8px;
  font-size: 2.1333333333vw;
  text-align: center;
  font-weight: 400;
  font-family: copperplate, "Noto Sans JP", sans-serif;
}
.swiper .box-playlist h3 {
  font-size: 11px;
  font-size: 2.9333333333vw;
  text-align: center;
  font-family: copperplate, "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 800;
  color: #9f2828;
  line-height: 1.3;
  margin-bottom: 10px;
}
.swiper .box-playlist .obi p {
  font-size: 7px;
  font-size: 1.8666666667vw;
  text-align: center;
}
.swiper .box-playlist .artist-img {
  text-align: center;
}
.swiper .box-playlist .artist-img img {
  border: solid #2b2b2b 2px;
  object-fit: cover;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.swiper .box-playlist .artist-img.artist-img02 img {
  width: 80%;
}
.swiper .box-playlist .artist-img.artist-img04 img {
  width: 45%;
}

.swiper-button-next, .swiper-button-prev {
  position: relative;
  display: block;
  width: 10%;
  height: auto;
  margin: 0px 15%;
}

.artist-window {
  max-width: 800px;
  height: 100%;
  padding: 0;
  background: transparent;
}
.artist-window .window_inner {
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  padding: 50px;
  min-height: 550px;
  height: auto;
}
.artist-window .window_inner .date {
  position: absolute;
  left: 15px;
  top: 25px;
  text-align: right;
  font-size: 13px;
  font-size: 3.4666666667vw;
  font-weight: 400;
  font-family: copperplate, "Noto Sans JP", sans-serif;
  color: #9f2828;
}
.artist-window .window_inner .window_detail {
  position: relative;
}
.artist-window .window_inner h3 {
  color: #9f2828;
  text-align: left;
  font-size: 14px;
  font-size: 3.7333333333vw;
  font-weight: 800;
  font-family: copperplate, "Noto Sans JP", sans-serif;
  font-style: normal;
  margin-bottom: 25px;
  padding-top: 20px;
  letter-spacing: 1px;
}
.artist-window .window_inner .detail p {
  font-size: 10px;
  font-size: 2.6666666667vw;
  margin-bottom: 10px;
  color: #fff;
}
.artist-window .window_inner .detail a {
  color: #fff;
  text-decoration: underline;
}
.artist-window .window_inner .close {
  margin-top: 90px;
  margin-bottom: 0;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-size: 1.8333333333rem;
  letter-spacing: 2px;
  font-family: fot-klee-pro, "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}
.artist-window .window_inner .btn_close {
  color: #fff;
  position: fixed;
  right: 30px;
  top: 22px;
  width: 40px;
  cursor: pointer;
}
.artist-window .window_inner .window_img {
  text-align: center;
  width: 100%;
  margin: 30px auto 20px;
}
.artist-window .window_inner .window_img.window_img02 img {
  width: 80%;
}
.artist-window .window_inner .window_img.window_img04 img {
  width: 50%;
}

#layer3 {
  margin-bottom: 50dvh;
  margin-bottom: calc(var(--vh, 1vh) * 50);
}
#layer3 h2 {
  position: relative;
  padding-top: 40px;
}

.profile-bg {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
}
.profile-bg img {
  width: 100%;
  height: 105%;
}

#profile {
  position: relative;
  padding: 0% 5% 5% 3%;
  margin: 2% 2% 2% 2%;
  width: 96%;
  border-radius: 20px;
}

.profile-wrap .profile-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.profile-wrap .profile-box .profile-img {
  width: 35%;
  margin-top: -5%;
}
.profile-wrap .profile-box .profile-text {
  width: 65%;
  padding: 25px;
  background: #e7cab2;
}
.profile-wrap .profile-box .profile-text p {
  letter-spacing: -0.5px;
  font-size: 10.5px;
  font-size: 2.8vw;
}
.profile-wrap .simplebar-track {
  right: -25px;
  left: auto;
}
.profile-wrap .profile-sns {
  margin-top: 10px;
}
.profile-wrap .profile-sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-wrap .profile-sns li {
  margin: 0 5px;
}
.profile-wrap .profile-sns li:nth-child(even) {
  margin: 10px 5px 0 5px;
}
.profile-wrap .profile-sns a {
  background: #e9c7a6;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 18px;
  font-size: 4.8vw;
}

#layer4 {
  margin-bottom: 50dvh;
  margin-bottom: calc(var(--vh, 1vh) * 50);
}

#videos {
  background: #37405d;
  background-size: cover;
  padding: 2% 2% 5% 2%;
  overflow: hidden;
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.4), 0px 0px 12px rgba(0, 0, 0, 0.4);
}
#videos .arukikuma {
  position: absolute;
  top: -48px;
  width: 60px;
  left: 3%;
}

.videos-wrap {
  display: block;
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
}
.videos-wrap .videos-box {
  position: relative;
  width: 100%;
  padding-top: 0;
}
.videos-wrap .videos-box iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
}
.videos-wrap .videos-main .videos-img {
  border: solid #2b2b2b 2px;
}

.videos-name {
  background-image: url(../images/video-name-bg.png), url(../images/video-name-bg.png), url(../images/video-name-bg.png), url(../images/video-name-bg.png);
  background-position: center top, right center, center bottom, left center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 86%;
  margin: 15px auto 0;
  padding: 10px 10px;
}
.videos-name p {
  font-size: 7.5px;
  font-size: 2vw;
  margin-top: 5px;
  text-align: center;
  font-family: copperplate, "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-style: normal;
}
.videos-name p:first-child {
  font-size: 12px;
  font-size: 3.2vw;
  text-align: center;
  font-weight: bold;
  font-family: copperplate, "Noto Sans JP", sans-serif;
  font-style: normal;
  color: #9f2828;
  margin-top: 0;
}
.videos-name p span {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 7.5px;
  font-size: 2vw;
  text-align: center;
  font-weight: bold;
  font-family: copperplate, "Noto Sans JP", sans-serif;
  font-style: normal;
  color: #9f2828;
}

.videos-arrow {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.videos-arrow img {
  width: 15%;
}

.swiper2 .swiper-button-prev2 {
  position: absolute;
  left: 5.5%;
  top: 13em;
  transform: translate(0px, -50%);
  width: 4%;
  z-index: 2;
}
.swiper2 .swiper-button-next2 {
  position: absolute;
  right: 5.5%;
  top: 13em;
  transform: translate(0px, -50%);
  width: 4%;
  z-index: 2;
}

.swiper3 .swiper-slide {
  opacity: 0.5;
  transform: scale(0.65);
  transition: 0.5s;
}
.swiper3 .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.swiper3 .swiper-pagination {
  position: relative;
  width: 100%;
  bottom: 0px;
  margin-top: 20px;
}
.swiper3 .swiper-pagination .swiper-pagination-bullet {
  /*ドットのサイズを変更*/
  width: 8px;
  height: 8px;
}
.swiper3 .swiper-pagination .swiper-pagination-bullet {
  /*ドットの間隔を変更*/
  margin: 0 5px !important;
}
.swiper3 .swiper-pagination .swiper-pagination-bullet {
  /*ドットの色を変更*/
  background-color: #e7cab2;
}

.swiper-button-prev3 {
  position: absolute;
  left: 28%;
  top: 45%;
  transform: translate(0px, -100%);
  width: 7%;
  z-index: 2;
}

.swiper-button-next3 {
  position: absolute;
  right: 28%;
  top: 45%;
  transform: translate(0px, -100%);
  width: 7%;
  z-index: 2;
}

#layer5 {
  margin-top: 50dvh;
  margin-top: calc(var(--vh, 1vh) * 50);
  margin-bottom: 50dvh;
  margin-bottom: calc(var(--vh, 1vh) * 50);
}

#listen {
  background: url(../images/listen-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 2% 0% 5% 0%;
  overflow: visible;
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.4), 0px 0px 12px rgba(0, 0, 0, 0.4);
}
#listen .arukikuma {
  position: absolute;
  top: -48px;
  width: 60px;
  right: 3%;
}

.listen-wrap {
  display: block;
}
.listen-wrap .listen-box {
  margin: 1%;
  flex: 1;
  padding: 2% 0;
  background: transparent;
}
.listen-wrap .listen-box .listen-text .listen-title {
  font-size: 11px;
  font-size: 2.9333333333vw;
  text-align: center;
  font-weight: 800;
  font-family: copperplate, "Noto Sans JP", sans-serif;
  font-style: normal;
  color: #fff;
  line-height: 1.3;
  margin-top: 15px;
  margin-bottom: 5px;
}
.listen-wrap .listen-box .listen-text .listen-desc {
  font-size: 9px;
  font-size: 2.4vw;
  font-weight: 500;
  font-family: copperplate, "Noto Sans JP", sans-serif;
  font-style: normal;
  color: #e6e6e6;
}
.listen-wrap .listen-box .listen-text .listen-desc p {
  text-align: center;
}
.listen-wrap .listen-main .listen-img {
  border: solid #2b2b2b 2px;
}

.listen-arrow {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact {
  background: url(../images/news-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 2% 2% 15% 2%;
  margin-bottom: 50dvh;
  margin-bottom: calc(var(--vh, 1vh) * 50);
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.4), 0px 0px 12px rgba(0, 0, 0, 0.4);
}
#contact .nozokikuma {
  position: absolute;
  bottom: -95px;
  width: 105px;
  left: 51%;
  transform: translate(-50%, 0);
  transform-origin: center;
}

.contact-wrap {
  position: relative;
  padding: 4% 7% 5% 8%;
  background-image: url(../images/news-bg-inner.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% 100%;
}
.contact-wrap .arrow {
  position: absolute;
  right: 30px;
  top: 34%;
  width: 20px;
}

.contactForm {
  position: relative;
  z-index: 1;
  color: #2b2b2b;
  max-width: 450px;
  margin: 0 auto;
  padding: 0;
  width: 90%;
}
.contactForm p {
  margin: 0 auto;
  text-align: left;
  font-size: 10px;
  font-size: 2.6666666667vw;
}
.contactForm .block {
  font-size: 10px;
  font-size: 2.6666666667vw;
}
.contactForm dt {
  font-weight: 400;
  font-family: copperplate, "Noto Sans JP", sans-serif;
  font-style: normal;
  color: #9f2828;
  font-size: 10px;
  font-size: 2.6666666667vw;
  margin: 8px auto 1px;
}

input {
  outline: 0;
  background: #fff;
  width: 100%;
  border: 0;
  padding: 10px;
  box-sizing: border-box;
  font-size: 16px;
  font-size: 1.3333333333rem;
  border-radius: 5px;
}
input.btn_submit {
  background: #842a27;
  color: #fff;
}
textarea {
  resize: vertical;
  outline: 0;
  background: #fff;
  width: 100%;
  border: 0;
  padding: 10px;
  box-sizing: border-box;
  font-size: 16px;
  font-size: 1.3333333333rem;
  border-radius: 5px;
}

.copyright {
  font-size: 10px;
  font-size: 0.8333333333rem;
  text-align: center;
  width: 100%;
  color: #000;
  margin-top: 0px;
  position: absolute;
  bottom: 5%;
  left: 0;
}

#fusen-kuma01 {
  position: fixed;
  bottom: -250px;
  left: 3px;
  width: 80px;
  z-index: 20;
}

#fusen-kuma02 {
  position: fixed;
  bottom: -500px;
  right: -5px;
  width: 80px;
  z-index: 20;
}

footer {
  padding-top: 500px;
}

@media screen and (min-width: 768px) {
  .no_pc {
    display: none;
  }
  .no_sp {
    display: inline;
  }
  /* ============================================
   base
  ============================================ */
  html {
    overflow-y: scroll;
  }
  html, body {
    width: 100%;
    height: auto;
    color: #2b2b2b;
    min-width: 320px;
    letter-spacing: -0.2px;
    font-size: 14px;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.4;
    word-break: break-word;
    -webkit-text-size-adjust: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  /* Loading背景画面設定　*/
  #splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #000000;
    text-align: center;
    color: #fff;
  }
  /* Loading画像中央配置　*/
  #splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  /* Loading アイコンの大きさ設定　*/
  #splash_logo img {
    width: 400px;
  }
  #exterior_wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
  #main-container {
    position: relative;
  }
  .header-sns {
    margin-top: 0px;
    position: fixed;
    left: 20px;
    top: 20px;
    z-index: 1;
  }
  .header-sns ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header-sns li {
    margin: 5px 0;
  }
  .header-sns li:nth-child(even) {
    margin: 5px 5px 5px 0;
  }
  .header-sns a {
    background: #c0b4a0;
    padding: 10px;
    width: 2em;
    height: 2em;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 18px;
    font-size: 1.5rem;
  }
  #parallax-container {
    padding-top: 100dvh;
    padding-top: calc(var(--vh, 1vh) * 100);
    padding-bottom: 200dvh;
    padding-bottom: calc(var(--vh, 1vh) * 200);
  }
  .parallax-layer {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 30dvh;
    min-height: calc(var(--vh, 1vh) * 30);
    top: 0;
    margin: 0 auto;
    margin-bottom: 30dvh;
    margin-bottom: calc(var(--vh, 1vh) * 30);
  }
  #layerbg {
    position: fixed;
    top: 0;
    margin: 0;
    width: 100%;
    background-position: 50% 50%;
  }
  #layerbg img {
    position: relative;
    top: 0;
    width: 100%;
  }
  #layer1 {
    z-index: 10; /* 最背面 */
  }
  #layer2 {
    z-index: 11;
  }
  #layer3 {
    z-index: 12;
    box-shadow: none;
  }
  #layer4 {
    z-index: 13;
  }
  #layer5 {
    z-index: 14; /* 最前面 */
  }
  #layer6 {
    z-index: 15; /* 最前面 */
  }
  #section01_video-area {
    background: #000;
    position: fixed;
    z-index: -2; /*最背面に設定*/
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
  }
  #video_section01 {
    position: absolute;
    top: 50%;
    left: 50%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
  }
  .video_mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/bg_mesh2.png") repeat;
    opacity: 0.7;
  }
  /* simplebar用 */
  .simplebar-track {
    background: transparent; /* バーの背景色を設定できます*/
    border-radius: 0;
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .simplebar-track.simplebar-vertical {
    border: solid 2px #2b2b2b;
    width: 10px;
  }
  .simplebar-track .simplebar-scrollbar.simplebar-visible::before {
    opacity: 1; /* デフォルトだと薄くなっています。*/
  }
  .simplebar-track .simplebar-scrollbar::before {
    background: #2b2b2b; /* ここでバーの色を設定 */
    border-radius: 0;
  }
  .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
  }
  h2 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  h2 img {
    width: 45%;
  }
  .container {
    width: 100%;
    min-height: 20dvh;
    min-height: calc(var(--vh, 1vh) * 20);
    padding: 5px;
  }
  #news {
    background: url(../images/news-bg.jpg) no-repeat center;
    background-size: cover;
    padding: 2% 2% 7% 2%;
  }
  #news .nozokikuma {
    position: absolute;
    top: -165px;
    width: 185px;
    left: 50%;
    transform: translate(-50%, 0);
    transform-origin: center;
  }
  #news .simplebar-track.simplebar-vertical {
    left: -20px;
  }
  .news-wrap {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    padding: 7% 7% 7% 8%;
    background-image: url(../images/news-bg-inner.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 100% 100%;
  }
  .news-wrap .arrow {
    position: absolute;
    right: 51px;
    top: 37%;
    width: 40px;
  }
  .news-wrap .news-list {
    padding: 0px 30px 0px 10px;
    min-height: 10em;
    max-height: 20em;
  }
  .news-wrap .news-list ul li {
    margin: 35px auto;
  }
  .news-wrap .news-list ul li:first-child {
    margin-top: 0;
  }
  .news-wrap .news-list ul li:last-child {
    margin-bottom: 0;
  }
  .news-wrap .news-list ul li a {
    display: flex;
  }
  .news-wrap .news-list .date {
    margin-right: 40px;
    font-size: 16px;
    font-size: 1.3333333333rem;
    font-weight: 400;
    font-family: copperplate, "Noto Sans JP", sans-serif;
    font-style: normal;
    color: #9f2828;
  }
  .news-wrap .news-list .tit {
    font-size: 16px;
    font-size: 1.3333333333rem;
  }
  #layer2 {
    margin-bottom: 40dvh;
    margin-bottom: calc(var(--vh, 1vh) * 40);
  }
  #works {
    background: url(../images/works-bg.png) no-repeat center;
    background-size: cover;
    padding: 2% 2% 5% 2%;
  }
  #works .arukikuma {
    position: absolute;
    top: -84px;
    width: 120px;
    right: 3%;
  }
  .works-wrap {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
  }
  .works-wrap .works-box {
    margin: 1%;
    flex: 1;
    padding: 2%;
    justify-content: center;
    background: #d8d0c2;
  }
  .works-wrap .works-box .works-text .works-title {
    font-size: 14px;
    font-size: 1.1666666667rem;
    text-align: center;
    font-weight: 400;
    font-family: copperplate, "Noto Sans JP", sans-serif;
    font-style: normal;
    color: #9f2828;
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .works-wrap .works-box .works-text .works-desc {
    font-size: 12px;
    font-size: 1rem;
  }
  .works-wrap .works-main {
    flex: 2;
  }
  .works-wrap .works-main .works-img {
    border: solid #2b2b2b 2px;
  }
  .works-wrap .andmore {
    position: absolute;
    right: 50%;
    margin-right: -490px;
    bottom: 13.5%;
    width: 13%;
  }
  .works-arrow {
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
  }
  .swiper {
    margin: 0 auto;
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .swiper .box-playlist .date {
    margin-top: 10px;
    font-size: 12px;
    font-size: 1rem;
    text-align: center;
  }
  .swiper .box-playlist h3 {
    font-size: 16px;
    font-size: 1.3333333333rem;
    text-align: center;
    font-weight: 400;
    font-family: copperplate, "Noto Sans JP", sans-serif;
    font-style: normal;
    color: #9f2828;
    line-height: 1.3;
    margin-top: 5px;
    margin-bottom: 10px;
  }
  .swiper .box-playlist .obi p {
    text-align: center;
    font-size: 11px;
    font-size: 0.9166666667rem;
  }
  .swiper .box-playlist .artist-img {
    text-align: center;
  }
  .swiper .box-playlist .artist-img img {
    border: solid #2b2b2b 2px;
    object-fit: cover;
    aspect-ratio: 16/9;
    overflow: hidden;
  }
  .swiper .box-playlist .artist-img.artist-img02 img {
    width: 80%;
  }
  .swiper .box-playlist .artist-img.artist-img04 img {
    width: 45%;
  }
  .swiper-button-next, .swiper-button-prev {
    position: relative;
    display: block;
    width: 10%;
    height: auto;
    margin: 0px 15%;
  }
  .artist-window {
    max-width: 600px;
    padding: 0;
    background: transparent;
  }
  .artist-window .window_inner {
    position: relative;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    padding: 80px 80px;
    margin-top: 10%;
  }
  .artist-window .window_inner .date {
    position: absolute;
    position: absolute;
    left: 30px;
    top: 30px;
    text-align: right;
    font-size: 16px;
    font-size: 1.3333333333rem;
    font-weight: 400;
    font-family: copperplate, "Noto Sans JP", sans-serif;
    color: #9f2828;
  }
  .artist-window .window_inner .window_detail {
    position: relative;
  }
  .artist-window .window_inner h3 {
    color: #9f2828;
    text-align: center;
    font-size: 15px;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: copperplate, "Noto Sans JP", sans-serif;
    font-style: normal;
    margin-bottom: 20px;
    padding-top: 20px;
    letter-spacing: 1px;
  }
  .artist-window .window_inner .detail p {
    font-size: 11px;
    font-size: 0.9166666667rem;
    margin-bottom: 10px;
    color: #fff;
  }
  .artist-window .window_inner .close {
    margin-top: 90px;
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-size: 1.8333333333rem;
    letter-spacing: 2px;
    font-family: fot-klee-pro, "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  }
  .artist-window .window_inner .btn_close {
    color: #fff;
    position: fixed;
    right: 50%;
    margin-right: -300px;
    top: 25px;
    width: 40px;
    cursor: pointer;
  }
  .artist-window .window_inner .window_img {
    text-align: center;
    width: 100%;
    margin: 10px auto;
  }
  .artist-window .window_inner .window_img.window_img02 img {
    width: 80%;
  }
  .artist-window .window_inner .window_img.window_img04 img {
    width: 50%;
  }
  #layer3 {
    margin-bottom: 50dvh;
    margin-bottom: calc(var(--vh, 1vh) * 50);
  }
  #layer3 h2 {
    position: relative;
    padding-top: 40px;
  }
  .profile-bg {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
  }
  .profile-bg img {
    width: 100%;
    height: 105%;
  }
  #profile {
    position: relative;
    padding: 0% 4% 5% 0%;
    margin: 0 2% 2% 2%;
    width: 96%;
    border-radius: 20px;
  }
  .profile-wrap {
    max-width: 1100px;
    margin: 0 auto;
  }
  .profile-wrap .profile-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .profile-wrap .profile-box .profile-img {
    width: 40%;
    margin-top: -5%;
  }
  .profile-wrap .profile-box .profile-text {
    width: 60%;
    padding: 50px 55px;
    background: #e7cab2;
  }
  .profile-wrap .profile-box .profile-text p {
    letter-spacing: -0.5px;
    font-size: 15px;
    font-size: 1.25rem;
    text-align: justify;
    height: auto;
  }
  .profile-wrap .simplebar-track {
    display: none;
    right: -25px;
    left: auto;
  }
  .profile-wrap .profile-sns {
    margin-top: -50px;
    padding-left: 2%;
  }
  .profile-wrap .profile-sns ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .profile-wrap .profile-sns li {
    margin: 0 15px;
  }
  .profile-wrap .profile-sns li:nth-child(even) {
    margin: 10px 5px 0 5px;
  }
  .profile-wrap .profile-sns a {
    background: #e9c7a6;
    padding: 13px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 24px;
    font-size: 2rem;
  }
  #layer4 {
    margin-bottom: 50dvh;
    margin-bottom: calc(var(--vh, 1vh) * 50);
  }
  #videos {
    background: #37405d;
    background-size: cover;
    padding: 2% 2% 5% 2%;
  }
  #videos .arukikuma {
    position: absolute;
    top: -84px;
    width: 120px;
    left: 3%;
  }
  .videos-wrap {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .videos-wrap .videos-box {
    position: relative;
    width: 100%;
    padding-top: 0;
  }
  .videos-wrap .videos-box iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .videos-wrap .videos-main .videos-img {
    border: solid #2b2b2b 2px;
  }
  .videos-name {
    background-image: url(../images/video-name-bg.png), url(../images/video-name-bg.png), url(../images/video-name-bg.png), url(../images/video-name-bg.png);
    background-position: center top, right center, center bottom, left center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 86%;
    margin: 20px auto 0;
    padding: 10px 10px;
  }
  .videos-name p {
    font-size: 12px;
    font-size: 1rem;
    text-align: center;
    font-family: copperplate, "Noto Sans JP", sans-serif;
    font-style: normal;
  }
  .videos-name p:first-child {
    font-size: 16px;
    font-size: 1.3333333333rem;
    text-align: center;
    font-weight: bold;
    font-family: copperplate, "Noto Sans JP", sans-serif;
    font-style: normal;
    color: #9f2828;
  }
  .videos-name p span {
    display: inline-block;
    font-size: 12px;
    font-size: 1rem;
    text-align: center;
    font-weight: bold;
    font-family: copperplate, "Noto Sans JP", sans-serif;
    font-style: normal;
    color: #9f2828;
  }
  .videos-arrow {
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
  }
  .videos-arrow img {
    width: 15%;
  }
  .videos-arrow {
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .videos-arrow img {
    width: 15%;
  }
  .swiper2 .swiper-slide {
    width: 550px;
  }
  .swiper2 .swiper-button-prev2 {
    position: absolute;
    left: 50%;
    margin-left: -324px;
    top: 50%;
    transform: translate(0px, -118%);
    width: 30px;
    z-index: 2;
  }
  .swiper2 .swiper-button-next2 {
    position: absolute;
    right: 50%;
    margin-right: -324px;
    top: 50%;
    transform: translate(0px, -118%);
    width: 30px;
    z-index: 2;
  }
  .swiper3 .swiper-slide {
    opacity: 0.5;
    transform: scale(0.6);
    transition: 0.5s;
  }
  .swiper3 .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
  }
  .swiper3 .swiper-pagination {
    position: relative;
    width: 100%;
    bottom: 0px;
    margin-top: 30px;
  }
  .swiper3 .swiper-pagination .swiper-pagination-bullet {
    /*ドットのサイズを変更*/
    width: 18px;
    height: 18px;
  }
  .swiper3 .swiper-pagination .swiper-pagination-bullet {
    /*ドットの間隔を変更*/
    margin: 0 7px !important;
  }
  .swiper3 .swiper-pagination .swiper-pagination-bullet {
    /*ドットの色を変更*/
    background-color: #e7cab2;
  }
  .swiper-button-prev3 {
    position: absolute;
    left: 50%;
    margin-left: -236px;
    top: 46%;
    transform: translate(0px, -5px);
    width: 65px;
    z-index: 2;
  }
  .swiper-button-next3 {
    position: absolute;
    right: 50%;
    margin-right: -236px;
    top: 46%;
    transform: translate(0px, -5px);
    width: 65px;
    z-index: 2;
  }
  #layer5 {
    margin-top: 50dvh;
    margin-top: calc(var(--vh, 1vh) * 50);
    margin-bottom: 50dvh;
    margin-bottom: calc(var(--vh, 1vh) * 50);
  }
  #listen {
    background: url(../images/listen-bg.jpg) no-repeat center;
    background-size: cover;
    padding: 2% 2% 5% 2%;
  }
  #listen .arukikuma {
    position: absolute;
    top: -84px;
    width: 120px;
    right: 3%;
  }
  .listen-wrap {
    display: block;
    max-width: 1000px;
    overflow: hidden;
    margin: 0 auto;
  }
  .listen-wrap .listen-box {
    margin: 1% auto;
    padding: 2% 0;
  }
  .listen-wrap .listen-box .listen-text .listen-title {
    font-size: 14px;
    font-size: 1.1666666667rem;
    text-align: center;
    font-weight: 500;
    font-family: copperplate, "Noto Sans JP", sans-serif;
    font-style: normal;
    color: #fff;
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 5px;
  }
  .listen-wrap .listen-box .listen-text .listen-desc {
    font-size: 12px;
    font-size: 1rem;
  }
  .listen-wrap .listen-main .listen-img {
    border: solid #2b2b2b 2px;
  }
  .listen-arrow {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #layer6 {
    margin-top: 50dvh;
    margin-top: calc(var(--vh, 1vh) * 50);
    margin-bottom: 500dvh;
    margin-bottom: calc(var(--vh, 1vh) * 500);
  }
  #contact {
    background: url(../images/news-bg.jpg) no-repeat center;
    background-size: cover;
    padding: 2% 2% 7% 2%;
  }
  #contact .nozokikuma {
    position: absolute;
    bottom: -165px;
    width: 185px;
    left: 50%;
    transform: translate(-50%, 0);
    transform-origin: center;
  }
  .contact-wrap {
    position: relative;
    padding: 2% 7% 3% 8%;
    background-image: url(../images/news-bg-inner.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 100% 100%;
  }
  .contact-wrap .arrow {
    position: absolute;
    right: 30px;
    top: 34%;
    width: 20px;
  }
  .contactForm {
    position: relative;
    z-index: 1;
    color: #2b2b2b;
    max-width: 650px;
    margin: 0 auto;
    padding: 0;
    width: 90%;
  }
  .contactForm p {
    margin: 0 auto;
    text-align: left;
    font-size: 10px;
    font-size: 0.8333333333rem;
  }
  .contactForm .block {
    font-size: 10px;
    font-size: 0.8333333333rem;
  }
  .contactForm dt {
    font-weight: 400;
    font-family: copperplate, "Noto Sans JP", sans-serif;
    font-style: normal;
    color: #9f2828;
    font-size: 12px;
    font-size: 1rem;
    margin: 20px auto 1px;
  }
  input {
    outline: 0;
    background: #fff;
    width: 100%;
    border: 0;
    padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
    font-size: 1.1666666667rem;
    border-radius: 5px;
  }
  input.btn_submit {
    background: #842a27;
    color: #fff;
  }
  textarea {
    resize: vertical;
    outline: 0;
    background: #fff;
    width: 100%;
    border: 0;
    padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
    font-size: 1.1666666667rem;
    border-radius: 5px;
  }
  .copyright {
    font-size: 12px;
    font-size: 1rem;
    text-align: left;
    color: #000;
    margin-top: 20px;
    padding-left: 5%;
  }
  #fusen-kuma01 {
    position: fixed;
    bottom: -350px;
    left: 3px;
    width: 140px;
    z-index: 20;
  }
  #fusen-kuma02 {
    position: fixed;
    bottom: -1200px;
    right: -5px;
    width: 140px;
    z-index: 20;
  }
}

/*# sourceMappingURL=main.css.map */
