@font-face {
	font-family: 'Kinetic-B';
	src: url('/assets/front/font/Kinetic-Bold.ttf') format('truetype');
}

@font-face {
	font-family: 'Refrigerator-E';
	src: url('/assets/front/font/Refrigerator-Deluxe-Extrabold.ttf') format('truetype');
}

@font-face {
	font-family: 'YuGothic-B';
	src: url('/assets/front/font/YuGothic-Bold.ttf') format('truetype');
}

.crumbsList {
	display: none;
}

.pc {
	display: block;
}

.header .top_news__item_link {
	font-size: 10px;
}

.header .swiper-slide {
	line-height: 1;
}

.header .pc-menu-category-wrapper {
	z-index: 11;
}

.header .hamburger-menu.open {
	height: 22px;
	z-index: 100;
}

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

.txt-pc {
	display: inline-block;
}

@media screen and (max-width: 750px) {
	.txt-pc {
		display: none;
	}
}

.sp {
	display: none;
}

@media screen and (max-width: 750px) {
	.sp {
		display: block;
	}
}

.section-inner h2 {
	font-family: 'Kinetic-B';
	font-size: 24px;
	color: #fff;
}
.section-inner p {
	font-family: 'YuGothic-B';
	line-height: 2;
	color: #fff;
}

/*----------------------------
* コンセプトムービー セクション
*----------------------------*/
.concept-movie {
	background: #000;
	padding-top: 80px;
}
.concept-movie .section-inner .txt-wrap {
	text-align: center;
}
.concept-movie .section-inner {
	width: 75%;
	max-width: 1200px;
	margin: 0 auto;
}
.concept-movie .section-inner .txt-wrap {
	padding-top: 60px;
	padding-bottom: 40px;
}
.concept-movie .section-inner .txt-wrap h2 {
	margin-bottom: 10px;
}
.concept-movie .section-inner .txt-wrap p {
	margin-bottom: 10px;
	font-size: 12px;
}
.concept-movie iframe {
	border: none;
	width: 100%;
}
.concept-movie video {
	width: 100%;
}

.concept-movie .movie-wrap {
	position: relative;
	width:100%;
	height:0;
	padding-top: 56.25%;
}
.concept-movie .movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 750px) {
	.concept-movie {
		padding-top: 40px;
	}
	.concept-movie .section-inner {
		width: 90%;
	}
}

/*----------------------------
* limited uniform セクション
*----------------------------*/
.limited-uniform {
	background: #000;
}

.limited-uniform .section-inner {
	width: 75%;
	margin: 0 auto;
	padding-top: 60px;
}

@media screen and (min-width: 751px) {
	.limited-uniform {
		padding-bottom: 100px;
	}

	.limited-uniform .section-inner {
		position: relative;
		max-width: 1200px;
	}

	.limited-uniform .section-inner .txt-wrap {
		position: absolute;
		top: 90px;
		left: 0;
	}

	.limited-uniform .section-inner .txt-wrap h2 {
		margin-bottom: 30px;
	}

	.limited-uniform .section-inner .txt-wrap p {
		width: 51%;
		letter-spacing: 0.08em;
		font-size: 12px;
	}
}

@media screen and (min-width: 751px) and (max-width: 1119px) {
	.limited-uniform .section-inner .txt-wrap p {
		font-size: 1vw;
	}
}

@media screen and (max-width: 750px) {
	.limited-uniform .section-inner.hide-for-pc {
		width: 90%;
		margin: 0 auto;
	}

	.limited-uniform .section-inner.hide-for-pc h2+img {
		margin-bottom: 40px;
	}

	.limited-uniform .section-inner.hide-for-pc img {
		margin-bottom: 20px;
	}

	.limited-uniform .section-inner h2 {
		padding-bottom: 60px;
		text-align: center;
	}

	.limited-uniform .section-inner p {
		margin-bottom: 50px;
		font-size: 13px;
	}
}

.bold {
	font-weight: 700;
}

.buy-btn-inner {
	padding-bottom: 100px;
		background-color: #000000;
}

.btn-list {
	width: 90%;
	max-width: 1600px;
	margin: 0 auto;
}

.btn-detail {
	display: flex;
	justify-content: space-between;
	padding: 15px 0;
	align-items: flex-start;
}

.btn-detail:not(:last-child) {
	border-bottom: 1px solid #868686;
}

.btn-detail p {
	color: #fff;
	font-family: 'YuGothic-B';
	font-size: 13px;
	text-align: justify;
}

.annotation {
	margin-top: 10px;
	font-size: 12px;
	text-align: justify !important;
}

.modal-open {
	margin-top: 10px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.modal-open p {
	margin-top: 3px;
	margin-left: 8px;
}


/*モーダル本体の指定 + モーダル外側の背景の指定*/

.modal-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 60%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	z-index: 9999;
}


/*モーダル本体の擬似要素の指定*/

.modal-container:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}


/*モーダル本体に「active」クラス付与した時のスタイル*/

.modal-container.active {
	opacity: 1;
	visibility: visible;
}


/*モーダル枠の指定*/

.modal-body {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 1000px;
	width: 90%;
}


/*モーダルを閉じるボタンの指定*/

.modal-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0px;
	right: 5px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #000;
	cursor: pointer;
}


/*モーダル内のコンテンツの指定*/

.modal-content {
	font-family: 'YuGothic-B';
	background: #fff;
	text-align: left;
	padding: 30px;
	font-weight: 700;
	color: #272727;
}

.modal-content p {
	font-size: 16px;
	font-weight: 700;
}

.modal-open2 {
	margin-top: 10px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.modal-open2 p {
	margin-top: 3px;
	margin-left: 8px;
}


/*モーダル本体の指定 + モーダル外側の背景の指定*/

.modal-container2 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 60%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	z-index: 9999;
}


/*モーダル本体の擬似要素の指定*/

.modal-container2:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}


/*モーダル本体に「active」クラス付与した時のスタイル*/

.modal-container2.active {
	opacity: 1;
	visibility: visible;
}


/*モーダル枠の指定*/

.modal-body2 {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 1000px;
	width: 90%;
}


/*モーダルを閉じるボタンの指定*/

.modal-close2 {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0px;
	right: 5px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #000;
	cursor: pointer;
}

.btn-detail a {
	color: #000000;
	text-decoration: none;
	padding: 5px 5% 4px;
	background-color: #fff;
	border: 2px solid #fff;
	font-family: 'Kinetic-B';
	font-weight: 700;
	font-size: 13px;
}

.btn-detail a:hover {
	color: #fff;
	background-color: #000;
	transition: 0.3s;
}

.fixed-image {
	position: absolute;
	left: 100%;
	z-index: 20;
	width: 40%;
	overflow-x: hidden;
	opacity: 0;
	transform: scale(0.8);
}

@media screen and (max-width: 750px) {
	.buy-btn-inner {
		width: 100%;
		background-color: #000000;
	}

	.btn-list {
		width: 90%;
	}

	.btn-detail {
		display: flex;
		position: relative;
		padding: 15px 0 20px 0;
	}

	.btn-detail .buy-btn_01 {
		position: absolute;
		padding: 2px 8% 4px;
		left: 73%;
		top: 26%;
		font-size: 10px;
	}

	.btn-detail .buy-btn_02 {
		position: absolute;
		padding: 2px 8% 4px;
		left: 73%;
		top: 52%;
		font-size: 10px;
	}

	.btn-detail .buy-btn_03 {
		position: absolute;
		padding: 2px 8% 4px;
		left: 73%;
		top: 20%;
		font-size: 10px;
	}

	.btn-detail p {
		line-height: 3.5rem;
	}

	.btn-detail .annotation,
	.btn-detail_02 .annotation,
	.btn-detail_03 .annotation {
		line-height: 3rem;
	}

	.fixed-image {
		left: 40%;
		width: 60%;
		z-index: 20;
		top: -15vw;
		text-align: right;
	}

	.fixed-image img {
		width: 100%;
		max-width: 300px;
	}
}