@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/* --- ローディング画面 --- */
.loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  width: 100%;
  background-color: #262626;
  position: fixed; /* 画面全体を覆うように固定 */
  top: 0;
  left: 0;
  z-index: 9999; /* 最前面に表示 */
  opacity: 1; /* 初期状態は不透明 */
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out; /* フェードアウト用のトランジション */
}

.loader.hidden {
  opacity: 0; /* 不透明度を0に */
  pointer-events: none; /* クリックイベントを無効に */
}

@media screen and (min-width: 768px) {
  .loader__wrapper {
    width: calc(100% - 225px);
    max-width: 990px;
    margin: 0 auto;
  }
}
.loader__contents-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Flexboxを使用 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 上揃え */
  gap: 24px; /* アイテム間のスペースを24pxに設定 */
}

@media screen and (min-width: 768px) {
  .loader__contents-container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.loader__img-container img {
  width: 130px; /* 例: 幅100pxに設定 */
  height: auto; /* アスペクト比を維持 */
}

@media screen and (min-width: 768px) {
  .loader__img-container img {
    width: 236px; /* 例: 幅100pxに設定 */
    height: auto; /* アスペクト比を維持 */
  }
}
.loading-text {
  font-family: "Jersey 25", sans-serif;
  font-size: 24px;
  color: #F0F0F0;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.68px;
  -webkit-animation: digitalBlink 0.8s steps(2, start) infinite;
          animation: digitalBlink 0.8s steps(2, start) infinite;
}

/* --- デジタル時計風のアニメーション ---*/
@-webkit-keyframes digitalBlink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes digitalBlink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --- ここまで ---*/
@media screen and (min-width: 768px) {
  .loading-text {
    font-size: 32px;
  }
}
/* --- header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* 追加: ヘッダーを全幅に設定 */
  z-index: 1000; /* 追加: ヘッダーを前面に表示 */
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 追加: ボックスモデルを調整 */
}

@media screen and (min-width: 768px) {
  header {
    background-color: #FFFFFF;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 80px;
  padding-left: 16px;
  gap: 26px;
}

@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1264px; /* 最大幅を1264pxに設定 */
    width: 100%; /* 幅を100%に設定 */
    margin: 0 auto; /* 左右のマージンを自動で設定 */
    height: 62px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100% - 32px);
  }
}
.header__logo {
  display: none;
}

@media screen and (min-width: 768px) {
  .header__logo {
    display: block;
    width: 120px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo:hover {
    opacity: 0.7;
  }
}
.header__nav {
  display: none;
}

@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 48px;
  }
  .header__link {
    color: #262626;
    font-family: "Staatliches", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
  }
  .header__link::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #262626;
    bottom: -4px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center, top;
            transform-origin: center, top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .header__link:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
/* アニメーションの定義 */
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  50% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  75% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  50% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  75% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header__drawerButton {
  background: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
  width: 80px;
  padding: 24px 20px;
  position: relative;
  z-index: 1001;
}
.header__drawerButton.open span {
  background-color: #F0F0F0;
}
.header__drawerButton.open span:nth-child(1) {
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: rotate(36.66deg);
          transform: rotate(36.66deg);
  width: 51.22px;
}
.header__drawerButton.open span:nth-child(2) {
  opacity: 0;
}
.header__drawerButton.open span:nth-child(3) {
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: rotate(-36.66deg);
          transform: rotate(-36.66deg);
  width: 51.22px;
}

@media screen and (min-width: 768px) {
  .header__drawerButton {
    display: none;
  }
}
.drawer-icon__bar {
  background-color: #F0F0F0;
  height: 3px;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.drawer {
  width: 100%;
  height: 100vh;
  background-color: #262626;
  position: absolute;
  top: 0;
  left: -100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.drawer.open {
  display: block; /* 表示 */
  left: 0;
}

@media screen and (min-width: 768px) {
  .drawer {
    display: none;
  }
}
.drawer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* これがないとalign-itemsが効かない */
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* リスト要素を上下方向に中央揃えします。 */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* Flexbox の子要素を左右方向に中央揃えします。  */
  margin: 0 auto;
  text-align: left; /* 左寄せ */
}

.drawer__nav {
  margin: 0 auto;
}

.drawer__nav li + li {
  margin-top: 16px;
}

.drawer__link {
  display: block; /* ブロック要素として表示 */
  font-size: 24px;
  color: #FFFFFF;
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  letter-spacing: 7px;
}

/* --- fv --- */
.fv {
  background-color: #262626;
}

.fv__contents-container {
  max-width: 295px;
  margin: 0 auto;
  padding-top: 220px;
  padding-bottom: 326px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .fv__contents-container {
    max-width: 1298px;
    padding-top: 222px;
    padding-bottom: 296px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
.fv__text--upper, .fv__text--lower {
  font-family: Staatliches;
  color: #FFFFFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3px;
  -moz-text-align-last: left;
       text-align-last: left;
  margin-left: 2px;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .fv__text--upper, .fv__text--lower {
    display: none;
  }
}
.fv__text--upper-pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .fv__text--upper-pc {
    display: inline;
    color: #FFFFFF;
    font-family: Staatliches;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 10.24px;
    margin-left: 6px;
  }
}
.fv__text--big {
  font-family: Staatliches;
  color: #FFFFFF;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 15px;
  -moz-text-align-last: left;
       text-align-last: left;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .fv__text--big {
    font-size: 200px;
    margin-top: -6px;
  }
}
.fv__text--small {
  font-family: Staatliches;
  color: #FFFFFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  -moz-text-align-last: left;
       text-align-last: left;
  margin-top: -4px;
  margin-left: 2px;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .fv__text--small {
    font-size: 24px;
    letter-spacing: 7px;
    margin-top: -30px;
    margin-left: 6px;
  }
}
.fv__text--music {
  color: #D90368;
}

.fv__text--creator {
  color: #E4FF1A;
}

.fv__img-container {
  z-index: 1;
  position: absolute;
  top: 312px;
  left: 92px;
}

@media screen and (min-width: 768px) {
  .fv__img-container {
    top: 430px;
    left: 344px;
  }
}
.fv__img-container img {
  width: 203px;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .fv__img-container img {
    width: 397px;
  }
}
.fv__icon {
  margin-left: 8px;
}

@media screen and (min-width: 768px) {
  .fv__icon {
    width: 32px;
    height: 32px;
  }
}
/* ----sections --- */
.section__inner {
  max-width: 343px;
  width: 100%; /* 幅を100%に設定 */
  margin: 0 auto; /* 左右のマージンを自動で設定 */
  width: calc(100% - 16px);
}

@media screen and (min-width: 768px) {
  .section__inner {
    max-width: 1264px;
    width: calc(100% - 88px);
  }
}
h1 {
  color: #262626;
  font-family: Staatliches;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
}

h2 {
  color: #262626;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
  margin-top: 40px;
}

.text-container--LR {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.text-container--LR + .text-container--LR {
  margin-top: 8px;
}

/* --- about --- */
.about {
  background-color: #F0F0F0;
  padding-top: 120px;
  padding-bottom: 120px;
}

@media screen and (min-width: 768px) {
  .about__LR-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 122px;
  }
}
@media screen and (min-width: 768px) {
  .about__Left-contents-container {
    width: 612px;
  }
}
.about__text {
  margin-top: 40px;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
}

.about__button-container {
  text-align: center;
  margin-top: 40px;
}

.about__button {
  display: inline-block;
  background-color: #D90368;
  color: #F0F0F0;
  border: 1px solid #D90368;
  padding: 15px 31px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .about__button:hover {
    background-color: #F0F0F0;
    color: #D90368;
    border: 1px solid #D90368;
    padding: 15px 31px;
  }
}
.about__img-container {
  width: 343px;
  height: 229px;
  overflow: hidden;
  margin-top: 64px;
}

@media screen and (min-width: 768px) {
  .about__img-container {
    width: 448px;
    height: 299px;
    margin-top: 40px;
  }
}
.about__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* --- sevice --- */
.service {
  background-color: #fff;
  padding-top: 120px;
  padding-bottom: 120px;
}

@media screen and (min-width: 768px) {
  .service__LR-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 122px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .service__R-contents-container {
    width: 612px;
  }
}
.service__text-container {
  margin-top: 32px;
}

.service__text {
  color: #262626;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
}

.service__img-container {
  width: 343px;
  height: 229px;
  overflow: hidden;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .service__img-container {
    width: 448px;
    height: 299px;
    margin-top: 80px;
  }
}
.service__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* --- works --- */
.works {
  background-color: #F0F0F0;
  padding-top: 120px;
  padding-bottom: 120px;
}

.works__text {
  color: #262626;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
  margin-top: 40px;
}

/* --- artist / creator --- */
.artistAndCreator {
  background-color: #fff;
  padding-top: 120px;
  padding-bottom: 120px;
}

@media screen and (min-width: 768px) {
  .artistAndCreator__LR-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 122px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .artistAndCreator__L-contents-container {
    width: 448px;
    height: 103px;
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .artistAndCreator__R-contents-container {
    width: 612px;
  }
}
/* --- contact --- */
.contact {
  background-color: #F0F0F0;
  padding-top: 120px;
  padding-bottom: 120px;
}

@media screen and (min-width: 768px) {
  .contact__LR-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 211px;
  }
}
@media screen and (min-width: 768px) {
  .contact__L-contents-container {
    width: 587px;
  }
}
.contact__text {
  color: #262626;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
}

.contact__steps-container {
  margin-top: 32px;
}

.contact__step {
  color: #262626;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}

.contact__text-container--top {
  margin-top: 16px;
}

.contact__step2 {
  margin-top: 24px;
}

.contact__step-text {
  color: #262626;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
  margin-top: 16px;
}

.contact__text-daihyo {
  margin-top: 40px;
}

.contact__text-mail {
  margin-top: 8px;
}

.contact__img-container {
  width: 343px;
  height: 511px;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .contact__img-container {
    width: 313px;
    height: 467;
    margin-top: 80px;
  }
}
/* --- footer --- */
footer {
  background-color: #262626;
  padding-top: 120px;
  padding-bottom: 120px;
}

.footer__contents-container {
  margin: 0 auto;
  text-align: center;
}

.footer__nav {
  display: none;
}

@media screen and (min-width: 768px) {
  .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 48px;
  }
  .footer__link {
    color: #F0F0F0;
    font-family: "Staatliches", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer__link:hover {
    opacity: 0.7;
  }
}
small {
  display: inline-block;
  color: #F0F0F0;
  font-family: "Zen Kaku Gothic New";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  small {
    margin-top: 40px;
  }
}