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


.bg-grey{
	background: #f7f6f2;
}

.dash-line{
	border-top: 2px dashed #ddd;
	margin: 0;
}

.serif{
	font-family: 'Prata', serif;
}

.main-content {
	background-color: #fff;
}

/* title */
.title img{
	display:block;
	margin: auto;
	width:100%;
	max-width: 640px;
	aspect-ratio: 16/5;
}

.title-sub-wrapper {
	background-color: #f7f6f2;
	padding: 16px 0;
}

.title-sub{
	font-size: 14px;
	box-sizing: border-box;
}

/* キャンペーン告知 */
.cp-banner-box {
	width: 1000px;
	margin: 0 auto 16px;
}

.cp-banner-box p {
	text-align: center;
	font-size: 14px;
	margin:16px auto 8px;
}

.cp-banner-box img {
	display: block;
	aspect-ratio: 160/21;
	margin: 0 auto;
}



/* navi */
.navi ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: auto;
	margin-bottom: 32px;
}
.navi ul > li{
	border-right: 5px solid #efefec;
	margin-top: 12px;
	width: 20%;
	max-width: 120px;
}
.navi ul > li:nth-of-type(4n){
	border-right: none;
}

.navi ul > li a{
	display: block;
}

.navi ul > li img{
	display: block;
	width: 100%;
	aspect-ratio: 12/19;
}



/* content-box */
.content-box{
	box-sizing: border-box;
	margin: auto;
	padding: 64px 12px;
}



/* imgbox */



.imgbox-sub{
	margin-top: 12px;
}



/* itembox */
.itembox{
	background: #f7f6f2;
	box-sizing: border-box;
}
.bg-grey .itembox{
	background: #fff;
}

.imgbox-main-link::before{
	border-right: 50px solid transparent;
  border-bottom: 30px solid #f7f6f2;
  border-left: 50px solid transparent;
	content: "";
	display: block;
	height: 0;
	margin: -32px auto 0;
	width:0;
}
.bg-grey .imgbox-main-link::before{
  border-bottom: 30px solid #fff;
}


.itembox .m-btn-active{
	margin-top: 16px;
}

.itembox-txt{
	font-weight: bold;
}
.itembox-txt b{
	display: block;
	font-size: 24px;
	margin-bottom: 8px;
}

.itembox-details{
	display: flex;
}

.itembox-details-inner{
	box-sizing: border-box;
	width: 50%;
}
.itembox-details-inner + .itembox-details-inner{
	padding-left: 12px;
}
.itembox-details-inner img{
	aspect-ratio: 5/6;
	width: 100%;
}

.itembox-details-txt{
	font-size: 14px;
	margin-top: 12px;
	text-align: justify;
}

.item-head{
	background: #a9a7a0;
	border-radius: 100px;
	color: #fff;
	line-height: 1;
	margin-top: 16px;
	padding: 6px 0;
	text-align: center;
	width: 100%;
}


.status{
	align-items: center;
	color: #a9a7a0;
	display: flex;
	font-size: 12px;
	justify-content: center;
	letter-spacing: .3em;
	margin-top: 4px;
	text-align: center;
}
.status span{
	font-size: 16px;
}

span.status-act{
	color: #e1c34a;
	font-size: 22px;
}



.itembox-details-inner-head{
	color: #a9a7a0;
	font-size: 20px;
	margin-top: 12px;
}



/* headline */
.headline {
	display: flex;
	width: 1000px;
	-moz-column-gap: 10px;
	     column-gap: 10px;
	align-items: center;
}

.headline-title {
	font-family: linotype-didot, serif;
	font-style: normal;
	font-weight: 600;
	font-size: 28px;
}

.headline-subtitle {
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	margin-left: 8px;
	font-size: 20px;
	letter-spacing: -0.08em;
}

.headline-sentence {
	font-size: 14px;
}

.headline-icon img {
	aspect-ratio: 1/1;
}


/* itemlist */
.itemlist ul{
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
}
.itemlist ul > li{
	background: #f7f6f2;
	box-sizing: border-box;
	margin-top: 12px;
	padding: 12px;
}
.bg-grey .itemlist ul > li{
	background: #fff;
}

.itemlist ul > li a{
	display: block;
}

.itemlist ul > li b{
	display: block;
}
.itemlist ul > li img{
	aspect-ratio: 5/6;
	width: 100%;
}

.itemlist ul .m-btn-active{
	height: 32px;
	line-height: 32px;
}

.itemlist-headline{
	font-size: 20px;
	margin-top: 32px;
	text-align: center;
}

.tfslive_box {
	display: block;
	margin: 40px auto 0;
	width: 96%;
	max-width: 700px;
	overflow: hidden;
	text-align: center;
  }
  
  .tfslive_box p {
	font-size: 20px;
	margin-bottom: 10px;
  }
  
  .tfslive_box img {
	width: 100%;
	aspect-ratio: 5/2;
  }
  
@media screen and (min-width:641px){
/*--------*/
/*   PC   */
/*--------*/

/* PC title */
.title-sub{
	text-align: center;
}


/* PC navi */
.navi ul > li:nth-of-type(4n){
	border-right: 5px solid #efefec;
}



/* PC content-box */
.content-box{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-left: 0;
	padding-right: 0;
}



/* PC imgbox */
.imgbox{
	width: 1000px;
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: auto auto auto auto;
	grid-template-areas: "photo ." "photo item" "photo .";
	justify-content: center;
	align-items: center;
}


.imgbox-mainimg{
	grid-area: photo;
	aspect-ratio: 5/6;
	display: block;
	width: 70%;
	margin: 12px auto 0;
}


.imgbox-main-link{
	grid-area: item;
	background: #f7f6f2;
	box-sizing: border-box;
	padding: 50px 30px;
	position: relative;
	width: 500px;
}
.bg-grey .imgbox-main-link{
	background: #fff;
}


/* PC itembox */
.itembox{
	position: relative;
	width: 360px;
	margin: 0 auto;
}

.itembox-txt {
	width: 360px;
	margin: 0 auto 16px;
	font-size: 14px;
}

.imgbox-main-link::before{
	transform: rotate(-90deg);
	transform: translateY(-50%;);
	position: absolute;
	left: -50px;
	top: 50%;
}

.itembox-details{
	display: block;
}

.itembox-details-inner{
	width: 100%;
}
.itembox-details-inner + .itembox-details-inner{
	padding: 0;
}

.itembox-details-inner-head{
	text-align: center;
}


/* PC itemlist*/
.itemlist ul{
	margin: auto;
	width: 1000px;
	display: grid;
	grid-template-columns: repeat(4, 241px);
	justify-content: center;
	-moz-column-gap: 8px;
	     column-gap: 8px;
}
.itemlist ul > li{
	display: inherit;
}

.itemlist ul li a {
	display: grid;
	grid-template-rows: 260.39px 1fr auto 96px 32px;
	grid-template-areas:
	"photo"
	"text"
	"dash"
	"itemname"
	"btn";
	flex-direction: column;
	align-items: flex-start;
	row-gap: 8px;
}
}

.itemlist ul > li p:first-of-type {
	justify-self: center;
}




/*--------*/
/* HOVER  */
/*--------*/

.main-content .m-btn-active:hover{
	background: #45423f;
}
.main-content a:hover{
	opacity: .7;
}

.tfslive_box a:hover {
	opacity: 0.7;
  }/* end media */

@media screen and (max-width: 640px) {
	.title img {
		aspect-ratio: 32/15;
	}
	
	.title-sub-wrapper {
		padding: 16px 12px;
	}

	.navi {
		background-color: #f7f6f2;
	}

	.navi ul {
		margin-bottom: 0;
		-moz-column-gap: 8px;
		     column-gap: 8px;
		row-gap: 16px;
		justify-content: center;
	}

	.navi ul > li {
		width: 17%;
		margin-top: 0;
		border-right: none;
	}

	.headline {
		width: 100%;
		-moz-column-gap: initial;
		     column-gap: initial;
			 margin: 0 auto 16px;
	}

	.headline-text {
		width: 300%;
	}

	.headline-icon {
		padding-right: 38px;
	}

	.headline-icon img {
		width: 220%;
	}
	
	.headline-title {
		font-size: 26px;
	}

	.headline-subtitle {
		font-size: 18px;
	}

	.headline-sentence {
		font-size: 12px;
	}

	.cp-banner-box {
		width: 100%;
	}

	.cp-banner-box img {
		width: 100%;
	}

	.imgbox img {
		width: 100%;
	}

	.itembox-details {
		display: block;
	}

	.itembox-details-inner {
		width: 100%;
	}

	.itembox-txt {
		margin: 8px auto;
	}

	.bg-grey .itembox {
		background: initial;
	}

	.itemlist ul {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.itemlist ul > li {
		margin-top: 0;
		display: inherit;
	}

	.itemlist ul > li a {
		display: grid;
		grid-template-rows: auto 1fr auto 1fr;
		row-gap: 8px;
	}

}