@charset "UTF-8";
/*-------------------------------
	Base
-------------------------------*/
html {
    font-family: 'Noto Sans JP', sans-serif;
    background: #230000;
}

body {
	overflow-x: hidden;
	letter-spacing: 0.05em;
}

img {
	width: 100%;
}

@media screen and (min-width: 1050px){
    .sp { display: none !important; }
}

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



/*-------------------------------
	Header
-------------------------------*/
.header {
  position: absolute;
  z-index: 10;
  width: 100%;
}
.header-wrapper {
	padding: 2rem;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	align-items: center;
}
@media screen and (max-width: 1050px) {
  .header-wrapper {
    padding: 0 0 2rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .header-wrapper {
    padding: 0 0 1rem 1rem;
  }
}
.header .logo {
	width: 70px;
	position: fixed;
	top: 2rem;
	left: 2rem;
}
@media screen and (max-width: 768px) {
	.header .logo {
		top: 1rem;
		left: 1rem;
	}
  .header .logo img {
    width: 70%;
  }
}
@media screen and (max-width: 1050px) {
  .header-btn {
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
    padding: 0;
  }
}
.header-btn {
	position: fixed;
    top: 30px;
    right: 0;
}

.header-btn a {
  	display: block;
    color: #fff;
    background-color: #c1280a;
    padding: 25px 40px;
    border-bottom: none;
    text-align: center;
    border-radius: 14px 0 0 14px;
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: bold;
    	line-height: 1.2;
}
.header-btn a:hover {
  opacity: 0.7;
}
.header-btn a span {
    display: inline-block;
    font-size: 65%;
    margin-top: 6px;
	padding-bottom: 3px;
    border-bottom: #fff solid 2px;
}

@media screen and (max-width: 1050px) {

}
@media screen and (max-width: 768px) {
	.header-btn {
		position: fixed;
		top: 15px;
		right: 0;
	}
	.header-btn a {
		width: 160px;
		font-size: 15px;
    	padding: 15px 0;
    	border-radius: 8px 0 0 8px;
		line-height: 1;
	}
	.header-btn a span {
    	font-size: 65%;
	}
}
@media screen and (max-width: 414px) {

}

/*-------------------------------
	Footer
-------------------------------*/
.footer {
    width: 200%;
    padding: 2rem 0;
    position: absolute;
    margin-left: -100%;
    bottom: 0;
}
@media screen and (max-width: 1050px) {
  .footer {
    width: 100%;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    width: 100%;
    margin-left: auto;
  }
}
.footer-wrapper {

}
@media screen and (max-width: 414px) {
  .footer-nav {
    margin: 0 auto 2rem;
  }
}
.footer-nav-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.footer-nav-wrapper li {
  margin-right: 2rem;
}
@media screen and (max-width: 414px) {
  .footer-nav-wrapper li {
    margin: 0 0 1rem;
    width: 100%;
    text-align: center;
    font-size: 12px;
  }
}
.footer-copyright {
    text-align: center;
    width: 50%;
    margin: 0 0 0 auto;
    color: #fff;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 414px) {
  .footer-copyright {
    width: 100%;
    font-size: 12px;
  }
}

/*-------------------------------
	Button
-------------------------------*/
.cv-btn {
	max-width: 460px;
	height: 90px;
	line-height: 90px;
	border-radius: 10px;
	text-align: center;
	margin: 2rem auto 0;
}
@media screen and (max-width: 414px) {
  .cv-btn {
	height: 70px;
    line-height: 66px;
  }
}
.cv-btn a {
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    transition: 0.3s;
    font-weight: 600;
}
@media screen and (max-width: 414px) {
  .cv-btn a {
	font-size: 0.9rem;
  }
}
.cv-btn a:hover {
	opacity: 0.7;
}
.cv-btn--primary {
	background-color: #c1280a;
}
.cv-btn--secondary {
	background-color: transparent;
	border: solid 1px #fff;
}

/*-------------------------------
	title
-------------------------------*/
.fixed-title {
  position: absolute;
  font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.1em;
  top: 75px;
  right: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .fixed-title {
    top: 3%;
    font-size: 4vw;
  }
}
@media screen and (max-width: 414px) {
  .fixed-title {
    top: 8vw;
  }
}
.fixed-title:after {
  display: block;
  content: "";
  width: 50px;
  margin-left: 0.5rem;
  height: 1px;
  flex-grow: 1;
}
.fixed-title--white {
  color: #fff;
}
.fixed-title--white:after {
  background-color: #fff;
}
.fixed-title--black {
  color: #000;
}
.fixed-title--black:after {
  background-color: #000;
}

/*-------------------------------
	Animation
-------------------------------*/
.inview {
  opacity: 0;
}
.inview--fade-in.active {
  animation: fadeIn 1s 0.3s forwards;
}
.inview--slide-in.active {
  animation: slideIn 1s forwards;
}
.inview--fade-up.active {
  animation: fadeUp 1s forwards;
}
.inview--img-blur.active {
  animation: imageBlur 1s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transition: 2s;
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(64px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes imageBlur {
  0% {
    opacity: 0;
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
@keyframes slideAnime {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*-------------------------------
	Main
-------------------------------*/
.top {
  z-index: 0;
}

/* Slide */
.slide {
  left: 0;
  width: 50%;
  height: 100vh;
  position: fixed;
  background-color: black;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide .caption {
	position: absolute;
    bottom: 5%;
    left: 5%;
    color: #fff;
    font-feature-settings: "palt";
    font-size: 1.5vw;
    font-weight: bold;
    line-height: 1.6;
    width: 90%;
    text-shadow: 0 0 10px #0000008a;
}

.slide .caption span {
	position: absolute;
	bottom: 0;
	right: 0;
	font-size: 10px;
	font-weight: normal;
}

/* Main Contents */
.contents {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1050px) {
  .contents {
    width: 100%;
    overflow: hidden;
  }
}

/* FV */
.fv {
    height: 100vh;
    background: linear-gradient(0deg, #230000, #430000);
    position: relative;
    min-height: 50vw;
}

.scrl {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 50px;
	overflow: hidden;
}
.scrl::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	animation: scrl 1s ease-out infinite;
}
@keyframes scrl {
	0% { transform: translateY(-100%);}
	100% { transform: translateY(100%);}
}


@media screen and (min-width: 1241px) {
	.fv-title {
		color: #fff;
		position: absolute;
		bottom: 20px;
		left: -100%;
		transform: translateY(-50%) translateX(0);
		z-index: 1;
		font-family: 'Roboto', 'Noto Sans JP', sans-serif;
		font-size: 6vw;
		text-align: center;
		width: 100%;
	}
	.fv-title span {
		font-family: 'Noto Sans JP', sans-serif;
		display: block;
    	font-size: 31%;
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 1050px) {
  .fv {
      height: auto;
  }
	
.fv-img {
    width: 100%;
    height: 100vw;
    overflow: hidden;
    position: relative;
    background: url(../images/bg_pc_top_a5EWbHrP.jpg) 10% 60% / cover no-repeat;
    background-position: 50% 50%;
}

  .fv-inner-img {
      max-width: 420px;
      width: 90%;
      margin-bottom: 20px;
  }
	
  .fv-title {
    color: #fff;
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    font-size: 90px;
    text-align: center;
  }
  .fv-title span {
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 31%;
    display: block;
    margin-bottom: 2vw;
  }
	.scrl {
	    display: none;
	}

}
@media screen and (max-width: 768px) {
  .fv-title {
    top: 48%;
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    font-size: 11.8vw;
  }

}
.fv-inner {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 70%;
}
@media screen and (max-width: 1050px) {
    .fv-inner {
        width: 100%;
        bottom: 0;
        top: auto;
        transform: none;
        left: 0;
        padding: 10%;
        display: flex;
        align-items: center;
        position: relative;
        background: linear-gradient(360deg, transparent, #040000);
    }
}
.fv-inner-read {
    color: #fff;
    font-size: min(1.1vw, 18px);
    line-height: 1.8;
}
@media screen and (max-width: 1050px) {
  .fv-inner-read {
    font-size: 15px;
  }
}
@media screen and (max-width: 414px) {
  .fv-inner-read {
    font-size: 3.5vw;
  }
}



.fv-inner-read-title {
    text-align: center;
    font-size: min(1.95vw, 26px);
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 1px solid #e1222b;
    padding-bottom: 20px;
}

@media screen and (max-width: 1050px) {
  .fv-inner-read-title {
    line-height: 1.5;
    font-size: 21px;
    padding-bottom: 15px;
  }
}

.about-desc-inner .about-desc-title {
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.35em;
    font-weight: bold;
}

@media screen and (max-width: 1050px) {
  .about-desc-inner .about-desc-title {
    font-size: 1.1em;
    margin-bottom: 15px;
  }
}

.about-desc-inner .about-desc-list {
    color: #fff;
    background: #222222;
    padding: 4%;
    margin: 0 auto 30px;
    width: 100%;
}

.about-desc-inner .about-desc-list:last-child {
    margin-bottom: 0;
}

.about-desc-box:not(:last-child) {
    padding-bottom: 50px;
    border-bottom: 1px solid #fff;
    margin-bottom: 50px;
}


@media screen and (max-width: 1050px) {
  .about-desc-inner .about-desc-list {
    width: 100%;
    margin-bottom: 20px;
  }
  .about-desc-inner .about-desc-list li {
    font-size: 0.8em;
  }

  .about-desc-box:not(:last-child) {
      padding-bottom: 30px;
      margin-bottom: 30px;
  }

}

.about-desc-inner .about-desc-list li {
    color: #fff;
    font-size: 0.85em;
    text-indent: -1em;
    margin-left: 1em;
    margin-bottom: 5px;
    line-height: 1.7;
    word-break: break-word;
}

.cv-btn--fc {
    height: 70px;
    line-height: 70px;
    border-radius: 0;
    background-color: #000000;
    margin: 30px auto 30px;
}

@media screen and (max-width: 1050px) {
  .cv-btn--fc {
      margin: 30px auto 30px;
  }
}



.official_link {
    text-align: center;
}

.official_link a {
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 1.3em;
    border: 1px solid;
    display: block;
    padding: 20px 0;
    font-size: 15px;
    max-width: 460px;
    margin: 0 auto;
}


/*.fv:after {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  display: block;
  content: "";
  width: 1px;
  height: 80px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .fv:after {
    height: 60px;
  }
}*/


.fv-inner-img {
    max-width: 100%;
    margin: 0 auto 30px;
    min-width: 18vw;
}

.product-details h2,
.about-desc-inner h2,
.release-inner h2 {
margin: 0 auto 1.5rem;
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.3;
}
.product-details h2 span,
.about-desc-inner h2 span,
.release-inner h2 span {
  font-size: 65%;
  display: block;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .product-details h2,
  .about-desc-inner h2,
  .release-inner h2 {
    margin: 0 auto 1.5rem;
    font-size: 26px;
  }
}
@media screen and (max-width: 414px) {
  .product-details h2,
  .about-desc-inner h2,
  .release-inner h2 {
    font-size: 7.5vw;
  }
  .about-desc-inner h2 {
    font-size: 6.5vw;
    margin-bottom: 15px;
  }
}

.fan-site,
.about-desc {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1050px) {
  .fan-site,
  .about-desc {
    min-height: auto;
  }
}

.fan-site-details,
.sales-details,
.product-details,
.about-desc-inner,
.release-inner {
    width: 80%;
  padding: 8rem 0;
  margin: 0 auto;
  align-content: center;
  box-sizing: border-box;
}

.sales-details {
    padding-top: 8rem;
}


@media screen and (max-width: 768px) {
  .fan-site-details,
  .sales-details,
  .product-details,
  .about-desc-inner,
  .release-inner {
    padding: 15vw 0;
  }
}
@media screen and (max-width: 414px) {
  .fan-site-details,
  .sales-details,
  .product-details,
  .about-desc-inner,
  .release-inner {
    width: 90%;
  }
}

.fan-site-message,
.sales-details-item p,
.product-details dt,
.product-details dd,
.about-desc-inner p,
.release-inner-notice {
  text-align: center;
  font-size: 15px;
  line-height: 2;
}

.fan-site-message {
    font-size: min(1.2vw, 15px);
}

@media screen and (max-width: 1050px) {
  .fan-site-message {
      font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .fan-site-message,
  .sales-details-item p,
  .product-details dt,
  .product-details dd,
  .about-desc-inner p,
  .release-inner-notice {
    text-align: left;
  }

  .release-inner-notice {
      font-size: 13px;
  }

}
@media screen and (max-width: 414px) {
  .fan-site-message,
  .sales-details-item p,
  .product-details dt,
  .product-details dd,
  .about-desc-inner p,
  .release-inner-notice {
    font-size: 14px;
  }
}

/* Release */
.release {
    background-color: #230000;
    color: #fff;
}
.release-inner h2 {
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  text-align: center;
      font-size: 37px;
}
.release-inner-schedule {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin: 0 auto 2rem;
}
@media screen and (max-width: 768px) {

.release-inner h2 {
    font-size: 6.3vw;
}
	.release-inner-schedule {
		font-size: 18px;
		letter-spacing: 0.05em;
		line-height: 1.7;
		margin: 0 auto 1.5rem;
	}
}

.about_box {
    position: relative;
    margin: 0 auto 50px;
}
.about_box:last-child {
    margin-bottom: 0;
}
.about_box::before {
    content: '';
    display: block;
    width: 100%;
    height: calc(100% - 150px);
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #3f1111, #530d0d);
    z-index: -1;
    border-radius: 15px;
}

.about_box.pack_box::before {
    display: none;
}

.jacket_img {
    width: 68%;
    margin: 0 auto 25px;
    line-height: 0;
    box-shadow: 0 5px 14px #00000029;
}

.jacket_img.min_jacket {
    width: 50%;
}

.jacket_txt {
    padding: 0 10% 30px;
    font-size: 16px;
    line-height: 1.9;
}

.jacket_txt .bold {
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px
}

.jacket_txt .sml {
    font-size: 0.85em;
}

.jacket_txt .kind {
    border: 1px solid;
    padding: 5px 13px;
    display: inline-block;
    font-size: 0.95em;
    margin-bottom: 5px;
    font-weight: bold;
    line-height: 1.5;
}

@media screen and (max-width: 1050px) {
.jacket_img {
    width: 77%;
    margin: 0 auto 25px;
    line-height: 0;
}

.jacket_txt {
    padding: 0 20px 20px;
    font-size: 13px;
    line-height: 1.75;
}

.jacket_txt .bold {
    margin-bottom: 5px;
}

.about_box {
    margin: 0 auto 30px;
}

.about_box::before {
    height: calc(100% - 100px);
}

}




/* About */
.about-movie video {
  width: 100%;
}
.about-desc {
  background-color: #0d0d0d;
}
.about-desc-inner h2 {
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  color: #fff;
  text-align: center;
}
.about-desc-inner p {
  color: #fff;
      margin-bottom: 20px;
      font-size: 14px;
}

.about-desc-inner p:last-child {
    margin-bottom: 0;
}


.about-desc-inner figure {
  width: min(50%, 360px);
  margin: 2rem auto;
}

.about-movie {
	position: relative;
	padding-top: 56.25%;
}
.about-movie iframe,
.about-movie video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
}
.about-movie .jstream-eqPlayer {
	position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 768px) {
    .about-desc-inner p {
        font-size: 13px;
    }
}



/* Disc */
.disc {
  /*    Common    */
  padding: 5rem 0 5rem;
  overflow: hidden;
}
@media screen and (max-width: 414px) {
  .disc {
    padding: 20vw 0;
    margin-top: -2px;
  }
}
.disc-inner {
  width: 90%;
  margin-left: auto;
    padding-right: 10%;
}
@media screen and (max-width: 414px) {
  .disc-inner {
    width: 90%;
  }
}
.disc-title {
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
	font-size: 26px;
	font-weight: bold;
	color: #fff;
	margin-right: -10%;
}
@media screen and (max-width: 414px) {
  .disc-title {
    font-size: 4.8vw;
  }
}
.disc-title:after {
  display: block;
  margin: -0.7rem 0 1rem -1rem;
  content: "";
  width: 110%;
  height: 10px;
  left: 0;
  top: 0;
  background-color: #fff;
  opacity: 0.4;
}
.disc-heading {
	color: #fff;
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
	font-size: 36px;
	font-weight: bold;
	font-feature-settings: "palt";
	line-height: 1.4;
	margin: 2rem 0;
}
.disc-heading span {
  display: block;
  font-size: 70%;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
	.disc-heading {
		font-size: 4.8vw;
		margin: 25px 0 15px;
	}
	.disc-heading span {
		font-size: 64%;
	}
}
.disc-message {
    color: #fff;
    font-size: 15px;
    line-height: 1.7;
}
@media screen and (max-width: 414px) {
  .disc-message {
    font-size: 3.6vw;
  }
}
.disc hr {
  margin: 2rem 0;
  color: #fff;
}

.disc hr:last-child {
    margin-bottom: 0;
}
.disc-music-number {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.disc-music-number:last-child {
    margin-bottom: 0;
}
.disc-music-number ol {
  width: 100%;
}
.disc-music-number ol li {
  color: #fff;
    margin-bottom: 0.5rem;
    font-size: 15px;
    text-indent: -2.2em;
    padding-left: 2.2em;
}

.disc-music-number ol li:last-child {
    margin-bottom: 0;
}

.disc-music-number ol li.enc {
    border: 1px solid;
    display: inline-block;
    padding: 2px 10px;
    text-indent: 0;
}

@media screen and (max-width: 414px) {
  .disc-music-number ol li {
    font-size: 3.5vw;
  }
}
.disc-music-number ol li span {
  margin-left: 0.5rem;
}
.disc-recorded {
  color: #fff;
  font-size: 18px;
}
@media screen and (max-width: 414px) {
  .disc-recorded {
    font-size: 3vw;
  }
}
.disc-first {
    position: relative;
    background: #7a171c;
}
.disc-first-images {
  position: relative;
  padding-bottom: 44vw;
}
@media screen and (max-width: 414px) {
  .disc-first-images {
    padding-bottom: 98vw;
  }
}
.disc-first-images img:nth-child(1) {
    position: absolute;
    top: 0vw;
    left: 0%;
    width: 53%;
}
@media screen and (max-width: 1050px) {
  .disc hr {
      margin: 1.5rem 0 1.5rem;
      color: #fff;
  }

  .disc-first-images img:nth-child(1) {
    top: -1vw;
    left: 0;
    right: 0;
    width: 50%;
  }
}
@media screen and (max-width: 414px) {
  .disc-first-images img:nth-child(1) {
    width: 50%;
  }
}
.disc-first-images img:nth-child(2) {
  position: absolute;
  top: 20vw;
  left: 7%;
  width: 40%;
}
@media screen and (max-width: 1050px) {
  .disc-first-images img:nth-child(2) {
    left: 20%;
    width: 30%;
  }
}
@media screen and (max-width: 414px) {
.disc-first-images img:nth-child(2) {
    left: 0;
    width: 46%;
    top: 40vw;
}
}
.disc-first-images img:nth-child(3) {
    position: absolute;
    top: 24vw;
    right: 3%;
    width: 45%;
}
.disc-first-images img:nth-child(4) {
    position: absolute;
    top: 5vw;
    right: -2%;
    width: 44%;
}

@media screen and (max-width: 1050px) {
.disc-first-images img:nth-child(4) {
    top: 13vw;
}

  .disc-first-images img:nth-child(3) {
    right: 15%;
    width: 30%;
  }
}
@media screen and (max-width: 414px) {
  .disc-first-images img:nth-child(3) {
    right: -5%;
    width: 50%;
    top: 50vw;
  }
}
.disc-second {
    background: #350a0a;
}
.disc-second-images {
  position: relative;
    padding-bottom: 4vw;
}
.disc-second-images img {
  position: absolute;
  top: 5vw;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 80%;
}

.disc-second-images .slideWrap {
	width: 80%;
    margin: 0 auto;
}
.disc-second-images .disc2slide img {
	position: static;
	width: 100%;
}

.slideWrap .slick-next:before, .slideWrap .slick-prev:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
}
.slideWrap .slick-prev:before {
    transform: rotate(-135deg);
    transform-origin: right center;
}

@media screen and (max-width: 1050px) {
  .disc-second-images img {
    top: 3vw;
    width: 40%;
  }
}
@media screen and (max-width: 414px) {
	.disc-second-images {
		padding-bottom: 12vw;
	}
  .disc-second-images img {
    top: -25vw;
    width: 70%;
  }
}
.disc-third {
    background: #7a171c;
}

.disc-third-images {
	position: relative;
	padding-bottom: 55vw;
}
@media screen and (max-width: 1050px) {
	.disc-third-images {
    	padding-bottom: 66vw;
	}
}
@media screen and (max-width: 414px) {
	.disc-third-images {
		padding-bottom: 100vw;
	}
}
.disc-third-images img:nth-child(1) {
    position: absolute;
    top: 10vw;
    right: 5%;
    width: 36%;
}
@media screen and (max-width: 1050px) {
  .disc-third-images img:nth-child(1) {
    top: 18vw;
    right: 5%;
    width: 30%;
  }
}
@media screen and (max-width: 414px) {
  .disc-third-images img:nth-child(1) {
    top: 16vw;
    right: 5%;
    width: 34%;
  }
}
.disc-third-images img:nth-child(2) {
    position: absolute;
    top: 0vw;
    left: 0;
    width: 52%;
}
@media screen and (max-width: 1050px) {
  .disc-third-images img:nth-child(2) {
    top: -3vw;
    left: 0;
    width: 48%;
  }
}
@media screen and (max-width: 414px) {
  .disc-third-images img:nth-child(2) {
    top: -4vw;
    left: 0;
    width: 52%;
  }
}
.disc-third-images img:nth-child(3) {
  position: absolute;
  top: 32vw;
  right: 0;
  width: 52%;
}
@media screen and (max-width: 1050px) {
  .disc-third-images img:nth-child(3) {
    top: 28vw;
    right: 0%;
    width: 48%;
  }
}
@media screen and (max-width: 414px) {
  .disc-third-images img:nth-child(3) {
    top: 50vw;
    right: 0%;
    width: 52%;
  }
}
.disc-third-images img:nth-child(4) {
	position: absolute;
	top: 26vw;
	left: 5%;
	width: 36%;
}
@media screen and (max-width: 1050px) {
  .disc-third-images img:nth-child(4) {
    top: 38vw;
    right: 15%;
    width: 30%;
  }
}
@media screen and (max-width: 414px) {
  .disc-third-images img:nth-child(4) {
    top: 42vw;
    right: 15%;
    width: 34%;
  }
}
.disc-fourth {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%22740px%22%20height%3D%221770px%22%20viewBox%3D%220%200%20740%201770%22%20style%3D%22overflow%3Avisible%3Benable-background%3Anew%200%200%20740%201770%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Aurl(%23SVGID_1_)%3B%7D%20.st1%7Bfill%3Aurl(%23SVGID_2_)%3B%7D%3C%2Fstyle%3E%3Cdefs%3E%3C%2Fdefs%3E%3ClinearGradient%20id%3D%22SVGID_1_%22%20gradientUnits%3D%22userSpaceOnUse%22%20x1%3D%22-241.1517%22%20y1%3D%221107.441%22%20x2%3D%22981.1517%22%20y2%3D%22662.559%22%3E%20%3Cstop%20offset%3D%220.1%22%20style%3D%22stop-color%3A%2356C3B7%22%2F%3E%20%3Cstop%20offset%3D%221%22%20style%3D%22stop-color%3A%23CE7E40%22%2F%3E%3C%2FlinearGradient%3E%3Crect%20class%3D%22st0%22%20width%3D%22740%22%20height%3D%221770%22%2F%3E%3C%2Fsvg%3E")
    center/cover no-repeat;
}
.disc-fourth-slide-images {
  position: relative;
  padding-bottom: 40vw;
  width: 80%;
  margin: 0 auto;
}
.disc-fourth-slide-images img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.disc-fourth-slide-movie {
  position: relative;
  padding-bottom: 5vw;
  width: 80%;
  margin: 0 auto;
}

.disc-fourth-images .slideWrap {
	width: 80%;
    margin: 0 auto;
}
.disc-fourth-images .disc4slide img {
	position: static;
	width: 100%;
}
.disc-fourth .attention {
	color: #fff;
    font-size: 11px;
    margin-top: 10px;
    text-align: right;
}

@media screen and (max-width: 1050px) {
  .disc-fourth-slide-images img {
    width: 50%;
  }
}
@media screen and (max-width: 414px) {
	.disc-fourth {
		padding-top: 14vw;
	}
	.disc-fourth-slide-movie {
		padding-bottom: 10vw;
	}
  .disc-fourth-slide-images img {
    top: -25vw;
    width: 80%;
  }
}
.disc-fourth-slide-images.active img {
  animation: slideAnime 20s ease infinite;
}
.disc-fourth-slide-images.active img:nth-child(1) {
  animation-delay: 0s;
}
.disc-fourth-slide-images.active img:nth-child(2) {
  animation-delay: 5s;
}
.disc-fourth-slide-images.active img:nth-child(3) {
  animation-delay: 10s;
}
.disc-fourth-slide-images.active img:nth-child(4) {
  animation-delay: 15s;
}


/* benefit */
.benefit {
    position: relative;
    background-color: #dedede;
}

.special_list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.special_list li {
    width: 48%;
    margin-bottom: 35px;
}

.special_list li:nth-last-child(-n + 2) {
    margin-bottom: 0;
}

.special_img {
    margin-bottom: 15px;
}

.special_list li .btn a {
    width: 80%;
    margin: 0 auto;
}

.btn a {
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
    font-weight: 600;
    background: background: linear-gradient(45deg, #f64b53, #9e0b0f);
    text-align: center;
    padding: 16px;
    display: block;
    border-radius: 50px;
    background: linear-gradient(45deg, #f64b53, #9e0b0f);
}

.btn a:hover {
    opacity: 0.7;
}

.btn.hide a {
    color: #cacaca;
    background: #858585;
    pointer-events: none;
}

@media screen and (max-width: 1050px) {
.special_list li {
    width: 100%;
    margin-bottom: 35px;
}

.special_list li:nth-last-child(-n + 2) {
    margin-bottom: 35px;
}

.special_list li:nth-last-child(-n + 1) {
    margin-bottom: 0;
}

}



/* Product */
.product {
    position: relative;
    color: #fff;
}
.product-details dl {
  display: flex;
  flex-wrap: wrap;
  line-height: 2;
  justify-content: space-between;  
}
.product-details dt,
.product-details dd {
  border-top: solid 1px #fff;
  padding: 2rem 0;
    text-align: left;
}
.product-details dt {
  width: 150px;
    line-height: 1.5;
    font-weight: bold;
}
.product-details dd {
  width: calc(100% - 150px);
  line-height: 1.65;
}
.product-details-img {
  width: 90%;
  margin: 2rem auto;
  display: none;
}

.product-details dl dd:last-child {
    padding-bottom: 0;
}

.product-details dt:last-of-type {
    padding-bottom: 0;
}

.product-details .kind {
    background: #000;
    color: #fff;
    padding: 2px 8px 4px;
    font-size: 0.95em;
    border-radius: 2px;
    margin-bottom: 3px;
    display: inline-block;
}

.detail_list > li {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.detail_list > li:last-child {
    margin-bottom: 0;
}

.detail_tit {
    width: 160px;
    color: #ff646b;
}

.detail_list_s .detail_txt {
    width: 100%;
    margin-bottom: 7px;
}

.detail_list_s .detail_tit {
    width: auto;
    display: inline-block;
    margin-right: 5px;
}


.detail_txt {
    width: calc(100% - 160px);
}

.detail_list_l .detail_tit {
    width: 100%;
}

.detail_list_l .detail_txt {
    width: 100%;
}



@media screen and (max-width: 1050px) {
.product-details dd {
    font-size: 13px;
    width: calc(100% - 100px);
}

.product-details dt {
    font-size: 13px;
    width: 100px;
}

.product-details dt, .product-details dd {
    padding: 1rem 0;
    line-height: 1.8;
}

.detail_tit {
    width: 100%;
}

.detail_txt {
    width: 100%;
}

.detail_list_l .detail_txt {
    padding-left: 0;
}

}


@media screen and (max-width: 414px) {
  .product-details-img {
    display: none;
  }
}
.product-details-notice {
  font-size: 14px;
  margin-top: 1rem;
}

/* Sales */
.sales {
  position: relative;
  background-color: #000;
}
.sales-details-item {
  margin-bottom: 2rem;
}
.sales-details-item:last-child {
  margin-bottom: 0;
}
.sales-details-item p {
  color: #fff;
	text-align: left;
}
.sales-details-item p:first-child {
  margin-bottom: 1rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
  .sales-details-item p {
      text-indent: -1em;
      padding-left: 1em;
      font-size: 12px;
  }
}

/* Fan Site */
.fan-site {
    position: relative;
}
@media screen and (max-width: 768px) {
  .fan-site {
        margin-bottom: 20vw;
  }
}
@media screen and (max-width: 414px) {
  .fan-site {
        margin-bottom: 20vw;
  }
}
.fan-site-img {
  width: min(80%, 360px);
  margin: 0 auto 5rem;
}
.official-site-img {
    width: 245px;
    margin: 0 auto;
}

.fan-site-details a {
    transition: 0.3s;
}

.fan-site-details a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 414px) {
  .fan-site-img {
    margin: 2rem auto;
  }

  .official-site-img {
      width: 35%;
      max-width: 150px;
  }

}
.fan-site-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 4rem;
}
.fan-site-list li {
  width: 40%;
  height: 120px;
  border-radius: 10px;
}
@media screen and (max-width: 414px) {
  .fan-site-list li {
    height: 80px;
  }
}
.fan-site-list li a {
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.fan-site-list li a:hover {
  opacity: 0.7;
}
.fan-site-list li a img {
  width: 60%;
}
.fan-site-team {
  background-color: #174cb1;
}
.fan-site-class {
  background-color: #3cb7e4;
}
.fan-site-club {
  background-color: #f2f2f2;
  margin-top: 2rem;
}



#op {
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000;
	z-index: 9999;
	width: 100%;
	height: 100%;
}
#op .opInr {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: op 1s ease-out 1s forwards;
	opacity: 0;
}
#op .opInr img {
    width: 20%;
    max-width: 140px;
}
@keyframes op {
	0% { opacity: 0;}
	100% { opacity: 1;}
}




.store_bnr {
    position: fixed;
    z-index: 1000;
    transition: 0.3s;
    bottom: 0;
    right: 0;
}

.store_bnr a {
    display: block;
    position: fixed;
    bottom: 15px;
    right: 15px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.95rem;
    padding: 10px 30px 15px 30px;
    font-weight: bold;
    line-height: 1.3;
    transition: 0.3s;
    background: linear-gradient(45deg, #f64b53, #9e0b0f);
    border-radius: 50px;
    box-shadow: 0 7px 15px #0000005e;
}
.store_bnr a:hover {
    bottom: 20px;
}

.store_bnr a .site {
    font-size: 0.7em;
}


@media screen and (max-width: 414px) {

.store_bnr a {
    font-size: 0.8rem;
    padding: 7px 25px 12px 25px;
    bottom: 10px;
    right: 10px;
}

}

