@charset 'UTF-8';

/*

    Base

*/

/*  color  */
:root {
	--main-color: #000000;
	--accent-color: #000000;
	--warning-color: #cc0000;
	--success-color: #7abd26;
	--link-color: #666666;
}

/*  webkit  */
body {
	-webkit-text-size-adjust: 100%;
}
a {
	-webkit-tap-highlight-color: rgba(255,255,255,0.4);
}
img {
	-webkit-touch-callout: none;
}
input[type=password], input[type=text], button, textarea {
	max-width: 100%;
	-webkit-appearance: none;
	border-radius: 0;
}

/*  font  */
html { font-size: 8px;}
@media screen and (min-width: 768px) { html { font-size: 10px;}}
body {
	font-family: 'outfit', sans-serif;
	font-weight: 200;
	color: #000000;
}
a {
	color: var(--link-color);
	transition: all 0.1s linear;
}
a:hover   { opacity: 0.7;}
p {
	font-feature-settings: "palt";
}

/*  size color  */
body { font-size: 1.5rem;}
h1 { font-size: 2.5rem;}
h2 { font-size: 2.0rem;}
h3 { font-size: 1.5rem;}

/*  common  */
.global ul,
.global li,
.global p {
	margin: 0;
	list-style: none;
	line-height: 1.2;
}
.global a {
	text-decoration: none;
	color: inherit;
}
div.container {
	margin: 40px 20px;
}
@media screen and (min-width: 768px) {
	div.container {
		max-width: 1200px;
		margin: 4em auto;
	}
	div.container.narrow {
		max-width: 640px;
	}
	div.container.thin {
		max-width: 480px;
	}
}

/*  max width  */
body img,
body iframe {
	max-width: 100%;
}

/*  placeholder  */
::placeholder {
	font-size: 1.4rem;
	color: #999999;
}

/*  material icons  */
.material-icons {
	margin-right: 0.25em;
	font-size: 1.25em;
	vertical-align: middle;
}





/*

    Header

*/

/*  layout  */
header.global nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*  information  */
header.global div.information {
	position: relative;
	height: 30px;
	background-color: #f2f2f2;
	text-align: center;
	overflow: hidden;
}
header.global div.information ul {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 30px;
}
header.global div.information ul li {
	padding: 0 1em;
	line-height: 30px;
	font-size: 1.5rem;
}
header.global div.information ul li a {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
	header.global div.information ul li {
		font-size: 1.25rem;
	}
}

/*  sitetop  */
header.global nav div.sitetop {
	display: block;
	width: 130px;
	height: 75px;
}
header.global nav div.sitetop * {
	margin: 0;
	padding: 0;
}

/*  tool  */
header.global nav ul {
	display: flex;
}
header.global nav ul li {
	line-height: 45px;
	height: 45px;
}
header.global nav ul li a {
	position: relative;
}
header.global nav ul li a span {
	position: absolute;
	display: block;
	left: 0;
	bottom: -0.125em;
	width: 100%;
	color: var(--warning-color);
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	text-shadow:
		1px 1px 0 #ffffff, -1px -1px 0 #ffffff,
		-1px 1px 0 #ffffff, 1px -1px 0 #ffffff,
		0px 1px 0 #ffffff,  0 -1px 0 #ffffff,
		-1px 0 0 #ffffff, 1px 0 0 #ffffff;
}
header.global nav ul li form {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
header.global nav ul li form input[type=text] {
	display: anone;
	width: 0;
	padding: 0;
	background-color: #f2f2f2;
	border: none;
	border-radius: 99px;
	transition: all 0.25s linear;
}
header.global nav ul li form input[type=text].open {
	width: 9em;
	padding: 0.25em 1em;
}
header.global nav ul li form input[type=image],
header.global nav ul li img {
	width: 35px;
}
header.global nav ul li.account { display: none;}
header.global nav ul li.signout { display: none;}
header.global nav ul li.signin { display: none;}
header.global nav ul li.signup { display: none;}
header.global nav ul li.guide { display: none;}
header.global nav ul li.member { margin-right: 10px;}
@media screen and (min-width: 768px) {
	header.global nav ul li form input[type=text].open {
		width: 16em;
	}
	header.global nav ul li.member { display: none;}
	header.global nav ul li.account,
	header.global nav ul li.signout,
	header.global nav ul li.signin,
	header.global nav ul li.signup,
	header.global nav ul li.guide {
		display: block;
		padding: 0 20px 0 0;
	}
	header.global nav ul li.account,
	header.global nav ul li.signin {
		padding-left: 20px;
	}
	header.global nav ul li.signout:before,
	header.global nav ul li.signup:before,
	header.global nav ul li.guide:before {
		content: '';
		display: inline-block;
		width: 1px;
		height: 10px;
		margin-right: 20px;
		border-left: 1px #555555 solid;
	}
}





/*
    Navigation
*/

/*  common  */
nav.global {
	background-color: #000000;
}
nav.global ul {
	display: flex;
	flex-wrap: wrap;
	padding: 0 1em;
}
nav.global ul li {
	height: 50px;
	line-height: 50px;
	margin-left: 1em;
}
nav.global a {
	display: block;
	padding: 0 0.5em;
	color: #ffffff;
	white-space: nowrap;
}

/*  parent  */
nav.global > ul {
	position: relative;
}
nav.global > ul > li > a {
	display: flex;
	align-items: center;
	cursor: pointer;
}
nav.global > ul > li > a:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	margin: 7px 0 0 5px;
	border: 5px transparent solid;
	border-top: 5px #ffffff solid;
}

/*  child  */
nav.global > ul > li > ul {
	display: none;
}
nav.global > ul > li.current ul {
	display: flex;
	position: absolute;
	left: 0;
	top: 50px;
	width: 100%;
	background-color: rgba(0,0,0,0.75);
}





/*

    Footer

*/

/*  layout  */
footer.global {
	border-top: 1px #f2f2f2 solid;
}
footer.global div.about {
	margin: 40px 20px;
}
footer.global nav {
	margin: 40px 20px 20px;
}
@media screen and (min-width: 768px) {
	footer.global div.container {
		display: flex;
		padding: 50px 0;
	}
	footer.global div.about {
		width: 60%;
		margin: 0;
		padding-right: 90px;
		box-sizing: border-box;
	}
	footer.global nav {
		display: flex;
		width: 40%;
		margin: 0;
	}
}

/*  common  */
footer.global strong {
	display: block;
	margin-bottom: 0.75em;
	font-size: 2.0rem;
}

/*  about  */
footer.global div.about p.about {
	line-height: 1.5;
}
footer.global div.about p.about a {
	line-height: 3;
	font-weight: bold;
}
footer.global div.about p.country {
	margin-top: 1em;
}
footer.global div.about p.country a {
	display: flex;
	align-items: center;
	cursor: pointer;
}
footer.global div.about div.choose-country {
	display: none;
}
@media screen and (min-width: 768px) {
	footer.global div.about p {
		font-size: 1.25rem;
	}
}

/*  nav  */
footer.global nav {
	overflow: hidden;
}
footer.global nav div.item {
	float: left;
	width: 50%;
}
footer.global nav ul {
	margin-bottom: 20px;
}
footer.global nav ul li {
	margin: 0.5em 0;
}
@media screen and (min-width: 768px) {
	footer.global nav div.item {
		float: none;
		width: 33.3%;
	}
	footer.global nav ul {
		margin-bottom: 0;
	}
	footer.global nav ul li {
		font-size: 1.25rem;
	}
}

/*  small  */
footer.global small {
	display: block;
	padding: 1em 0;
	background-color: #f2f2f2;
	font-size: 1.25rem;
	text-align: center;
}





/*

    Message

*/

/*  layout  */
#message {
	position: fixed;
	right: 10px;
	bottom: 10px;
	display: flex;
	align-items: center;
	padding: 0 1em;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
	z-index: 999;
	animation-name: message;
	animation-duration: 5s;
	animation-fill-mode: forwards;
}
@keyframes message {
	0%   { bottom: -50px;}
	4%   { bottom: 10px;}
	85%  { opacity: 1;}
	100% { opacity: 0;}
​}

/*  color  */
#message.success span { color: var(--success-color);}
#message.failure span { color: var(--warning-color);}





/*

    Common

*/

/*  headings  */
h1 {
	margin: 2em 0;
	text-align: center;
}
div.container h1 {
	margin: 0 0 1.5em;
	text-align: left;
}
h2 {
	margin-bottom: 1.5em;
}

/*  p.back  */
h1 + p.back {
	margin: -2em 0 2.5em;
}

/*  button  */
a.button, button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 1.5em 0;
	padding: 0.75em 2em;
	background-color: #000000;
	border: none;
	color: #ffffff;
	font-family: 'outfit', sans-serif;
	font-weight: bold;
	font-size: 1.75rem;
	cursor: pointer;
}
a.button.small, button.small {
	padding: 0.5em 1em;
}

/*  p.warning  */
p.warning {
	color: var(--warning-color);
	font-weight: bold;
}

/*  ul.plain  */
ul.plain li {
	margin: 0;
	list-style: none;
}

/*  ul.countries  */
ul.countries {
	padding: 0 10em 0 0;
}
ul.countries li {
	list-style: none;
	margin: 1em auto;
}
ul.countries li a {
	color: #666666;
}

/*  dl.policies  */
dl.policies {
	margin: 3em 0 1.5em;
	font-size: 1.5rem;
}
dl.policies dt {
	margin: 0.5em 1.25em;
}
dl.policies dd {
	margin: 0.5em 1.25em 2em;
}
dl.policies dd span.more {
	margin-top: 1em;
	display: block;
	text-align: right;
}
dl.policies dd a {
	color: #000000;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	dl.policies {
		font-size: 1.25rem;
	}
}

/*  dl.prices  */
dl.prices {
	display: flex;
	flex-wrap: wrap;
	margin: 2em 0 3em;
	align-items: center;
}
dl.prices dt,
dl.prices dd {
	margin: 0;
	padding: 1em;
	border-bottom: 1px #f2f2f2 solid;
	box-sizing: border-box;
	font-size: 1.5rem;
}
dl.prices dt {
	width: 60%;
}
dl.prices dd {
	width: 40%;
	font-weight: bold;
	text-align: right;
}
dl.prices .total {
	background-color: #f2f2f2;
	font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
	dl.prices dt,
	dl.prices dd {
		font-size: 1.25rem;
	}
	dl.prices .total {
		font-size: 1.5rem;
	}
}

/*  ul.orderproducts  */
ul.orderproducts {
}
ul.orderproducts li {
	display: flex;
	align-items: flex-start;
	width: 100%;
	margin: 0;
}
ul.orderproducts li a.image {
	width: 40%;
}
ul.orderproducts li div.summary {
	width: 60%;
	padding-top: 1em;
	padding-left: 2em;
	box-sizing: border-box;
}
ul.orderproducts li div.summary span {
	display: block;
	margin: 0.5em 0;
	font-size: 1.75rem;
}
ul.orderproducts li div.summary span.name {
	font-weight: bold;
}
ul.orderproducts li div.summary span.price {
	font-size: 2.0rem;
	font-weight: bold;
}
ul.orderproducts li div.summary span.text {
	margin-top: 0;
	font-size: 1.25rem;
}
ul.orderproducts li div.summary span.qty {
	display: flex;
	align-items: center;
	width: fit-content;
	margin-top: 1em;
	padding: 0.5em;
	border: 1px #cccccc solid;
}
ul.orderproducts li div.summary span.qty a {
	padding: 0;
}
ul.orderproducts li div.summary span.qty a img {
	display: block;
	width: 30px;
}
ul.orderproducts li div.summary span.qty span {
	margin: 0 0.75em;
	font-weight: bold;
}

/*  form  */
form.basic div.group div.formitem {
	width: 100%;
	margin: 0 0.75em 0 0;
}
form.basic div.group div.formitem fieldset {
	width: 100%;
	padding: 0 0.5em;
	border: 1px #999999 solid;
	box-sizing: border-box;
}
form.basic div.group div.formitem fieldset legend {
	width: 0;
	height: 1em;
	padding: 0;
	font-size: 1.5rem;
	transition: all 0.1s linear;
	line-height: 1;
	overflow: hidden;
}
form.basic div.group div.formitem fieldset.active legend {
	width: auto;
	padding: 0 0.5em;
}
form.basic div.group div.formitem fieldset input,
form.basic div.group div.formitem fieldset select {
	width: 100%;
	margin-top: -0.125em;
	padding: 0.75em;
	background-color: transparent;
	border: none;
	font-size: 17px;
	line-height: 1;
}
form.basic div.group div.formitem fieldset input::placeholder {
	font-size: 17px;
}
form.basic div.group div.formitem fieldset select {
	color: #999999;
}
form.basic div.group div.formitem fieldset.active select {
	color: #000000;
}
form.basic div.group div.formitem fieldset.active input::placeholder {
	opacity: 0;
}
form.basic div.group div.formitem fieldset.error {
	color: var(--warning-color);
	border-color: var(--warning-color);
}
form.basic div.group div.formitem fieldset.error input::placeholder {
	color: var(--warning-color);
}
form.basic div.group div.formitem fieldset.error select {
	color: var(--warning-color);
}
form.basic div.group div.formitem p.error-message {
	min-height: 1em;
	margin: 0;
	padding: 0.25em 0.5em;
	font-size: 1.25rem;
	line-height: 1;
	color: var(--warning-color);
}
form.basic div.group div.formitem p.help {
	margin: 0;
	padding: 0 0.5em;
	font-size: 1.25rem;
	color: #666666;
}
form.basic label {
	display: flex;
	align-items: center;
	cursor: pointer;
}
form.basic label input {
	margin: 0 0.5em;
}
form.basic button {
	opacity: 0.3;
}
form.basic button.valid {
	opacity: 1;
}
@media screen and (min-width: 768px) {
	form.basic div.group {
		display: flex;
		align-items: flex-end;
	}
}

/*  form.signin  */
form.signin {
	margin-top: -1em;
}
form.signin button {
	margin-top: 0.5em;
}

/*  form.reset  */
form.reset {
	margin-top: 1.5em;
}
form.reset button {
	margin-top: 0.5em;
}

/*  ul.addresses  */
ul.addresses li {
	margin: 0 0 1em;
	padding: 0 1em 1em;
	border: 1px #cccccc solid;
	list-style: none;
}
ul.addresses li div.action {
	display: flex;
}
ul.addresses li div.action a {
	margin: 0;
	margin-right: 1em;
	padding: 0.25em 1em;
	font-size: 1.2rem;
}

/*  div.choose-addresses  */
div.choose-addresses {
	display: none;
}

/*  p.add-address  */
p.add-address {
	padding: 1em;
	border: 1px #cccccc solid;
}
p.add-address a.button {
	margin: 1em 0 0;
}

/*  ul.favorites  */
ul.favorites {
	display: flex;
	flex-wrap: wrap;
}
ul.favorites li {
	width: 50%;
	margin: 0;
	list-style: none;
}
ul.favorites li div.item {
	padding: 0.5em;
}
ul.favorites li div.item strong {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}
ul.favorites li div.item a.button {
	padding: 0.25em 1em;
	font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
	ul.favorites li {
		width: 25%;
	}
}

/*  form dl  */
form dl dd {
	margin: 0 0 1em;
}
form dl dd input[type=text],
form dl dd input[type=email] {
	width: 100%;
}





/*

    div.products

*/

/*  styles  */
div.products ul {
	display: flex;
	flex-wrap: wrap;
	margin-right: -25px;
}
div.products ul li {
	width: 50%;
	margin: 0 0 3em;
	padding-right: 25px;
	list-style: none;
	box-sizing: border-box;
}
div.products ul li a.name {
	font-weight: bold;
	color: #000000;
}
div.products ul li p.summary {
	font-size: 1.25rem;
	line-height: 1.2;
}
div.products ul li.loading a,
div.products ul li.loading span {
	display: block;
	height: 1.2em;
	background-color: #f2f2f2;
	animation: blink 1s ease-in-out infinite alternate;
}
div.products ul li.loading a.image {
	padding-top: 80%;
}
@keyframes blink {
	0% { opacity: 0.5;}
	100% { opacity: 1;}
}
div.products a.more {
	font-size: 1.25rem;
	font-weight: bold;
	color: #000000;
	cursor: pointer;
}
@media screen and (min-width: 768px) {
	div.products ul li {
		width: 20%;
		margin: 0 0 5em;
	}
	div.products ul li p.summary {
		font-size: 1.25rem;
	}
}





/*

    div.product

*/

/*  layout  */
@media screen and (min-width: 768px) {
	div.product {
		display: flex;
	}
	div.product div.images {
		width: 66.66%;
	}
	div.product div.information {
		width: 33.33%;
		padding-left: 50px;
		box-sizing: border-box;
	}
}

/*  images  */
div.product div.images figure {
	width: calc (100% + 40px);
	margin: 0 -20px;
	padding: 0;
	white-space: nowrap;
	cursor: pointer;
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
div.product div.images figure::-webkit-scrollbar {
	display: none;
}
div.product div.images figure img {
	display: inline;
	width: 100%;
	vertical-align: middle;
	scroll-snap-align: start;
}
div.product div.images ul {
	display: flex;
	justify-content: center;
	list-style: none;
}
div.product div.images ul li {
	margin: 0;
}
div.product div.images ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 25px;
	height: 25px;
	cursor: pointer;
}
div.product div.images ul li a:before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-color: #f2f2f2;
	border-radius: 5px;
}
div.product div.images ul li a.current:before {
	background-color: #000000;
}
@media screen and (min-width: 768px) {
	div.product div.images figure {
		width: 100%;
		margin: 0;
	}
}

/*  information - h1  */
div.product div.information h1 {
	margin: 0;
	text-align: left;
	font-size: 2.0rem;
}

/*  information - tags  */
div.product div.information ul.tags {
	display: flex;
	flex-wrap: wrap;
}
div.product div.information ul.tags li {
	margin: 0;
	list-style: none;
}
div.product div.information ul.tags li:before {
	content: '/';
	padding: 0 0.5em;
}
div.product div.information ul.tags li:first-child:before {
	content: none;
}

/*  information - price  */
div.product div.information p.price {
	margin: 1em 0 1.5em;
}
div.product div.information p.price strong {
	font-size: 2.0rem;
}

/*  information - choices  */
div.product div.information div.choices.error {
	padding: 0.5em;
	border: 1px var(--warning-color) solid;
}
div.product div.information div.choices span.error {
	color: var(--warning-color);
}
div.product div.information div.choices ul {
	display: flex;
	flex-wrap: wrap;
}
div.product div.information div.choices ul li {
	margin: 0 0.5em 0 0;
	list-style: none;
}
div.product div.information div.choices ul li a {
	display: block;
	padding: 1em;
	border: 1px #eeeeee solid;
	border-radius: 5px;
	color: #000000;
	cursor: pointer;
}
div.product div.information div.choices ul li a.current {
	border-color: #000000;
}
div.product div.information div.choices ul li a.none {
	text-decoration: line-through;
	opacity: 0.5;
}

/*  information - actions  */
div.product div.information p.actions a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0.5em 0;
	padding: 1em;
	text-align: center;
	font-weight: bold;
	border: 1px #c1c1c1 solid;
	color: #000000;
	cursor: pointer;
}
div.product div.information p.actions a img {
	width: 30px;
	margin-right: 0.5em;
	margin-left: -1em;
}
div.product div.information p.actions a.bag {
	background-color: #000000;
	border-color: #000000;
	color: #ffffff;
}

/*  information - detail  */
div.product div.information dl.detail {
	font-size: 1.5rem;
}
div.product div.information dl.detail dt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25em;
	cursor: pointer;
}
div.product div.information dl.detail dt:after {
	content: '+';
}
div.product div.information dl.detail dt.open:after {
	content: '-';
}
div.product div.information dl.detail dd {
	margin: 0;
	border-bottom: 1px #f2f2f2 solid;
}
div.product div.information dl.detail dd div.text {
	display: none;
	margin: 0;
	padding: 0 1.25em 1.25em;
}
@media screen and (min-width: 768px) {
	div.product div.information dl.detail {
		font-size: 1.25rem;
	}
}





/*

    div.bag

*/

/*  layout  */
@media screen and (min-width: 768px) {
	div.bag {
		display: flex;
	}
	div.bag div.orderproducts {
		width: 66.66%;
		box-sizing: border-box;
		padding-right: 3em;
	}
	div.bag div.summary {
		width: 33.33%;
	}
	div.bag div.orderproducts h1 {
		margin-bottom: 0;
		text-align: left;
	}
}

/*  checkout  */
div.bag div.summary a.checkout {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0.5em 0;
	padding: 1em;
	text-align: center;
	font-weight: bold;
	background-color: #000000;
	border: 1px #000000 solid;
	color: #ffffff;
	cursor: pointer;
}





/*

    div.checkout

*/

/*  layout  */
@media screen and (min-width: 768px) {
	div.checkout {
		display: flex;
	}
	div.checkout div.informations {
		width: 66.66%;
		box-sizing: border-box;
		padding-right: 3em;
	}
	div.checkout div.summary {
		width: 33.33%;
	}
}

/*  common  */
div.checkout div.item {
	margin-bottom: 3em;
	padding-bottom: 2em;
	border-bottom: 1px #eeeeee solid;
}
div.checkout h2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
div.checkout h2 a {
	font-weight: 200;
	font-size: smaller;
	color: #000000;
}

/*  signin  */
div.choose-signin div.signin,
div.choose-signin div.guest {
	margin: 2em 0;
	padding: 2em 0;
	border-top: 1px #f2f2f2 solid;
}
@media screen and (min-width: 768px) {
	div.choose-signin {
		display: flex;
		justify-content: space-between;
	}
	div.choose-signin div.signin,
	div.choose-signin div.guest {
		width: 50%;
		padding: 0;
		border: none;
		box-sizing: border-box;
	}
	div.choose-signin div.signin {
		padding-right: 45px;
		border-right: 1px #f2f2f2 solid;
	}
	div.choose-signin div.guest {
		padding-left: 45px;
	}

}





/*

    div.account

*/

/*  layout  */
@media screen and (min-width: 768px) {
	div.account {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	div.account nav {
		width: 30%;
	}
	div.account div.content {
		width: 60%;
	}
}

/*  menu  */
div.account nav ul li {
	margin: 0;
	border-bottom: 1px #f2f2f2 solid;
	list-style: none;
}
div.account nav ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1em;
	font-size: 1.75rem;
}
div.account nav ul li a:after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px #000000 solid;
	border-right: 1px #000000 solid;
	transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
	div.account nav ul li {
		border: none;
	}
	div.account nav ul li a:after {
		content: none;
	}
	div.account nav ul li a {
		padding: 0.5em 0;
	}
}

/*  content  */
div.account div.content {
	padding: 2em 1em;
	font-size: 1.5rem;
}
div.account div.content strong {
	display: inline-block;
	line-height: 2;
}





/*

    div.mv

*/

/*  layout  */
div.mv > ul {
	margin: 0;
	white-space: nowrap;
	letter-spacing: -1em;
	overflow: auto;
	scroll-snap-type: x mandatory;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
div.mv > ul::-webkit-scrollbar {
	display: none;
}
div.mv > ul li {
	display: inline-block;
	margin: 0;
	letter-spacing: 0;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}
div.mv > ul li a {
	display: inline-block;
	width: 100vw;
	height: 0;
	background-size: cover;
	vertical-align: bottom;
}
div.mv > ul li a:hover {
	opacity: 1;
}
div.mv > ul li a.narrow {
	padding-top: 133.33%;
}
div.mv > ul li a.wide {
	display: none;
}

/*  wide  */
@media screen and (min-width: 768px) {
	div.mv > ul li a.narrow {
		display: none;
	}
	div.mv > ul li a.wide {
		display: inline-block;
		padding-top: 32.14%;
	}
}

/*  navigation  */
div.mv div.nav {
	display: flex;
	margin: 15px;
	justify-content: center;
	align-items: center;
}
div.mv div.nav a {
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 10px;
	background-color: #f2f2f2;
	border-radius: 5px;
	cursor: pointer;
}
div.mv div.nav a.current {
	background-color: #999999;
}





/*

    div.orders

*/

/*  styles  */
div.orders ul li {
	margin: 0;
	padding: 2em 0;
	border-bottom: 1px #eeeeee solid;
	list-style: none;
}
div.orders ul li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
div.orders ul li span {
	display: block;
}
div.orders ul li span.num {
	font-weight: bold;
}
div.orders ul li a:after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px #000000 solid;
	border-right: 1px #000000 solid;
	transform: rotate(45deg);
}





/*

    div.order

*/

/*  address  */
div.order p.address {
	padding: 1em;
	border: 1px #eeeeee solid;
}

/*  products  */
div.order table {
	width: 100%;
	margin: 2em 0 6em;
}
div.order table th,
div.order table td {
	padding: 1em 0.5em;
	background: none;
	border: none;
	border-bottom: 1px #eeeeee solid;
}
div.order table .price {
	text-align: right;
}
