@charset "utf-8";

/*============================
ヘッダー
============================*/
header {
	transition: transform 0.5s 0.3s;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0.80rem;
	min-width: 1080px;
	box-sizing: border-box;
	z-index: 10;
	background-color: #FFF;
}

@media screen and (max-width: 640px) {
	header {
		height: 0.60rem;
		min-width: 100%;
	}
}

header .logo {
	width: 1.80rem;
	position: absolute;
	top: 50%;
	left: 0.30rem;
	transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
	header .logo {
		width: 1.20rem;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

header .logo a:hover {
	opacity: 0.7;
}

/* --------- 以下、必要に応じて有効化 ---------- */

/* ヘッダーが上に消える
header.hide {
	transform: translateY(-1.50rem);
}
 */

/* スクロールで表示された状態
header.scr {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
*/

header .glo_navi {
	position: absolute;
	top: 50%;
	right: 0.30rem;
	transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
	header .glo_navi {
		position: absolute;
		top: 0.60rem;
		right: 0;
		transform: translateY(0);
		width: 100%;
		background-color: rgba(0, 0, 0, 0.85);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		display: none;
	}
}

header .glo_navi .list {
	display: flex;
	align-items: center;
	gap: 0 0.40rem;
}
@media screen and (max-width: 640px) {
	header .glo_navi .list {
		display: block;
		padding: 0.20rem;
	}
}

header .glo_navi .list .txt a {
	font-family: "Inter", serif;
  font-optical-sizing: auto;
	font-size: 0.14rem;
	letter-spacing: 0.05em;
	font-weight: 600;
	color: #111;
	position: relative;
}
@media screen and (max-width: 640px) {
	header .glo_navi .list .txt a {
		font-size: 0.15rem;
		line-height: 2.5;
		color: #FFF;
	}
}

header .glo_navi .list .txt a span {
	position: relative;
}

header .glo_navi .list .sns img {
	width: 0.26rem;
	display: block;
}

@media screen and (max-width: 640px) {
	header .glo_navi .list .sub_box {
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		padding: 0.15rem 0;
		margin: 0.15rem 0;
	}
	header .glo_navi .list .sub_box a {
		font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴシック', 'Hiragino Sans', 'メイリオ', Meiryo, sans-serif;
		font-size: 0.13rem;
	}
	header .glo_navi .list .sns {
		padding: 0.10rem 0;
	}
	header .glo_navi .list .sns a {
		font-size: 0.15rem;
		font-family: "Inter", serif;
		font-optical-sizing: auto;
		color: #FFF;
		display: flex;
		align-items: center;
	}
	header .glo_navi .list .sns a img {
		width: 0.26rem;
	}
	header .glo_navi .list .sns a span {
		padding-left: 0.10rem;
	}
}

header .glo_navi .list .txt a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #333;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

header .glo_navi .list .txt a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

#SPnaviBtn {
	width: 0.60rem;
	height: 0.60rem;
}

.menu-trigger span:nth-of-type(1) {
	top: 36%;
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
	top: calc(50% + 1px);
}

.menu-trigger span:nth-of-type(3) {
	bottom: 36%;
}

/*============================
共通
============================*/
main {
	padding-top: 0.80rem;
}
@media screen and (max-width: 640px) {
	main {
		padding-top: 0.60rem;
	}
}

/* タイトル */
.sec_ttl_wrap {
	text-align: center;
	padding-bottom: 0.50rem;
}

.sec_ttl_wrap .sec_ttl {
	font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
	font-size: 0.40rem;
	font-weight: 700;
}
@media screen and (max-width: 640px) {
	.sec_ttl_wrap .sec_ttl {
		font-size: 0.26rem;
	}
}

.sec_ttl_wrap .jp_txt {
	display: block;
	padding-top: 0.10rem;
	font-size: 0.14rem;
	font-weight: 500;
}
@media screen and (max-width: 640px) {
	.sec_ttl_wrap .jp_txt {
		font-size: 0.12rem;
	}
}

/* 写真 */
.cover img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s;
}

/* カテゴリアイコン */
.category_wrap {
	padding-top: 0.80rem;
	position: relative;
}
@media screen and (max-width: 640px) {
	.category_wrap {
		padding-top: 0.40rem;
		margin-right: -0.20rem;
		margin-left: -0.20rem;
	}
	.category_wrap::before {
		content: "";
		width: calc(100vw - 0.40rem);
		height: 1px;
		background-color: #111;
		position: absolute;
		top: 0.40rem;
		left: 0.40rem;
	}
	.category_wrap::after {
		content: "";
		width: calc(100vw - 0.40rem);
		height: 1px;
		background-color: #111;
		position: absolute;
		bottom: 0;
		left: 0.40rem;
	}
}

.category_wrap .list {
	display: flex;
	justify-content: center;
	border-top: 1px solid #111;
	border-bottom: 1px solid #111;
}

@media screen and (max-width: 640px) {
	.category_wrap .list {
		overflow-x: scroll;
		justify-content: left;
		position: relative;
		border: 0;
	}
	.category_wrap .list .detail {
		width: auto;
	}
}

.category_wrap .list .detail a {
	display: block;
	padding: 0.30rem;
	text-align: center;
	width: 1.00rem;
	color: #111;
	font-family: "Inter", serif;
  font-optical-sizing: auto;
	font-size: 0.14rem;
	font-weight: 500;
	letter-spacing: 0;
}
@media screen and (max-width: 640px) {
	.category_wrap .list .detail a {
		padding: 0.20rem 0.10rem;
		font-size: 0.12rem;
		box-sizing: border-box;
	}
}

.category_wrap .list .detail.-disable a {
	pointer-events: none;
	opacity: 0.3;
}

.category_wrap .list .detail a:hover {
	background-color: #F1F1F1;
}

.category_wrap .list .detail a .icon {
	width: 0.60rem;
	margin: auto;
	padding-bottom: 0.15rem;
}

.category_wrap .list .detail a .icon img {
	display: block;
}

/* 一覧ボックス */
.item_box {
	padding-top: 0.80rem;
	padding-bottom: 2.00rem;
}
@media screen and (max-width: 640px) {
	.item_box {
		padding-top: 0.40rem;
		padding-bottom: 1.00rem;
	}
}

.item_box .in {
	max-width: 14.80rem;
}

.item_box .item_list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.80rem 0.30rem;
}
@media screen and (max-width: 640px) {
	.item_box .item_list {
		gap: 0.80rem 0;
		justify-content: space-between;
	}
}

.item_box .item_list .detail {
	width: calc(25% - 0.265rem);
	position: relative;
}
@media screen and (max-width: 640px) {
	.item_box .item_list .detail {
		width: 48%;
	}
}

.item_box .item_list .detail .icon_box {
	position: absolute;
	top: 0.10rem;
	left: 0.10rem;
	z-index: 2;
}

.item_box .item_list .detail .icon_box .icon {
	display: none;
}

.item_box .item_list .detail .icon_box span {
	font-family: "Inter", serif;
  font-optical-sizing: auto;
	font-size: 0.12rem;
	font-weight: 700;
	line-height: 1;
	padding: 0.05rem;
	display: inline-block;
	margin-bottom: 0.05rem;
}
@media screen and (max-width: 640px) {
	.item_box .item_list .detail .icon_box span {
		font-size: 0.10rem;
	}
}

.item_box .item_list .detail .icon_box .soldout span {
	color: #FFF;
	background-color: #000;
}

.item_box .item_list .detail .icon_box .preorder span {
	color: #111;
	background-color: #ffe606;
}

/* SOLD OUT */
.item_box .item_list .detail.-soldout .icon_box .soldout {
	display: block;
}

.item_box .item_list .detail.-soldout .ph_wrap::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/*  PRE ORDER */
.item_box .item_list .detail.-preorder .icon_box .preorder {
	display: block;
}

.item_box .item_list .detail .ph_wrap {
	width: 100%;
	height: 4.70rem;
	overflow: hidden;
	position: relative;
}
@media screen and (max-width: 640px) {
	.item_box .item_list .detail .ph_wrap {
		height: 60vw;
	}
}

.item_box .item_list .detail a:hover .ph_wrap img {
	transform: scale(1.04);
}

.item_box .item_list .detail .txt_box {
	padding-top: 0.30rem;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.item_box .item_list .detail .txt_box {
		padding-top: 0.15rem;
		text-align: left;
	}
}

.item_box .item_list .detail .txt_box .item_ttl {
	font-size: 0.14rem;
	color: #111;
	overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
	line-height: 1.45;
}
@media screen and (max-width: 640px) {
	.item_box .item_list .detail .txt_box .item_ttl {
		font-size: 0.12rem;
	}
}

.item_box .item_list .detail .txt_box .price {
	font-family: "Inter", serif;
  font-optical-sizing: auto;
	font-size: 0.16rem;
	font-weight: 700;
	color: #111;
	padding-top: 0.10rem;
}
@media screen and (max-width: 640px) {
	.item_box .item_list .detail .txt_box .price {
		font-size: 0.14rem;
		padding-top: 0.08rem;
	}
}

.item_box .item_list .detail .txt_box .price span::before {
	content: "¥";
	font-size: 0.14rem;
	font-weight: 400;
	display: inline-block;
	padding-right: 0.04rem;
}
@media screen and (max-width: 640px) {
	.item_box .item_list .detail .txt_box .price span::before {
		font-size: 0.12rem;
	}
}

.item_box .no_item {
	text-align: center;
	font-size: 0.15rem;
	padding: 0.20rem 0;
	width: 100%;
}

/*============================
商品詳細
============================*/
.item_detail {
	padding: 0.40rem 0 1.00rem;
}
@media screen and (max-width: 640px) {
	.item_detail {
		padding: 0 0 1.00rem;
	}
}

.item_detail .in {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.item_detail .in .ph_wrap {
	width: 100%;
	max-width: 6.50rem;
}
@media screen and (max-width: 640px) {
	.item_detail .in .ph_wrap {
		padding-bottom: 0.30rem;
	}
}

.item_detail .in .txt_box {
	width:100%;
	max-width: 5.00rem;
}
@media screen and (max-width: 640px) {
	.item_detail .in .txt_box {
		max-width: 100%;
	}
}

.item_detail .in .txt_box .icon_box {
	display: flex;
	align-items: center;
}

.item_detail .in .txt_box .icon_box .icon {
	display: none;
	padding-right: 0.06rem;
	padding-bottom: 0.10rem;
}

.item_detail .in .txt_box .icon_box span {
	font-family: "Inter", serif;
  font-optical-sizing: auto;
	font-size: 0.12rem;
	font-weight: 700;
	line-height: 1;
	padding: 0.05rem;
	display: inline-block;
	margin-bottom: 0.05rem;
}
@media screen and (max-width: 640px) {
	.item_detail .in .txt_box .icon_box span {
		font-size: 0.10rem;
	}
}

.item_detail .in .txt_box .icon_box .soldout span {
	color: #FFF;
	background-color: #111;
}

.item_detail .in .txt_box .icon_box .preorder span {
	color: #111;
	background-color: #ffe606;
}

/* SOLD OUT */
.item_detail .in .txt_box.-soldout .icon_box .soldout {
	display: block;
}

/*  PRE ORDER */
.item_detail .in .txt_box.-preorder .icon_box .preorder {
	display: block;
}

.item_detail .in .txt_box .item_name {
	font-size: 0.24rem;
	font-weight: 700;
	padding-bottom: 0.20rem;
}
@media screen and (max-width: 640px) {
	.item_detail .in .txt_box .item_name {
		font-size: 0.16rem;
		padding-bottom: 0.10rem;
	}
}

.item_detail .in .txt_box .price {
	font-family: "Inter", serif;
  font-optical-sizing: auto;
	font-size: 0.16rem;
	font-weight: 700;
	color: #111;
	padding-bottom: 0.40rem;
}

.item_detail .in .txt_box .price span::before {
	content: "¥";
	font-size: 0.15rem;
	font-weight: 400;
	display: inline-block;
	padding-right: 0.04rem;
}

.item_detail .in .txt_box .spec {
	padding-bottom: 0.20rem;
}

.item_detail .in .txt_box .cont_box {
	border-bottom: 1px solid #111;
	padding: 0.20rem 0;
	font-size: 0.14rem;
	line-height: 1.91;
}
@media screen and (max-width: 640px) {
	.item_detail .in .txt_box .cont_box {
		padding: 0.15rem 0;
		font-size: 0.13rem;
	}
}

.item_detail .in .txt_box .cont_box:nth-of-type(1) {
	border-top: 1px solid #111;
}

.item_detail .in .txt_box .cont_box .cont_ttl {
	font-size: 0.16rem;
	font-weight: 600;
	padding-bottom: 0.10rem;
}
@media screen and (max-width: 640px) {
	.item_detail .in .txt_box .cont_box .cont_ttl {
		font-size: 0.15rem;
		padding-bottom: 0.05rem;
	}
}

.item_detail .in .txt_box .cont_box .txt {
	padding-bottom: 0.20rem;
}

.item_detail .in .txt_box .cont_box .item_size table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
	font-size: 0.13rem;
}
@media screen and (max-width: 640px) {
	.item_detail .in .txt_box .cont_box .item_size table {
		font-size: 0.11rem;
	}
}

.item_detail .in .txt_box .cont_box .item_size table th,
.item_detail .in .txt_box .cont_box .item_size table td {
	padding: 0.10rem 0;
}
.item_detail .in .txt_box .cont_box .item_size table td {
	border-top: 1px solid #CCC;
}

.item_detail .in .txt_box .buy_btn {
	max-width: 3.00rem;
	padding-bottom: 0.10rem;
}
@media screen and (max-width: 640px) {
	.item_detail .in .txt_box .buy_btn {
		max-width: 3.00rem;
		margin: auto;
	}
}

.item_detail .in .txt_box .buy_btn a {
	display: block;
	background-color: #111;
	font-size: 0.16rem;
	font-weight: 700;
	color: #FFF;
	background-color: #111;
	line-height: 0;
	padding: 0.25rem 0 0.27rem;
	border-radius: 0.03rem;
	text-align: center;
}

.item_detail .in .txt_box .buy_btn a:hover {
	opacity: 0.7;
}

.item_detail .in .txt_box .buy_btn.-soldout a,
.item_detail .in .txt_box .buy_btn.-preorder a {
	pointer-events: none;
	opacity: 0.3;
}




.item_detail .back_btn {
	padding-top: 0.50rem;
	max-width: 3.50rem;
	margin: auto;
	width: 100%;
}
@media screen and (max-width: 640px) {
	.item_detail .back_btn {
		padding-top: 0.40rem;
		max-width: 3.00rem;
		margin: auto;
	}
}

.item_detail .back_btn a {
	display: block;
	border: 1px solid #111;
	padding: 0.20rem 0 0.22rem;
	text-align: center;
	font-family: "Inter", serif;
  font-optical-sizing: auto;
	font-size: 0.16rem;
	font-weight: 700;
	color: #111;
	position: relative;
}

.item_detail .back_btn a::before {
	content: "";
	width: 0.20rem;
	height: 0.10rem;
	background-image: url(../common/img/icon_arrow_white_rev.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0.20rem;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.item_detail .back_btn a:hover::before {
	left: 0.15rem;
}

.item_detail .back_btn a:hover {
	background-color: #111;
	color: #FFF;
}

/*============================
バナー
============================*/
.bnr_wrap {
	padding: 0.20rem 0 1.00rem;
	margin: auto;
}

.bnr_wrap .bnr {
	padding-bottom: 0.50rem;
	width: 100%;
	max-width: 8.00rem;
	padding: 0 0.10rem;
}
@media screen and (max-width: 640px) {
	.bnr_wrap .bnr {
		max-width: 3.20rem;
	}
}

.bnr_wrap .bnr a {
	display: block;
}

.bnr_wrap .bnr a:hover {
	opacity: 0.7;
}

.bnr_wrap .bnr a img {
	display: block;
}

/*============================
フッター
============================*/
footer {
	background-color: #111;
	color: #FFF;
	padding: 0.50rem 0;
}
@media screen and (max-width: 640px) {
	footer {
		padding: 0.30rem 0;
	}
}

footer .upper_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 0.50rem;
}
@media screen and (max-width: 640px) {
	footer .upper_box {
		display: block;
		padding-bottom: 0.30rem;
	}
}

footer .upper_box .logo_wrap {
	width: 1.50rem;
}
@media screen and (max-width: 640px) {
	footer .upper_box .logo_wrap {
		margin: auto;
		padding-top: 0.20rem;
		padding-bottom: 0.50rem;
	}
}

footer .upper_box .link_wrap .list {
	display: flex;
	align-items: center;
	gap: 0 0.40rem;
}
@media screen and (max-width: 640px) {
	footer .upper_box .link_wrap .list {
		flex-wrap: wrap;
		gap: 0.20rem 0;
	}
	footer .upper_box .link_wrap .list .txt {
		width: 50%;
	}
}

footer .upper_box .link_wrap .list .txt a {
	font-size: 0.13rem;
	color: #FFF;
	position: relative;
}
@media screen and (max-width: 640px) {
	footer .upper_box .link_wrap .list .txt a {
		font-size: 0.12rem;
		letter-spacing: 0;
	}
	footer .upper_box .link_wrap .list .sns a {
		display: flex;
		align-items: center;
		font-size: 0.12rem;
		font-family: "Inter", serif;
		font-optical-sizing: auto;
		color: #FFF;
	}
	footer .upper_box .link_wrap .list .sns a span {
		padding-left: 0.10rem;
	}
}

footer .upper_box .link_wrap .list .sns img {
	width: 0.26rem;
}
@media screen and (max-width: 640px) {
	footer .upper_box .link_wrap .list .sns img {
		width: 0.20rem;
	}
}

footer .upper_box .link_wrap .list .txt a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #FFF;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

footer .upper_box .link_wrap .list .txt a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

footer .bottom_box {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 0.30rem;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
@media screen and (max-width: 640px) {
	footer .bottom_box {
		flex-wrap: wrap;
		display: block;
	}
}

footer .bottom_box .copyright {
	font-family: "Inter", serif;
  font-optical-sizing: auto;
	font-size: 0.11rem;
}
@media screen and (max-width: 640px) {
	footer .bottom_box .copyright {
		font-size: 0.10rem;
		padding-top: 0.20rem;
	}
}

footer .bottom_box .link_wrap .list {
	display: flex;
	align-items: center;
	gap: 0 0.40rem;
}
@media screen and (max-width: 640px) {
	footer .bottom_box .link_wrap .list {
		justify-content: space-between;
		padding-bottom: 0.20rem;
		gap: 0;
	}
	footer .bottom_box .link_wrap .list .link {
		width: 50%;
	}
}

footer .bottom_box .link_wrap .list a {
	font-size: 0.12rem;
	color: #FFF;
	position: relative;
}

footer .bottom_box .link_wrap .list a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #FFF;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

footer .bottom_box .link_wrap .list a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}