@charset "UTF-8";
/* 使い方: @include mq(sp) / @include mq(pc)*/
/* 個別の幅が必要な場合: @include mq(sp, 580px)*/
/* sp: 960px以下、pc: 961px以上。第2引数で境界値を指定できる。*/
/* 色の追加・変更はこの対応表で管理。*/
:root {
  --color-primary: #000;
  --color-white: #ffffff;
  --color-gray: #353434;
  --color-first: #142742;
  --color-second: #617f6d;
  --color-normal: #df9dbb;
  --color-limited: #ed4c9a;
  --color-miu: #beaed1;
  --color-momona: #000000;
  --color-ayane: #fcc800;
  --color-keiko: #adb2b5;
  --color-rinon: #e84188;
  --color-suzu: #edbccf;
  --color-tsuzumi: #ef7f1a;
  --main: var(--color-white);
  --green: var(--color-primary);
  --black50: #11101550;
  --white: var(--color-white);
  --gray: var(--color-gray);
  --commonFont: "Noto Sans JP", sans-serif;
  --titleFont: "Belanosima", sans-serif;
}

/*===================================================
  AOP
====================================================*/
html body:not(.page--home) .wrap {
  padding: 0;
  overflow: initial;
}

.header {
  display: none;
}
.header .header-menu {
  display: none;
}

.header-cover {
  display: none;
}

.drawer {
  display: none;
}

.wovn-languages {
  top: 35px;
  left: 100px;
  right: auto;
  bottom: auto;
  transition: none;
}
@media screen and (max-width: 960px) {
  .wovn-languages {
    top: 35px;
    left: 20px;
  }
}

.loaded .wovn-languages {
  top: 30px;
  left: 100px;
}
@media screen and (max-width: 960px) {
  .loaded .wovn-languages {
    top: 35px;
    left: 20px;
  }
}

.wovn-languages.visible .nav-dropdown {
  top: 4.2em;
}

body:not(.page--home) .content--main {
  padding: 0;
}
body:not(.page--home) .footer {
  display: none;
}

/*===================================================
  base
====================================================*/
body {
  overflow-x: hidden;
  margin: 0;
  word-wrap: break-word;
}

h1 {
  font-size: inherit;
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

section,
main {
  display: block;
}

li {
  list-style: none;
}

html,
body {
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  line-height: 1;
  background-color: transparent;
}
@media screen and (min-width: 961px) {
  a {
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
  }
}

img {
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  line-height: 0;
  pointer-events: none;
  border-style: none;
}

/*===================================================
    anim
====================================================*/
.loader {
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--green);
  z-index: 9999;
  pointer-events: none;
}
.loader .loading {
  position: absolute;
  width: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .loader .loading {
    width: 125px;
  }
}
.loader .loading img {
  animation: loadingAnim 2.5s linear infinite;
  transform-style: preserve-3d;
}

@keyframes loadingAnim {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.action {
  opacity: 0;
  transition: opacity 1.5s ease-out;
}

.loaded .action {
  opacity: 1;
}
.loaded .action.act01 {
  transition-delay: 2s;
}
.loaded .action.act02 {
  transition-delay: 2.25s;
}
.loaded .action.act03 {
  transition-delay: 2.25s;
}

.mainWrap h3.anim:not(.lpSectionTitle) {
  opacity: 0;
  transition: all 0.5s ease-out;
  transform: scale(1);
}
.mainWrap h3.anim:not(.lpSectionTitle).on {
  opacity: 1;
  transform: scale(1);
}
.mainWrap .anim.fadeX, .mainWrap .anim.fadeY {
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.9s ease-in;
}
.mainWrap .anim.fadeX {
  transform: translateX(30px);
}
.mainWrap .revers .anim.fadeX {
  transform: translateX(-30px);
}
@media screen and (max-width: 960px) {
  .mainWrap .revers .anim.fadeX {
    transform: translateX(30px);
  }
}
.mainWrap .anim.fadeY {
  transform: translateY(30px);
}
.mainWrap .anim.fadeX.on, .mainWrap .anim.fadeY.on {
  opacity: 1;
}
.mainWrap .anim.fadeX.on,
.mainWrap .revers .anim.fadeX.on {
  transform: translateX(0px);
}
.mainWrap .anim.fadeY.on {
  transform: translateY(0px);
}

/*===================================================
    bgBox
====================================================*/
.content--main:has(.mainWrap .bgBox.limited) .navigation .headerNav li a {
  color: var(--white);
}

.bgBox {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-color: var(--green);
  z-index: -1;
  transition: background 0.6s ease;
}
@media screen and (max-width: 960px) {
  .bgBox {
    min-height: 450px;
  }
}
@media screen and (max-width: 960px) {
  .bgBox .bgLogo {
    height: auto;
    width: 120%;
    opacity: 0.1;
  }
}

.fixedBg {
  background: url("/static/produce101thegirls/fanclub/feature/rockandroll_pretty/images/bg02.png") no-repeat 0% 0%/100% auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  pointer-events: none;
  mix-blend-mode: screen;
}
@media screen and (max-width: 960px) {
  .fixedBg {
    background-position: cover;
  }
}

/*===================================================
	menu
====================================================*/
.navigation {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9998;
}
@media screen and (max-width: 960px) {
  .navigation {
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green);
    mix-blend-mode: initial;
    transition: opacity 0.5s ease;
    z-index: 9997;
  }
}
.navigation .headerNav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .navigation .headerNav {
    display: flex;
    position: absolute;
    background: transparent;
    border-radius: 0;
    flex-wrap: wrap;
    flex-direction: column;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: none;
  }
}
.navigation .headerNav li {
  margin-right: 30px;
}
@media screen and (max-width: 960px) {
  .navigation .headerNav li {
    padding: 0;
    position: relative;
    margin: 0 0 20px;
  }
}
.navigation .headerNav li:last-child {
  margin-right: 0;
}
.navigation .headerNav li a {
  font-family: var(--titleFont);
  font-weight: 600;
  color: var(--color-limited);
  font-size: 20px;
}
@media screen and (max-width: 960px) {
  .navigation .headerNav li a {
    font-size: 32px;
  }
}
.navigation .headerNav li a.soon {
  pointer-events: none;
  color: var(--gray);
}
@media screen and (max-width: 960px) {
  .navigation .headerNav li a.soon {
    color: var(--gray);
  }
}
@media screen and (min-width: 961px) {
  .navigation .headerNav li a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 961px) {
  .navigation .headerNav li:first-child {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .navigation .headerNav li:first-child {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 960px) {
  .navigation .headerNav li:after {
    content: none;
  }
}
@media screen and (max-width: 960px) {
  .navigation .headerNav li a.navLogo {
    display: block;
    width: 175px;
  }
}
@media screen and (max-width: 960px) {
  .navigation.active {
    transition: opacity 0.5s ease;
    pointer-events: auto;
    opacity: 1;
  }
}

@media screen and (max-width: 960px) {
  .hamBtn {
    display: block;
    position: fixed;
    width: 45px;
    height: 45px;
    border: 10px solid var(--color-limited);
    background: var(--color-limited);
    top: 8px;
    right: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 9998;
    transition: top 0.6s cubic-bezier(0.035, 0.675, 0.225, 1.025) 0.3s;
  }
}

@media screen and (max-width: 960px) {
  .hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
    transition: all 0.3s ease;
  }
}

@media screen and (max-width: 960px) {
  .hamBtn :nth-of-type(1) {
    top: 3px;
  }
}

@media screen and (max-width: 960px) {
  .hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 960px) {
  .hamBtn :nth-of-type(3) {
    bottom: 3px;
  }
}

@media screen and (max-width: 960px) {
  .hamBtn.open span:nth-of-type(1) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
  }
}

@media screen and (max-width: 960px) {
  .hamBtn.open span:nth-of-type(2) {
    opacity: 0;
  }
}

@media screen and (max-width: 960px) {
  .hamBtn.open span:nth-of-type(3) {
    transform: translateY(50%) rotate(45deg);
    bottom: 50%;
  }
}

.block--language {
  mix-blend-mode: normal !important;
}

.wovn-languages.visible .nav-dropdown .list--language li {
  color: var(--green) !important;
}

/*===================================================
    all
====================================================*/
.mainWrap {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.5;
  color: var(--main);
  font-family: var(--commonFont);
}
.mainWrap img {
  display: block;
}

.container {
  position: relative;
}

.lpSection {
  padding: 0 0 180px;
}
@media screen and (max-width: 960px) {
  .lpSection {
    padding: 0 0 90px;
  }
}
.lpSection .lpSectionTitle {
  --title-star-duration: 0.6s;
  --title-letter-duration: 0.5s;
  --title-letter-start: 0.18s;
  --title-letter-step: 0.075s;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 64px;
  font-weight: bold;
  line-height: 1.5;
  text-transform: uppercase;
  font-family: var(--titleFont);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-limited);
}
.lpSection .lpSectionTitle::before {
  content: "";
  aspect-ratio: 130/72;
  background: url("/static/produce101thegirls/fanclub/feature/rockandroll_pretty/images/icon_title01.png") no-repeat center/auto 100%;
  width: 130px;
  margin-right: 20px;
  translate: 0 -5px;
  opacity: 0;
  transform: translateX(-32px);
}
@media screen and (max-width: 960px) {
  .lpSection .lpSectionTitle::before {
    width: 60px;
  }
}
.lpSection .lpSectionTitle > span {
  display: inline-block;
  opacity: 0;
  transform: translateX(12px);
}
.lpSection .lpSectionTitle.on::before {
  animation: title-star-in var(--title-star-duration) cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lpSection .lpSectionTitle.on > span {
  animation: title-letter-in var(--title-letter-duration) cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--title-letter-start) + var(--title-letter-index, 0) * var(--title-letter-step));
}
@media screen and (max-width: 960px) {
  .lpSection .lpSectionTitle {
    font-size: 40px;
    margin: 0 0 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lpSection .lpSectionTitle::before,
  .lpSection .lpSectionTitle > span, .lpSection .lpSectionTitle.on::before, .lpSection .lpSectionTitle.on > span {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media screen and (min-width: 961px) {
  .is-sp {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .is-pc {
    display: none !important;
  }
}

/*===================================================
    heroView
====================================================*/
#heroView {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  margin: 0 auto 120px;
  z-index: 1;
}
#heroView .splashIconFv {
  width: 837px;
  aspect-ratio: 1674/1299;
  position: absolute;
  right: 0;
  top: 60%;
  pointer-events: none;
  z-index: -1;
  background: url("/static/produce101thegirls/fanclub/feature/rockandroll_pretty/images/bg01.png") no-repeat top right/cover;
  opacity: 0;
}
#heroView .splashIconFv.on {
  animation: splash 3s 0s 1 forwards;
}
@media screen and (max-width: 960px) {
  #heroView .splashIconFv {
    width: 80%;
    top: 72%;
    right: -40px;
  }
}
#heroView .heroImage {
  position: absolute;
  right: 4%;
  top: 50%;
  width: 55vw;
  translate: 0 -50%;
}
@media screen and (max-width: 960px) {
  #heroView .heroImage {
    right: 3%;
    top: 12%;
    width: 94%;
    translate: 0;
  }
}
#heroView .heroInner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#heroView .heroInner .kvBox {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #heroView .heroInner .kvBox {
    width: 100%;
    margin: 0 0 6%;
  }
}
@media screen and (max-width: 750px) {
  #heroView .heroInner .kvBox {
    margin: 0 0 12%;
  }
}
#heroView .heroInner .kvBox .kv {
  width: 40%;
  min-height: 480px;
  margin: 0 auto;
  height: 100svh;
}
@media screen and (max-width: 960px) {
  #heroView .heroInner .kvBox .kv {
    width: 100%;
    min-height: 480px;
    margin: 0;
    height: 70svh;
  }
}
@media screen and (max-width: 960px) {
  #heroView .txtBox.act04 {
    position: absolute;
    top: 17%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 960px) {
  #heroView .txtBox.act05 {
    position: absolute;
    bottom: 11%;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    bottom: 7%;
  }
}
@media screen and (max-width: 580px) {
  #heroView .txtBox.act05 {
    bottom: 11%;
    width: 45%;
  }
}
@media screen and (max-width: 960px) {
  #heroView .scrollBox .scrollArrow {
    left: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 960px) {
  #heroView {
    min-height: 450px;
    margin: 0 0 90px;
    height: 100svh;
  }
}
@media screen and (max-width: 960px) {
  #heroView .heroInner {
    flex-direction: column;
  }
}
#heroView .heroInner .kvBox .kv img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
}
#heroView .heroInner .txtBox {
  position: absolute;
  left: 0%;
  bottom: 0%;
  width: 100%;
}
@media screen and (max-width: 960px) {
  #heroView .heroInner .txtBox {
    bottom: auto;
    top: 50%;
  }
}
#heroView .heroViewLogo {
  width: 375px;
  margin-left: 10%;
  margin-bottom: -50px;
}
@media screen and (max-width: 960px) {
  #heroView .heroViewLogo {
    width: 80%;
    margin: 0 auto;
    translate: 0 15%;
  }
}
#heroView .heroViewReleaseDate {
  background: url("/static/produce101thegirls/fanclub/feature/rockandroll_pretty/images/fv_release_bg.png") no-repeat bottom left/cover;
  aspect-ratio: 572/532;
  width: 286px;
  display: flex;
  align-items: center;
  font-family: var(--titleFont);
  font-size: 24px;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.3;
  padding-left: 40px;
}
@media screen and (max-width: 960px) {
  #heroView .heroViewReleaseDate {
    width: 210px;
    padding-left: 20px;
    font-size: 20px;
  }
}
#heroView .snsWrap {
  position: absolute;
  right: 30px;
  bottom: 25px;
}
@media screen and (max-width: 960px) {
  #heroView .snsWrap {
    bottom: 15px;
    right: 20px;
  }
}
#heroView .snsWrap ul {
  display: flex;
}
#heroView .snsWrap ul li {
  margin: 0 20px 0 0;
}
#heroView .snsWrap ul li:last-child {
  margin: 0;
}
#heroView .snsWrap ul li a {
  font-size: 20px;
}
@media screen and (min-width: 961px) {
  #heroView .snsWrap ul li a i {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
}
@media screen and (min-width: 961px) {
  #heroView .snsWrap ul li a:hover i {
    opacity: 0.7;
  }
}

/*===================================================
  Product — 共通パーツとレイアウト
====================================================*/
#product {
  position: relative;
}
#product .productBox {
  display: flex;
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 200px;
}
@media screen and (max-width: 960px) {
  #product .productBox {
    flex-wrap: wrap;
    width: 85%;
    margin-bottom: 60px;
  }
}
#product .productBox:nth-child(even) {
  flex-flow: row-reverse;
}
@media screen and (max-width: 960px) {
  #product .productBox:nth-child(even) {
    flex-flow: wrap;
  }
}
#product .productBox:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  #product .productBox:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 960px) {
  #product .productBox .price .tax {
    font-size: 12px;
  }
}
#product .productBox .splashIcon01 {
  width: 241px;
  aspect-ratio: 482/670;
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  background: url("/static/produce101thegirls/fanclub/feature/rockandroll_pretty/images/icon_splash01.png") no-repeat bottom right/100% auto;
  opacity: 0;
}
#product .productBox .splashIcon01.on {
  animation: splash 3s 0s 1 forwards;
}
@media screen and (max-width: 960px) {
  #product .productBox .splashIcon01 {
    width: 30%;
    filter: brightness(0.5);
  }
}
#product .productBox .splashIcon02 {
  position: absolute;
  bottom: 0;
  left: calc((100vw - 90%) / 2 * -1);
  aspect-ratio: 374/496;
  width: 187px;
  background: url("/static/produce101thegirls/fanclub/feature/rockandroll_pretty/images/icon_splash02.png") no-repeat bottom left/100% auto;
  opacity: 0;
}
#product .productBox .splashIcon02.on {
  animation: splash 3s 0s 1 forwards;
}
@media screen and (min-width: 1201px) {
  #product .productBox .splashIcon02 {
    left: calc((100vw - 1200px) / 2 * -1);
  }
}
@media screen and (max-width: 960px) {
  #product .productBox .splashIcon02 {
    filter: brightness(0.5);
  }
}
#product .productBox .splashIcon03 {
  position: absolute;
  bottom: 0;
  right: calc((100vw - 90%) / 2 * -1);
  aspect-ratio: 1172/892;
  width: 586px;
  background: url("/static/produce101thegirls/fanclub/feature/rockandroll_pretty/images/bg03.png") no-repeat bottom left/100% auto;
  opacity: 0;
}
#product .productBox .splashIcon03.on {
  animation: splash 3s 0s 1 forwards;
}
@media screen and (min-width: 1201px) {
  #product .productBox .splashIcon03 {
    right: calc((100vw - 1200px) / 2 * -1);
  }
}
@media screen and (max-width: 960px) {
  #product .productBox .splashIcon03 {
    filter: brightness(0.5);
  }
}
@keyframes splash {
  0% {
    opacity: 0;
    scale: 1.5;
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    scale: 0.95;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation-timing-function: ease-in;
  }
  100% {
    opacity: 1;
    scale: 1;
    animation-timing-function: ease-out;
  }
}
#product .productImg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 120px;
  width: 45%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  #product .productImg {
    position: relative;
    top: 0;
    width: 100%;
    max-width: 450px;
    margin: 0 auto 30px;
  }
}
#product .productImg p {
  border: 1px solid;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  #product .productImg p {
    margin: 0 auto 10px;
  }
}
#product .productImg p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  #product .productImg p:last-child {
    margin-bottom: 0;
  }
}
#product .productBox .productDetail {
  position: relative;
  width: 55%;
  padding-left: 5%;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  #product .productBox .productDetail {
    width: 100%;
    margin-top: 0;
    padding: 0;
  }
}
#product .productBox:nth-child(even) .productDetail {
  padding: 0 5% 0 0;
}
@media screen and (max-width: 960px) {
  #product .productBox:nth-child(even) .productDetail {
    width: 100%;
    margin-top: 0;
    padding: 0;
  }
}
#product .detailTit {
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  #product .detailTit {
    margin-bottom: 20px;
    font-size: 32px;
  }
}
#product .detailTit span {
  padding-left: 15px;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  #product .detailTit span {
    display: block;
    padding: 15px 0 0;
    font-size: 14px;
  }
}
#product .price {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  #product .price {
    font-size: 24px;
  }
}
#product .price .yen {
  padding-right: 5px;
  font-size: 16px;
}
#product .price .tax {
  padding-left: 5px;
  font-size: 16px;
  font-weight: 400;
}
#product .code {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  #product .code {
    font-size: 12px;
  }
}
@media screen and (max-width: 960px) {
  #product .code .productNote {
    line-height: 1.5;
  }
}
#product .tagBox {
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  #product .tagBox {
    margin-bottom: 20px;
  }
}
#product .tag {
  margin-right: 5px;
  border: 1px solid;
  padding: 2px 10px;
  font-size: 14px;
  font-weight: bold;
}
#product .tag.tagMain {
  display: inline-block;
  margin: 0 0 5px;
  border: none;
}
@media screen and (max-width: 960px) {
  #product .tag.tagMb {
    display: inline-block;
    margin-bottom: 5px;
    padding: 0 10px;
  }
}
#product {
  /* 色はHTMLのcolor-*/ /*background-*/ /*border-*で指定。*/
}
#product .detailListBox {
  position: relative;
  margin-bottom: 30px;
}
#product .detailListBox.is-privilege {
  border: 2px solid var(--color-limited);
  padding: 20px;
}
#product .detailListBox.is-privilege .listTit {
  display: flex;
  align-items: center;
}
#product .detailListBox.is-privilege .listTit::before {
  content: "";
  width: 50px;
  height: 28px;
  background: url("/static/produce101thegirls/fanclub/feature/rockandroll_pretty/images/icon_title02.png") no-repeat top left/100% auto;
}
#product .detailListBox:last-child {
  margin-bottom: 0;
}
#product .detailListBox .listTit {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}
#product .detailListBox .listTit::before {
  content: "ー";
  margin-right: 10px;
  color: var(--color-limited);
}
@media screen and (max-width: 960px) {
  #product .detailListBox .listTit {
    margin-bottom: 15px;
    font-size: 14px;
  }
}
#product .detailListBox .dvdList li {
  padding-left: 0;
  text-indent: 0;
}
#product .detailListBox .dvdNote {
  padding: 0 0 0 5px;
}
#product .detailListBox .boxListNote {
  display: block;
  padding: 0 0 0 1em;
  text-indent: -1em;
}
@media screen and (max-width: 960px) {
  #product .detailListBox .listTxt {
    font-size: 14px;
  }
}
#product .detailListBoxNote li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 80%;
}
#product .detailListBoxNote li:not(:last-of-type) {
  margin-bottom: 10px;
}
#product .detailListBoxItems {
  padding-top: 10px;
}
#product .detailListBoxItems li {
  margin-bottom: 10px;
  padding: 0 0 10px 2.5em;
  font-size: 14px;
  text-indent: -2.5em;
}
#product .detailListBoxItems li:last-child {
  margin-bottom: 0;
}
#product .detailListBoxItems li span {
  margin-right: 1em;
  padding: 5px;
  font-size: 12px;
  font-weight: bold;
  background: var(--color-limited);
}
#product .detailListBox .listTit::before {
  color: var(--color-white);
}
#product .productFcBox .detailListBoxItems li span {
  background: var(--color-primary);
}
#product .productFcBox .detailListBox.is-privilege {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
#product .productFcBox .detailListBox.is-privilege .detailListBoxItems li span {
  background: var(--color-limited);
}
#product {
  /* FC限定盤で異なる寸法だけを上書き。*/
}
#product .productFcBox {
  position: relative;
}
#product .productFcBox .detailInner {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  border: 3px solid var(--color-primary);
  padding: 5%;
}
@media screen and (max-width: 960px) {
  #product .productFcBox .detailInner {
    width: 85%;
    padding: 30px 5% 45px;
  }
}
#product .productFcBox .starsIcon {
  width: 281px;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 960px) {
  #product .productFcBox .starsIcon {
    width: 30%;
    top: 10px;
    right: 10px;
  }
}
#product .productFcBox .detailTit span {
  padding-left: 5px;
  font-weight: inherit;
}
@media screen and (max-width: 960px) {
  #product .productFcBox .detailTit span {
    margin-top: 10px;
    padding: 0 0 0 5px;
    font-size: 18px;
    text-indent: -0.5em;
  }
}
#product .productFcBox .price {
  margin-bottom: 15px;
}
#product .productFcBox .code {
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  #product .productFcBox .code {
    margin-bottom: 30px;
    font-size: 14px;
  }
}
#product .productFcBox .tagBox {
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  #product .productFcBox .tagBox {
    margin-bottom: 30px;
  }
}
#product .productFcBox .tagMain {
  border: 1px solid var(--white);
}
#product .productFcBox .detailListBox {
  margin-bottom: 25px;
  padding: 30px;
}
@media screen and (max-width: 960px) {
  #product .productFcBox .detailListBox {
    margin-bottom: 10px;
    padding: 20px;
  }
}
#product .productFcBox .detailListBox:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  #product .productFcBox .detailListBox:last-child {
    margin-bottom: 0;
  }
}
#product .productFcList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}
#product .productFcList::after {
  content: "";
  display: block;
  width: 31%;
  height: 0;
}
#product .productFcList > li {
  width: calc(33.3% - 6.6666666667px);
  margin-bottom: 10px;
  padding: 20px;
}
@media screen and (max-width: 960px) {
  #product .productFcList > li {
    width: calc(50% - 0.5px);
    max-width: 450px;
    margin-bottom: 1px;
    padding: 10px;
  }
}
#product .productFcList > li:nth-last-child(2),
#product .productFcList > li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 961px) {
  #product .productFcList a img {
    transition: all 0.3s ease-out;
  }
}
@media screen and (min-width: 961px) {
  #product .productFcList a:hover img {
    opacity: 0.7;
  }
}
#product .fcListImg {
  display: flex;
  position: relative;
  margin-bottom: 10px;
}
#product .fcListImg a {
  pointer-events: none;
}
#product .fcListTit {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 960px) {
  #product .fcListTit {
    margin-bottom: 3px;
    font-size: 14px;
  }
}
#product .fcListTxt {
  font-size: 14px;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  #product .fcListTxt {
    font-size: 10px;
  }
}
#product .productBtn {
  padding-top: 15px;
}
@media screen and (max-width: 960px) {
  #product .productBtn {
    padding-top: 10px;
  }
}
#product .productBtn a {
  display: block;
  width: 90%;
  max-width: 300px;
  margin: 0 auto;
  border: 2px solid currentColor;
  border-radius: 100px;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #product .productBtn a {
    width: 100%;
    padding: 10px 5px;
    font-size: 11px;
  }
}
@media screen and (min-width: 961px) {
  #product .productBtn a:hover {
    background-color: var(--white);
    opacity: 0.5;
  }
}
#product .packShot {
  margin: 0 auto 40px;
}
@media screen and (max-width: 960px) {
  #product .packShot {
    margin-bottom: 30px;
  }
}
#product .packShot p {
  width: 100%;
}
@media screen and (max-width: 960px) {
  #product .packShot p {
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 960px) {
  #product .packShot p:last-child {
    margin-bottom: 0;
  }
}

/* 商品画像の装飾*/
/*===================================================
    photo
====================================================*/
#photo .photo_inner .slider {
  width: 100%;
  margin: 0 auto 60px;
}
#photo .photo_inner .slider li {
  padding: 0 10px;
}
@media screen and (max-width: 960px) {
  #photo .photo_inner .slider li {
    padding: 0 8px;
  }
}
#photo .photo_inner .slick-slide img {
  background-size: contain;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
#photo .photo_inner .slider .slick-next {
  right: calc(18% + 12px);
  top: auto;
  bottom: -30px;
  width: 80px;
  height: 10px;
  border-bottom: 1px solid var(--main);
}
@media screen and (max-width: 960px) {
  #photo .photo_inner .slider .slick-next {
    width: 50px;
    right: 18%;
  }
}
#photo .photo_inner .slider .slick-prev {
  left: calc(18% + 12px);
  top: auto;
  bottom: -30px;
  width: 80px;
  height: 10px;
  border-bottom: 1px solid var(--main);
}
@media screen and (max-width: 960px) {
  #photo .photo_inner .slider .slick-prev {
    width: 50px;
    left: 18%;
  }
}
#photo .photo_inner .slider .slick-prev:before,
#photo .photo_inner .slider .slick-next:before {
  content: "";
  width: 13px;
  height: 2px;
  border-bottom: 1px solid var(--main);
  display: block;
  opacity: 1;
  bottom: -0.5px;
  top: 8px;
  position: absolute;
  transform: rotate(330deg);
  transform-origin: left bottom;
  background: none;
}
#photo .photo_inner .slider .slick-next:before {
  transform: rotate(30deg);
  transform-origin: right bottom;
  left: auto;
  right: 0;
}

#photo {
  padding-top: 100px;
}
@media screen and (max-width: 960px) {
  #photo {
    margin: 0 0 60px;
  }
}

/*===================================================
    shop
====================================================*/
#shop .inBox {
  width: 90%;
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
  padding: 5%;
  border: 3px solid var(--color-limited);
}
#shop .inBox:has(.comingSoon) {
  padding: 100px 5%;
}
#shop .inBox:has(.comingSoon) .comingSoon {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 960px) {
  #shop .inBox {
    padding: 20px;
  }
}
#shop .inBox .shopList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#shop .inBox .shopList:after {
  content: "";
  display: block;
  width: calc(33.3333333333% - 20px);
}
@media screen and (max-width: 960px) {
  #shop .inBox .shopList:after {
    width: 47.5%;
  }
}
#shop .inBox .shopList li {
  width: calc(33.3333333333% - 20px);
  margin: 0px 0 30px;
}
@media screen and (max-width: 960px) {
  #shop .inBox .shopList li {
    width: calc(50% - 10px);
    margin: 0px 0 20px;
  }
}
#shop .inBox .shopList li:nth-last-child(3),
#shop .inBox .shopList li:nth-last-child(2),
#shop .inBox .shopList li:last-child {
  margin: 0;
}
#shop .inBox .shopList .shopImg {
  margin: 0 0 20px;
}
@media screen and (max-width: 960px) {
  #shop .inBox .shopList .shopImg {
    margin: 0 0 15px;
  }
}
#shop .inBox .shopList .shopImg img {
  display: block;
}
#shop .inBox .shopList .shopTit {
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 14px;
  margin: 0 0 10px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #shop .inBox .shopList .shopTit {
    font-size: 12px;
    margin: 0 0 5px;
  }
}
#shop .inBox .shopList .shopBtn a {
  display: block;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-radius: 100px;
  background: var(--main);
  width: 80%;
  max-width: 350px;
  margin: 0 auto;
  color: var(--green);
  border: 1px solid var(--main);
}
@media screen and (max-width: 960px) {
  #shop .inBox .shopList .shopBtn a {
    font-size: 12px;
    width: 100%;
    padding: 10px 10px 9px;
  }
}
#shop .inBox .shopList .shopBtn.grayBtn a {
  pointer-events: none;
  background: var(--gray);
  border: 1px solid var(--gray);
}
@media screen and (min-width: 961px) {
  #shop .inBox .shopList .shopBtn a:hover {
    background: initial;
    color: var(--main);
  }
}
@media screen and (max-width: 960px) {
  #shop .inBox .shopList li:nth-last-child(3) {
    margin: 0px 0 20px;
  }
}
@media screen and (max-width: 960px) {
  #shop .inBox .shopList li:nth-last-child(2) {
    margin: 0;
  }
}
@media screen and (max-width: 960px) {
  #shop .inBox .shopList li:last-child {
    margin: 0;
  }
}
@media screen and (max-width: 960px) {
  #shop .inBox .soon {
    font-size: 16px;
  }
}

/*===================================================
    fanclub
====================================================*/
#fanclub .inBox {
  width: 90%;
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
  padding: 3% 0;
  border: 1px solid;
}
@media screen and (max-width: 960px) {
  #fanclub .inBox {
    padding: 5%;
  }
}
#fanclub .inBox .txtBox {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .txtBox {
    font-size: 16px;
    text-align: left;
    margin-bottom: 20px;
  }
}
#fanclub .inBox .btnBox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 60px;
  gap: 30px;
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .btnBox {
    flex-direction: column;
    margin: 0 auto 30px;
  }
}
#fanclub .inBox .btnBox .fcBtn {
  width: calc(90% - 40px);
  max-width: 300px;
  margin: 0 40px 0 0;
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .btnBox .fcBtn {
    margin: 0 auto 20px;
    width: 90%;
  }
}
#fanclub .inBox .btnBox .fcBtn a {
  display: block;
  background: #240968;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto;
  border-radius: 100px;
  line-height: 1.5;
}
#fanclub .inBox .btnBox .fcBtn.official {
  margin: 0;
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .btnBox .fcBtn.official {
    margin: 0 auto 0;
  }
}
#fanclub .inBox .btnBox .fcBtn.official a {
  background: #d2518c;
}
#fanclub .inBox .btnBox .fcBtn.others a {
  background: var(--white);
  color: var(--color-primary);
}
#fanclub .inBox .btnBox .fcBtn.others a:hover {
  color: var(--white);
}
#fanclub .inBox .photoBtn a:hover {
  background: var(--main);
  color: var(--green);
  border: 1px solid var(--white);
}
#fanclub .inBox.btnBox {
  border: none;
}
#fanclub .inBox .detailBox.end {
  align-items: flex-end;
}
#fanclub .inBox .detailBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .detailBox {
    display: block;
  }
}
#fanclub .inBox .photoBox.two {
  width: 40%;
  position: relative;
  display: flex;
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .photoBox.two {
    width: 82%;
    position: relative;
    display: flex;
  }
}
#fanclub .inBox .photoBox.two .photo {
  width: 90%;
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .photoBox.two .photo {
    width: 90%;
  }
}
#fanclub .inBox .photoBtnBox.all {
  width: 65%;
  margin-bottom: 18%;
  position: relative;
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .photoBtnBox.all {
    width: 91%;
    position: relative;
    margin: 7% 0 7% 9%;
  }
}
@media screen and (min-width: 960px) {
  #fanclub .inBox .btnBox .fcBtn a:hover {
    background: #ff4d8c;
  }
}
@media screen and (min-width: 960px) {
  #fanclub .inBox .btnBox .fcBtn.official a:hover {
    background: #fff;
    color: #d2518c;
  }
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .behindBox {
    flex-direction: column;
  }
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .behindBox .behind {
    width: 100%;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .behindBox .behind:last-child {
    margin: 0 auto;
  }
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .behindBox .behind .behindBtn {
    font-size: clamp(10px, 3vw, 14px);
    padding: 6px 10px 6px 20px;
  }
}
#fanclub p.photoBtn {
  position: absolute;
  bottom: -44%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, 0%);
}
@media screen and (max-width: 960px) {
  #fanclub p.photoBtn {
    position: relative;
  }
}
#fanclub .inBox .photoBtn a {
  display: block;
  padding: 20px;
  border-radius: 100px;
  background: transparent;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  color: var(--main);
  border: 1px solid var(--main);
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .photoBtn a {
    line-height: 1.2;
    padding: 15px;
  }
}
#fanclub .otherLinks {
  margin-top: 100px;
}
#fanclub .otherLinks .inBox .btnBox {
  margin-bottom: 0;
}

/*===================================================
    footer
====================================================*/
.copyBox {
  padding: 45px 0 90px;
  color: var(--main);
}
@media screen and (max-width: 960px) {
  .copyBox {
    padding: 0 0 40px;
  }
}
.copyBox .footerLogo a img {
  width: 150px;
}
.copyBox .footerLogo {
  line-height: 1;
  display: flex;
  justify-content: center;
  padding: 20px;
}
@media screen and (max-width: 960px) {
  .copyBox .footerLogo {
    padding: 30px 20px 20px;
  }
}
@media screen and (min-width: 961px) {
  .copyBox .footerLogo a:hover svg {
    opacity: 0.7;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
}
.copyBox .copy {
  color: var(--main);
  font-size: 12px;
  text-align: center;
}

body {
  scroll-behavior: smooth;
}

#product,
#photo {
  scroll-margin-top: 20px;
}

/*===================================================
  Photo / Lookbook / UI
====================================================*/
#fanclub .photoArea {
  border: 1px solid;
}
#fanclub .photoArea:has(.comingSoon) {
  padding: 100px 5%;
  border-color: var(--color-limited);
  border-width: 3px;
}
#fanclub .photoArea:has(.comingSoon) .comingSoon {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}
#fanclub .inBox .photoBox .detailBox:last-child {
  margin: 0 auto;
}
#fanclub .inBox .photoBox .detailBox {
  display: flex;
  margin: 0 auto 40px;
  align-items: center;
  justify-content: space-between;
  padding: 5%;
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .photoBox .detailBox {
    margin: 0px auto 30px;
    display: flex;
    flex-direction: column;
  }
}
#fanclub .inBox .photoBox .detailBox .photo {
  width: 60%;
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .photoBox .detailBox .photo {
    width: 100%;
    margin: 0 auto 5%;
  }
}
#fanclub .inBox .photoBox .detailBox.frist {
  padding-bottom: 0px;
}
#fanclub .inBox .photoBox .detailBox .txtBox {
  width: calc(40% - 40px);
  text-align: center;
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .photoBox .detailBox .txtBox {
    width: 90%;
    margin: 0;
  }
}
#fanclub .inBox .photoBox .detailBox .txtBox .photoBtn a {
  display: block;
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 100px;
  width: auto;
  max-width: 300px;
  margin: 0 auto 0px;
  background: transparent;
  color: #fff;
}
@media screen and (max-width: 960px) {
  #fanclub .inBox .photoBox .detailBox .txtBox .photoBtn a {
    margin: 0 auto 0px;
    padding: 15px 10px;
    width: 100%;
    max-width: 350px;
    font-size: 14px;
  }
}

body #fanclub .inBox .photoBox .txtBox {
  margin-bottom: 0;
}

#fanclub .inBox .txtBox {
  margin-bottom: 40px;
}
#fanclub p.photoBtn {
  position: relative;
  bottom: auto;
  left: auto;
  width: auto;
  transform: translate(0%, 0%);
}

#product .cdList li a {
  position: relative;
  display: inline;
  margin-left: auto;
  text-indent: 0.5em;
  color: #fff;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-size: 12px;
  padding: 8px;
  border-radius: 222222px;
}
#product .cdList li a:hover {
  color: var(--color-primary);
  background: #fff;
  border: 1px solid var(--color-primary);
}
#product .cdList li a:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}
#product .cdList li.dl {
  display: flex;
  align-items: center;
}

.wovn-languages .nav-current {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}
.wovn-languages .nav-dropdown .list--language li.selected {
  display: none !important;
}

@media screen and (max-width: 960px) {
  body #fanclub .inBox {
    padding: 0;
  }
}

@media screen and (max-width: 960px) {
  body #fanclub .inBox .photoBox .detailBox.frist {
    padding-bottom: 3%;
  }
}

.lookBookArea {
  position: relative;
  z-index: 1;
  padding: 5%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 960px) {
  .lookBookArea {
    margin: 0 auto 30px;
  }
}
.lookBookArea .lookBooKLogo {
  width: 55%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 960px) {
  .lookBookArea .lookBooKLogo {
    width: 95%;
    margin: 0 auto 30px;
  }
}
.lookBookArea .silhouette {
  width: 75%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 960px) {
  .lookBookArea .silhouette {
    width: 80%;
    margin: 0 auto 30px;
  }
}
.lookBookArea .lookBookBtn a {
  display: block;
  color: #515151;
  background: #fcffbd;
  border: 1px solid;
  width: 100%;
  max-width: 300px;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto;
  border-radius: 100px;
  line-height: 1.5;
}
.lookBookArea .areaBg {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgb(21, 145, 199) 0%, rgb(128, 204, 209) 54%, rgb(247, 247, 247) 100%);
  pointer-events: none;
  overflow: hidden;
}
.lookBookArea .areaBg .areaInBg {
  position: absolute;
  inset: 0;
}
.lookBookArea .areaBg .areaInBg.inBg01 {
  z-index: 1;
  background: url(/static/produce101thegirls/fanclub/feature/rockandroll_pretty/image/lookbook_cQTiNWEa/bg.png);
  background-position: center;
  background-size: 138px 138px;
  background-repeat: repeat;
}
.lookBookArea .areaBg .areaInBg.inBg02 {
  z-index: 2;
  background: #be46e3;
  opacity: 0.1;
}
.lookBookArea .areaBg .areaInBg.inBg03 {
  z-index: 3;
  mix-blend-mode: screen;
}
.lookBookArea .areaBg .areaInBg.inBg03 .bgItem {
  position: absolute;
  display: block;
}
.lookBookArea .areaBg .areaInBg.inBg03 .bgItem.item01 {
  width: 12%;
  max-width: 192px;
  left: 10%;
  top: 12%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .lookBookArea .areaBg .areaInBg.inBg03 .bgItem.item01 {
    width: 14%;
    left: 12%;
    top: 10%;
  }
}
.lookBookArea .areaBg .areaInBg.inBg03 .bgItem.item02 {
  width: 18%;
  max-width: 345.6px;
  right: 6%;
  top: 28%;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 960px) {
  .lookBookArea .areaBg .areaInBg.inBg03 .bgItem.item02 {
    width: 20%;
    right: 6%;
    top: 40%;
  }
}
.lookBookArea .areaBg .areaInBg.inBg03 .bgItem.item03 {
  width: 16%;
  max-width: 307.2px;
  left: 16%;
  bottom: 4%;
  transform: translate(-50%, 50%);
}
@media screen and (max-width: 960px) {
  .lookBookArea .areaBg .areaInBg.inBg03 .bgItem.item03 {
    width: 20%;
    left: 5%;
    bottom: 24%;
  }
}

#product .inBox .productBox .productImg p {
  border: none;
}

/*===================================================
  色ユーティリティ
  HTMLで明示した色を優先。border-*は色のみ（太さ・線種は各パーツ側）。
====================================================*/
.font-primary {
  font-family: var(--commonFont);
}

.font-secondary {
  font-family: var(--titleFont);
}

.color-primary {
  color: var(--color-primary) !important;
}

.background-primary {
  background-color: var(--color-primary) !important;
}

.border-primary {
  border-color: var(--color-primary) !important;
}

.color-white {
  color: var(--color-white) !important;
}

.background-white {
  background-color: var(--color-white) !important;
}

.border-white {
  border-color: var(--color-white) !important;
}

.color-gray {
  color: var(--color-gray) !important;
}

.background-gray {
  background-color: var(--color-gray) !important;
}

.border-gray {
  border-color: var(--color-gray) !important;
}

.color-first {
  color: var(--color-first) !important;
}

.background-first {
  background-color: var(--color-first) !important;
}

.border-first {
  border-color: var(--color-first) !important;
}

.color-second {
  color: var(--color-second) !important;
}

.background-second {
  background-color: var(--color-second) !important;
}

.border-second {
  border-color: var(--color-second) !important;
}

.color-normal {
  color: var(--color-normal) !important;
}

.background-normal {
  background-color: var(--color-normal) !important;
}

.border-normal {
  border-color: var(--color-normal) !important;
}

.color-limited {
  color: var(--color-limited) !important;
}

.background-limited {
  background-color: var(--color-limited) !important;
}

.border-limited {
  border-color: var(--color-limited) !important;
}

.color-miu {
  color: var(--color-miu) !important;
}

.background-miu {
  background-color: var(--color-miu) !important;
}

.border-miu {
  border-color: var(--color-miu) !important;
}

.color-momona {
  color: var(--color-momona) !important;
}

.background-momona {
  background-color: var(--color-momona) !important;
}

.border-momona {
  border-color: var(--color-momona) !important;
}

.color-ayane {
  color: var(--color-ayane) !important;
}

.background-ayane {
  background-color: var(--color-ayane) !important;
}

.border-ayane {
  border-color: var(--color-ayane) !important;
}

.color-keiko {
  color: var(--color-keiko) !important;
}

.background-keiko {
  background-color: var(--color-keiko) !important;
}

.border-keiko {
  border-color: var(--color-keiko) !important;
}

.color-rinon {
  color: var(--color-rinon) !important;
}

.background-rinon {
  background-color: var(--color-rinon) !important;
}

.border-rinon {
  border-color: var(--color-rinon) !important;
}

.color-suzu {
  color: var(--color-suzu) !important;
}

.background-suzu {
  background-color: var(--color-suzu) !important;
}

.border-suzu {
  border-color: var(--color-suzu) !important;
}

.color-tsuzumi {
  color: var(--color-tsuzumi) !important;
}

.background-tsuzumi {
  background-color: var(--color-tsuzumi) !important;
}

.border-tsuzumi {
  border-color: var(--color-tsuzumi) !important;
}

/* スクロール演出が付与する状態クラスとの対応。*/
.bgBox.first {
  background-color: var(--color-first);
}
.bgBox.second {
  background-color: var(--color-second);
}
.bgBox.normal {
  background-color: var(--color-normal);
}
.bgBox.limited {
  background-color: var(--color-limited);
}

@keyframes title-star-in {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes title-letter-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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