@charset "utf-8";

@import url("https://fonts.googleapis.com/css?family=Inter:300,400,600,800");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display:200,400,600,800");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,400,500");

html {
	font-size: 62.5%;
	overflow-x: hidden;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	color: #333;
	font: 1.2rem 'Inter', Noto Sans JP, Arial, Meiryo, sans-serif;
	font-weight: 400;
	margin: auto;
	padding-top: 60px;
	-webkit-font-smoothing: antialiased;
}
@media (min-width: 1024px) {
	body {
		background: linear-gradient( to bottom, #f1f1f1 0, #fff 200px);
		font-size: 1.3rem;
		padding-top: 100px;
	}
}
@media (min-width: 1280px) {
	body {
		font-size: 1.4rem;
	}
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
	line-height: 1.3;
	margin: 2em 0 1em;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.6rem; }
h5 { font-size: 1.4rem; }

p {
	line-height: 1.8;
	margin: 2em 0;
}

strong {
	font-weight: 600;
}

a {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #666;
}

img {
	-ms-interpolation-mode: bicubic;
	border-width: 0;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

blockquote {
	border-left: 1px solid #333;
	margin-left: 16px;
	padding-left: 16px;
}

table {
	border-bottom: 1px solid #e5e5e5;
	border-collapse: collapse;
	margin: 1.41em auto;
}
td {
	border-top: 1px solid #e5e5e5;
	padding: 1rem;
}
th {
	border-top: 1px solid #e5e5e5;
	color: #19191a;
	font-weight: normal;
	padding: 1rem;
	text-align: center;
	white-space: nowrap;
}
tr td:first-child,
tr th:first-child {
	padding-left: 0;
}
tr td:last-child,
tr th:last-child {
	padding-right: 0;
}

ul,
ol {
	line-height: 1.8;
	margin: 2em 0;
}

dl {
	margin: 2em 0;
	padding: 0;
	list-style: none;
}
dt {
	line-height: 1.8;
	margin: 1em 0 0;
	text-align: left;
}
dd {
	margin: 0 2rem 1em 2rem;
}
dd p,
dd ul,
dd ol {
	margin: 1em 0;
}
@media (min-width: 768px) {
	dl {
		display: grid;
		gap: 1em 5%;
		grid-template-columns: 25% 70%;
	}
	dt {
		text-align: center;
	}
	dd {
		margin: 0;
	}
	form dt {
		margin: 2em 0 0;
	}
}

fieldset {
	border: 0;
}
legend {
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

/* New */
input,
textarea {
	border: 1px solid #c4c7cc;
	border-radius: .2em;
	font-size: 1.6rem;
	margin: .5em 0;
	outline-style: none;
	padding: 1rem;
	vertical-align: middle;
}
@media (min-width: 768px) {
	input,
	textarea {
		margin: 1em 0;
	}
}
input[type='submit'] {
	cursor: pointer;
}
input[name*='quantity'] {
	text-align: center;
}
input[size='32'],
textarea[cols='32'] {
	box-sizing: border-box;
	width: 100%;
}
input:focus, textarea:focus {
	border-color: #313233;
}

select {
	display: inline-block;
	padding: 1rem;
	font-size: 1em;
}

label {
	background: #fff;
	margin: 9px;
	padding: 8px;
	font-size: 1.1em;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='checkbox'] + label {
	position: relative;
	padding-left: 26px;
}
input[type='checkbox'] + label::before {
	position: absolute;
	top: 8px;
	left: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #c6c8cc;
	border-radius: 18px;
	content: '';
}
input[type='checkbox']:checked + label::before {
	border-color: #00a663;
	background-color: #00a663;
	box-shadow: 0 1px 1px #c6c8cc;
}
input[type='checkbox']:checked + label::after {
	position: absolute;
	top: 10px;
	left: 6px;
	width: 5px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	content: '';
	transform: rotate(45deg);
}
input[type='radio'] + label {
	display: block;
	border: 1px solid #c6c8cc;
	border-radius: 3px;
	opacity: .8;
}
input[type='radio']:checked + label {
	margin: 8px;
	border: 2px solid #333;
	color: #313233;
	opacity: 1;
}

/* Button */
.Button a,
.Button button,
.Button input {
	background: #333 linear-gradient(#f2f2f2,#e5e5e5);
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	color: #000;
	display: inline-block;
	font-size: 1.1em;
	line-height: 1.8;
	margin: .4em;
	padding: .8em 2em;
	-webkit-font-smoothing: subpixel-antialiased;
}
.Button a:hover,
.Button button:hover,
.Button input:hover {
	background: #333 linear-gradient(#e5e5e5,#f2f2f2);
}
p.Button {
	overflow: hidden;
	text-align: center
}
span.Button a,
span.Button button,
span.Button input {
	padding: .4em 1em;
	font-size: .9em;
}
.Button .Order {
	background: #333 linear-gradient(#333,#000);
	border-color: #333;
	color: #fff;
}
.Button .Order:hover {
	background: #333 linear-gradient(#000,#333);
}
.Button .Prev {
	float: left;
	max-width: 40%;
}
.Button .Next {
	float: right;
	max-width: 40%;
}
.Button .Line, .Button .Facebook, .Button .Twitter {
	font-size: .9em;
	padding: .3em .8em;
}
#payjp_checkout_box input[type=button] {
	background: #333 linear-gradient(#333,#000) !important;
	border-radius: 6px !important;
	font-size: 1.2em !important;
}

@media (min-width: 480px) {
	.Button a,
	.Button button,
	.Button input {
		padding-left: 3em;
		padding-right: 3em;
	}
}

/* Link */
.Link {
	overflow: auto;
	padding: 0;
}
.Link li {
	float: left;
	width: 50%;
	font-size: 1.2rem;
	line-height: 2.8em;
	list-style: none;
}
.Link a {
	position: relative;
	padding-left: 1.4em;
}
.Link a::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 6px;
	height: 6px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	border-color: #333;
	content: '';
	transform: translate(0, -50%) rotate(45deg);
}
a[rel~="noopener"]::before {
	background-color: currentColor;
	content: "";
	height: 1em;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 3h6v2H5v14h14v-6h2v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z'/><path d='M21 3v6h-2V6.41l-9.29 9.3-1.42-1.42 9.3-9.29H15V3h6z'/></svg>") no-repeat center / contain;
	transform: translate(0, -50%) rotate(0deg);
	width: 1em;
}

figure {
	margin: 2em 0;
	text-align: center;
}

iframe {
	border-style: none;
}

/* Universal Class
------------------------------ */
.VisuallyHidden {
	border-width: 0 !important;
	clip: rect(0, 0, 0, 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

.Copy {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 3.6em;
	text-align: center;
}

.Thin {
	color: #666;
	font-style: normal;
	font-weight: 200;
}
h2 rt {
	font-size: .3em;
	text-align: center;
}

.Notice {
	font-size: 1rem;
}
ul.Notice {
	list-style-type: none;
	padding-left: 0;
}
ul.Notice li::before {
	content: '※ ';
}

.Figure {
	display: block;
	text-align: center
}

.Module {
	border-top: 1px solid #e5e5e5;
	overflow: hidden;
}

.Number {
	text-align: right;
}

.Price {
	color: #900;
}
.Price::before {
	content: '¥';
	font-size: 1.2rem;
}
.Price::after {
	color: #7c7d80;
	content: '(税込)';
	font-size: 1rem;
}
.Price input {
	margin-left: .5em;
	margin-right: .5em;
	width: 80px;
}

.Alert {
	color: #f33;
}
input.Alert {
	border-color: #f33;
}

.Flow {
	display: none;
}

.OutOfStock {
	opacity: .3;
}

ol.Step {
	margin: 0;
	padding-left: 2em;
}
ol.Step > li {
	padding: 2em 0;
	position: relative;
}
ol.Step > li::after {
	border: 2px solid #e5e5e5;
	border-width: 0 2px 2px 0;
	content: '';
	height: 30px;
	left: 50%;
	margin-left: -2em;
	position: absolute;
	top: -10px;
	transform: translate(0, -50%) rotate(45deg);
	width: 30px;
}
ol.Step > li:first-child::after {
	border-width: 0;
}

/* Title */
.Title {
	font-size: 1.4rem;
	letter-spacing: normal;
	margin: 4em 0;
	text-transform: none;
}
.Title span {
	display: block;
	font-size: 2.6rem;
	margin: .2em 0;
}
.Title span.En {
	font-family: 'Bebas Neue', sans-serif;
	letter-spacing: .1em;
}
h1.Title ,
h2.Title {
	font-size: 1.6rem;
}
h1.Title span {
	font-size: 3.4rem;
}
h2.Title span {
	font-size: 3.2rem;
}
h1.Title span.En {
	font-size: 4rem;
}
h2.Title span.En {
	font-size: 3.6rem;
}

/* Light Block */
.LightBlock, .Overlay {
	transform: translate3d(0,0,0);
	width: 100%;
}
.LightBlock .Content {
	background: #fff;
	box-sizing: border-box;
	max-width: 980px;
	padding: 3em 4em;
}
.LightBlock img.Content {
	display: block;
	margin: 0 auto;
}
.LightBlock .Prev,
.LightBlock .Next,
.LightBlock .Hide {
	color: transparent;
}
.LightBlock .Prev::before,
.LightBlock .Next::before {
	display: block;
	position: absolute;
	content: '';
	top: 45%;
	left: 12px;
	width: 16px;
	height: 16px;
	border-width: 0 0 2px 2px;
	border-style: solid;
	border-color: #333;
	border-radius: 2px;
	transform: rotate(45deg);
}
.LightBlock .Next::before {
	border-width: 2px 2px 0 0;
}
.LightBlock .Hide::before,
.LightBlock .Hide::after {
	display: block;
	position: absolute;
	content: '';
	top: 24px;
	left: 12px;
	width: 24px;
	height: 2px;
	background-color: #333;
	border-radius: 2px;
}
.LightBlock .Hide::before {
	transform: rotate(45deg);
}
.LightBlock .Hide::after {
	transform: rotate(-45deg);
}
.LightBlock .SampleMessage {
	display: none;
}

@media (min-width: 480px) {
	.LightBlock {
		width: auto;
	}
	.LightBlock div.Content {
		max-width: 506px;
		border-radius: 3px;
	}
}

/* DayCounter
------------------------------ */
.DayCounter {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 0 4px rgba(0, 0, 0, .1);
	float: right;
	margin: 0 0 0 1em;
	overflow: visible;
	position: relative;
	text-align: center;
}
.DayCounter::before,
.DayCounter::after {
	background: #333;
	border-radius: 3px;
	box-shadow: 0 0 4px rgba(0, 0, 0, .1);
	content: "";
	height: 12px;
	position: absolute;
	top: -6px;
	width: 4px;
}
.DayCounter::before {
	left: 25%;
}
.DayCounter::after {
	right: 25%;
}
.DayCounter div {
	background: #666;
	border-radius: 12px 12px 0 0;
	color: #fff;
	font-weight: 500;
	padding: .5em 1em;
}
.DayCounter p {
	margin: 0;
	padding: .5em;
}
.DayCounter strong {
	font-weight: normal;
}
.DayCounter .Days {
	display: block;
	font-size: 2.6em;
	font-weight: 700;
	line-height: 1.2;
}

/* Layout
------------------------------ */
aside {
	background: #f8f8f8;
	padding: 5% 0;
}

section {
	padding: 2% 0 6%;
}

/* Wrap */
.Wrap {
	margin-left: auto;
	margin-right: auto;
	max-width: 1280px;
	padding: 0 5%;
}
@media (min-width: 1024px) {
	.Wrap { padding: 0 10%; }
}

/* Grid */
[class^="Grid"] {
	display: grid !important;
	gap: 2em 5%;
}
[class^="Grid"] > * {
  min-width: 0;
}
ul[class^="Grid"] {
	list-style: none;
	padding: 0;
}
form [class^="Grid"] {
	gap: 0 5%;
}
.GridCol2Sp {
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
	.GridCol1 {
		grid-template-columns: 1fr;
	}
	.GridCol2 {
		grid-template-columns: repeat(2, 1fr);
	}
	.GridCol3 {
		grid-template-columns: repeat(3, 1fr);
	}
	.GridCol4 {
		grid-template-columns: repeat(4, 1fr);
	}
	[class^="GridCol"].GridFlip > :nth-child(odd) {
		order: 2;
	}
	[class^="GridCol"].GridFlip > :nth-child(even) {
		order: 1;
	}
	.GridCenter {
		align-items: center;
	}
	.GridClear {
		grid-column: 1 / -1;
	}
}

/* Figure */
figure {
	margin: 0;
}
figure.Bleed {
	aspect-ratio: 4 / 3;
	margin-left: -6%;
	margin-right: -6%;
	overflow: hidden;
	position: relative;
}
figure.Bleed img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}
@media (min-width: 1024px) {
	figure.Bleed {
		aspect-ratio: 1 / 1;
		margin-left: -27%;
		margin-right: 0;
	}
	.GridFlip figure.Bleed {
		margin-left: 0;
		margin-right: -27%;
	}
}
@media (min-width: 1280px) {
	figure.Bleed {
		aspect-ratio: 4 / 3;
	}
}

/* Item and Option
------------------------------ */
.Item,
ul.Option {
	display: grid;
	gap: 40px 30px;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	list-style: none;
	margin: 2em 0;
	overflow: hidden;
	padding: 1em 0;
	text-align: center;
}
@media (min-width: 768px) {
	.Item,
	ul.Option {
		gap: 80px 30px;
	}
}
.Item a,
ul.Option a {
	display: block;
	text-decoration: none;
}
.Item a img,
.Option a img {
	transform: scale(.9);
	transition: transform 0.3s ease-in-out;
}
.Item a:hover img,
.Option a:hover img {
	transform: scale(1);
	transition: transform 0.3s ease-in-out;
}
.Item h3,
ul.Option h3 {
	font-size: 1.2rem;
	margin: .4em 0;
}
form .Option {
	gap: 0 2em;
}
form .Option li {
	position: static;
}

/* Ranking */
.Ranking {
	counter-reset: rank-counter;
}
.Ranking[class^="Grid"] h3,
.Ranking[class^="Grid"] data {
	font-size: 1.6rem;
}
.Ranking[class^="Grid"] div {
	text-align: left;
}
.Ranking.GridCol1 + .Ranking { counter-reset: rank-counter 1; }
.Ranking.GridCol2 + .Ranking { counter-reset: rank-counter 2; }
.Ranking.GridCol3 + .Ranking { counter-reset: rank-counter 3; }
.Ranking li {
	counter-increment: rank-counter;
}
.Ranking li a {
	padding-top: 30px;
	position: relative;
	display: block;
}
.Ranking.Item li a {
	padding-top: 10px;
}
.Ranking li a::before,
.Ranking li a::after {
	font-family: 'Bebas Neue', sans-serif;
	line-height: 1;
	position: absolute;
	z-index: 10;
}
.Ranking li a::before {
	content: "No.";
	font-size: 1rem;
	left: 1%;
	top: 1.1rem;
}
.Ranking li a::after {
	content: counter(rank-counter);
	font-size: 2.5rem;
	left: calc(1% + 1.2rem);
	top: 0;
}

.Ranking article.GridCol2::before {
	font-size: 2rem;
	top: 1.8rem;
}
.Ranking article.GridCol2::after {
	font-size: 4.5rem;
	left: calc(1% + 2.2rem);
}

/* Scroll */
.Item.Scroll,
.Option.Scroll {
	display: flex;
	overflow-x: auto;
	scrollbar-width: none;
	white-space: nowrap;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}
.Item.Scroll > li,
.Option.Scroll > li {
	flex: 0 0 160px;
	display: inline-block;
	white-space: normal;
	vertical-align: top;
	flex-shrink: 0;
}

/* Scroll Navigation Buttons
------------------------------ */
.Scroller {
	position: relative;
}
.Scroller .Prev,
.Scroller .Next {
	background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
	border: none;
	cursor: pointer;
	height: 100%;
	left: -1px;
	padding: 0;
	position: absolute;
	top: 0;
	transition: opacity 0.3s ease;
	width: 50px;
	z-index: 20;
}
.Scroller .Next {
	right: -1px;
	left: auto;
	transform: scaleX(-1);
}
.Scroller .Prev::before,
.Scroller .Next::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	width: 12px;
	height: 12px;
	border-width: 0 0 2px 2px;
	border-style: solid;
	border-color: #333;
	transform: translateY(-50%) rotate(45deg);
}

/* Taxonomy
------------------------------ */
.Taxonomy {
	gap: 8px;
	list-style: none;
	margin: 4rem 0;
	padding: 0;
}
.Taxonomy li a {
	background: #fff;
	border: 1px solid #e5e5e5;
	color: #333;
	font-size: 1.2rem;
	transition: border-color .3s ease;
}
.Taxonomy li a:hover {
	border-color: #999;
}

/* Category */
.Category .Taxonomy {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.Category .Taxonomy li a {
	align-items: center;
	display: flex;
	height: 60px;
}
.Category .Taxonomy li a img {
	margin: 0 5px;
	width: 30px;
}
[class^="Grid"] .Category .Taxonomy {
	grid-template-columns: repeat(2, 1fr);
}

/* Scene, Tag */
header nav.Tag,
aside nav.Tag {
	margin-top: 10%;
}
.Tag .Taxonomy {
	display: flex;
	flex-wrap: wrap;
}
.Tag .Taxonomy li a {
	border-radius: 9999px;
	display: inline-block;
	line-height: 1.2;
	padding: 6px 14px;
	white-space: nowrap;
}
.Tag .Taxonomy li a:hover {
	background: #eee;
}

/* Taxonomy @media */
@media (min-width: 768px) {
	.Category .Taxonomy {
		gap: 15px;
	}
}
@media (min-width: 1024px) {
	.Category .Taxonomy {
		grid-template-columns: repeat(4, 1fr);
	}
	.Category .Taxonomy li a img {
		margin: 0 10px;
		width: 50px;
	}
}
@media (min-width: 1280px) {
	body > .Wrap aside .Category .Taxonomy {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* Header
------------------------------ */
header {
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 30;
}
header::after {
	background: #fff;
	box-shadow: 0 0 4px rgba(0, 0, 0, .1);
	content: "";
	height: 60px;
	left: 0;
	max-width: 1440px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: -1;
}
header > .Wrap {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	gap: 5px;
	height: 60px;
	justify-content: space-between;
	max-width: 1635px;
	position: relative;
	width: 100%;
}

/* header ~ *, */
header.MenuOpen ~ *,
header.SearchOpen ~ * {
	transform: translateX(0%);
	transition: transform 0.4s ease-in-out;
}
header.MenuOpen ~ * {
	transform: translateX(100%);
}
header.SearchOpen ~ * {
	transform: translateX(-100%);
}

/* Logo */
header .Logo {
	background-image: url(../image/logo-m.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	height: 0;
	left: 50%;
	margin: 0 auto;
	order: 2;
	overflow-y: hidden;
	padding: 30px 0 0;
	position: absolute;
	transform: translateX(-50%);
	width: 90px;
}

/* Menu */
header .MenuButton {
	background: transparent;
	border: none;
	cursor: pointer;
	height: 40px;
	margin-left: -10px;
	order: 1;
	padding: 0;
	position: relative;
	width: 40px;
}
header .MenuButton span {
	margin-left: 9px;
}
header .MenuButton span,
header .MenuButton span::before,
header .MenuButton span::after {
	background: #333;
	border-radius: 2px;
	content: "";
	display: block;
	height: 2px;
	margin-top: -1px;
	position: absolute;
	top: 50%;
	transition: .3s .3s, transform .3s;
	width: 22px;
}
header .MenuButton span::before {
	top: -6px;
}
header .MenuButton span::after  {
	top: 8px;
}

header.MenuOpen .MenuButton {
	z-index: 30;
}
header.MenuOpen .MenuButton span {
	transition: .1s;
	background-color: transparent
}
header.MenuOpen .MenuButton span::before,
header.MenuOpen .MenuButton span::after {
	top: 1px;
	transition: .3s, transform .3s .3s
}
header.MenuOpen .MenuButton span::before {
	transform: rotate(45deg)
}
header.MenuOpen .MenuButton span::after {
	transform: rotate(-45deg)
}

header .MenuContent {
	background: #f1f1f1;
	box-sizing: border-box;
	height: 100vh;
	height: 100dvh;
	left: 0;
	opacity: 0;
	overflow-y: auto;
	padding: 100px 0;
	position: fixed;
	top: 0;
	transform: translateX(-100%);
	transition: opacity 0.8s ease-in-out, transform 0.4s ease-in-out;
	width: 100%;
	z-index: 20;
}
header .SearchContent dt {
	width: auto;
}

header.MenuOpen .MenuContent {
	opacity: 1;
	transform: translateX(0);
	transition: opacity 0.8s ease-in-out, transform 0.4s ease-in-out;
}

/* Search */
header .SearchButton {
	background: transparent;
	border: none;
	color: #333;
	cursor: pointer;
	height: 40px;
	margin: 0 0 0 auto;
	order: 3;
	padding: 0;
	position: relative;
	width: 40px;
}
header .SearchButton::before,
header .SearchButton::after {
	content: '';
	display: block;
	position: absolute;
	transition: all 0.4s ease-in-out;
}
header .SearchButton::before {
	border: 2px solid currentColor;
	border-radius: 50%;
	height: 14px;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 14px;
}
header .SearchButton::after {
	background-color: currentColor;
	bottom: 9px;
	height: 6px;
	right: 13px;
	transform: rotate(-45deg);
	width: 2px;
}

header.SearchOpen .SearchButton {
	z-index: 30;
}
header.SearchOpen .SearchButton::before,
header.SearchOpen .SearchButton::after {
	border-radius: 1px;
	border: none;
	background-color: currentColor;
	height: 2px;
	left: 50%;
	top: 50%;
	width: 22px;
}
header.SearchOpen .SearchButton::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
header.SearchOpen .SearchButton::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

header .SearchContent {
	background: #fff;
	box-sizing: border-box;
	height: 100dvh;
	height: 100vh;
	left: 0;
	opacity: 0;
	overflow-y: auto;
	padding: 100px 5%;
	position: fixed;
	top: 0;
	transform: translateX(100%);
	transition: opacity 0.8s ease-in-out, transform 0.4s ease-in-out;
	width: 100%;
	z-index: 20;
}
header .SearchContent form {
	background: #fafafa;
	border: 1px solid #e5e5e5;
	left: 50%;
	max-width: 900px;
	padding: 10% 5%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
}
header .SearchContent form p {
	margin-bottom: 0;
}
header.SearchOpen .SearchContent {
	background: #f1f1f1;
	opacity: 1;
	transform: translateX(0);
	transition: opacity 0.8s ease-in-out, transform 0.4s ease-in-out;
}
@media (max-width: 480px) {
	header .SearchContent form dd {
		margin-left: 0;
		margin-right: 0;;
	}
}

/* Cart */
header .CartButton {
	height: 40px;
	order: 4;
	overflow: hidden;
	position: relative;
	width: 40px;
}
header .CartButton a {
	align-items: center;
	color: #333;
	display: flex;
	height: 100%;
	justify-content: center;
}
header .CartButton a span {
	background: #333;
	border-radius: 50%;
	color: #fff;
	display: block;
	font-size: .9rem;
	height: 13px;
	left: 30px;
	letter-spacing: normal;
	line-height: 13px;
	position: absolute;
	text-align: center;
	top: 6px;
	transform: translateX(-50%);
	width: 13px;
}

/* Header @media */
@media (min-width: 768px) {
	header .SearchContent form {
		padding-right: 4%;
		padding-left: 0;
	}
}
@media (min-width: 1024px) {
	header {
		gap: 10px 30px;
		height: 80px;
		top: 20px;
		transition: all 0.4s ease-in-out;
	}
	header > .Wrap {
		gap: 20px;
		padding-top: 20px;
	}
	header::after {
		border-radius: 3em;
		height: 80px;
		left: 50%;
		top: 20px;
		transform: translateX(-50%);
		transition: all 0.4s ease-in-out;
		width: 90%;
	}
	.Scroll header,
	.Scroll header::after {
		top: 0;
	}
	.Scroll header::after {
		border-radius: 0;
		max-width: 100%;
		width: 100%;
	}
	header .CartButton {
		order: 3;
	}
	header .Logo {
		background-image: url(../image/logo-p.png);
		margin: 0;
		order: 1;
		position: static;
		transform: translateX(0);
	}
	header .MenuButton {
		order: 4;
		margin-right: -10px;
		margin-left: 0;
	}
	header .MenuContent {
		padding-top: 10%;
		transform: translateX(100%);
	}
	header.MenuOpen ~ * {
		transform: translateX(-100%);
	}
	header .SearchButton {
		order: 2;
	}
}
@media (min-width: 1440px) {
	header::after {
		width: 90%;
	}
}

/* Breadcrumbs and Flow
------------------------------ */
.Breadcrumbs,
nav.Flow {
	box-sizing: border-box;
	display: block;
	height: 45px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1635px;
	overflow-x: auto;
	padding: 1em 5%;
	position: relative;
	scrollbar-width: none;
	z-index: 20;
	-webkit-overflow-scrolling: touch;
			-ms-overflow-style: none;
}
.Breadcrumbs:has(+ main .Panel figure),
.Breadcrumbs:has(+ main .Panel figure) a {
	color: #fff;
	text-shadow: 0 0 .4em rgba(0, 0, 0,.4);
}
.Breadcrumbs ol,
.Flow ol {
	display: flex;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
	white-space: nowrap;
	flex-wrap: nowrap;
	width: max-content;
}
.Breadcrumbs li,
.Flow li {
	align-items: center;
	display: flex;
	font-size: 1.1rem;
}
.Breadcrumbs li + li::before,
.Flow li + li::before {
	content: ">";
	font-weight: normal;
	margin-right: 10px;
}
.Flow [aria-current="page"] {
	font-weight: bold;
}
@media only screen and (min-width: 1024px) {
	.Breadcrumbs,
	nav.Flow {
		padding-right: 10%;
		padding-left: 10%;
	}
}

/* Main
------------------------------ */
main article.Wrap {
	overflow: hidden;
	padding-bottom: 5%;
}

/* Panel */
.Panel {
	margin-top: -105px;
	padding: 0;
}
.Panel figure {
	height: 100vh;
	height: 100svh;
	min-height: 600px;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-align: left;
	transition: all .4s ease-in-out;
	width: 100%;
	z-index: 1;
}
.Panel figure::after {
	animation: panelAfter 6s;
	background: rgba(0, 0, 0, .4);
	content: "";
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
}
@keyframes panelAfter {
	  0% { background: rgba(0, 0, 0, 1) }
	100% { background: rgba(0, 0, 0,.4) }
}
.Panel figure figcaption {
	box-sizing: border-box;
	color: #fff;
	display: block;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 5em;
	left: 50%;
	line-height: 1em;
	max-width: 1635px;
	padding: 0 5%;
	position: absolute;
	top: 55%;
	text-shadow: 0 0 .2em rgba(0, 0, 0,.4);
	transform: translate(-50%, -50%) scale(1);
	width: 100%;
}
.Panel figure figcaption span {
	display: block;
	letter-spacing: .1em;
}
.Panel figure figcaption i {
	display: block;
	font-style: normal;
	font-size: 1.4rem;
	letter-spacing: .1em;
}
.Panel figure img {
	animation: panelImageSp 6s forwards;
	display: block;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
	will-change: transform;
	z-index: -3;
}
@keyframes panelImageSp {
	  0% { transform: scale(1.4); }
	100% { transform: scale(1); }
}
@media (min-width: 1024px) {
	.Panel figure {
		height: calc(100vh - 200px);
		height: calc(100svh - 200px);
		margin-top: -145px;
	}
	.Panel figure figcaption {
		padding: 0 10%;
	}
	.Panel figure figcaption span {
		display: inline-block;
		margin-right: .2em;
	}
}

/* Tab */
.Tab {
	height: 70px;
	position: relative;
	z-index: 20;
}
.Tab {
	align-items: center;
	display: flex;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}
.Tab::after {
	bottom: 0;
	box-shadow: inset 0 -2px 4px rgba(0, 0, 0, .06);
	content: "";
	height: 10px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 100dvw;
	z-index: -1;
}
.Tab li {
	flex: 1;
	text-align: center;
}
.Tab li a {
	align-items: center;
	border-radius: 3em 3em 0 0;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.Tab li a.Current {
	background: #fff;
	box-shadow: 0 -2px 4px rgba(0, 0, 0, .06);
	padding: 25px 5px;
	transition: all .4s ease-in-out;
}
.Tab a:has(svg) {
	font-size: .8em;
}
.Tab a.Current:has(svg) {
	padding: 15px 5px;
}

main:has(.Panel figure) .Tab {
	margin-top: -70px;
}
main:has(.Panel figure) .Tab a {
	color: #fff;
	text-shadow: 0 0 .4em rgba(0, 0, 0,.8);
}
main:has(.Panel figure) .Tab svg {
	filter: drop-shadow(0 0 .2em rgba(0, 0, 0, .4));
}
main:has(.Panel figure) .Tab li a.Current {
	color: #333;
	text-shadow: none;
}
main:has(.Panel figure) .Tab li a.Current svg {
	filter: none;
}

/* Review
------------------------------ */
.Review {
	align-items: start;
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr;
	list-style: none;
	padding: 0;
}
.Review > li {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 25px 25px 20px;
	position: relative;
}
.Review h3 {
	font-size: 1.8rem;
	margin: 0;
}
.Review p {
	margin: 1em 0 0;
}
.ReviewBody {
	box-sizing: border-box;
	max-height: 200px;
	overflow: hidden;
	padding-bottom: 2em;
	position: relative;
	transition: max-height 1s ease-out;
}
.ReviewBody.ReviewOpen {
	max-height: 1000px;
}
.ReviewBody.ReviewOpen::after {
	display: none;
}
.ReviewBody.ReviewTruncated::after {
	background: linear-gradient(to top, rgba(248, 248, 248, 1), rgba(248, 248, 248, 0));
	bottom: 0;
	content: "";
	height: 30px;
	left: 0;
	position: absolute;
	right: 0;
}
.ReviewImage {
	display: grid;
	float: right;
	gap: 2px;
	grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
	list-style: none;
	margin: 1em 0 1em 1em;
	max-width: 185px;
	padding: 0;
}
.ReviewButton {
	all: unset;
	cursor: pointer;
	font-weight: 500;
	padding-left: 15px;
	position: absolute;
	right: 25px;
	z-index: 1;
}
.ReviewButton::before {
	content: "+";
	font-size: 1.3em;
	left: 0;
	line-height: 1.1;
	position: absolute;
}
.ReviewBody.ReviewOpen .ReviewButton::before { 
	content: "−";
}
.Review .Taxonomy {
	margin: 0;
}
@media (min-width: 768px) {
	.Review {
		grid-template-columns: repeat(2, 1fr);
	}
	.Review > li {
		min-height: 230px;
	}
	.ReviewBody {
		min-height: 200px;
	}
}

/* Faq
------------------------------ */
ul.Faq,
dl.Faq {
	display: block;
	padding: 0;
}
h1.Faq,
ul.Faq > li,
dl.Faq > dt,
dl.Faq > dd {
	list-style: none;
	margin-left: 0;
	padding: 1em 0 1em 4.5rem; 
	position: relative;
	text-align: left;
}
h1.Faq::before,
ul.Faq > li::before,
dl.Faq > dt::before,
dl.Faq > dd::before {
	background: #333;
	border-radius: 50%;
	border: 1px solid #000;
	content: "Q";
	color: #fff;
	display: inline-block;
	font-size: 1.6rem;
	height: 34px;
	left: 0;
	letter-spacing: 0;
	line-height: 34px;
	position: absolute;
	text-align: center;
	top: 1.5em;
	transform: translateY(-50%);
	width: 34px;
}
h1.Faq::before {
	top: 2.6em;
}
ul.Faq > li.A::before,
dl.Faq > dd::before {
	background: #f8f8f8;
	border-color: #e5e5e5;
	color: #333;
	content: "A";
}
ul.Faq > li > :first-child,
dl.Faq > dd > :first-child {
	margin-top: 0;
}

/* Footer
------------------------------ */
footer {
	position: relative;
}
footer .Guide {
	background: #f1f1f1;
}
footer .Contact {
	background: #333;
	color: #fff;
	padding: 10% 0;
	text-align: center;
}
footer .Contact a {
	color: #fff;
}
footer .Contact p {
	margin: 1em 0;
}
footer a[href="/support/profile.html"] {
	font-size: 1rem;
}
.Copyright {
	font-size: 1rem;
	letter-spacing: .08em;
}
p.Copyright {
	text-align: center;
}
@media (min-width: 1024px) {
	footer .Contact {
		padding: 3% 0;
	}
	footer .Address {
		font-size: 1.4em;
	}
}

/* Social  */
ul.Social {
	bottom: 0;
	display: grid;
	gap: 0;
	grid-auto-flow: column;
	left: 50%;
	list-style-type: none;
	padding: 0 8px 0 0;
	position: relative;
	transform: translate(-50%, 0%);
	width: fit-content;
}
.Social li {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	cursor: pointer;
	height: 44px;
	position: relative;
	transition: transform 0.2s ease, opacity 0.2s ease;
	width: 44px;
}
.Social li a {
	color: #333;
	display: block;
	height: 100%;
	width: 100%;
}
.Twitter {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}
.Facebook {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}
.Line {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19.365 9.863c.349 0 .63.285.63.631 0 .345-.281.63-.63.63H17.61v1.125h1.755c.349 0 .63.283.63.63 0 .344-.281.629-.63.629h-2.386c-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63h2.386c.346 0 .627.285.627.63 0 .349-.281.63-.63.63H17.61v1.125h1.755zm-3.855 3.016c0 .27-.174.51-.432.596-.064.021-.133.031-.199.031-.211 0-.391-.09-.51-.25l-2.443-3.317v2.94c0 .344-.279.629-.631.629-.346 0-.626-.285-.626-.629V8.108c0-.27.173-.51.43-.595.06-.023.136-.033.194-.033.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.771zm-5.741 0c0 .344-.282.629-.631.629-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.771zm-2.466.629H4.917c-.345 0-.63-.285-.63-.629V8.108c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.141h1.756c.348 0 .629.283.629.63 0 .344-.282.629-.629.629M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314'/%3E%3C/svg%3E");
}
.Instagram {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
}
.Social .Top {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16V8M8 12l4-4 4 4'/%3E%3C/svg%3E");
}
.Social .Top a {
	color: transparent;
	font-size: 0;
	line-height: 0;
}
.Social .Share {
	background: #ddd;
	border-radius: 8px;
	display: none;
	margin-top: -77px;
	margin-left: -40px;
	padding: 10px;
	position: relative;
	text-align: center;
	width: 110px;
}
.Social .Share::after {
	background: #ddd;
	bottom: -6px;
	content: '';
	display: block;
	height: 12px;
	left: 55px;
	position: absolute;
	transform: rotate(45deg);
	width: 12px;
}
.Social .Facebook .Share {
	margin-top: -50px;
}

/* Country */
.Country {
	display: flex;
	flex-direction: column-reverse;
	list-style: none;
	margin: 3em auto 1em;
	padding: 0;
	position: relative;
	width: 150px;
}
.Country li:not(:first-child) {
	display: none;
}
.Country:hover li {
	display: block;
}
.Country:hover li:not(:last-child) {
	background-color: #3a3a3a;
	bottom: 100%;
	position: absolute;
	width: 100%;
}
.Country:hover li:nth-last-child(2) {
	bottom: 100%;
}
.Country:hover li:nth-last-child(3) {
	bottom: 200%;
}
.Country:hover li:nth-last-child(4) {
	bottom: 300%;
}
.Country a {
	color: #fff;
	display: block;
	padding: 8px 12px;
	text-decoration: none;
	transition: background-color 0.2s;
}
.Country a:hover {
	background-color: #4a4a4a;
}
.Country .Current {
	background-color: #3a3a3a;
	font-weight: bold;
}

/* Old 2-U Style
------------------------------ */
@media only screen and (min-width: 539px) {
	div.Figure  { float: right; max-width: 50%; margin-left: 2em; }
	span.Figure { float: left;  max-width: 50%; margin-right: 2em; display: inline-block; }
	.Column { overflow: hidden; margin: 0 -8px; }
	.Column2 { float: left; box-sizing: border-box; width: 50%;   padding: 8px; }
	.Column3 { float: left; box-sizing: border-box; width: 33.3%; padding: 8px;}
	.Column2:nth-child(2n+1), .Column3:nth-child(3n+1) { clear: both； }
}
@keyframes Rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }