@charset "UTF-8";
@import url("https://use.typekit.net/vov0gav.css");
@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
@keyframes change {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
html, body {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  background-color: #C0B4A6;
  min-height: 100vh; /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  position: relative;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
  overflow-y: scroll;
}
body.looking {
  overflow: hidden;
}
body.looking .sec {
  pointer-events: none;
}

a {
  color: #FFF;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:active, a.active {
  color: #666666;
}

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

i {
  font-style: normal;
}

form, section, p, div, ul, li, dl, dt, dd, a, span, input, textarea {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

br.brsp {
  display: none;
}

br.brpc {
  display: block;
}

/*----- Sticky -----*/
.js-scroll-overlap:not(.is-disabled) {
  --sticky-offset: -1px;
  position: sticky;
  top: var(--sticky-offset);
}

.notoverlap {
  position: relative;
}

/*--------- SLICK -----------*/
.slick-prev::before {
  content: "　";
  background: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slick-next::before {
  content: "　";
  background: url(../images/arrow2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slick-dots {
  display: block !important; /* ドットを強制的に表示 */
  position: absolute; /* スライダー内で配置調整 */
  bottom: 10px; /* 必要に応じて位置を調整 */
  list-style: none;
  text-align: center;
  width: 100%; /* 横幅をスライダーに合わせる */
}

.slick-dots li {
  width: 10px;
  height: 10px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  width: 10px;
  height: 10px;
  content: " ";
  background-color: #FFF;
  /*font-size: 40px;  ドットのサイズ */
  /*color: $col4;  ドットの色 */
  opacity: 1; /* 透明度を100%に */
}

.slick-dots li.slick-active button:before {
  background-color: #131327;
  color: #131327; /* アクティブなドットの色 */
  opacity: 1;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* ---------------------------------------------------------page--------------------------------------------------------- */
#loader {
  width: 100%;
  height: 100vh;
  background-color: #C0B4A6;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 9999;
  transition: opacity 0.5s ease-in 0s;
}
#loader h3 {
  width: 200px;
  height: 75px;
  background-image: url(../images/logo_2e.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
#loader .bar {
  width: 100%;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #000;
  display: block;
}
#loader.active h3 {
  opacity: 1;
}
#loader.complete {
  opacity: 0;
}

header {
  position: fixed;
  top: 50px;
  right: 30px;
  z-index: 999;
}
header .inner ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
header .inner ul li:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: solid 1px #FFF;
}
header .inner ul li.line {
  width: 1.4rem;
  height: 1px;
  background-color: #FFF;
}
header .inner ul li a {
  color: #FFF;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transition: all 0.25s ease-in 0s;
}
header .inner ul li a:hover {
  opacity: 0.5;
}

main {
  width: 100%;
  padding: 50px 0 0 0;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
main #visual {
  width: 100%;
  position: relative;
}
main #visual.on #invisual h1 {
  opacity: 1;
  transform: translate(-50%, -50%);
}
main #visual.on #invisual p {
  opacity: 1;
}
main #visual.on .lead {
  opacity: 1;
}
main #visual #invisual {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
main #visual #invisual h1 {
  width: 78%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transition: all 0.5s ease-out 0s;
  opacity: 0;
  transform: translate(-50%, -45%);
}
main #visual #invisual p {
  width: 35%;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: all 0.5s ease-out 0.25s;
  opacity: 0;
}
main #visual #invisual .photo {
  position: relative;
}
main #visual .lead {
  width: 100%;
  margin: 0 auto;
  max-width: 880px;
  padding: 120px 50px;
  transition: opacity 0.35s ease-in 0s;
  opacity: 0;
}
main #visual .lead p {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0em;
  font-style: normal;
}
main #visual .lead p:not(:last-child) {
  padding-bottom: 15px;
}
main .contents {
  width: 100%;
  padding: 50px 0 40dvh;
  background-color: #C0B4A6;
  position: relative;
}
main .contents.bg_navy {
  background-color: #131327;
}
main .contents:nth-of-type(4) {
  padding-bottom: 0;
}
main .contents .looks {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main .contents .looks:not(:last-child) {
  margin-bottom: 50px;
}
main .contents .looks:nth-of-type(5) {
  padding-bottom: 120px;
}
main .contents .looks.on .looks__Name {
  opacity: 1;
}
main .contents .looks.on .looks__Photo {
  opacity: 1;
  transform: translateX(0);
}
main .contents .looks.on .looks__Text {
  opacity: 1;
}
main .contents .looks__Name {
  display: inline-block;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: #FFF;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 10rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
  opacity: 0;
  transition: all 0.5s ease-in 0.5s;
}
main .contents .looks__Photo {
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.5s ease-out 0s;
}
main .contents .looks__Photo.slideMoveL {
  transform: translateX(-60px);
}
main .contents .looks__Photo.slideMoveR {
  transform: translateX(60px);
}
.looks.on main .contents .looks__Photo.slideMoveL, .looks.on main .contents .looks__Photo.slideMoveR {
  transform: translateX(0);
  opacity: 1;
}
main .contents .looks__Text {
  width: 100%;
  padding: 70px 50px;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .contents .looks__Text p {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0em;
  font-style: normal;
}
main .contents .looks__Text p:not(:last-child) {
  padding-bottom: 15px;
}
main .information {
  width: 100%;
  padding: 0;
  background-color: #C0B4A6;
  position: relative;
}
main .information__Inner {
  width: 880px;
  margin: 0 auto;
  padding-top: 100px;
  border-top: solid 1px #FFF;
}
main .information__InnerTitle {
  color: #FFF;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 10rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
  padding-bottom: 100px;
}
main .information__InnerSubTitle {
  color: #FFF;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
}
main .information__InnerCap {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
  font-style: normal;
  padding: 70px 0;
}
main .information__InnerDate {
  color: #FFF;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-style: normal;
}
main .information__Inner .staff {
  width: 100%;
  padding: 120px 0 120px;
  background-color: #C0B4A6;
}
main .information__Inner .staff p {
  color: #FFF;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  font-style: normal;
}

footer {
  position: relative;
  text-align: left;
  width: 100%;
  max-width: 880px;
  padding: 0;
  margin: 0 auto;
  border-top: solid 1px #FFF;
}
footer .infoot {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 40px;
  position: relative;
  box-sizing: border-box;
}
footer .infoot div ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;
}
footer .infoot div ul li:not(:last-child) {
  margin-bottom: 15px;
}
footer .infoot div ul li a, footer .infoot div ul li span {
  color: #FFF;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  font-style: normal;
  transition: all 0.25s ease-in 0s;
}
footer .infoot div ul li a:hover, footer .infoot div ul li span:hover {
  color: #FFF;
  opacity: 0.5;
}
footer .infoot div p {
  color: #FFF;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  font-style: normal;
  text-align: left;
}
footer .infoot .pgtop {
  position: absolute;
  right: 10px;
  bottom: 40px;
  writing-mode: vertical-rl;
}
footer .infoot .pgtop a {
  color: #FFF;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  font-style: normal;
  transition: all 0.25s ease-in 0s;
}
footer .infoot .pgtop a:hover {
  color: #FFF;
  opacity: 0.5;
}

/* ---- common ---- */
.credits_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.credits_wrap .credits:not(:last-child) {
  padding-bottom: 20px;
}

.credits {
  width: 84%;
  padding-top: 0;
  margin: 30px auto 0 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px 50px;
}
.credits .note {
  padding-bottom: 10px;
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  text-align: left;
}
.credits > div {
  width: calc((100% - 50px) / 2);
  transition: all 0.25s ease-in 0s;
}
.credits > div:hover {
  opacity: 0.7;
}
.credits > div.item-d-none dl dt {
  width: auto;
}
.credits > div.item-d-none dl dd {
  width: auto;
}
.credits > div.item-d-none dl dd a {
  display: none;
}
.credits > div.item-d-none dl dd span {
  color: #FFF;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  font-style: normal;
  padding: 2px 0;
  display: inline-block;
}
.credits > div dl {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.credits > div dl dt {
  padding: 2px 0;
  text-align: left;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.credits > div dl dt strong {
  color: #FFF;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
}
.credits > div dl dt strong:not(:first-child) {
  margin-left: 5px;
}
.credits > div dl dt span {
  color: #FFF;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  margin-left: 5px;
}
.credits > div dl dd {
  margin-left: 20px;
}
.credits > div dl dd a {
  color: #FFF;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  text-decoration: none;
  padding: 0 2px 2px;
  display: block;
  border-bottom: solid 1px #FFF;
}
.credits > div dl dd span {
  display: none;
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  br.brsp {
    display: block;
  }
  br.brpc {
    display: none;
  }
  html {
    font-size: 2.6666666667vw;
    height: -webkit-fill-available;
  }
  #loader h3 {
    width: 180px;
    height: 68px;
  }
  header {
    position: absolute;
    top: 12px;
    right: 15px;
  }
  header .inner ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  header .inner ul li:not(:last-child) {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: solid 1px #FFF;
  }
  header .inner ul li a {
    color: #FFF;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  main {
    padding: 0px;
    margin: 0 auto;
  }
  main #visual {
    width: 100%;
  }
  main #visual #invisual {
    width: 100%;
    max-width: inherit;
    margin: 0 auto;
  }
  main #visual #invisual h1 {
    width: 70%;
    position: absolute;
    top: 60%;
    left: 50%;
  }
  main #visual #invisual p {
    width: 35%;
    position: absolute;
    bottom: 20px;
    left: 50%;
  }
  main #visual .lead {
    width: 100%;
    margin: 0 auto;
    max-width: inherit;
    padding: 60px 40px 10px;
    text-align: left;
    box-sizing: border-box;
  }
  main #visual .lead p {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0em;
    font-style: normal;
  }
  main #visual .lead p:not(:last-child) {
    padding-bottom: 12px;
  }
  main .contents {
    width: 100%;
    padding: 50px 0 20dvh;
  }
  main .contents:nth-of-type(4) {
    padding-bottom: 0;
  }
  main .contents .looks {
    width: 90%;
    max-width: inherit;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main .contents .looks:not(:last-child) {
    margin-bottom: 30px;
  }
  main .contents .looks:nth-of-type(5) {
    padding-bottom: 50px;
  }
  main .contents .looks__Name {
    display: inline-block;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: #FFF;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 8rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
  }
  main .contents .looks__Photo {
    width: 100%;
    position: relative;
  }
  main .contents .looks__Photo.slideMoveL {
    transform: translateX(-20px);
  }
  main .contents .looks__Photo.slideMoveR {
    transform: translateX(20px);
  }
  main .contents .looks__Text {
    width: 100%;
    padding: 30px 20px;
  }
  main .contents .looks__Text p {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0em;
    font-style: normal;
    text-align: left;
  }
  main .contents .looks__Text p:not(:last-child) {
    padding-bottom: 12px;
  }
  main .contents .information {
    width: 100%;
    padding: 0;
  }
  main .contents .information__Inner {
    width: 90%;
    margin: 0 auto;
    padding-top: 80px;
  }
  main .contents .information__InnerTitle {
    color: #FFF;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    padding-bottom: 50px;
  }
  main .contents .information__InnerSubTitle {
    color: #FFF;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
  }
  main .contents .information__InnerCap {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0em;
    font-style: normal;
    padding: 50px 20px;
    text-align: left;
  }
  main .contents .information__InnerDate {
    color: #FFF;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  main .contents .information__Inner .staff {
    width: 100%;
    padding: 80px 0 80px;
    background-color: #C0B4A6;
  }
  main .contents .information__Inner .staff p {
    color: #FFF;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.08em;
    font-style: normal;
  }
  footer {
    padding: 0;
  }
  footer .infoot {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 20px;
  }
  footer .infoot div h3 {
    width: 100px;
    margin: 0 auto 30px 0;
  }
  footer .infoot div ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  footer .infoot div ul li:not(:last-child) {
    margin-bottom: 12px;
  }
  footer .infoot div ul li a, footer .infoot div ul li span {
    color: #FFF;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.08em;
    font-style: normal;
  }
  footer .infoot div p {
    color: #FFF;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.08em;
    font-style: normal;
    text-align: left;
  }
  footer .infoot .pgtop {
    right: 10px;
    bottom: 20px;
  }
  footer .infoot .pgtop a {
    color: #FFF;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.08em;
    font-style: normal;
  }
  /* common credits------ */
  .credits {
    width: 100%;
  }
  .credits:first-child {
    padding-right: 0;
  }
  .credits > div {
    width: 100%;
  }
  .credits > div.item-d-none dl dt {
    width: auto;
  }
  .credits > div.item-d-none dl dd {
    width: auto;
  }
  .credits > div.item-d-none dl dd a {
    display: none;
  }
  .credits > div.item-d-none dl dd span {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    padding: 4px 0;
    display: inline-block;
  }
  .credits > div dl {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .credits > div dl dt {
    padding: 2px 0;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .credits > div dl dt strong {
    color: #FFF;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  .credits > div dl dt strong:not(:first-child) {
    margin-left: 2px;
  }
  .credits > div dl dt .s {
    font-size: 1rem;
  }
  .credits > div dl dt span {
    color: #FFF;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
    margin-left: 2px;
  }
  .credits > div dl dd {
    margin-left: 10px;
  }
  .credits > div dl dd a {
    color: #FFF;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
    padding: 0 2px 3px;
  }
  .credits > div dl dd span {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */