@charset "UTF-8";
/* CSS Document */

/* PC用設定 */
@media screen and (min-width:751px) { 
	
}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #fff;
	--primary-color: #D80C18;
	--sub-color: #F8B500;
	--red-color: #B70103;
	--accent-color: #BAA85B;
	--yellow-color: #FFF100;
}
.main__wrap{
	padding-top: 66px;
	background-color: var(--primary-color);
	color: var(--text-color);
	box-sizing: border-box;
	line-height: 1.5;
	font-size: 16px;
	font-family:'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-weight: 400;
}
img{
	display: block;
	width: 100%;
	height: auto;
}
figure {
	margin: 0 auto;
  width: 100%;
}
figcaption .caption {
	margin-left: auto;
  margin-right: 0;
  width: fit-content;
	font-size: 12px;
}

a:hover img {opacity: 1;}

.container{
	width: 92%;
	margin: 0 auto;
	max-width: 800px;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
  text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.fc-yellow{color: var(--yellow-color);}
.txt-link{
	color: var(--sub-color);
	text-decoration: underline;
	font-weight:bold;
}
.txt-note{font-size: 12px;}
.note__list li{font-size: 12px;}
.credit{
	font-size: 12px;
	padding: 0 4px;
	line-height: 1;
}

.center {text-align: center;}
.right {text-align: right;}
.left {text-align: left;}
.bold {font-weight: bold;}

.mgbS{margin-bottom: 8px;}
.mgbM{margin-bottom: 16px;}
.mgbL{margin-bottom: 24px;}
.pdtS{padding-top: 8px;}
.pdbM{padding-bottom: 16px;}

/* PC用設定 */
@media screen and (min-width:751px) { 
	a img{transition: all 0.5s;}
	a:hover img {
		transform: translateY(5px);
	}
	.main__wrap{padding-top: 90px;}
	.txt-note{font-size: 14px;}
	.note__list li{font-size: 14px;}
	.pc_center {text-align: center;}

	.mgbM{margin-bottom: 24px;}
	.mgbL{margin-bottom: 32px;}
	.pdbM{padding-bottom: 24px;}

}


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__block{padding:  24px 0 0;}
.acc__body {display: none;}
.acc__btn {
	font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
	background-color: #000;
  position: relative;
  padding: 6px 56px 6px 28px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s;
}
.acc__btn span {
	position: absolute;
	background-color: #fff;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}
.acc__btn span::before,
.acc__btn span::after {
	content: "";
	background-color: #000;
	position: absolute;
	width: 12px;
	height: 2px;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	transition: transform 0.3s;
}
.acc__btn span::before {transform: translate(-50%,-50%) rotate(90deg);}
.acc__btn.open span::before {transform: translate(-50%,-50%);}
.acc__body{
	margin-top: 12px;
	background-color: #B70103;
	padding: 16px;
}

/* PC用設定 */
@media screen and (min-width:751px) {
}


/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
.voice-btn__block{margin-bottom: 8px;}
.voice-btn{
	display: block;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.voice-btn__outer{
		background-color: var(--sub-color);
		border-radius: 20px;
		padding: 6px;
		max-width: 680px;
		margin: 0 auto 8px;
	}
	.voice-btn__pc{
		background-color: #fff;
		background-image: url(../img/obj01.png);
		background-repeat: no-repeat;
		background-position: bottom right;
		background-size: contain;
		border: 3px solid var(--primary-color);
		padding: 16px 32px;
		border-radius: 16px;
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.voice-btn__txt{
		color: #000;
		padding-right: 16px;
	}
	.voice-btn__txt .txt01{
		font-weight: bold;
		font-size: 20px;
		margin-bottom: 8px;
		color: var(--primary-color);
	}
	.voice-btn__img {
		background-color: #fff;
		border: 1px solid #ddd;
		width: 120px;
		height: 120px;
		box-sizing: border-box;
		flex-shrink: 0;
	}
}
/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
.js__slide{
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	transition: all .8s;
}
.js__slide.is-inview{
	animation-name: anime_left_to_right;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-direction: normal;
}
@keyframes anime_left_to_right {
	0% {
			clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	}
	100% {
			clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}
/* フェードイン(初期値) */
.js__fadeIn{
	opacity: 0; /* 最初は非表示 */
	transition: opacity .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js__fadeIn.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	/* transition-delay: .2s; */ /* フェード開始を0.3秒遅らせる */
}

/* フェードアップ(初期値) */
.js__fadeUp{
	opacity: 0; /* 最初は非表示 */
	transform: translateY(5px); /* 下に10pxの位置から */
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードアップ(スクロールした後) */
.js__fadeUp.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	transform: translateY(0); /* 30px上に移動する */
	/* transition-delay: .2s; */ /* フェード開始を0.3秒遅らせる */
}


/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
.mv__block{
	background-image: url(../img/bg-obj01.png);
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 267px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__block{
		background-image: url(../img/bg-obj01.png),url(../img/bg-obj02.png);
		background-position: top left,bottom right;
		background-size: contain;
		padding-bottom: 16px;
	}
	.mv__block h1,.mv__block p{
		max-width: 700px;
		margin: 0 auto;
	}
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__block{padding: 32px 0;}
.menu__list{
	display: flex;
	gap: 21px;
	justify-content: center;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.menu__block{padding: 40px 0;}
	.menu__list li{
		width: 320px;
	}
}
/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
.sec__wrap{
	padding: 32px 0;
	background-image: url(../img/bg-obj03.png);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: 267px;
}
.sec__head h2{
	font-size: 28px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 16px;
}
.sec__head--obi{
	background-color: #fff;
	width: fit-content;
	padding: 4px 15px;
	color: var(--primary-color);
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 8px;
	position: relative;
}
.sec__head--obi::after {
	position: absolute;
	content: "";
	display: block;
	background-color: #fff;
	bottom: 0;
	right: -27px;
	height: 37px;
  width: 27px;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
	
}
.sec__lead{margin-bottom: 16px;}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.pc-container{
		width: 92%;
		margin: 0 auto;
		max-width: 800px;
	}
	.sec__wrap{
		padding: 64px 0;
		background-size: 400px;
	}
	.sec__head h2 {
    font-size: 32px;
    margin-bottom: 32px;
}
.sec__head--obi{
	font-size: 24px;
	margin-bottom: 8px;
}
.sec__head--obi::after {
	right: -26px;
  height: 43.5px;
  width: 27px;
}
.sec__lead{
	font-size: 18px;
	margin-bottom: 24px;
	text-align: center;}
}



/* ------------------------------------------------------------
#EXservice
------------------------------------------------------------ */
#EXservice.sec__wrap{background-color: #E1330C;}
#EXservice .sec__lead{margin-bottom: 8px;}
.match-card__list{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.match-card__list--box{
	background-color: #fff;
	border-radius: 0 16px 0 16px;
	color: #000;
	padding: 32px 14px 16px;
	position: relative;
}
.match-card__head{
	color: #000;
	background-color: var(--accent-color);
	font-weight: bold;
	padding: 0 15px 0 56px;
	width: fit-content;
	position: relative;
	z-index: 1;
	top: 18px;
}
.match-card__head::before{
	display: block;
	content: "";
	width: 54px;
	height: 54px;
	background-image: url(../img/ill-ball.png);
	background-size: contain;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -8px;
}
.match-card__head::after {
	position: absolute;
	content: "";
	background-color: var(--accent-color);
	bottom: 0;
	right: -19.5px;
	height: 37px;
	width: 20px;
	clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.match-card__head span{font-size: 1.6em;}
.match-card__list--item h3{
	color: var(--accent-color);
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 12px;
}
.match-card__info{
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}
.match-card__info--group{
	display: flex;
	gap: 6px;
}
.match-card__info--group dt{
	flex-shrink: 0;
	line-height: 1;
}
.match-card__info--group dt span{
	font-size: 12px;
	background-color: #DDDDDD;
	border-radius: 2px;
	padding: 2px 4px;
}
.match-card__info--group dd{font-size: 14px;}
.match-card__btn--box img{
	max-width: 230px;
	margin: 0 auto 8px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	#EXservice .sec__lead {margin-bottom: 16px;}
	.match-card__list{
		flex-direction:row;
		justify-content: center;
		gap: 24px;
	}
	.match-card__list--item{
		width: calc( ( 100% - 24px ) / 2 );
	}
	.match-card__list--item h3{
		font-size: 20px;
		text-align: center;
		margin-bottom: 16px;
	}
	.match-card__info {gap: 8px;}
	.match-card__info--group dt span {
		font-size: 14px;
		padding: 2px 8px;
	}
	.match-card__info--group dd {font-size: 16px;}
	
}

/* ------------------------------------------------------------
#goods
------------------------------------------------------------ */
.period{
	text-align: center;
	margin-bottom: 16px;
}
.period dt,.period dd{
	font-weight: bold;
}
.period dt{
	background-image: url(../img/obj-polygon.svg);
	background-size: cover;
	background-repeat: no-repeat;
	color: #000;
	padding: 2px 32px;
	position: relative;
	width: fit-content;
	margin: 0 auto;
}

.period dd {
	border-top: solid 2px #fff;
	border-bottom: solid 2px #fff;
	padding: 14px 0 7px;
	margin-top: -16px;
}
.period dd span{font-size: 1.3em;}

.goods-top__txt{
	width: fit-content;
	margin: 0 auto 8px;
	font-weight: bold;
	font-size: 18px;
	position: relative;
	text-align: center;
	line-height: 1.3;
}
.goods-top__txt::before,.goods-top__txt::after{
	position: absolute;
    bottom: 0rem;
    height: 1.8rem;
    content: '';
}
.goods-top__txt::before {
  border-left: solid 3px;
    left: -1rem;
    transform: rotate(-30deg);
}
.goods-top__txt::after {
  border-right: solid 3px;
	right: -1rem;
	transform: rotate(30deg);
}
.goods__box{
	background-color: #fff;
	border-radius: 0 16px 0 16px;
	padding: 16px;
	color: #000;
}
.goods__box h3{
	text-align: center;
	font-weight: bold;
}
.wallpaper__group h3{
	color: var(--primary-color);
	font-size: 20px;
	line-height: 1;
	margin-bottom: 16px;
}
.wallpaper__group h3 span{font-size: 0.8em;}
.goods__box--lead{
	text-align: center;
	margin-bottom: 16px;
}
.goods__list{
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 16px;
}
.goods__prize{
	background-color: var(--primary-color);
	color: #fff;
	text-align: center;
	font-size: 18px;
	margin-bottom: 8px;
	font-weight: bold;
}
.goods__box--head{margin-bottom: 12px;}
.goods__box--head h3{
	font-size: 18px;
	line-height: 1.2;
}
.goods__box--head h3 span{font-size: 0.9em;}
.prizeA .img01,.prizeC .img01{
	max-width: 200px;
	margin: 0 auto;
}
.prizeB .img01{
	max-width: 278px;
	margin: 0 auto;
}
.goods__box--img{position: relative;}
.goods__box--img .credit{
	margin-top: 8px;
}
.img-wp{
	width: 96px;
	position: absolute;
	right: 0;
	bottom: 12px;
}
.note__list--box p{
	font-size: 14px;
	font-weight: bold;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.period{margin-bottom: 24px;}
	/* .period dt {padding: 2px 20px;} */
	.period dd {font-size: 18px;}
	.goods-top__txt {
    margin: 0 auto 16px;
    font-size: 20px;
    line-height: 1.3;
}
.goods__box {
	padding: 40px 60px;
	border-radius: 0 24px 0 24px;
}
.wallpaper__group h3 {font-size: 22px;}
.goods__box--lead{font-size: 18px;}
.wallpaper__img,.wallpaper__group .credit{
	max-width: 300px;
	margin: 0 auto;
}
.goods__box--head {margin-bottom: 24px;}
.goods__prize {
	margin-bottom: 12px;
	padding: 2px;
}
.goods__box--head h3{font-size: 20px;}
.goods__box--img{
	max-width: 360px;
	margin: 0 auto;
}
.prizeA .img01,.prizeC .img01{max-width: 250px;}
.prizeB .img01{max-width: 320px;}
.img-wp {
	width: 120px;
	bottom: 24px;
}

}


/* ------------------------------------------------------------
bottom
------------------------------------------------------------ */
.bottom__wrap{background-color: #fff;}
.oshitabi_btn--block{padding: 40px 30px;}
.oshitabi_btn{
	display: block;
	border: 3px solid #000000;
	color: #000000;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	position: relative;
}
.oshitabi_btn::after{
	content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 16px;
  top: 50%;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.oshitabi_btn--block{
		max-width: 640px;
		margin: 0 auto;
	}
	.oshitabi_btn{
		transition: all .3s;
		width: 360px;
		margin: 32px auto;
	}
	.oshitabi_btn:hover{
		background-color: #000000;
		color: #fff;
	}
	.oshitabi_btn:hover:after{
		border-top: 2px solid #fff;
  	border-right: 2px solid #fff;
	}
}

/* ------------------------------------------------------------
topへ戻るボタン
------------------------------------------------------------ */
.pagetop-btn{
  position: fixed;
  bottom: 20px;
  right: 10px;
  transition: .3s;
	width: 56px;
  z-index: 99;
  opacity: 0;/*デフォルトで非表示にする*/
}

/*このクラスが付与されると表示する*/
.pagetop-btn.active{opacity: 1;}

/*このクラスが付与されると表示する*/
.pagetop-btn.absolute{
  position: absolute;
  top: -70px;
  bottom: auto;
}

/* PC用設定 */
@media screen and (min-width:751px){
	.pagetop-btn{
		right: 24px;
	}
}

/* ------------------------------------------------------------
終了措置
------------------------------------------------------------ */
.inactive{position: relative;}
.inactive-btn{pointer-events: none;}
a.inactive{pointer-events: none;}
.event-end{
	color: var(--red-color);
	background-color: rgba(255, 255, 255, 0.9);
	/* background-color: #fff; */
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	border: 2px solid var(--red-color);
	padding: 6px;
}
.event-end-block{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: auto;
	width: 65%;
	height: 55%;
	display: flex;
	align-items: center;
  justify-content: center;
}
#goods .event-end-block{
	width: 90%;
}
/* PC用設定 */
@media screen and (min-width:751px){
	.event-end-block{
		width: 55%;
	}
	#goods .event-end-block{
		width: 80%;
		height: 80%;
	}
}

