@charset "UTF-8";
* {
	box-sizing: border-box;
	outline: none;
}

html {
	font-size: 62.5%; /*標準サイズ*/
}

:root {
	--vh: 1vh;
}

body {
	color: #333;
	font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	-webkit-text-size-adjust: 100%;
	font-weight: 500;
	height: 100%;
	--cl-active: #5d64a9;
}

img {
	vertical-align: bottom;
}

.buy_pc {
	display: table-cell;
	box-sizing: border-box;
	vertical-align: middle;
	background: #cc0000;
	transition: 0.3s;
}

.buy_pc:hover {
	transition: 0.3s;
	background: #fd6e6e;
}

.buy_pc a {
	display: block;
	text-align: center;
	color: #fff !important;
	font-size: 12px !important;
	line-height: 16px;
	text-decoration: none;
	width: 60px;
}

/* --------------------------

	表示非表示 

-------------------------------	*/
#floatNav {
  z-index: 1000;
}

/**
 * MIXIN
 */
.lp {
  overflow: hidden;
  padding-bottom: 70px;
}

#containar {
  position: relative;
  --grad: linear-gradient(-90deg, #76e9d6, #9faee6);
}

/**************************************************
 * INFO
 **************************************************/
.info {
  background: #ebebeb;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 0;
}

/**************************************************
 * lpMenu
 **************************************************/
.lpMenu__toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  z-index: 100;
  top: 110px;
  left: max(50px, (100% - 1200px) * 0.5);
  width: 47px;
}
.lpMenu__toggle .icon {
  height: 23px;
  margin-bottom: 5px;
  display: block;
  position: relative;
}
.lpMenu__toggle .icon::before, .lpMenu__toggle .icon::after,
.lpMenu__toggle .icon span {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: #000000;
  transition: ease 300ms;
}
.lpMenu__toggle .icon::before {
  top: 0;
}
.lpMenu__toggle .icon::after {
  top: 22px;
}
.lpMenu__toggle .icon span {
  top: 11px;
}
.lpMenu__toggle .txt {
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 200;
  font-size: 14px;
  color: #000;
}
.lpMenu__toggle.is-open .icon::before, .lpMenu__toggle.is-open .icon::after {
  top: 4px;
  background-color: #fff;
}
.lpMenu__toggle.is-open .icon::before {
  transform: rotate(45deg);
}
.lpMenu__toggle.is-open .icon::after {
  transform: rotate(-45deg);
}
.lpMenu__toggle.is-open .icon span {
  opacity: 0;
  transform: translateX(5px);
}
.lpMenu__toggle.is-open .txt {
  color: #fff;
}
.lpMenu__menu {
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background: linear-gradient(-105deg, #76e9d6, #9faee6);
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: opacity 300ms, -webkit-clip-path ease 300ms;
  transition: opacity 300ms, clip-path ease 300ms;
  transition: opacity 300ms, clip-path ease 300ms, -webkit-clip-path ease 300ms;
}
.lpMenu__menu.is-open {
  opacity: 1;
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
  pointer-events: auto;
}
.lpMenu__menu ul:not(:last-child) {
  margin-bottom: min(50px, 5vh);
}
.lpMenu__menu li {
  border-bottom: 1px solid #fff;
}
.lpMenu__menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: min(16px, 4vw);
  padding: 1em 0;
  font-weight: 400;
  min-height: min(74px, 14vh);
  color: #fff;
  width: min(800px, 90vw);
}
.lpMenu__menu a::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.6em;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 0.75em;
}
@media screen and (any-hover: hover) {
  .lpMenu__menu a {
    transition: ease 200ms;
  }
  .lpMenu__menu a::before {
    transition: transform 200ms;
  }
  .lpMenu__menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .lpMenu__menu a:hover::before {
    transform: translateX(3px);
  }
}

/**************************************************
 * mainVisual
 **************************************************/
.mainVisual {
	background: url(../images/mv_bg-pc.jpg) center bottom 25px no-repeat;
	background-size: cover;
}

.mainVisual__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 100px;
}

.mainVisual__header .ttl {
  position: relative;
  z-index: 1;
}
.mainVisual__header .ttl span {
  font-style: italic;
  font-weight: 200;
  font-size: min(84px, 11vw);
  background: var(--grad);
  padding: 0 0.33em;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
}
.mainVisual__header .ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0em;
  width: 100%;
  height: 50%;
  background-color: #feffd8;
  z-index: -1;
  transform: skewX(-45deg);
}
.mainVisual__header .desc {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-top: 2em;
  letter-spacing: 0.1em;
}
.mainVisual__pc {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
}
.mainVisual__pc img {
  display: block;
  max-width: 100%;
}

.btnSp {
  background-color: #b60005;
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
}

/**************************************************
 * section
 **************************************************/
.section {
  padding: 80px 0;
}
.section__header {
  margin-bottom: 80px;
}
.section__header::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: var(--grad);
}
.section__ttl {
  max-width: 1200px;
  width: calc(100% - 100px);
  margin: 0 auto;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 200;
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: -0.1em;
}
.section__inner {
  max-width: 1200px;
  width: calc(100% - 100px);
  margin: 0 auto;
}

/**************************************************
 * news
 **************************************************/
.secInner{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0;
}

.news_ttl{
	font-size: 24px;
	font-weight: 400;
	text-align: center;
}

.news_ttl span{
	color: #a3b3e2;
	padding-left: 0.3em;
}

.news_ttl br{
	display: none;
}

.orderTime{
	border: 3px solid #cc0000;
	font-size: 24px;
	font-weight: normal;
	text-align: center;
	padding: 15px 0;
	margin: 40px auto;
	letter-spacing: 0.02em;
}

.orderTime p{
	display: inline;
}

.orderTime p::after{
	content: "：";
}

.orderTime span{
	font-size: 20px;
}

.comment{
	font-size: 14px;
	font-weight: normal;
	letter-spacing: 0.02em;
	margin-bottom: 5px;
}

.comment span{
	font-size: 12px;
}

/**************************************************
 * goods
 **************************************************/
.goodsList {
  display: flex;
  flex-wrap: wrap;
  --gap: 30px;
  gap: var(--gap);
}
.goodsList__item {
  width: calc((100% - var(--gap) * 2) * 0.3333);
  padding: 40px 38px;
  border-radius: 20px;
  background-color: #fafafa;
}
.goodsList__item .tags {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.goodsList__item .tags li {
  gap: 10px;
  border-radius: 4px;
  min-width: 65px;
  text-align: center;
  padding: 4px 12px;
  background-color: var(--cl, #333);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}
.goodsList__item .date {
  font-size: 12px;
  text-align: right;
  color: #848484;
  display: block;
  width: 100%;
  margin-bottom: 8px;
  font-weight: 400;
}
.goodsList__item .date::before {
  content: "発売日：";
}
.goodsList__item .fig {
  display: block;
  overflow: hidden;
  background-color: #fff;
}
.goodsList__item img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (any-hover: hover) {
  .goodsList__item .fig:link img {
    transition: ease 300ms;
  }
  .goodsList__item .fig:link:hover img {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
.goodsList__item .name {
  font-size: 14px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 1em;
  margin-top: 2em;
}
.goodsList__item .price {
  font-size: 14px;
  text-align: center;
  color: #c00;
  font-weight: 700;
}
.goodsList__item .btnSp {
  margin-top: 20px;
}

.subject{
	margin-top: 20px;
	font-size: 12px;
	line-height: 1.6em;
}

.subject span{
	display: block;
	text-align: center;
}

/**************************************************
 * player
 **************************************************/
.player {
  padding: 120px 0;
  background: linear-gradient(-15deg, #76e9d6, #9faee6);
}
.playerList {
  opacity: 0;
  transition: opacity ease 400ms;
  max-height: 480px;
}
.playerList.slick-initialized {
  opacity: 1;
}
.playerList li {
  padding: 0 25px;
}
.playerThum {
  display: block;
  width: 315px;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 100vmax;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.playerThum img {
  display: block;
  width: 100%;
  position: relative;
  top: 6%;
}
.playerThum a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (any-hover: hover) {
  .playerThum a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.7;
    z-index: 9;
    opacity: 0;
    transition: opacity 300ms;
  }
  .playerThum a::after {
    content: "選手詳細";
    padding-right: 1.2em;
    display: block;
    line-height: 1em;
    background-image: url(../images/icon-outbound.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 0.9em;
    position: absolute;
    top: calc(50% - 0.5em);
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 14px;
    z-index: 10;
    color: #fff;
    transition: ease 500ms;
    transform: translate(-50%, 5px);
    opacity: 0;
  }
  .playerThum a:hover::before {
    opacity: 0.7;
  }
  .playerThum a:hover::after {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.playerCopy {
  text-align: center;
  font-size: 19px;
  font-weight: 200;
  font-style: italic;
  color: #fff;
  padding-top: 25px;
  margin-bottom: 12px;
}
.playerName {
  text-align: center;
  color: #fff;
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 400;
}
.playerGoods {
  width: 320px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #fff;
  color: #fff;
}
@media screen and (any-hover: hover) {
  .playerGoods {
    transition: ease 300ms;
  }
  .playerGoods:hover {
    background-color: #fff;
    color: #7eddd9;
  }
}

.modaal-close::before, .modaal-close::after {
  background-color: #fff;
}/*# sourceMappingURL=style.css.map */

.soldOut a.fig{
	display: block;
	position: relative;
	z-index: 1;
}
.soldOut a.fig::after{
	content: "在庫切れ";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	text-align: center;
	color: #ffffff;
	font-size: 4rem;
	line-height: 4rem;
	font-weight: 800;
}
.soldOut .tags{display: none;}

@media screen and (min-width: 641px) {
	.sp {display: none !important;}
	.btnSp{display: none !important;}
	.mainVisual__sp{display: none !important;}
	.info br{display: none;}
	.mainVisualUnder{display: none !important;}
}

@media screen and (max-width: 640px){
	.pc {display: none !important;}
	.lp {padding-bottom: 9.3333333333vw;}
	
	.info {
		font-size: 12px;
		font-size: clamp(12px, 2vw, 14px);
		font-weight: bold;
		line-height: 1.8em;
	}
	
	.lpMenu__toggle {
		top: 20px;
		left: 10px;
	}
	
	.lpMenu__toggle.close {top: 40px;}
	
	.mainVisual {
		background-image: url(../images/mv_bg-sp.jpg);
		background-size: cover;
		background-position: center;
		min-height: 140vw;
		overflow: hidden;
	}
	
	.mainVisual__header {
		padding-top: 70px;
	}
	
	.mainVisual__header .desc {
		text-align: left;
		padding: 0 20px;
		font-size: 12px;
		letter-spacing: 0.14em;
	}
	
	.mainVisual__pc {
		display: none !important;
	}
	
	.mainVisual__sp .slider {
		width: min(200px, 40vw);
		margin: 0 auto;
		margin-top: -10px;
		padding: 60px 0;
	}
	
	.mainVisual__sp .slider:not(.slick-initialized) {
		height: 50vw;
	}
	
	.mainVisual__sp .slider .slick-list {
		overflow: visible;
	}
	
	.mainVisual__sp .slider .fig {
		width: min(200px, 40vw);
		transform-style: preserve-3d;
		perspective: 1000px;
	}
	
	.mainVisual__sp .slider .fig img {
		width: min(300px, 60vw);
		position: relative;
		left: 50%;
		transform: translate3d(-50%, 0, 1px);
		transition: transform ease-out 600ms;
		transform-origin: center bottom;
	}
	
	.mainVisual__sp .slider .slick-current .fig img {
		transform: translate3d(-50%, 0, 100px);
	}

	.mainVisualUnder {
		max-width: 1200px;
		width: calc(100% - 100px);
		margin: 0 auto;
		margin-top: 40px;
		margin-bottom: 0px;
	}

	.mainVisualUnder {
		width: calc(100% - 40px);
	}
	
	.section__ttl {
		width: calc(100% - 40px);
	}
	
	.section__header {
		margin-bottom: 40px;
	}
	
	.section {
		padding: 40px 0;
	}
	
	.section__ttl {
		font-size: 26px;
	}
	
	.section__inner {
		width: calc(100% - 40px);
	}
	
	.movieList {
		--gap: 20px;
	}
	
	.goodsList {
		--gap: 20px;
	}
	
	.goodsList__item {
		width: 100%;
		padding: 30px 20px;
	}
	
	.player {
		padding: 60px 0;
	}
	
	.playerList li {
		padding: 0 10px;
	}
	.playerThum {
		width: min(315px, 70vw);
	}
	
	.playerGoods {
		width: min(320px, 70vw);
	}
	
	.secInner{
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 40px 20px;
	}

	.news_ttl{
		font-size: 18px;
		font-weight: 400;
		text-align: center;
	}

	.news_ttl span{
		color: #a3b3e2;
		padding-left: 0.3em;
	}
	
	.news_ttl br{
		display: block;
	}

	.orderTime{
		border: 3px solid #cc0000;
		font-size: 14px;
		line-height: 1.6em;
		font-weight: normal;
		text-align: center;
		padding: 10px;
		margin: 40px auto;
		letter-spacing: 0.02em;
	}

	.orderTime span{
		font-size: 14px;
	}
	
	.orderTime p{
		display: block;
	}
	
	.orderTime p::after{
		content: "";
	}

	.comment{
		font-size: 14px;
		font-weight: normal;
		letter-spacing: 0.02em;
		margin-bottom: 10px;
		text-indent: -1em;
		padding-left: 1em;
	}

	.comment span{
		font-size: 12px;
	}
}

/* 2025追加 */
.orderTime a{
	text-decoration: none;
	color: #cc0000;
}
.orderTime a:hover{
	text-decoration: underline;
	color: #cc0000;
}

.kuji_pop{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 80px;
}

.kuji_pop img{
	width: 100%;
}

.kuji_pop p{
	font-size: 18px;
	line-height: 1.6em;
	margin-top: 10px;
	text-align: center;
}

.kuji_pop p span{
	color: #cc0000;
	font-weight: 700;
}

.link_detail{
	display: block;
	width: 100%;
	max-width: 500px;
	margin: 20px auto;
	background: #333333;
	color: #ffffff;
	font-size: 16px;
	text-align: center;
	border-radius: 4px;
	text-decoration: none;
	padding: 20px 0;
	position: relative;
	z-index: 1;
	transition: 0.2s;
}

.link_detail i{
	position: absolute;
	top: 50%;
	right: 20px;
	z-index: 2;
	margin-top: -8px;
}

.link_detail:hover{
	background: #cc0000;
}

.meyasu{
	font-size: 12px;
	line-height: 1.6em;
	text-align: center;
	margin-top: 20px;
	color: #cc0000;
}
.meyasu02{
	font-size: 12px;
	line-height: 1.6em;
	text-align: center;
	margin-top: 20px;
	color: #333;
}

.kuji_gift{
	font-size: 24px;
	text-align: center;
	margin-top: 60px;
}

.kuji_inner{
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	background: #fafafa;
	margin: 30px auto;
	padding: 30px;
}

.kuji_inner ul{
	display: flex;
	flex-wrap: wrap;
}

.kuji_inner li{
	width: 33%;
	max-width: 360px;
	margin-right: 30px;
	margin-top: 30px;
}

.kuji_inner li:nth-child(-n+3){
	margin-top: 0;
}

.kuji_inner li:nth-child(3n){
	margin-right: 0;
}

.kuji_inner li h3{
	display: flex;
	align-items: center;
	border-bottom: 2px solid #000000;
	height: 100px;
	margin-bottom: 30px;
}

.kuji_inner li h3 .rank{
	display: block;
	background: #000000;
	color: #ffff00;
	font-size: 16px;
	font-weight: 600;
	line-height: 16px;
	text-align: center;
	width: 25%;
	padding: 15px 0;
}

.kuji_inner li h3 .prize{
	display: block;
	width: 70%;
	margin-left: 5%;
	font-size: 14px;
	font-weight: 600;
}

.kuji_inner li a{
	display: block;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

.kuji_inner li a img{
	width: 100%;
}

.kuji_inner li a:hover img{
	opacity: 0.8;
}

span.icon{
	display: block;
	width: 30px;
	height: 30px;
	background: #000000;
	border-radius: 4px;
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 2;
	text-align: center;
}

span.icon i{
	color: #ffffff;
	font-size: 14px;
	line-height: 30px;
}

.kuji_inner .slick-dots{
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 20px auto 0;
}

.kuji_inner .slick-dots li{
	width: 15px !important;
	margin: 0 3px;
}

.kuji_inner .slick-dots li button {
	display: block;
	box-sizing: border-box;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	border: none;
	background: #ccc;
	text-indent: 100%;
	overflow: hidden;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

li.slick-active button {
	background: #333333 !important;
}

@media screen and (max-width: 640px){
	.kuji_pop{
		width: 90%;
		max-width: 1200px;
		margin: 0 auto 40px;
	}

	.kuji_pop img{
		width: 100%;
	}

	.kuji_pop p{
		font-size: 14px;
		line-height: 1.6em;
		margin-top: 10px;
		text-align: center;
	}

	.kuji_pop p span{
		color: #cc0000;
		font-weight: 700;
	}
	
	.btnSp{
		display: none;
	}
	
	.link_detail{
		font-size: 14px;
		padding: 15px 0;
	}
	
	.link_detail i{
		margin-top: -7px;
	}

	.kuji_gift{
		font-size: 18px;
		text-align: center;
		margin-top: 60px;
	}
	
	.kuji_inner{
		box-sizing: border-box;
		width: 90%;
		max-width: 1200px;
		background: #fafafa;
		margin: 30px auto 60px;
		padding: 30px;
	}

	.kuji_inner ul{
		display: flex;
		flex-wrap: wrap;
	}

	.kuji_inner li{
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
	
	.kuji_inner li:last-child{
		margin-bottom: 0;
	}

	.kuji_inner li h3 .rank{
	display: block;
	background: #000000;
	color: #ffff00;
	font-size: 14px;
	font-weight: 600;
	line-height: 14px;
	text-align: center;
	width: 25%;
	padding: 15px 0;
}

.kuji_inner li h3 .prize{
	display: block;
	width: 70%;
	margin-left: 5%;
	font-size: 14px;
	font-weight: 600;
}

	.kuji_inner li a{
		display: block;
		box-sizing: border-box;
		position: relative;
		z-index: 1;
	}

	.kuji_inner li a img{
		width: 100%;
	}

	.kuji_inner li a:hover img{
		opacity: 0.8;
	}

	span.icon{
		display: block;
		width: 30px;
		height: 30px;
		background: #000000;
		border-radius: 4px;
		position: absolute;
		right: 10px;
		bottom: 10px;
		z-index: 2;
		text-align: center;
	}

	span.icon i{
		color: #ffffff;
		font-size: 14px;
		line-height: 30px;
	}
}