:root {
	--color-base: hsl(0, 0%, 100%);
	--color-base-dark: hsl(0, 0%, 98%);
	--color-base-dark2: hsl(0, 0%, 96%);
	--color-main: hsl(15, 7%, 22%);
	--color-main-light: hsl(48, 6%, 34%);
	--color-main-dark: hsl(13, 13%, 14%);
	--color-main-thin: hsl(15, 8%, 81%);
	--color-main-thin2: hsl(12, 15%, 94%);
	--color-sub: hsl(64, 90%, 51%);
	--color-sub-dark: hsl(64, 90%, 30%);
	--color-sub-light: hsl(64, 100%, 69%);
	--color-sub-thin: hsl(72, 31%, 94%);
	--color-accent: hsl(91, 90%, 51%);
	--color-active: var(--color-sub);
	--color-active-dark: var(--color-sub-dark);
	--color-active-light: var(--color-sub-light);
	--color-active-thin: var(--color-sub-thin);
	--color-go: hsl(91, 90%, 51%);
	--color-go-light: hsl(91, 100%, 83%);
	--color-go-dark: hsl(91, 64%, 39%);
	--color-disabled: hsl(0, 0%, 95%);
	--color-disabled-dark: hsl(0, 0%, 70%);
	--color-stop: hsl(0, 90%, 60%);
	--color-stop-light: hsl(0, 90%, 80%);
	--color-stop-dark: hsl(0, 40%, 30%);
	--color-text: hsl(15, 7%, 22%);
	--color-text-light: hsl(15, 7%, 40%);
	--color-text-light2: hsl(15, 7%, 80%);
	--color-text-alpha: hsla(15, 7%, 22%, 0.8);
	--color-text-alpha2: hsla(15, 7%, 22%, 0.2);
	--color-new: hsl(194, 90%, 50%);
	--color-pre-order: hsl(160, 90%, 50%);
	--color-star-active: hsla(50, 100%, 50%, 1);
	
	--font-default: "Avenir Next", Verdana, "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
	--font-theme: Miso, sans-serif;
	--font-narrow: "Roboto Condensed Local", "Roboto Condensed", sans-serif;
	
	--box-shadow-normal: 0 4px 12px 0 hsla(0, 0%, 0%, 0.2);
	--box-shadow-normal-inset: inset 0 4px 12px 0 hsla(0, 0%, 0%, 0.1);
	--box-shadow-near: 0 2px 5px 0 hsla(0, 0%, 0%, 0.2);
	--box-shadow-near-inset: inset 0 2px 5px 0 hsla(0, 0%, 0%, 0.15);
	--text-shadow-normal: 2px 2px 2px hsla(0, 0%, 0%, 0.1);
	--text-shadow-near: 1px 1px 0px hsla(0, 0%, 0%, 0.1);
	--text-shadow-glow: 0 0 10px hsl(200, 100%, 85%);
	--text-shadow-border: 0 2px 0 var(--color-base), 0 -2px 0 var(--color-base), 2px 0 0 var(--color-base), -2px 0 0 var(--color-base), 2px 2px 0 var(--color-base), -2px -2px 0 var(--color-base), 2px -2px 0 var(--color-base), -2px 2px 0 var(--color-base);
	
	--backdrop-filter-normal: blur(6px);
	
	--gradient-slash: linear-gradient(-45deg, var(--color-base-dark) 20%, var(--color-base-dark2) 20% 25%, var(--color-base-dark) 25% 70%, var(--color-base-dark2) 70% 75%, var(--color-base-dark) 75%);
	--gradient-slash-invert: linear-gradient(-45deg, var(--color-base-dark2) 20%, var(--color-base-dark) 20% 25%, var(--color-base-dark2) 25% 70%, var(--color-base-dark) 70% 75%, var(--color-base-dark2) 75%);
	--gradient-slash-bold: linear-gradient(-45deg, var(--color-base-dark) 20%, var(--color-base-dark2) 20% 30%, var(--color-base-dark) 30% 70%, var(--color-base-dark2) 70% 80%, var(--color-base-dark) 80%);
	
	--aspect-ratio-thumbnail: 0.704;
	--height-thumbnail: 240px;
	--height-thumbnail-other-site: 200px;
	--height-drawer: calc(var(--height-thumbnail) + 2rem);
}

@font-face {
	font-family: "Miso";
	src: url(/media/fonts/miso.otf) format("opentype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Miso";
	src: url(/media/fonts/miso-bold.otf) format("opentype");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: "Roboto Condensed Local";
	src: local("Roboto Condensed");
}

* {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 5dvh;
}

body {
	font-family: var(--font-default);
	background: var(--gradient-slash);
	background-size: 20px 20px;
	overflow-x: hidden;
	color: var(--color-main);
}

::selection {
	background-color: hsl(64, 90%, 51%);
	color: hsl(15, 7%, 22%);
}
::-moz-selection {
	background-color: hsl(64, 90%, 51%);
	color: hsl(15, 7%, 22%);
}

img {
	border: 0;
}

a {
	color: var(--color-main);
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
}
a:hover {
	color: var(--color-main-light);
	text-decoration: none;
}

input, textarea, button {
	outline-style: none;
	font-family: var(--font-default);
}

body, input, select, textarea, button {
	font-size: 1rem;
}

dialog {
	margin: auto;
	border-style: none;
	background-color: transparent;
	text-align: center;
	overflow: visible;
	opacity: 0;
	transition: 
	opacity 0.4s ease-out,
	display 0.4s ease-out allow-discrete,
	overlay 0.4s ease-out allow-discrete;
}
dialog:focus {
	outline: none;
}
dialog[open] {
	opacity: 1;
}
@starting-style {
	dialog[open] {
		opacity: 0;
	}
}
dialog::backdrop {
	background-color: black;
	opacity: 0;
	transition: 
	opacity 0.4s ease-out,
	display 0.4s ease-out allow-discrete,
	overlay 0.4s ease-out allow-discrete;
}
dialog[open]::backdrop {
	opacity: 0.6;
}
@starting-style {
	dialog[open]::backdrop {
		opacity: 0;
	}
}

.inline_link {
	display: inline-block;
	padding: 0 5px;
	background: linear-gradient(transparent 60%, var(--color-sub) 60%);
	font-style: italic;
	cursor: pointer;
}
.inline_link:hover {
	background: linear-gradient(transparent 60%, var(--color-accent) 60%);
}
.inline_link.disabled {
	pointer-events: none;
	filter: grayscale(1);
	opacity: 0.4;
}

input[type="radio"]+label[for] {
	cursor: pointer;
}
input[type="radio"]:checked + label {
	text-decoration: underline;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration,
input[type="search"]::-webkit-calendar-picker-indicator {
	-webkit-appearance: none;
	display: none;
	visibility: hidden;
}
input::placeholder,
textarea::placeholder {
	color: var(--color-text);
	opacity: 0.2;
}

hr {
	border-style: none;
	border-top: 1px dashed #ccc;
}

.site_cursor {
	display: inline-block;
	position: fixed;
	pointer-events: none;
	border-radius: 100px;
	border: 4px solid #fff;
	width: 48px;
	height: 48px;
	z-index: 99999;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2), 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
	background-image: url('/media/site_cursor.svg');
	transition-property: transform, opacity;
	transition-duration: 0.2s;
	transition-timing-function: ease-in;
}
.site_cursor.hide {
	transform: rotateY(720deg);
	opacity: 0;
}

.advanced_radio_input {
	font-size: 1rem;
	display: flex;
	border-collapse: collapse;
	table-layout: fixed;
	border-radius: 0.5rem;
	margin: 5px;
	color: var(--color-text);
	background-color: var(--color-base);
	box-shadow: var(--box-shadow-near);
	text-shadow: var(--text-shadow-normal);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.advanced_radio_input input[type="radio"] {
	display: none;
}
.advanced_radio_input input[type="radio"] + label {
	position: relative;
	padding: 4px 20px;
	flex-grow: 1;
	text-align: center;
	text-decoration: none;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	white-space: nowrap;
}
.advanced_radio_input input[type="radio"] + label:hover {
	background-color: var(--color-active);
	color: var(--color-text);
}
.advanced_radio_input input[type="radio"] + label[for] {
	cursor: pointer;
}
.advanced_radio_input input[type="radio"]:checked + label {
	background-color: var(--color-text);
	color: var(--color-base);
	pointer-events: none;
}
.advanced_radio_input input[type="radio"] + label:first-of-type {
	border-radius: 0.5rem 0 0 0.5rem;
	border-style: none;
}
.advanced_radio_input input[type="radio"] + label:last-of-type {
	border-radius: 0 0.5rem 0.5rem 0;
}
.advanced_radio_input input[type="radio"] + label .item_count {
	display: inline-block;
	position: absolute;
	right: 2px;
	top: -8px;
	vertical-align: baseline;
	border-radius: 50px;
	padding: 0 5px;
	color: var(--color-text);
	background-color: var(--color-active);
	font-size: 0.6rem;
	font-weight: bold;
	white-space: nowrap;
	box-shadow: var(--box-shadow-near);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}

.advanced_radio_input.vertical {
	flex-wrap: wrap;
	overflow: hidden;
	border-radius: 0.5rem;
}
.advanced_radio_input.vertical input[type="radio"] + label {
	display: block;
	border-radius: 0;
	text-align: center;
	border-style: none;
}

.advanced_checkbox_input {
	display: inline-block;
}

.advanced_checkbox_input input[type="checkbox"] {
	display: none;
}

.advanced_checkbox_input input[type="checkbox"] + label,
.advanced_checkbox_input label:has(input[type="checkbox"]) {
	display: inline-block;
	box-sizing: border-box;
	margin: 2px 5px;
	border-radius: 50px;
	padding: 4px 10px;
	font-size: 1em;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	background-color: var(--color-base);
	color: var(--color-text);
	box-shadow: var(--box-shadow-near);
	text-shadow: var(--text-shadow-normal);
	cursor: pointer;
}

.advanced_checkbox_input input[type="checkbox"] + label:hover,
.advanced_checkbox_input label:has(input[type="checkbox"]):hover {
	background-color: var(--color-active-thin);
	color: var(--color-text);
}

.advanced_checkbox_input input[type="checkbox"]:checked + label,
.advanced_checkbox_input label:has(input[type="checkbox"]:checked) {
	box-shadow: var(--box-shadow-near-inset);
	background-color: var(--color-text);
	color: var(--color-base);
}

.advanced_checkbox_input input[type="checkbox"]:checked + label:hover,
.advanced_checkbox_input label:has(input[type="checkbox"]:checked):hover {
	background-color: var(--color-text-light);
}

span.bold { font-weight: bold; }
span.nobr { white-space: nowrap; }
span.large  { font-size: 15px; }
span.small  { font-size: 12px; }
span.nowrap { white-space: nowrap; }

div.full_width       { width: 100%;        }
div.text_centering   { text-align: center; }
div.text_align_right { text-align: right;  }

div.clear_block {
	clear: both;
	width: 0;
	height: 0;
}

div.inline_block {
	display: inline-block;
}

div.margin_10px { margin: 10px; }

div.padding_5px  { padding:  5px; }
div.padding_10px { padding: 10px; }

div.vspacer_10px { height: 10px; width: 0; }

div.block_500 { width: 500px; }

div.centering_block_500 { margin: 5px auto 5px auto; width: 500px; }

div.message_block_full { background-color: var(--color-sub-thin); }
div.message_block_500  { background-color: var(--color-sub-thin); width: 475px; }
div.message_block_600  { background-color: var(--color-sub-thin); width: 575px; }

div.border_block_full { border: solid 1px #888888; }

div.border_block_full, div.message_block_full,
div.message_block_500,
div.message_block_600 {
	margin: 1rem auto;
	padding: 1rem 2rem;
}

table.message_block_full {
	width: 100%;
	font-size: 120%;
	margin: 5px auto;
	padding: 6px 12px;
}
table.message_block_full tr td {
	padding: 4px 10px;
}
table.message_block_full tr td:first-child {
	color: hsla(120, 60%, 50%, 1);
	border-bottom: 3px solid hsla(120, 60%, 50%, 1);
	width: 30%;
	font-weight: bold;
}
table.message_block_full tr td:nth-child(2) {
	border-bottom: 1px solid var(--color-main);
}
table.message_block_full tr td:first-child {
	text-align: right;
	white-space: nowrap;
}

/*****************************************************************************/
/* <h*> headers                                                              */
/*****************************************************************************/
h2.section_header {
	margin: 5rem 0 2rem 0;
	padding: 0 2rem;
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--color-main);
	text-align: center;
	background: linear-gradient(transparent 45%, var(--color-sub) 45%, var(--color-sub) 55%, transparent 55%);
	background-repeat: repeat-y;
	background-size: auto 2rem;
	line-height: 2rem;
}

h2.section_header a[href] {
	display: inline-block;
	padding: 0 5px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	background: linear-gradient(transparent 60%, var(--color-sub) 60%);
	font-style: italic;
}
h2.section_header a[href]:hover {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	background: linear-gradient(transparent 60%, var(--color-accent) 60%);
}

h3.subsection_header {
	font-size: 19px;
	font-weight: bold;
	color: var(--color-main);
	margin: 15px 0 10px 0;
	text-align: center;
	background: linear-gradient(transparent 48%, var(--color-sub) 48%, var(--color-sub) 52%, transparent 52%);
}

/*****************************************************************************/
/* lists                                                                     */
/*****************************************************************************/
ol.base_aligned_list    { margin: 5px 0 5px 19px; }
ol.base_aligned_list li { margin: 0 0 5px 0; }

ul.base_aligned_list    { margin: 5px 0 5px 14px; }
ul.base_aligned_list li { margin: 0 0 5px 0; }

dl.base_aligned_list    { margin: 5px 0 5px 0; }
dl.base_aligned_list dt {
	font-weight: bold;
	margin: 4rem 1rem 2rem 1rem;
	color: var(--color-text);
	font-size: 1.4rem;
}
dl.base_aligned_list dd {
	margin: 0 0 0.5rem 0;
	padding-left: 2rem;
}

dl.base_aligned_list dd a {
	display: inline-block;
	padding: 0 5px;
	background: linear-gradient(transparent 60%, var(--color-sub) 60%);
	font-style: italic;
}

dl.base_aligned_list dd a:hover {
	background: linear-gradient(transparent 60%, var(--color-accent) 60%);
}

/* for django form errors */
span.errorlist  { color: #ff0000; }
ul.errorlist    { color: #ff0000; }
ul.errorlist li { list-style-type: none; }

/*****************************************************************************/
/* tables                                                                    */
/*****************************************************************************/
.standard_table {
	border-top: none;
	border-spacing: 0px;
	border-collapse: collapse;
	margin: 5px 0px 5px 0px;
	font-size: 0.8rem;
	background-color: rgba(255, 255, 255, 0.6);
}

.standard_table td, .standard_table th {
	border-top: none;
	padding: 1rem;
}
.standard_table th {
	border-bottom: 2px solid var(--color-main);
}
.standard_table td:last-of-type,
.standard_table th:last-of-type {
	border-right-width: 0;
}
.standard_table th {
	font-weight: bold;
	text-align: center;
	background-color: var(--color-base);
	color: var(--color-text);
	text-shadow: var(--text-shadow-normal);
}

.standard_table tr,
.standard_table td {
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
}
.standard_table tr:nth-of-type(2n) {
	background-color: rgba(128, 128, 128, 0.12);
}
.standard_table tr:nth-of-type(2n+1) {
	background-color: rgba(128, 128, 128, 0.06);
}
.standard_table tr:hover {
	background-color: rgba(128, 128, 128, 0.18);
}
.standard_table a,
.admin_table a {
	color: var(--color-text);
	text-shadow: none;
	text-decoration-line: underline;
	text-decoration-color: var(--color-text-alpha2);
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
}
.standard_table a:hover,
.admin_table a:hover {
	text-decoration-line: underline;
	text-decoration-color: var(--color-active);
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
}
.standard_table .button_default,
.standard_table .button_go,
.standard_table .button_disabled,
.standard_table .button_stop,
.standard_table .button_delete,
.standard_table .button_admin,
.admin_table .button_default,
.admin_table .button_go,
.admin_table .button_disabled,
.admin_table .button_stop,
.admin_table .button_delete,
.admin_table .button_admin {
	white-space: nowrap;
	margin: 0.2rem;
	border-radius: 2px;
	padding: 0.2rem 0.8rem;
	font-size: 0.8rem;
	text-decoration: none;
}
.standard_table .button_default:hover,
.standard_table .button_go:hover,
.standard_table .button_disabled:hover,
.standard_table .button_stop:hover,
.standard_table .button_delete:hover,
.standard_table .button_admin:hover,
.admin_table .button_default:hover,
.admin_table .button_go:hover,
.admin_table .button_disabled:hover,
.admin_table .button_stop:hover,
.admin_table .button_delete:hover,
.admin_table .button_admin:hover {
	text-decoration: none;
}

table.full_width   { width: 100%; }
table.padding_5px  { padding: 5px; }
table.padding_10px { padding: 10px; }

td.strong       { font-weight: bold;   }
td.align_right  { text-align: right;   }
td.align_left   { text-align: left;    }
td.align_center { text-align: center;  }
td.nowrap       { white-space: nowrap; }
td.justify      { text-align: justify; text-justify: newspaper; }
td.padding_5px  { padding:  5px; }
td.padding_10px { padding: 10px; }


/*****************************************************************************/
/* form and fieldset styles                                                  */
/*****************************************************************************/
input.full_width {
	width: 100%;
}

fieldset {
	border-style: none;
}

fieldset.aligned_fieldset {
	width: 100%;
}

fieldset.aligned_fieldset input[type="file"],
fieldset.aligned_fieldset input[type="text"],
fieldset.aligned_fieldset input[type="url"],
fieldset.aligned_fieldset input[type="number"],
fieldset.aligned_fieldset input[type="email"],
fieldset.aligned_fieldset input[type="password"],
fieldset.aligned_fieldset select {
	width: 100%;
	display: block;
	border-style: none;
	box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.2);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	box-sizing: border-box;
	padding: 2px 8px;
	background-color: rgba(0, 0, 0, 0.05);
	outline: 0 solid var(--color-active);
}

fieldset.aligned_fieldset input[type="date"],
fieldset.aligned_fieldset input[type="datetime"] {
	display: inline-block;
	border-style: none;
	box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.2);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	box-sizing: border-box;
	padding: 2px 8px;
	background-color: rgba(0, 0, 0, 0.05);
	outline: 0 solid rgba(255, 153, 0, 0.5);
}
fieldset.aligned_fieldset .input_date_range {
	display: flex;
	position: relative;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.2);
}
fieldset.aligned_fieldset .input_date_range input[type="date"] {
	flex-grow: 1;
	font-size: 0.7rem;
	width: 0;
	background-color: transparent;
	box-shadow: none;
}
fieldset.aligned_fieldset .input_date_range input[type="date"] + input[type="date"]::before {
	position: absolute;
	width: 30px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	content: "\f061";
	font: var(--fa-font-solid);
	text-shadow: var(--text-shadow-normal);
	opacity: 0.7;
	pointer-events: none;
}
fieldset.aligned_fieldset .input_date_range input[type="date"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

fieldset.aligned_fieldset input[type="submit"],
fieldset.compact_fieldset input[type="submit"] {
	padding: 1px 10px 1px 10px;
}

fieldset.aligned_fieldset input[type="file"]:focus,
fieldset.aligned_fieldset input[type="text"]:focus,
fieldset.aligned_fieldset input[type="url"]:focus,
fieldset.aligned_fieldset input[type="number"]:focus,
fieldset.aligned_fieldset input[type="email"]:focus,
fieldset.aligned_fieldset input[type="password"]:focus,
fieldset.aligned_fieldset input[type="date"]:focus,
fieldset.aligned_fieldset input[type="datetime"]:focus,
fieldset.compact_fieldset input[type="text"]:focus,
fieldset.compact_fieldset input[type="url"]:focus,
fieldset.compact_fieldset input[type="number"]:focus,
fieldset.compact_fieldset input[type="password"]:focus,
fieldset.aligned_fieldset input[type="date"]:focus,
fieldset.aligned_fieldset input[type="datetime"]:focus,
fieldset.aligned_fieldset select:focus {
	background-color: var(--color-base);
	outline: 3px solid var(--color-active);
}

fieldset.aligned_fieldset input[type="file"]:hover,
fieldset.aligned_fieldset input[type="text"]:hover,
fieldset.aligned_fieldset input[type="url"]:hover,
fieldset.aligned_fieldset input[type="number"]:hover,
fieldset.aligned_fieldset input[type="email"]:hover,
fieldset.aligned_fieldset input[type="password"]:hover,
fieldset.aligned_fieldset input[type="date"]:hover,
fieldset.aligned_fieldset input[type="datetime"]:hover,
fieldset.compact_fieldset input[type="text"]:hover,
fieldset.compact_fieldset input[type="url"]:hover,
fieldset.compact_fieldset input[type="number"]:hover,
fieldset.compact_fieldset input[type="password"]:hover,
fieldset.aligned_fieldset input[type="date"]:hover,
fieldset.aligned_fieldset input[type="datetime"]:hover,
fieldset.aligned_fieldset select:hover {
	outline: 3px solid var(--color-active);
}

textarea.full_width {
	display: block;
	width: 100%;
}

fieldset.aligned_fieldset textarea,
fieldset.compact_fieldset textarea {
	width: 100%;
	display: block;
	border-style: none;
	font-size: 14px;
	box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.2);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	box-sizing: border-box;
	padding: 2px 8px;
	background-color: rgba(0, 0, 0, 0.05);
	outline: 0 solid var(--color-active);
}

fieldset.aligned_fieldset textarea:focus,
fieldset.compact_fieldset textarea:focus {
	background-color: #fff;
	box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.2);
	outline: 3px solid var(--color-active);
}

fieldset.aligned_fieldset textarea:hover,
fieldset.compact_fieldset textarea:hover {
	outline: 3px solid var(--color-active);
}

fieldset.aligned_fieldset table {
	width: 100%;
	border-collapse: collapse;
	box-shadow: var(--box-shadow-near);
}
fieldset.aligned_fieldset .product_desc table {
	width: calc(100% - 2rem);
	margin: 0 auto;
}

fieldset.aligned_fieldset table tr td:first-child {
	text-align: right;
	font-weight: bold;
	font-size: 1rem;
	background-color: var(--color-base-dark2);
}
fieldset.aligned_fieldset table tr td:first-child + td {
	border-left: 2px solid var(--color-main);
}

fieldset.aligned_fieldset table tr td {
	padding: 0.5rem 1rem;
	border-bottom: 2px solid var(--color-base);
	background-color: var(--color-base);
}
fieldset.aligned_fieldset table tr:last-of-type td {
	border-bottom: none;
}

fieldset.aligned_fieldset input[type="radio"] {
	margin: 4px 4px;
}

fieldset.aligned_fieldset label {
	cursor: pointer;
}

fieldset.aligned_fieldset table tr td.show_more {
	padding: 0;
}
fieldset.aligned_fieldset table tr td.show_more > a {
	display: block;
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.05);
	text-align: center;
}
fieldset.aligned_fieldset table tr td.show_more > a:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.pane_form {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.pane_form_left {
	padding: 20px;
	display: table-cell;
	vertical-align: top;
}
.pane_form_right {
	padding: 20px;
	display: table-cell;
	vertical-align: top;
}

.form_caption {
	display: inline-block;
	background-color: var(--color-main);
	color: var(--color-sub-thin);
	margin: 20px 0 0 0;
	border-radius: 0 4px 0 0;
	padding: 4px 10px;
}
.form_caption_default {
	display: inline-block;
	background-color: var(--color-main-light);
	color: var(--color-base);
	margin: 2rem 0 0 0;
	border-radius: 0.5rem 0.5rem 0 0;
	padding: 0.5rem 1rem;
}
.form_required{
	display: inline-block;
	background-color: #ff3333;
	color: #ffffff;
	margin: 20px 0 0 0;
	border-radius: 4px 0 0 0;
	padding: 4px 10px;
}
.form_note {
	padding: 4px 10px;
	background-color: #999999;
	color: #ffffff;
}
.form_note a {
	color: #ffffff;
	text-decoration: underline;
}
.form_note a:hover {
	text-decoration: none;
}
.form_box {
	box-sizing: border-box;
	padding: 0 20px 20px 20px;
	background-color: #fff;
	box-shadow: var(--box-shadow-near-inset);
}

.standard_form {
	padding: 2rem;
}

.form_input_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1px 0;
	margin: 1.6rem 0;
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
}
.form_input_container:hover {
	box-shadow: var(--box-shadow-normal);
}
.form_input_container.narrow {
	flex-direction: column;
	gap: 0;
}
.form_input_container.narrow > label {
	text-align: left;
}

.form_input_container > label {
	position: relative;
	flex: 4;
	min-width: 40%;
	box-sizing: border-box;
	text-align: right;
	padding: 0.5rem 1.5rem;
	background-color: #77a2bb;
	color: #ffffff;
	font-size: 1.2rem;
	line-height: initial;
}

@media (max-width: 1100px) {
	.form_input_container {
		flex-direction: column;
		gap: 0;
	}
	.form_input_container > label {
		text-align: left;
	}
}
.form_input_container label {
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
}
.form_input_container:hover > label {
	filter: brightness(1.1);
}
.form_input_container label[for] {
	cursor: pointer;
}
.form_input_container label.required:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1rem;
	height: 1rem;
	border: 0.2rem solid var(--color-base);
	background-color: var(--color-accent);
	box-shadow: var(--box-shadow-near);
	transform: translate(-50%, -50%) rotate(-45deg);
}
.form_input_container > .form_input,
.form_input_container > input,
.form_input_container > textarea,
.form_input_container > select {
	outline: none;
	flex: 6;
	min-width: 60%;
	max-width: 100%;
	border: none;
	border-radius: 0;
	padding: 0.5rem 1.5rem;
	box-sizing: border-box;
	font-size: 1.2rem;
	background-color: hsl(0, 0%, 98%);
	box-shadow: var(--box-shadow-near-inset);
	font-family: var(--font-default);
	color: var(--color-text);
	white-space: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.form_input_container .form_input_container > .form_input,
.form_input_container .form_input_container > input,
.form_input_container .form_input_container > textarea,
.form_input_container .form_input_container > select {
	background-color: hsl(0, 0%, 92%);
}
.form_input_container > label > .form_note {
	display: inline-block;
	margin: 1px 0;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	font-style: italic;
	background-color: hsla(0, 0%, 100%, 0.2);
	word-break: break-word;
	hyphens: auto;
}
.form_input_container > label > .form_note .form_note_strong {
	font-weight: bold;
}
.form_input_container .input_note {
	display: inline-block;
	margin: 1px 0;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	font-style: italic;
	background-color: hsla(0, 0%, 50%, 0.1);
	color: var(--color-text);
	word-break: break-word;
	hyphens: auto;
}
.form_input_container .input_label_strong {
	font-weight: bold;
}
.form_input_container .input_label_weak {
	color: var(--color-text);
}
.form_input_container_sub {
	flex: 1;
	padding: 0 2rem;
	background-color: hsl(0, 0%, 95%);
	border-left: 4px solid var(--color-main);
}
.form_input_container > .form_input input[type=checkbox] {
	display: none;
}
.form_input_container > .form_input input[type=checkbox] + label {
	position: relative;
	display: block;
	margin: 1rem 0;
	padding-left: 2.5rem;
	color: var(--color-main);
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
	
}
.form_input_container > .form_input input[type=checkbox] + label:hover {
	filter: brightness(1.1);
	text-decoration: underline;
}
.form_input_container > .form_input input[type=checkbox] + label::before {
	content: "";
	position: absolute;
	left: 0;
	width: 1.7rem;
	height: 1.7rem;
	border-radius: 5rem;
	background: hsl(0, 0%, 90%);
	box-shadow: var(--box-shadow-near-inset);
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
}
.form_input_container > .form_input input[type=checkbox]:checked + label::before {
	background-color: var(--color-sub);
}
.form_input_container > .form_input input[type=checkbox] + label::after {
	content: "";
	position: absolute;
	width: 0.25rem;
	height: 0.55rem;
	left: 0.6rem;
	top: 0.5rem;
	transform: translateY(-0.1rem) rotate(45deg);
	border-width: 0.25rem;
	border-style: none solid solid none;
	border-color: hsl(0, 0%, 80%);
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
}
.form_input_container > .form_input input[type=checkbox]:checked + label::after {
	border-color: var(--color-main);
}
.form_input_container > .form_input input[type=radio] {
	display: none;
}
.form_input_container > .form_input input[type=radio] + label {
	position: relative;
	display: block;
	margin: 1rem 0;
	padding-left: 2.5rem;
	color: var(--color-main);
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
}
.form_input_container > .form_input input[type=radio] + label:hover {
	filter: brightness(1.1);
	text-decoration: underline;
}

.form_input_container > .form_input input[type=radio] + label::before {
	content: "";
	position: absolute;
	left: 0;
	width: 1.7rem;
	height: 1.7rem;
	border-radius: 5rem;
	background: hsl(0, 0%, 90%);
	box-shadow: var(--box-shadow-near-inset);
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
}
.form_input_container > .form_input input[type=radio]:checked + label::before {
	background-color: var(--color-sub);
}
.form_input_container > .form_input input[type=radio] + label::after {
	content: "";
	position: absolute;
	left: 0.4rem;
	top: 0.4rem;
	width: 0.9rem;
	height: 0.9rem;
	border-radius: 5rem;
	background: var(--color-main);
	box-shadow: var(--box-shadow-near);
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
	opacity: 0;
}
.form_input_container > .form_input input[type=radio]:checked + label::after {
	opacity: 1;
}
.form_badge_sample {
	display: inline-block;
	margin: 1rem;
	padding: 0.5rem 2rem;
	border: 1px dashed var(--color-main);
	border-radius: 0.5rem;
	font-size: 1.2rem;
	font-style: italic;
}
.form_badge_sample .form_badge_sample_required {
	position: relative;
	display: block;
	padding-left: 2rem;
}
.form_badge_sample .form_badge_sample_required::before {
	content: '';
	position: absolute;
	left: -0.8rem;
	width: 1rem;
	height: 1rem;
	border: 0.2rem solid var(--color-base);
	background-color: var(--color-accent);
	box-shadow: var(--box-shadow-near);
	transform: rotate(-45deg);
}

.narrow_margin_buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 2rem auto;
}
.narrow_margin_buttons .button_default,
.narrow_margin_buttons .button_go,
.narrow_margin_buttons .button_disabled,
.narrow_margin_buttons .button_stop,
.narrow_margin_buttons .button_delete,
.narrow_margin_buttons .button_admin {
	margin: 0.5rem;
}
.fullwidth_buttons .button_default,
.fullwidth_buttons .button_go,
.fullwidth_buttons .button_disabled,
.fullwidth_buttons .button_stop,
.fullwidth_buttons .button_delete,
.fullwidth_buttons .button_admin {
	width: 100%;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
}

.button_default{
	display: inline-block;
	box-sizing: border-box;
	margin: 2rem;
	border: 2px solid var(--color-text);
	border-radius: 0.5rem;
	padding: 0.6rem 1.2rem;
	color: var(--color-text);
	background-color: var(--color-base);
	box-shadow: inset 0 -0.3rem 0 0 var(--color-active), var(--box-shadow-near);
	text-shadow: var(--text-shadow-normal);
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
	font-size: 1.2rem;
	cursor: pointer;
	outline-style: none;
	text-align: center;
	text-decoration: none;
}

.button_default:hover,
.button_default:focus {
	color: var(--color-text);
	box-shadow: inset 0 0 0 0 var(--color-active), var(--box-shadow-near);
	border: 2px solid var(--color-active);
}

.button_default.small {
	margin: 0.2rem;
	border-radius: 2px;
	padding: 0.2rem 0.8rem;
	font-size: 0.8rem;
}

.button_default:disabled,
.button_go:disabled,
.button_stop:disabled {
	color: var(--color-disabled-dark);
	background-color: var(--color-disabled);
	box-shadow: inset 0 -0.3rem 0 0 var(--color-disabled-dark), var(--box-shadow-near);
	cursor: not-allowed;
	pointer-events: none;
}

.button_disabled {
	display: inline-block;
	box-sizing: border-box;
	margin: 2rem;
	border: 2px solid var(--color-disabled-dark);
	border-radius: 0.5rem;
	padding: 0.6rem 1.2rem;
	color: var(--color-disabled-dark);
	background-color: var(--color-disabled);
	box-shadow: inset 0 -0.3rem 0 0 var(--color-disabled-dark), var(--box-shadow-near);
	text-shadow: none;
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
	font-size: 1.2rem;
	cursor: not-allowed;
	outline-style: none;
	text-align: center;
	pointer-events: none;
	text-decoration: none;
}

.button_disabled:hover,
.button_disabled:focus {
	color: var(--color-text);
	color: var(--color-disabled-dark);
	text-decoration: none;
}

.button_disabled.small {
	margin: 0.2rem;
	border-radius: 2px;
	padding: 0.2rem 0.8rem;
	font-size: 0.8rem;
}

.button_go{
	display: inline-block;
	box-sizing: border-box;
	margin: 2rem;
	border: 2px solid var(--color-text);
	border-radius: 0.5rem;
	padding: 0.6rem 1.2rem;
	color: var(--color-text);
	background-color: var(--color-base);
	box-shadow: inset 0 -0.3rem 0 0 var(--color-go), var(--box-shadow-near);
	text-shadow: var(--text-shadow-normal);
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
	font-size: 1.2rem;
	cursor: pointer;
	outline-style: none;
	text-align: center;
	text-decoration: none;
}

.button_go:hover,
.button_go:focus {
	color: var(--color-text);
	box-shadow: inset 0 0 0 0 var(--color-go), var(--box-shadow-near);
	border: 2px solid var(--color-go);
}

.button_go.small {
	margin: 0.2rem;
	border-radius: 2px;
	padding: 0.2rem 0.8rem;
	font-size: 0.8rem;
}

.button_stop{
	display: inline-block;
	box-sizing: border-box;
	margin: 2rem;
	border: 2px solid var(--color-text);
	border-radius: 0.5rem;
	padding: 0.6rem 1.2rem;
	color: var(--color-text);
	background-color: var(--color-base);
	box-shadow: inset 0 -0.3rem 0 0 var(--color-stop), var(--box-shadow-near);
	text-shadow: var(--text-shadow-normal);
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
	font-size: 1.2rem;
	cursor: pointer;
	outline-style: none;
	text-align: center;
	text-decoration: none;
}

.button_stop:hover,
.button_stop:focus {
	color: var(--color-text);
	box-shadow: inset 0 0 0 0 var(--color-stop), var(--box-shadow-near);
	border: 2px solid var(--color-stop);
}

.button_stop.small {
	margin: 0.2rem;
	border-radius: 2px;
	padding: 0.2rem 0.8rem;
	font-size: 0.8rem;
}

.button_delete {
	display: inline-block;
	box-sizing: border-box;
	margin: 2rem;
	border: 2px solid var(--color-text);
	border-radius: 0.5rem;
	padding: 0.6rem 1.2rem;
	color: var(--color-text);
	background-color: var(--color-base);
	box-shadow: inset 0 -0.3rem 0 0 var(--color-stop), var(--box-shadow-near);
	text-shadow: var(--text-shadow-normal);
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
	font-size: 1.2rem;
	cursor: pointer;
	outline-style: none;
	text-align: center;
	text-decoration: none;
}

.button_delete:hover,
.button_delete:focus {
	color: var(--color-text);
	box-shadow: inset 0 0 0 0 var(--color-stop), var(--box-shadow-near);
	border: 2px solid var(--color-stop);
}

.button_delete.small {
	margin: 0.2rem;
	border-radius: 2px;
	padding: 0.2rem 0.8rem;
	font-size: 0.8rem;
}

.button_admin {
	display: inline-block;
	box-sizing: border-box;
	margin: 2rem;
	border: 2px solid var(--color-text);
	border-radius: 0.5rem;
	padding: 0.6rem 1.2rem;
	color: var(--color-text);
	background-color: var(--color-base);
	box-shadow: inset 0 -0.3rem 0 0 var(--color-stop), var(--box-shadow-near);
	text-shadow: var(--text-shadow-normal);
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
	font-size: 1.2rem;
	cursor: pointer;
	outline-style: none;
	text-align: center;
	text-decoration: none;
}

.button_admin:hover,
.button_admin:focus {
	color: var(--color-text);
	box-shadow: inset 0 0 0 0 var(--color-stop), var(--box-shadow-near);
	border: 2px solid var(--color-stop);
}

.button_admin.small {
	margin: 0.2rem;
	border-radius: 2px;
	padding: 0.2rem 0.8rem;
	font-size: 0.8rem;
}

ul.button_list {
	display: flex;
	margin: 1rem auto;
	list-style: none;
	align-items: stretch;
}
ul.button_list > li {
	flex-grow: 1;
}
ul.button_list > li > a,
ul.button_list > li > input,
ul.button_list > li > button,
ul.button_list > li > span,
ul.button_list > li > .small {
	display: block;
	margin: 0;
	border-radius: 0;
}
ul.button_list > li:not(:last-of-type) > a,
ul.button_list > li:not(:last-of-type) > input,
ul.button_list > li:not(:last-of-type) > button,
ul.button_list > li:not(:last-of-type) > span,
ul.button_list > li:not(:last-of-type) > .small {
	border-right: none;
}
ul.button_list > li:first-of-type > a,
ul.button_list > li:first-of-type > input,
ul.button_list > li:first-of-type > button,
ul.button_list > li:first-of-type > span {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
ul.button_list > li:last-of-type > a,
ul.button_list > li:last-of-type > input,
ul.button_list > li:last-of-type > button,
ul.button_list > li:last-of-type > span {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

button.compact_fieldset_button {
	background: #324161;
	border-style: none;
	cursor: pointer;
	padding: 5px 20px;
	color: #ffffff;
}

button.compact_fieldset_button:hover {
	opacity: 0.9;
}

button.compact_fieldset_button img {
	margin: 0 2px -3px 0;
}

img.captcha {
	margin: 1px;
	padding: 1px;
	vertical-align: bottom;
	border: 1px solid #aaaaaa;
}

input.paypal_submit {
	padding: 1px 10px 1px 10px;
}

fieldset.compact_fieldset {
	width: 100%;
	background-color: #ffeecc;
	border: solid 1px #888888;
}

fieldset.compact_fieldset legend {
	font-size: 15px;
	text-align: left;
	color: #555555;
	margin-left: 10px;
	padding: 0 5px 4px 5px;
}

fieldset.compact_fieldset form {
	margin: 0 10px 0 10px;
}

fieldset.compact_fieldset input[type="text"],
fieldset.compact_fieldset input[type="password"],
fieldset.compact_fieldset select {
	padding: 1px;
	border: 1px solid #888888;
	margin-bottom: 10px;
}

/*****************************************************************************/
/* foundation style rules                                                    */
/*****************************************************************************/

div.foundation_background {
	max-width: 1200px;
	min-width: 920px;
	margin: 0 auto;
}

div.foundation_block {
	width: 100%;
	margin: 0 auto 0 auto;
	background-color: #ffffff;
	font-size: 1rem;
	box-shadow: var(--box-shadow-normal);
}

div.foundation_block header.main_header {
	background-color: var(--color-main);
	margin-bottom: 1rem;
	box-shadow: 0px 6px 6px -2px rgba(0, 0, 0, 0.2);
}

.layout_body_block {
	margin-bottom: 3rem;
}

/*****************************************************************************/
/* layout_header_block                                                       */
/*****************************************************************************/
div.layout_header_block {
	width: 100%;
	background-color:var(--color-main);
	display: table;
}

div.header_logo_block a{
	color:#FFF;
}

div.header_logo_block {
	display: table-cell;
	vertical-align: middle;
	line-height: 0;
	width: 400px;
}

div.header_logo_block img {
	width: 400px;
	height: 80px;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}

div.header_logo_block img:hover {
	opacity: 0.8;
}

div.header_guide_block {
	display: table-cell;
	vertical-align: top;
}

div.header_button_block {
	height: 60px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

div.header_button_block .cell a {
	display: inline-block;
	box-sizing: border-box;
	margin: 0 5px 10px 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: 10px 20px;
	background: var(--color-sub-thin);
	color: var(--color-main);
	font-size: 24px;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	letter-spacing: 0.05em;
}

div.header_button_block .cell a:hover {
	margin-bottom: 0;
	padding-top: 20px;
}

ul.global_navigation_block {
	letter-spacing: 0.15em;
	width: 100%;
	font-size: 16px;
	display: table;
	table-layout: fixed;
	list-style: none;
}

ul.global_navigation_block > li {
	display: table-cell;
	position: relative;
	vertical-align: bottom;
}

ul.global_navigation_block > li > a {
	display: block;
	padding: 10px 0;
	border-bottom: 5px solid var(--color-sub);
	border-radius: 5px 5px 0 0;
	text-align: center;
	background-color: var(--color-main);
	color: var(--color-sub-thin);
	text-decoration: none;
	font-size: 1.1rem;
	box-shadow: inset 0 0 10px -20px var(--color-sub);
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
}

ul.global_navigation_block > li:hover > a {
	color: var(--color-main);
	border-bottom: 5px solid var(--color-main);
	box-shadow: inset 0 -70px 10px -20px var(--color-sub);
}

ul.global_navigation_block > li:first-of-type > a {
	letter-spacing: normal;
	border-radius: 0 5px 0 0;
}

ul.global_navigation_block > li:last-of-type > a {
	border-radius: 5px 0 0 0;
}
ul.global_navigation_block .global_navigation_submenu {
	cursor: default;
}
ul.global_navigation_block .global_navigation_submenu > a::after {
	content: "\f0d7";
	padding: 0 5px;
	font: var(--fa-font-solid);
	line-height: 0;
}
ul.global_navigation_block .global_navigation_submenu > ul {
	visibility: hidden;
	position: absolute;
	list-style: none;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2), 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
	width: 100%;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	transition-delay: 0.3s;
	z-index: 200;
	opacity: 0;
	top: 80%;
	font-size: 0;
}
ul.global_navigation_block .global_navigation_submenu:hover > ul,
ul.global_navigation_block .global_navigation_submenu > ul:hover {
	visibility: visible;
	opacity: 1;
	top: 100%;
}
ul.global_navigation_block .global_navigation_submenu > ul a {
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	background-color: var(--color-main);
	color: var(--color-sub-thin);
	padding: 10px;
	font-size: 1.1rem;
	white-space: nowrap;
	overflow-x: hidden;
	text-overflow: ellipsis;
}
ul.global_navigation_block .global_navigation_submenu > ul a:hover {
	width: auto;
	min-width: 100%;
}
ul.global_navigation_block .global_navigation_submenu > ul a > i {
	width: 1.4rem;
	display: inline-block;
	text-align: center;
}
ul.global_navigation_block .global_navigation_submenu > ul li.item_type_tag_menu a {
	padding: 10px 10px;
	letter-spacing:0em;
	font-size: 0.9rem;
}
ul.global_navigation_block .global_navigation_submenu > ul li.item_type_tag_menu a > i {
	width: 1rem;
	display: inline-block;
	text-align: center;
}
ul.global_navigation_block .global_navigation_submenu > ul hr {
	border-style: none;
	border-top: 1px dashed #CACCC0;
	background-color: var(--color-main);
}
ul.global_navigation_block .global_navigation_submenu > ul a:hover {
	background-color: var(--color-sub);
	color: var(--color-main);
	opacity: 1;
}

.social_header {
	color: #CACCC0;
	font-size: 30px;
	text-align: center;
	margin: 10px;
}
.social_header a {
	color: #CACCC0;
	text-decoration: none;
}
.social_header a:hover {
	color: var(--color-sub);
}
.social_container {
	display: flex;
	justify-content: center;
	margin: 10px;
}
.social_container > div {
	padding: 5px;
}
.social_container > a {
	display: inline-block;
	padding: 5px 20px;
	background-color: hsla(200, 50%, 50%, 1);
	color: #dfefff;
	box-shadow: var(--box-shadow-near);
	margin: 0;
	border-radius: 0;
	font-size: 1.2rem;
}
.social_container > a:hover {
	color: hsla(200, 50%, 50%, 1);
	background-color: #dfefff;
}
.social_container > a:first-of-type {
	border-radius: 5px 0 0 5px;
}
.social_container > a:last-of-type {
	border-radius: 0 5px 5px 0;
}
.social_container > a:first-of-type:last-of-type {
	border-radius: 5px;
}
.social_container .social_button_twitter {
	background-color: hsla(0, 0%, 0%, 1);
	color: hsla(0, 0%, 100%, 1);
}
.social_container .social_button_twitter:hover {
	background-color: hsla(0, 0%, 90%, 1);
	color: hsla(0, 0%, 0%, 1);
}
.social_container .social_button_tumblr {
	background-color: hsla(210, 38%, 28%, 1.0);
	color: hsla(210, 38%, 100%, 1.0);
}
.social_container .social_button_tumblr:hover {
	background-color: hsla(210, 38%, 80%, 1.0);
	color: hsla(210, 38%, 28%, 1.0);
}
.social_container .social_button_facebook {
	background-color: hsla(221, 44%, 41%, 1.0);
	color: hsla(221, 44%, 100%, 1.0);
}
.social_container .social_button_facebook:hover {
	background-color: hsla(221, 44%, 80%, 1.0);
	color: hsla(221, 44%, 41%, 1.0);
}

.social_container .social_button_pinterest{
	background-color: #e60023;
	color: hsla(221, 44%, 100%, 1.0);
}
.social_container .social_button_pinterest:hover {
	background-color: #ffb0ba;
	color: #e60023;
}

.cart_product .social_container {
	position: absolute;
	bottom: 0;
	right: 0;
}


/*****************************************************************************/
/* layout_footer_block                                                       */
/*****************************************************************************/
div.layout_footer_block {
	color: #CACCC0;
	padding: 2rem;
	background-color:var(--color-main);
}

.footer_menu {
	list-style: none;
	display: flex;
	justify-content: space-around;
	margin: auto 10%;
	font-size: 1.2rem;
}
.footer_menu > li {
	margin: 10px;
	font-weight: bold;
}
.footer_menu .footer_submenu {
	list-style: none;
	font-weight: normal;
	margin: 0 10px;
	font-size: 1rem;
}
.footer_menu a {
	display: inline-block;
	color: #CACCC0;
	padding: 0.1rem 0;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-color: hsla(70, 11%, 78%, 0.2);
	text-decoration-thickness: 2px;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.footer_menu a:hover {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-color: var(--color-sub);
	text-decoration-thickness: 2px;
}

/*****************************************************************************/
/* layout box style rules                                                    */
/*****************************************************************************/
div.layout_box_border {
	border: 1px solid #773300;
	display: inline-block;
	width: 100%;
}

h1.layout_box_header {
	color: var(--color-main);
	padding: 10px;
	font-weight: bold;
	overflow: hidden;
	text-align: center;
	font-size: 24px;
}

h2.layout_box_header {
	background-color: #ff3333;
	color: #ffffff;
	font-size: 20px;
	overflow: hidden;
	padding: 4px 10px;
	text-align: center;
}

.merchant_only {
	margin: 10px auto;
}
.merchant_only h2 {
	background-color: #ff3333;
	color: #ffffff;
	font-size: 20px;
	padding: 4px 10px;
	text-align: center;
}
.merchant_only .note {
	text-align: center;
	box-sizing: border-box;
	border: 2px solid #ff3333;
	background-color: #ffdddd;
}



/*****************************************************************************/
/* textsearch and pagination style rules                                     */
/*****************************************************************************/
.paginator_link_list {
	text-align: center;
	margin: 3rem 0;
	font-size: 18px;
}

.paginator_link_list .paginator_items_total {
	color: #CACCC0;
}
.paginator_link_list .paginator_items_total .paginator_items_total_count {
	font-weight: bold;
}

ul.paginator_indexes {
	display: table;
	box-sizing: border-box;
	margin: auto;
	border-radius: 50px;
	list-style-type: none;
	box-shadow: var(--box-shadow-near);
	background-color: var(--color-base-dark);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
ul.paginator_indexes li {
	display: table-cell;
	line-height: normal;
}
ul.paginator_indexes li > a {
	padding: 0.5rem 1rem;
	display: block;
	font-weight: bold;
	font-size: 1.2rem;
	color: var(--color-text);
}
ul.paginator_indexes li > span {
	padding: 0.5rem 1rem;
	display: block;
	font-size: 1.2rem;
}
ul.paginator_indexes.large li > a {
	font-size: 1.8rem;
}
ul.paginator_indexes.large li > span {
	font-size: 1.8rem;
}
ul.paginator_indexes li > a:hover {
	padding: 0.5rem 1rem;
	display: block;
	color: var(--color-text);
	background-color: var(--color-active);
}
ul.paginator_indexes li.here > span {
	font-weight: bold;
	background-color: var(--color-text);
	color: var(--color-base);
	text-shadow: var(--text-shadow-near);
}
ul.paginator_indexes li.snip > span {
	color: #ccc;
}
ul.paginator_indexes li:first-of-type > a,
ul.paginator_indexes li:first-of-type > span {
	border-radius: 50px 0 0 50px;
	padding-left: 20px;
}
ul.paginator_indexes li:last-of-type > a,
ul.paginator_indexes li:last-of-type > span {
	border-radius: 0 50px 50px 0;
	padding-right: 20px;
}

.refine_link_list {
	text-align: center;
	margin: 1rem 0;
	font-size: 1rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.refine_link_list .refine_link {
	display: flex;
	margin: 1rem;
	text-decoration: none;
	list-style: none;
	box-shadow: var(--box-shadow-near);
	border-radius: 50px;
	background-color: var(--color-base-dark);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}

.refine_link_list .refine_link > a,
.refine_link_list .refine_link > span {
	display: block;
	position: relative;
	padding: 0.5rem 1.5rem;
}
.refine_link_list .refine_link > a .item_count,
.refine_link_list .refine_link > span .item_count {
	display: inline-block;
	position: absolute;
	right: 2px;
	top: -8px;
	vertical-align: baseline;
	border-radius: 50px;
	padding: 0.1rem 0.5rem;
	color: #fff;
	background-color: var(--color-main);
	font-size: 0.5rem;
	font-weight: bold;
	white-space: nowrap;
	box-shadow: var(--box-shadow-normal);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.refine_link_list .refine_link > a .item_count::before,
.refine_link_list .refine_link > span .item_count::before {
	font: var(--fa-font-solid);
	content: "\f00d";
	margin-right: 0.1rem;
}
.refine_link_list .refine_link a:hover {
	background-color: var(--color-active);
	color: var(--color-active-dark);
}

.refine_link_list .refine_link .selected {
	background-color: var(--color-text);
	text-shadow: var(--text-shadow-near);
	color: var(--color-base);
	font-weight: bold;
}

.refine_link_list .refine_link > a:first-child,
.refine_link_list .refine_link > span:first-child {
	border-radius: 50px 0 0 50px;
	border-left-style: none;
}
.refine_link_list .refine_link > a:last-child,
.refine_link_list .refine_link > span:last-child {
	border-radius: 0 50px 50px 0;
}

.refine_pulldown {
	display: flex;
	position: relative;
	margin: 5px;
	align-items: center;
	border-radius: 50px;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	background-color: var(--color-sub);
	color: var(--color-main-light);
}
.refine_pulldown::after {
	position: absolute;
	right: 1rem;
	font: var(--fa-font-solid);
	content: "\f0d7";
	pointer-events: none;
}
.refine_pulldown select {
	height: 100%;
	min-width: 50px;
	padding: 6px 2.5rem 6px 1rem;
	text-align: center;
	border-style: none;
	background-color: transparent;
	-webkit-appearance: none;
	appearance: none;
	font-weight: bold;
	color: var(--color-main-light);
	font-family: var(--font-default);
	font-size: 18px;
}
.refine_pulldown select:focus {
	outline: none;
}

div.product_thumbnail_sold_out {
	display: inline-block;
	padding: 0 8px;
	background-color: hsla(0, 70%, 60%, 1);
	font-size: 0.8rem;
	color: #ffffff;
	border-radius: 50px;
	margin: 2px 0;
	box-shadow: var(--box-shadow-near);
	text-shadow: none;
}

div.product_thumbnail_used {
	display: inline-block;
	padding: 0 8px;
	background-color: hsla(60, 50%, 60%, 1);
	font-size: 0.8rem;
	color: #ffffff;
	border-radius: 50px;
	margin: 2px 0;
	box-shadow: var(--box-shadow-near);
	text-shadow: none;
}

div.product_thumbnail_new_arrival {
	display: inline-block;
	padding: 0 8px;
	background-color: hsla(90, 50%, 40%, 1);
	font-size: 0.8rem;
	color: #ffffff;
	border-radius: 50px;
	margin: 2px 0;
	box-shadow: var(--box-shadow-near);
	text-shadow: none;
}

div.product_thumbnail_bl {
	display: inline-block;
	padding: 0 8px;
	background-color: hsla(340, 70%, 70%, 1);
	font-size: 0.8rem;
	color: #ffffff;
	border-radius: 50px;
	margin: 2px 0;
	box-shadow: var(--box-shadow-near);
	text-shadow: none;
}

div.product_thumbnail_comiket {
	display: inline-block;
	padding: 0 8px;
	background-color: hsla(200, 50%, 50%, 1);
	font-size: 0.8rem;
	color: #ffffff;
	border-radius: 50px;
	margin: 2px 0;
	box-shadow: var(--box-shadow-near);
	text-shadow: none;
}

div.product_thumbnail_restocked {
	display: inline-block;
	padding: 0 8px;
	background-color: hsla(180, 50%, 50%, 1);
	font-size: 0.8rem;
	color:#FFFFFF;
	border-radius: 50px;
	margin: 2px 0;
	box-shadow: var(--box-shadow-near);
	text-shadow: none;
}

ul.breadcrumbList {
	list-style: none;
	font-size: 1rem;
	text-align: center;
}

ul.breadcrumbList li {
	display: inline;
}

.tag {
	padding: 5px 20px;
	background-color: hsla(0, 0%, 93%, 1);
	border-radius:50px;
	color: var(--color-main);
	box-sizing:border-box;
	display:block;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px 0px, rgba(0, 0, 0, 0.2) 0px 0px 10px 0px;
	text-decoration: none;
	word-break: break-word;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.tag:hover{
	text-decoration:none;
	color:var(--color-main-light);
	background-color:var(--color-sub);
	text-decoration: none;
}
.tag::before {
	content: "\f292";
	font: var(--fa-font-solid);
	margin-right: 5px;
}

div.product_descripton {
	font-size: 1.2rem;
}

div.product_descripton p {
	background-color:#FFFFFF;
}


div.product_descripton table {
	width:100%;
	border-spacing:0px;
}

div.product_descripton table::after {
	content: "";
	clear: both;
}

div.product_descripton table tr td {
	width: 100%;
	float: left;
	padding: 1rem 4rem;
	box-sizing: border-box;
}

div.product_descripton table tr td:first-child {
	padding: 1rem 2rem;
	background-color: hsl(0, 0%, 97%);
	font-weight: bold;
	font-size: 1.6rem;
}

div.product_descripton a {
	display: inline;
	padding: 0 5px;
	background: linear-gradient(transparent 60%, var(--color-sub) 60%);
	font-style: italic;
	word-break: break-word;
}
div.product_descripton a:hover {
	background: linear-gradient(transparent 60%, var(--color-accent) 60%);
}
div.product_descripton a[href^="/product/tag_page.html"]::before {
	content: "\f292";
	font: var(--fa-font-solid);
	margin-right: 5px;
}

div.product_thumbnail_price{
	color:#990000
}

.product_price{
	color:var(--color-stop);
	font-size: 1.1rem;
	font-weight: bold;
}

.product_stock{
	font-size:18px;
}

span.notice_message{
	color: var(--color-stop);
	font-weight: bold;
}

ul.product_banner{
	list-style-type: none;
}

ul.product_banner li{
	text-align:center;
	line-height: 0;
}

ul.product_banner img {
	width: 100%;
}

.loading {
	text-align: center;
	font-size: 150%;
	animation: loading_anime 0.43s ease-in 0s infinite alternate;
}
.loading i {
	font-size: 200%;
	vertical-align: middle;
	margin: 5px;
}

@keyframes loading_anime {
	0% {
	}
	100% {
		opacity: 0.1;
	}
}

.loading_scrolling_list {
	display: flex;
	justify-content: center;
	align-items: center;
	height: var(--height-thumbnail);
	margin: 5px 0;
	background-image: linear-gradient(90deg, var(--color-base-dark), var(--color-base), var(--color-base-dark));
	background-size: 200% 100%;
	color: var(--color-text);
	animation: loading_scrolling_list_anime 2s linear infinite;
}
@keyframes loading_scrolling_list_anime {
	0% {
		background-position: 0% 0%;
	}
	100% {
		background-position: 200% 0%;
	}
}
.loading_scrolling_list .loading_scrolling_list_title {
	margin: 1rem;
	font-size: 1rem;
}

h2.left_menu {
	padding: 1rem 0;
	background: var(--color-main);
	border-top: 5px solid var(--color-sub);
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--color-base);
	overflow: hidden;
	text-align: center;
}

h3.left_menu{
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--color-main);
	margin: 1.2rem 0 0.5rem 0px;
	padding: 10px 0;
	overflow: hidden;
	text-align: center;
	background: linear-gradient(transparent 45%, var(--color-sub) 45%, var(--color-sub) 55%, transparent 55%);
}
div.left_menu {
	text-align: center;
}

h1, h1.main_area {
	margin: 1.5rem 0;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	word-break: break-word;
	overflow: hidden;
	color: var(--color-text);
}


div.main_area {
	display: inline-block;
	width: 100%;
}

div.search_descripton table {
	border-collapse: collapse;
	width: 100%;
}
div.search_descripton tr td {
	padding: 1rem 2rem;
	word-break: break-word;
}
div.search_descripton tr:nth-child(2n+1) {
	background: var(--color-base-dark2);
}
div.search_descripton tr td:first-child {
	white-space: nowrap;
	font-weight: bold;
	text-align: right;
	width: 20%;
}

h1.you_may_like{
	margin: 1rem 0;
	padding: 1rem 0;
	background-color: var(--color-main);
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--color-base);
	overflow: hidden;
	text-align: center;
}

div.paginator_link_list strong{
	margin-left:5px;
	font-size:120%;
}

ul.navigation_taglist {
	margin-bottom: 20px;
}

ul.navigation_taglist li {
	list-style-type: none;
	text-align: left;
	overflow: hidden;
	font-size: 1rem;
}
ul.navigation_taglist li:nth-child(2n+1) {
	background-color: var(--color-base-dark);
}

ul.navigation_taglist li a{
	padding: 0.6rem 1rem;
	color: var(--color-main);
	transition-property: all;
	transition-duration: 0.05s;
	transition-timing-function: ease-out;
}

ul.navigation_taglist li a:hover{
	background: var(--color-sub);
	color: var(--color-main);
	text-decoration:none;
}

.left_anime_title a{
	display:table;
	width: 100%;
	box-sizing:border-box;
}
.left_anime_title a > span {
	display: table-cell;
}

.left_anime_title a > span:last-of-type {
	text-align: right;
}

.left_anime_title a > span:first-of-type {
	text-align: left;
}

.left_anime_title a > span.item_count {
	vertical-align: bottom;
	font-size: 80%;
	text-shadow: none;
	opacity: 0.5;
	font-weight: normal;
	color: var(--color-text);
}

.left_anime_title a:hover > span.item_count {
	color: var(--color-main-light);
	text-shadow: none;
}

.anime_scale2 {
	border-left: 5px solid var(--color-main);
}

.anime_scale1 {
	border-left: 5px solid #CACCC0;
}

.anime_scale0 {
	border-left: 5px solid var(--color-sub-thin);
}

.search_container {
	display: block;
	box-sizing: border-box;
	margin: 5px 0 5px 20px;
	border-radius: 5px 0 0 5px;
	background-color: var(--color-sub-thin);
	font-size: 16px;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}

.search_container:hover {
	margin: 5px 0 5px 10px;
}

.search_box {
	display: table;
	width: 100%;
	box-sizing: border-box;
}

.search_box select,
.search_box input,
.search_box button {
	outline: 0 none;
	vertical-align: middle;
}

.search_box .input_select {
	display: table-cell;
	width: 160px;
	padding: 4px;
	border-radius: 5px 0 0 5px;
	background: rgba(255, 255, 255, 0.1);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}

.search_box .input_select:hover {
	background: rgba(255, 255, 255, 0.2);
	
}
.search_box .input_select select {
	width: 100%;
	box-sizing: border-box;
	border-style: none;
	border-radius: 2px;
	padding: 5px 5px;
	color: var(--color-main);
	background: rgba(255, 255, 255, 0);
}

.search_box .input_select option {
	color: #fff;
	background-color: #324161;
}

.search_box .input_text {
	display: table-cell;
	position: relative;
	width: auto;
}

.search_box .input_text input {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 10px 10px;
	border-style: none;
	color: var(--color-main);
	background: rgba(255, 255, 255, 0);
}

.search_box .input_button {
	display: table-cell;
	width: 50px;
	box-sizing: border-box;
	height: 100%;
	padding: 4px 0;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}

.search_box .input_button:hover {
	width: 60px;
}

.search_box .input_button button {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border-style: none;
	border-radius: 5px 0 0 5px;
	padding: 0.5rem 1.2rem;
	color: var(--color-main);
	background: rgba(0, 0, 0, 0.1);
	font-size: 1.2rem;
	text-align: left;
	cursor: pointer;
}

.search_form_box {
	box-sizing: border-box;
	width: 80%;
	margin: 20px auto;
	padding: 20px 5%;
	box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.1), inset 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
	background-color: rgba(0, 0, 0, 0.02);
	border-radius: 5px;
}
.search_form_box legend {
	margin: 1rem 0;
	border-bottom: 2px solid var(--color-main);
	padding: 0.8rem 2rem;
	box-shadow: var(--box-shadow-near);
	background-color: var(--color-base);
	color: var(--color-text);
	font-size: 1.2rem;
	font-weight: bold;
}

.search_form_box input {
	font-size: 1.2rem;
}
.search_form_box .search_button {
	font-size: 1.2rem;
	padding: 0;
	width: 50px;
}

.hint_box {
	display: block;
	position: relative;
}
.hint_box[hint]::after {
	display: inline-block;
	visibility: hidden;
	content: attr(hint);
	position: absolute;
	box-sizing: border-box;
	left: 0;
	top: 80%;
	width: 100%;
	padding: 5px 20px;
	border-radius: 0 0 5px 5px;
	background-color: rgba(221, 255, 221, 0.9);
	color: #335533;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	overflow-x: visible;
	text-align: center;
	z-index: 1;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	transition-delay: 0s;
	opacity: 0;
	white-space: normal;
	pointer-events: none;
}
.hint_box[hint]:hover::after {
	visibility: visible;
	opacity: 1;
	transition-delay: 0.3s;
	top: 100%;
}

.hint_box[hint]::after:hover {
	visibility: hidden;
}

.search_form_container {
	text-align: center;
	margin: 2rem 1rem;
}
.instant_search_form {
	width: 100%;
	text-align: center;
	display:flex;
	margin: 10px auto;
	border-radius: 50px;
	background-color:var(--color-sub);
	color:var(--color-main);
	font-size: 16px;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	white-space: nowrap;
}
.instant_search_form input::selection {
	background-color: var(--color-main-light);
	color: var(--color-sub-thin);
}
.instant_search_form:hover {
	background-color:var(--color-sub);
	color:var(--color-main);
	box-shadow: 0 0 0 5px var(--color-main);
}
.instant_search_form input {
	vertical-align: top;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding: 5px 0 5px 15px;
	border-style: none;
	background-color: transparent;
	color: var(--color-main);
	font-size: 16px;
}
.instant_search_form .search_button {
	border-style: none;
	vertical-align: top;
	box-sizing: border-box;
	min-width: 3rem;
	padding: 5px;
	cursor: pointer;
	background-color: transparent;
	color: var(--color-main);
	font-size: 16px;
	outline-style: none;
}
.instant_search_form select {
	outline: none;
	box-sizing: border-box;
	border-style: none;
	border-radius: 2px;
	padding: 5px 5px;
	margin-left: 10px;
	color: var(--color-main);
	background: rgba(255, 255, 255, 0);
}

div.matrix_row_container {
	position: relative;
}

a.matrix_row_header {
	display: block;
	background-color:var(--color-sub-thin);
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--color-main);
	padding: 1rem 0;
	text-decoration: none;
	text-align: center;
}

a.matrix_row_header:hover {
	color: var(--color-main-light);
	background-color: var(--color-sub);
}

input.tag_search {
	width: 465px;
}

div.tag_description img{
	max-width: 570px;
}

[data-badge] {
	position: relative;
}
[data-badge]::after {
	content: attr(data-badge);
	position: absolute;
	left: 100%;
	top: 0;
	transform: translate(-50%, -50%);
	border-radius: 5rem;
	padding: 0.2rem 0.4rem;
	color: var(--color-base);
	background-color: var(--color-stop);
	text-align: center;
	letter-spacing: normal;
	font-size: clamp(0.8rem, 65%, 1rem);
	font-family: var(--font-theme);
	font-weight: bold;
	box-shadow: var(--box-shadow-near);
}

.breadcrumbListContent a {
	font-style: italic;
	display: inline-block;
	padding: 0 5px;
	background: linear-gradient(transparent 60%, var(--color-sub) 60%);
	font-style: italic;
}
.breadcrumbListContent a:hover {
	background: linear-gradient(transparent 60%, var(--color-accent) 60%);
}
.breadcrumbListContent a.button_default{
	display: inline;
}

div.banner_big_container a {
	display: block;
	padding-bottom: 5px;
}

div.banner_big_container img {
	display: block;
	width: 100%;
	background-color: #fff;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}

div.banner_big_container img:hover {
	opacity: 0.8;
}

@media only screen and (min-width : 1100px) {
	span.alpabet_button{
		width:25px;
		height:25px;
		font-size:20px;
	}
	
	span.alpabet_button_active{
		width:25px;
		height:25px;
		font-size:20px;
	}
}

@media only screen and (min-width : 1100px) {
	div.tag_description img{
		max-width: 707px;
	}
	
	#header_paypal{
		margin-left:10px;
	}
}
.align_center { text-align: center;  }

.admin_table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.8rem;
}
.admin_table tr th {
	padding: 2px 4px;
	background-color: var(--color-main);
	color: #ffffff;
	font-weight: bold;
	font-size: 120%;
	border-left: 1px solid #ffffff;
}
.admin_table tr th:first-child {
	border-left-style: none;
}
.admin_table tr td {
	padding: 10px 15px;
	vertical-align: top;
	border-left: 1px solid #ffffff;
}
.admin_table tr td:first-child {
	text-align: center;
	vertical-align: middle;
	border-left-style: none;
	font-weight: bold;
	font-size: 120%;
}
.admin_table tr:nth-child(2n+1) {
	background-color: var(--color-sub-thin);
}
.admin_table a {
	font-size: 100%;
}

div.page_notice {
	max-width: 600px;
	margin: 2rem auto;
	padding: 1.5rem 2rem;
	font-size: 1rem;
	font-style: italic;
	line-height: 1.5rem;
	-webkit-hyphens: auto;
	hyphens: auto;
	letter-spacing: normal;
	background-color: var(--color-base-dark);
	color: var(--color-text);
	box-shadow: var(--box-shadow-near);
}
div.page_notice .page_notice_strong {
	font-weight: bold;
	color: var(--color-stop);
}

.default_notice {
	background-color: #eeeeee;
	text-align: center;
	font-size: 160%;
}
.default_notice > i:first-of-type {
	font-size: 60px;
}
.default_notice .subnotice {
	padding: 20px 5%;
	border-top: 1px dashed #ccc;
}
.default_notice .subnotice > i:first-of-type {
	font-size: 60px;
}
.default_notice .subnotice:first-of-type {
	border-style: none;
}

.notfound_notice {
	background-color: #eeeeee;
	text-align: center;
	font-size: 160%;
}
.notfound_notice > i:first-of-type {
	font-size: 60px;
}
.notfound_notice .subnotice {
	padding: 20px 5%;
	border-top: 1px dashed #ccc;
}
.notfound_notice .subnotice > i:first-of-type {
	font-size: 60px;
}
.notfound_notice .subnotice:first-of-type {
	border-style: none;
}

.thankyou_notice {
	background-color: #ddeedd;
	color: #33aa33;
	padding: 20px 5%;
	text-align: center;
	font-size: 160%;
}
.thankyou_notice > i:first-of-type {
	font-size: 60px;
}

.ok_notice {
	width: 100%;
	box-sizing: border-box;
	background-color: hsl(120, 100%, 97%);
	color: hsl(120, 7%, 48%);
	padding: 2rem 5%;
	text-align: center;
	font-size: 1.4rem;
}
.ok_notice > i:first-of-type {
	margin-bottom: 2rem;
	font-size: 3rem;
}
.ok_notice .subnotice {
	border-top: 1px dashed #aaddaa;
	padding: 2rem 5%;
}
.ok_notice .subnotice > i:first-of-type {
	margin-bottom: 2rem;
	font-size: 3rem;
}
.ok_notice .subnotice:first-of-type {
	border-style: none;
}
.ok_notice.horizontal {
	display: flex;
}
.ok_notice.horizontal > * {
	flex: 1;
}

.small_notice {
	background-color: #eee;
	color: #666;
	padding: 20px 5%;
	font-size: 16px;
}
.small_notice i:first-of-type {
	font-size: 40px;
}
.small_notice .subnotice {
	padding: 3rem 5%;
	border-top: 1px dashed #ccc;
}
.small_notice .subnotice > i:first-of-type {
	font-size: 40px;
}
.small_notice .subnotice:first-of-type {
	border-style: none;
}
.small_notice h2 {
	margin-bottom: 2rem;
}

.small_notice a {
	display: inline-block;
	padding: 0 5px;
	background: linear-gradient(transparent 60%, var(--color-sub) 60%);
	font-style: italic;
}
.small_notice a:hover {
	background: linear-gradient(transparent 60%, var(--color-accent) 60%);
}

.ng_notice {
	background-color: #eedddd;
	color: #aa3333;
	padding: 20px 5%;
	text-align: center;
	font-size: 160%;
}
.ng_notice i:first-of-type {
	font-size: 60px;
}
.ng_notice .subnotice {
	padding: 20px 5%;
	border-top: 1px dashed #aa3333;
}
.ng_notice .subnotice > i:first-of-type {
	font-size: 60px;
}
.ng_notice .subnotice:first-of-type {
	border-style: none;
}

.maintenance_notice {
	background-color: #eee;
	color: #666;
	padding: 20px 5%;
	text-align: center;
	font-size: 160%;
}
.maintenance_notice > i:first-of-type {
	font-size: 60px;
}
.maintenance_notice .subnotice {
	padding: 20px 5%;
	border-top: 1px dashed #ccc;
}
.maintenance_notice .subnotice > i:first-of-type {
	font-size: 60px;
}
.maintenance_notice .subnotice:first-of-type {
	border-style: none;
}

.notice_strong {
	font-weight: bold;
}
.notice_italic {
	font-style: italic;
}
.notice_center {
	text-align: center;
}

.faq_list {
	margin: 2rem 5%;
	hyphens: auto;
}
.faq_list dt {
	position: relative;
	margin: 0 0 0 2rem;
	padding: 2rem 0 0 1rem;
	border-radius: 5px 5px 0 0;
	font-weight: bold;
	font-style: italic;
}
.faq_list dt::before {
	display: inline-block;
	position: absolute;
	right: 100%;
	content: "Q.";
	font-weight: bold;
	font-style: normal;
	color: var(--color-stop);
}
.faq_list dd {
	position: relative;
	margin: 0 0 0 2rem;
	padding: 1rem 0 2rem 1rem;
	border-radius: 5px 5px 0 0;
}
.faq_list dd::before {
	display: inline-block;
	position: absolute;
	right: 100%;
	content: "A.";
	font-weight: bold;
	color: var(--color-go);
}
.faq_list dd + dt {
	border-top: 1px solid #eee;
}

.faq_body {
	max-width: 750px;
	margin: 20px auto 10px auto;
	font-size: 140%;
}

.dashboard {
	color: var(--color-text);
	font-size: 1.2rem;
}

.dashboard h1 {
	text-align: center;
	margin: 2rem 0 1rem 0;
}

.status_table {
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
}

.status_table tr td, .status_table tr th {
	text-align: center;
	border-right: 1px solid #eee;
	padding: 1rem;
}

.status_table tr td:last-child, .status_table tr th:last-child {
	border-right-style: none;
}

.status_table tr td.status_table_value, .status_table tr td.status_table_value_caution {
	font-size: 30px;
	font-weight: bold;
}

.status_table tr td.status_table_value a {
	display: block;
	box-sizing: border-box;
	border: 2px solid var(--color-text);
	border-radius: 0.5rem;
	padding: 0.6rem 0.8rem;
	color: var(--color-text);
	background-color: var(--color-base);
	box-shadow: inset 0 -0.3rem 0 0 var(--color-active), var(--box-shadow-near);
	text-shadow: var(--text-shadow-normal);
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
	cursor: pointer;
	outline-style: none;
	text-align: center;
}

.status_table tr td.status_table_value a:hover,
.status_table tr td.status_table_value a:focus {
	color: var(--color-text);
	border: 2px solid var(--color-active);
	box-shadow: inset 0 0 0 0 var(--color-active), var(--box-shadow-near);
}

.status_table tr td.status_table_value_caution a {
	display: block;
	box-sizing: border-box;
	border: 2px solid var(--color-text);
	border-radius: 0.5rem;
	padding: 0.6rem 1.2rem;
	color: var(--color-text);
	background-color: var(--color-base);
	box-shadow: inset 0 -0.3rem 0 0 var(--color-stop), var(--box-shadow-near);
	text-shadow: var(--text-shadow-normal);
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
	cursor: pointer;
	outline-style: none;
	text-align: center;
}

.status_table tr td.status_table_value_caution a:hover,
.status_table tr td.status_table_value_caution a:focus {
	color: var(--color-text);
	border: 2px solid var(--color-stop);
	box-shadow: inset 0 0 0 0 var(--color-stop), var(--box-shadow-near);
}

.status_table tr td.status_table_function {
	padding: 0;
	font-size: 0.8rem;
	text-align: left;
	vertical-align: top;
}

.status_table_function a {
	padding: 0.5rem 1rem;
	display: block;
	color: var(--color-text);
	transition-property: all;
	transition-duration: 0.05s;
	transition-timing-function: ease-out;
}
.status_table_function a:nth-child(2n+1) {
	background-color: var(--color-base-dark);
}

.status_table_function a:hover {
	background-color: var(--color-active);
	color: var(--color-text);
}

.status_table_function a.status_table_caution {
	color: var(--color-stop);
	font-weight: bold;
}

.status_table_function a.status_table_caution:hover {
	background-color: var(--color-stop);
	color: var(--color-base);
}

.item_count {
	vertical-align: super;
	color: #ff3333;
	font-size: 40%;
	font-weight: bold;
	white-space: nowrap;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.item_count::before {
	font: var(--fa-font-solid);
	content: "\f00d";
	margin: 0 0.1rem;
	font-size: 60%;
}

.index_menu_area {
	width: 25%;
	max-width: 25%;
	font-size: 0.8rem;
}

.index_menu_area h1 {
	padding: 1.2rem 0.5rem;
	background: var(--color-base);
	border-top: 3px solid var(--color-main);
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--color-text);
	overflow: hidden;
	text-align: center;
}

.index_menu_area h2 {
	padding: 1rem 0.5rem;
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--color-text);
	border-top: 1px solid var(--color-main);
	overflow: hidden;
	text-align: center;
}

.index_menu_area h3 {
	margin-top: 1rem;
	padding: 1rem;
	color: var(--color-text);
	font-weight: bold;
	overflow: hidden;
	text-align: center;
}

.index_menu_area ul {
	margin-bottom: 20px;
}

.index_menu_area ul li {
	list-style-type: none;
	background-color: var(--color-base);
}
.index_menu_area ul li:nth-child(2n+1) {
	background-color: var(--color-base-dark);
}

.index_menu_area ul li a{
	padding: 0.5rem 1rem;
	display:block;
	color: var(--color-text);
	transition-property: all;
	transition-duration: 0.05s;
	transition-timing-function: ease-out;
}

.index_menu_area ul li a:hover{
	background: var(--color-active);
	color: var(--color-text);
	text-decoration: none;
}

.index_menu_area ul li > hr {
	border-top: 1px solid var(--color-text-light2);
}
.index_menu_area ul li:nth-child(n):has(> hr) {
	background-color: var(--color-text-light2);
}

.link_box {
	position: relative;
	min-width: 60px;
}

.link_box a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: hsla(200, 50%, 50%, 0.1);
	color: var(--color-text);
	text-decoration: none;
}

.link_box a:hover {
	background-color: var(--color-active);
	color: var(--color-text);
	text-decoration: none;
}

.full_table {
	display: table;
	width: 100%;
	height: 100%;
}

.full_table .full_cell {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.id_box {
	width: 30px;
}

.seemore_content {
	display: flex;
	justify-content: center;
	align-items: center;
	height: var(--height-thumbnail);
	aspect-ratio: var(--aspect-ratio-thumbnail);
	font-size: 16px;
	background-color: var(--color-sub);
	color: var(--color-main);
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
}
.seemore_content:hover {
	color: var(--color-main);
	filter: brightness(1.1);
}
.seemore_content i:first-of-type {
	font-size: 50px;
}

.scrolling_ui {
	display: block;
	position: absolute;
	z-index: 100;
	height: 8rem;
	top: calc((100% - 8rem)/2);
	width: 4rem;
	cursor: pointer;
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
	text-align: center;
	background-color: hsla(0, 0%, 95%, 0.8);
	text-shadow: var(--text-shadow-normal);
	box-shadow: var(--box-shadow-normal);
	-webkit-backdrop-filter: var(--backdrop-filter-normal);
	backdrop-filter: var(--backdrop-filter-normal);
	transform: scale(0);
	opacity: 0;
	pointer-events: none;
}
@media (any-hover: hover) {
	.scrolling_ui.show {
		transform: scale(1);
		opacity: 1;
		pointer-events: auto;
	}
}
.scrolling_ui:hover {
	background-color: var(--color-active);
}
.scrolling_ui_left {
	left: 0;
	border-radius: 0 5rem 5rem 0;
	transform-origin: 0% 50%;
}
.scrolling_ui_right {
	right: 0;
	border-radius: 5rem 0 0 5rem;
	transform-origin: 100% 50%;
}

#floating_notice_str h1 {
	font-size: 20px;
	font-weight: bold;
	display: inline;
	color: #335533;
}

#floating_notice_arrow {
	position: absolute;
	font-size: 80px;
	color: #ddffdd;
	pointer-events: none;
}

#floating_notice > i:first-of-type {
	font-size: 40px;
	margin: 5px;
	vertical-align: -8px;
}

#floating_notice_str {
	font-size: 18px;
}

#floating_notice_str h1 {
	font-size: 20px;
	font-weight: bold;
	display: inline;
}

.floating_notice {
	position: absolute;
	background-color: #ddffdd;
	width: 400px;
	color: #335533;
	opacity: 0.95;
	text-align: center;
	padding: 10px;
	display: none;
	border-radius: 5px;
	letter-spacing: normal;
	z-index: 300;
	filter: drop-shadow(0 4px 8px hsla(0, 0%, 0%, 0.3));
}

.floating_notice .floating_notice_arrow {
	position: absolute;
	font-size: 80px;
	color: #ddffdd;
	pointer-events: none;
}

.floating_notice > i:first-of-type {
	font-size: 40px;
	margin: 5px;
	vertical-align: -8px;
}

.floating_notice .floating_notice_str {
	font-size: 18px;
}

.floating_notice .floating_notice_str h1 {
	font-size: 20px;
	font-weight: bold;
	display: inline;
}

.floating_notice button {
	margin: 1rem auto;
}

.blink {
	animation: blink_anime 1s ease 1s 4;
}

@keyframes blink_anime {
	0% {
		filter: saturate(2) brightness(2);
		transform: scale(1.1);
	}
	50% {
		filter: saturate(1) brightness(1);
	}
	100% {
		filter: saturate(1) brightness(1);
	}
}

ul.global_navigation_block .blink {
	animation: blink_anime_request 1s ease 0s 4;
}
#header_contact.blink {
	animation: blink_anime_contact 1s ease 0s 4;
}
@keyframes blink_anime_request {
	0% {
		filter: saturate(2) brightness(2);
		transform: scale(1.1);
		background-color: var(--color-accent);
	}
	50% {
		filter: saturate(1) brightness(1);
	}
	100% {
		filter: saturate(1) brightness(1);
	}
}

@keyframes blink_anime_contact {
	0% {
		transform: scale(1.1);
		background-color: var(--color-main);
		color: var(--color-base);
	}
	50% {
		transform: scale(1);
	}
	100% {
		transform: scale(1);
	}
}

div.kodawari_block {
	width: 100%;
}
div.kodawari_block .kodawari_point {
	margin: 10px 0 0 0;
	font-size: 20px;
}
div.kodawari_block .kodawari_point > img {
	display: block;
	width: 100%;
}
div.kodawari_block .kodawari_point > ul {
	list-style: none;
	text-indent: 1em;
}
div.kodawari_block .kodawari_point > ol {
	list-style: none;
	counter-reset: kodawari_counter;
	padding-left: 2em;
	text-indent: -2em;
}
div.kodawari_block .kodawari_point > ol li:before {
	counter-increment: kodawari_counter;
	content: counter(kodawari_counter);
	background-color: hsla(200, 50%, 50%, 1);
	color: #ffffff;
	border-radius: 50px;
	padding: 0 8px;
	margin: 0 10px 0 0;
}
div.kodawari_block .kodawari_point li {
	margin: 10px;
}
div.kodawari_block .kodawari_point li .strong {
	font-weight: bold;
}

dd.kodawari_block .kodawari_point {
	display: table;
}
dd.kodawari_block .kodawari_point > img {
	display: table-cell;
	vertical-align: middle;
	width: 300px;
	padding: 10px 0;
	box-sizing: border-box;
}
dd.kodawari_block .kodawari_point > ul {
	display: table-cell;
	vertical-align: top;
	list-style: none;
	text-indent: 1em;
}
dd.kodawari_block .kodawari_point > ol {
	display: table-cell;
	vertical-align: top;
	list-style: none;
	counter-reset: kodawari_counter;
	padding-left: 2em;
	text-indent: -2em;
}
dd.kodawari_block .kodawari_point > ol li:before {
	counter-increment: kodawari_counter;
	content: counter(kodawari_counter);
	background-color: var(--color-sub);
	color: var(--color-main-light);
	border-radius: 50px;
	padding: 0 8px;
	margin: 0 10px 0 0;
}
dd.kodawari_block .kodawari_point li {
	margin: 10px 20px;
}
dd.kodawari_block .kodawari_point li .strong {
	font-weight: bold;
}

.scrolling_list_header_str {
	display: inline-block;
	width: 90%;
}

.horizontal_layout_box {
	display: flex;
	width: 100%;
	overflow: hidden;
	gap: 10px;
}
.horizontal_layout_box > div {
	box-sizing: border-box;
	box-shadow: 6px 0 8px -6px rgba(0, 0, 0, 0.2);
	flex: 1;
}
.horizontal_layout_box > div.noborder {
	border-right-style: none;
}
.horizontal_layout_box > div:last-of-type {
	border-right-style: none;
}

.horizontal_layout_box > .horizontal_layout_box_index {
	max-width: 300px;
	min-width: 300px;
	width: 300px;
	padding-bottom: 20px;
}

.horizontal_layout_box > .horizontal_layout_box_index.strong {
	border-right: 3px solid var(--color-main);
}

.horizontal_layout_box > .horizontal_layout_box_main {
	max-width: calc(100% - 300px - 10px);
	min-width: calc(100% - 300px - 10px);
	width: calc(100% - 300px - 10px);
	padding-bottom: 20px;
}

.left_index_list {
	text-align: right;
	list-style: none;
	padding: 30px 0;
}

.left_index_list .search_form {
	text-align: center;
	display:inline-block;
	margin: 1px 0;
	padding: 5px;
	border-radius: 50px 0 0 50px;
	background-color: var(--color-base-dark);
	color: var(--color-main);
	font-weight:bold;
	font-size: 120%;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.left_index_list .search_form:hover {
	background-color: var(--color-main);
	color: var(--color-base);
}
.left_index_list .search_form:hover input {
	color: var(--color-base);
}
.left_index_list .search_form.active {
	background-color: var(--color-sub);
	color: var(--color-text);
}
.left_index_list .search_form.active input {
	color: var(--color-text);
}
.left_index_list .search_form input::selection {
	background-color: var(--color-text);
	color: var(--color-base);
}

.left_index_list .search_form input {
	border-style: none;
	margin: 0 0 0 10px;
	background-color: rgba(0,0,0,0);
	color: #666;
}

.left_index_list #left_search_button {
	cursor: pointer;
}

.left_index_list #circle_search_button {
	cursor: pointer;
}

.left_index_list #coupling_search_button {
	cursor: pointer;
}
.left_index_list #author_search_button {
	cursor: pointer;
}
.left_index_list #coupling_search_button_uke {
	cursor: pointer;
}

.left_index_list .alpabet_button{
	text-align: center;
	box-sizing: border-box;
	width: 100px;
	display:inline-block;
	margin: 1px 0;
	border-radius: 50px 0 0 50px;
	padding: 2px;
	background-color: var(--color-base-dark);
	color: var(--color-main);
	font-weight:bold;
	font-size: 120%;
}

.left_index_list .alpabet_button:hover{
	background-color: var(--color-main);
	color: var(--color-base);
	width: 120px;
}

.left_index_list .alpabet_button.active{
	background-color: var(--color-main);
	color: var(--color-base);
	width: 120px;
}

ul.product_thumbnail_list {
	font-size: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	box-sizing: border-box;
	width: 100%;
	padding: 1rem;
}
ul.product_thumbnail_list li {
	content-visibility: auto;
	contain-intrinsic-size: auto none;
	min-width: fit-content;
	font-size: 0.8rem;
	list-style: none;
	position: relative;
	line-height: 0;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	overflow: hidden;
	box-shadow: var(--box-shadow-normal);
}
ul.product_thumbnail_list li:hover {
	z-index: 1;
}

ul.product_thumbnail_list.with_scrolling {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	padding: 1rem 3rem;
	overflow-x: scroll;
	overflow-y: hidden;
}
ul.product_thumbnail_list.with_scrolling::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display: none;
}


ul.product_thumbnail_list .thumbnail_img {
	display: block;
	margin: 0 auto;
	max-height: var(--height-thumbnail);
	text-shadow: var(--text-shadow-normal);
	line-height: normal;
	text-align: center;
	color: var(--color-text-alpha2);
	background-image: var(--gradient-slash-invert);
	background-size: 20px 20px;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
ul.product_thumbnail_list li:hover .thumbnail_img {
	filter: brightness(1.1);
	transform: scale(1.03);
}
ul.product_thumbnail_list .thumbnail_img:not([src]),
ul.product_thumbnail_list .thumbnail_img[src=""] {
	aspect-ratio: var(--aspect-ratio-thumbnail);
}
ul.product_thumbnail_list .product_other_site .thumbnail_img {
	height: var(--height-thumbnail-other-site);
}
ul.product_thumbnail_list .thumbnail_price {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0.2rem 0.5rem;
	box-sizing: border-box;
	font-weight: bold;
	background-color: hsla(0, 0%, 0%, 0.5);
	color: var(--color-base);
	box-shadow: var(--box-shadow-near);
	line-height: normal;
	text-align: right;
	-webkit-backdrop-filter: var(--backdrop-filter-normal);
	backdrop-filter: var(--backdrop-filter-normal);
	pointer-events: none;
}
ul.product_thumbnail_list li[data-product-condition] .thumbnail_price_with_condition::after {
	content: "";
	display: block;
	height: 0.3rem;
	padding: 0rem 0.7rem;
	box-sizing: border-box;
	overflow: hidden;
	background-color: var(--color-disabled);
	border-radius: 3rem;
	font-size: 0.9rem;
	line-height: 1.4rem;
	font-family: var(--font-narrow);
	text-align: center;
	text-shadow: var(--text-shadow-near);
	box-shadow: var(--box-shadow-normal);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
ul.product_thumbnail_list li[data-product-condition]:hover .thumbnail_price_with_condition::after {
	height: 1.4rem;
}
ul.product_thumbnail_list li[data-product-condition]:not(:hover) .thumbnail_price_with_condition::after {
	content: "";
	color: transparent;
}
ul.product_thumbnail_list li[data-product-stock="sold-out"] {
	position: relative;
	filter: brightness(0.4);
}
ul.product_thumbnail_list li[data-product-stock="sold-out"]::after {
	content: "SOLD OUT";
	position: absolute;
	display: block;
	width: 100%;
	top: 50%;
	left: 50%;
	padding: 1rem;
	transform: translate(-50%, -50%);
	color: var(--color-text);
	background-color: hsla(0, 100%, 100%, 0.8);
	box-shadow: var(--box-shadow-near);
	font-family: var(--font-narrow);
	font-weight: bold;
	font-size: 1.2rem;
	line-height: normal;
	text-align: center;
	pointer-events: none;
}
ul.product_thumbnail_list li[data-product-condition="new"] .thumbnail_price_with_condition::after {
	content: "BRAND-NEW";
	background-color: var(--color-new);
	color: var(--color-text);
}
ul.product_thumbnail_list li[data-product-condition="used"] .thumbnail_price_with_condition::after {
	content: "USED";
	background-color: var(--color-sub);
	color: var(--color-text);
}
ul.product_thumbnail_list li[data-product-condition="pre-order"] .thumbnail_price_with_condition::after {
	content: "PRE-ORDER";
	background-color: var(--color-pre-order);
	color: var(--color-text);
}

ul.product_thumbnail_list .thumbnail_info_left {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	display: block;
	text-align: left;
	pointer-events: none;
	z-index: 1;
	animation: swap-z 10s linear 0s infinite;
}
@keyframes swap-z {
	0% {
		z-index: 1;
	}
	49% {
		z-index: 1;
	}
	50% {
		z-index: 0;
	}
	99% {
		z-index: 0;
	}
	100% {
		z-index: 1;
	}
} 
ul.product_thumbnail_list .thumbnail_volume_info {
	display: inline-block;
	border-radius: 0 50px 50px 0;
	padding: 0.3rem 0.8rem 0.3rem 0.6rem;
	font-family: var(--font-narrow);
	font-weight: bold;
	font-size: 1rem;
	line-height: 1rem;
	background-color: var(--color-sub-thin);
	color: var(--color-main-light);
	box-shadow: var(--box-shadow-near);
	text-align: left;
}
ul.product_thumbnail_list .thumbnail_volume_info.thumbnail_volume_info_alt {
	background: var(--color-sub);
	box-shadow:
	2px 0px 4px 0px rgba(0, 0, 0, 0.2),
	5px 0px 0px 0px var(--color-accent),
	7px 0px 4px 0px rgba(0, 0, 0, 0.2),
	10px 0px 0px 0px rgb(20, 190, 242),
	12px 0px 4px 0px rgba(0, 0, 0, 0.2),
	10px 0px 10px 0px rgba(0, 0, 0, 0.2);
	color: var(--color-main-light);
}
ul.product_thumbnail_list .thumbnail_bonus_info {
	display: inline-block;
	border-radius: 0 50px 50px 0;
	padding: 0.3rem 0.8rem 0.3rem 0.6rem;
	font-family: var(--font-narrow);
	font-weight: bold;
	font-size: 1rem;
	line-height: 1rem;
	background-color: var(--color-sub-thin);
	color: var(--color-main-light);
	box-shadow: var(--box-shadow-near);
	text-align: left;
}
ul.product_thumbnail_list .thumbnail_info {
	position: absolute;
	width: 100%;
	max-height: 100%;
	bottom: -0.5rem;
	left: 0;
	box-sizing: border-box;
	padding: 0.5rem;
	line-height: normal;
	background-color: hsla(0, 0%, 0%, 0.5);
	color: var(--color-base);
	-webkit-backdrop-filter: var(--backdrop-filter-normal);
	backdrop-filter: var(--backdrop-filter-normal);
	opacity: 0;
	box-shadow: var(--box-shadow-near);
	text-shadow: var(--text-shadow-near);
	white-space: normal;
	font-size: 0.8rem;
	text-align: center;
	overflow-y: hidden;
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
	pointer-events: none;
}
ul.product_thumbnail_list li:hover .thumbnail_info,
ul.product_thumbnail_list li.noimage .thumbnail_info {
	bottom: 0;
	opacity: 1;
}
ul.product_thumbnail_list .thumbnail_info_table {
	display: table;
	width: 100%;
	height: 100%;
}
ul.product_thumbnail_list .thumbnail_info_cell {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-size: 0.8rem;
}
ul.product_thumbnail_list .thumbnail_info .thumbnail_info_product_title::before {
	content: attr(data-title-default);
}

@media (any-hover: none) {
	ul.product_thumbnail_list .thumbnail_info {
		opacity: 1;
		background-color: transparent;
		box-shadow: none;
		text-shadow: 2px 2px 10px #000, -2px 2px 10px #000, 2px -2px 10px #000, -2px -2px 10px #000;
		bottom: 0;
	}
	ul.product_thumbnail_list .thumbnail_info_cell {
		vertical-align: bottom;
	}
	ul.product_thumbnail_list .thumbnail_info_cell * {
		text-shadow: none;
	}
	ul.product_thumbnail_list .thumbnail_info .thumbnail_info_product_title::before {
		content: attr(data-title-short);
	}
}

.merchant_toolbox {
	position: fixed;
	z-index: 200;
	top: 0;
	left: -200px;
	display: table;
	border-bottom-right-radius: 10px;
	opacity: 0.1;
	font-size: 16px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	transition-delay: 0.5s;
}
.merchant_toolbox:hover {
	opacity: 0.8;
	left: 0;
	transition-delay: 0s;
}
.merchant_toolbox > * {
	display: table-cell;
}
.toolbox_handle {
	width: 20px;
	background-color: #ff3333;
	color: #fff;
	font-size: 20px;
	padding: 5px 10px;
	vertical-align: middle;
	border-bottom-right-radius: 10px;
}
.toolbox_container {
	width: 200px;
	overflow-x: hidden;
	background-color: #000;
}
.toolbox_container > ul {
	list-style: none;
	border-top: 1px dashed rgba(255, 255, 255, 0.2);
}
.toolbox_container > ul:first-child {
	border-style: none;
}
.toolbox_container > ul > li > a {
	padding: 5px 10px;
	display: block;
	background-color: #000;
	color: #fff;
	text-align: center;
}
.toolbox_container > ul > li > a:hover {
	background-color: #fff;
	color: #000;
}
.toolbox_container > ul > li > a:focus {
	background-color: var(--color-sub);
	color: var(--color-main-light);
}
.toolbox_container > ul.toolbox_tools_default {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.toolbox_container > ul.toolbox_tools_default li {
	display: table-cell;
	font-size: 20px;
}
.toolbox_container > ul li.hidden {
	display: none;
}
.toolbox_container > ul li.disabled {
	pointer-events: none;
	opacity: 0.2;
}

.full_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 201;
}

@media only screen and (max-width: 1100px) {
	.single_line_list > li {
		display: none;
	}
	.single_line_list > li:nth-child(-n+3) {
		display: inline-block;
	}
	.double_line_list > li {
		display: none;
	}
	.double_line_list > li:nth-child(-n+6) {
		display: inline-block;
	}
	.triple_line_list > li {
		display: none;
	}
	.triple_line_list > li:nth-child(-n+9) {
		display: inline-block;
	}
}

.definition_table {
	width: 100%;
}
.definition_table caption {
	padding: 10px 20px;
	background-color: rgba(0, 0, 0, 0.05);
	font-size: 1.5rem;
	font-weight: bold;
}
.definition_table caption pre {
	display: block;
	padding: 10px 20px;
	box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.2), inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
	text-align: left;
	font-size: 1rem;
	font-weight: normal;
}
.definition_table td {
	padding: 10px 20px;
}
.definition_table td:first-of-type {
	font-weight: bold;
}
.definition_table tr + tr > td {
	border-top: 1px dashed #999;
}

.instant_search_form select option {
	color: #fff;
	background-color: #324161;
}

.submenu_branch {
	position: relative;
}
.submenu_branch > ul {
	position: absolute;
	display: block;
	visibility: hidden;
	left: 95%;
	top: 0;
	margin: 0;
	box-sizing: border-box;
	white-space: nowrap;
	background-color: var(--color-base);
	z-index: 1;
	box-shadow: var(--box-shadow-normal);
	opacity: 0;
	transition-delay: 0.2s;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.submenu_branch:hover > ul {
	visibility: visible;
	left: 100%;
	opacity: 1;
}
.submenu_branch > ul.align_bottom {
	top: auto;
	bottom: 0;
}
.index_menu_area ul li.submenu_branch > a {
	position: relative;
	padding: 0.5rem 2rem 0.5rem 1rem;
}
.submenu_branch > ul img {
	display: block;
}
.submenu_branch > a::after {
	position: absolute;
	top: 50%;
	right: 0.2rem;
	font-weight: bold;
	content: "\f0da";
	font: var(--fa-font-solid);
	transform: translate(-50%, -50%);
}

ul.tag_link {
	list-style: none;
	padding: 0 10px;
}

ul.tag_link li {
	width: 100%;
	display: table;
	margin: 1px 0;
	border-radius: 50px;
	border-collapse: collapse;
	padding: 1px 0 0 0;
	box-shadow: var(--box-shadow-near);
}

ul.tag_link li a {
	display: table-cell;
	position: relative;
	padding: 5px 10px;
	background-color: var(--color-base-dark);
	border-radius:50px;
	box-sizing:border-box;
	text-decoration: none;
	word-break: break-word;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}

ul.tag_link li a:hover {
	background-color: var(--color-active);
	color: var(--color-active-dark);
}

ul.tag_link li.delete_tag a {
	background-color: var(--color-text);
	color: var(--color-base);
}
ul.tag_link li.delete_tag a:hover {
	background-color: var(--color-stop);
	color: var(--color-base);
}

ul.tag_link li a:nth-of-type(2n) {
	background-color: hsla(0, 0%, 90%, 1);
}

ul.tag_link li a:nth-of-type(2n):hover {
	background-color: hsla(200, 50%, 50%, 1);
	color: #fff;
}

ul.tag_link .tag_link_layout {
	display: table;
	width: 100%;
}
ul.tag_link .tag_link_layout > span {
	display: table-cell;
	vertical-align: middle;
	padding: 0 5px;
}
ul.tag_link .tag_link_layout > span:first-of-type {
	padding: 0;
	width: 10px;
}
ul.tag_link .tag_link_layout > span:last-of-type {
	text-align: right;
	padding: 0;
	width: 10px;
}

ul.tag_link li a.button_add_positive_tags {
	border-radius: 50px;
}

ul.tag_link li a.button_add_negative_tags{
	border-radius: 0 50px 50px 0;
	width: 10%;
	text-align: center;
	vertical-align: middle;
}

ul.tag_link .item_count {
	font-weight: normal;
	font-size: 80%;
	color: inherit;
	opacity: 0.6;
}

ul.tag_link .seemore_link {
	width: 100%;
	
}

ul.tag_link .seemore_link a {
	width: 100%;
	box-sizing:border-box;
	padding: 5px 10px;
	border-radius:50px;
	background-color: var(--color-base-dark2);
	text-decoration: none;
	text-align: center;
	word-break: break-word;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}

ul.tag_link .seemore_link a:hover{
	background-color: var(--color-active);
	color: var(--color-active-dark);
}


.carousel_content {
	display: flex;
	list-style: none;
	font-size: 0;
	white-space: nowrap;
	overflow: scroll hidden;
	box-shadow: var(--box-shadow-normal-inset);
	scroll-snap-type: x mandatory;
	scrollbar-width: none;

	&::-webkit-scrollbar {
		display: none;
	}
}
.blog_entry_list {
	display: flex;
	flex-direction: column;
	list-style: none;
	font-size: 0;
	white-space: nowrap;
	overflow: hidden;
	box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.2), inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.carousel_content > li,
.blog_entry_list > li {
	font-size: 1rem;
	display: inline-block;
	white-space: normal;
	min-width: 100%;
	vertical-align: middle;
	scroll-snap-align: center;
}
.carousel_content > li img[data-src] {
	position: relative;
	height: 100%;
	background-color: var(--color-base-dark);
	color: var(--color-text);
	background-image: linear-gradient(90deg, var(--color-base-dark2), var(--color-base), var(--color-base-dark2));
	background-size: 200% 100%;
	animation: loading_scrolling_list_anime 2s linear infinite;
}
.carousel_content > li img[data-src]:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	content: "\f110";
	font: var(--fa-font-solid);
	font-size: 3rem;
	color: var(--color-text);
	animation: fa_spin 2s linear infinite;
}

.blog_parts {
	display: table;
	position: relative;
	width: 100%;
	height: 100%;
	animation: article_back_scroll_ 200s linear 0s infinite;
	background-position: 0 0;
	background-size: 0;
}
.blog_parts::before {
	content: "";
	position: absolute;
	top: -5px;
	right: -5px;
	bottom: -5px;
	left: -5px;
	background-color: var(--color-base);
	background-image: inherit;
	background-size: cover;
	background-position: center;
	filter: blur(5px) brightness(1.2) opacity(0.15) grayscale(80%);
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
}
.blog_parts:hover::before {
	filter: blur(5px) brightness(1.4) opacity(0.3) grayscale(0%);
}

@keyframes article_back_scroll {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: -1000% 0;
	}
}

.blog_parts .blog_img {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	padding: 10px;
	line-height: 0;
	width: 25%;
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
}
.blog_parts:hover .blog_img {
	filter: brightness(1.2);
}

.blog_parts .blog_img img {
	display: block;
	width: 100%;
	background-color: #eee;
	box-shadow: var(--box-shadow-near);
}

.blog_parts .blog_desc {
	display: table-cell;
	position: relative;
	vertical-align: middle;
	padding: 5px 20px;
	box-sizing: border-box;
	width: 75%;
	color: var(--color-text);
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	font-size: 1.4rem;
	overflow-y: hidden;
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
}

.blog_desc .blog_title {
	-webkit-text-stroke: 4px var(--color-base);
	paint-order: stroke;
	font-weight: normal;
	text-shadow: var(--text-shadow-near);
}

.blog_desc .blog_info {
	position: absolute;
	right: 10px;
	bottom: 0px;
	padding: 5px 20px;
	background-color: var(--color-base-dark);
	border-radius: 50px;
	opacity: 0;
	text-shadow: none;
	color: var(--color-text);
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
	box-shadow: var(--box-shadow-near);
}

.blog_parts:hover .blog_info {
	bottom: 10px;
	opacity: 1;
}

.blog_info .blog_date {
	font-size: 1rem;
}

.blog_info .blog_author {
	font-size: 1rem;
}

.blog_info .blog_author img {
	width: 25px;
	background-color: #eee;
	border-radius: 50px;
	vertical-align: -5px;
}
.blog_seemore {
	text-align: center;
}
.blog_seemore a {
	display: inline-block;
	margin: 0 1rem 1rem 1rem;
	padding: 1rem 2rem;
	border-radius: 0 0 10px 10px;
	border: 2px solid var(--color-text);
	border-top-width: 0;
	color: var(--color-text);
	box-shadow: inset 0 -0.3rem 0 0 var(--color-active), var(--box-shadow-near);
	text-shadow: var(--text-shadow-normal);
}
.blog_seemore a:hover {
	box-shadow: inset 0 0 0 0 var(--color-active), var(--box-shadow-near);
	border-color: var(--color-active);
}

.big_banner {
	width: 100%;
	height:auto;
	display: block;
}

.carousel_ui_container {
	position: relative;
	overflow: hidden;
}
.carousel_button {
	position: absolute;
	top: 0;
	width: 50px;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
	color: #fff;
	font-size: 2rem;
	opacity: 0;
	cursor: pointer;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.carousel_ui_container:hover .carousel_button {
	opacity: 0.8;
}
.carousel_ui_container:hover .carousel_button:hover {
	opacity: 1;
}
.carousel_ui_container:hover .carousel_button.left {
	left: 0;
}
.carousel_ui_container:hover .carousel_button.right {
	right: 0;
}
.carousel_button.left {
	left: -50px;
}
.carousel_button.right {
	right: -50px;
}
.carousel_indicator {
	position: absolute;
	bottom: 0;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	list-style: none;
	pointer-events: none;
}
.carousel_indicator .indicator_dot {
	display: inline-block;
	box-sizing: border-box;
	width: 12px;
	height: 12px;
	margin: 2px;
	border: 0 solid #000;
	box-shadow: inset 0 12px 0 0 #000;
	border-radius: 50%;
	font-size: 1rem;
	opacity: 0.1;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	cursor: pointer;
	pointer-events: auto;
}
.carousel_indicator .indicator_dot:hover {
	opacity: 0.3;
}
.carousel_indicator .indicator_dot.selected {
	border: 2px solid #000;
	box-shadow: inset 0 0 0 0 #000;
}

.cart_products {
	padding: 1rem;
}
.cart_product {
	position: relative;
	border-radius: 0.5rem;
	margin-bottom: 1rem;
	box-sizing: border-box;
	box-shadow: var(--box-shadow-near);
	overflow: hidden;
}
.cart_product .cart_product_anchor {
	display: table;
	width: 100%;
	background-color: #fff;
}
.cart_product .cart_product_anchor:hover {
	background-color: #f9f9f9;
}
.cart_product .cart_product_anchor:target,
.cart_product .cart_product_anchor:focus-visible {
	outline: none;
}
.cart_product .cart_product_anchor > div {
	display: table-cell;
	vertical-align: middle;
	word-break: break-word;
}
.cart_product .product_img {
	width: 30%;
}
.cart_product .product_img img {
	display: block;
	width: 100%;
	margin: 0 auto;
}
.cart_product .product_desc {
	color: var(--color-text);
	padding: 10px 5%;
}
.cart_product .product_original_title {
	font-size: 80%;
}
.cart_product .button_product_delete {
	position: absolute;
	top: 0;
	right: 0;
	width: 3rem;
	padding: 0.6rem 1rem;
	box-sizing: border-box;
	border-radius: 0 0 0 0.5rem;
	background-color: var(--color-base-dark);
	color: var(--color-text);
	text-align: center;
}
.cart_product .button_product_delete:hover {
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 0 0 0 5px;
	background-color: var(--color-stop);
	color: var(--color-base);
}
.cart_product .product_badges {
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
	pointer-events: none;
}
.cart_product .product_badges .product_badge {
	margin: 5px;
	padding: 2px 10px;
	border-radius: 50px;
	font-size: 0.6rem;
	box-shadow: var(--box-shadow-near);
}
.cart_product .product_badges .product_badge.product_badge_adult {
	background-color: #ff88a3;
	color: #fff;
}
table.cart_summary_table {
	max-width: 95%;
	font-size: 1.2rem;
	margin: 2rem auto;
	border: 1px solid var(--color-text);
	border-spacing: 0;
	box-shadow: var(--box-shadow-near);
}
table.cart_summary_table tr:nth-child(2n) {
	filter: brightness(1.2);
}
table.cart_summary_table tr td {
	padding: 0.6rem 1.2rem;
	background-color: var(--color-base-dark);
	color: var(--color-text);
}
table.cart_summary_table tr td:first-child {
	color: var(--color-base);
	background-color: var(--color-text);
}
table.cart_summary_table tr td.cart_summary_dollar {
	text-align: right;
}
table.cart_summary_table .cart_summary_total {
	font-weight: bold;
}

.amount_with_usd::before {
	content: "$";
	display: inline-block;
	margin-right: 0.2rem;
	font-size: 70%;
	opacity: 0.6;
}
.amount_with_usd::after {
	content: "(USD)";
	display: inline-block;
	margin-left: 0.2rem;
	font-size: 70%;
	opacity: 0.6;
}

.tag_description {
	display: block;
	width: 90%;
	margin: 3rem auto;
	border-radius: 1rem;
	padding: 1rem 2rem;
	box-sizing: border-box;
	font-size: 1.2rem;
	color: #666;
}

.tag_description img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

.tag_description h2 {
	text-align: center;
}
.tag_description h3 {
	text-align: center;
}
.tag_description h4 {
	text-align: center;
}
.tag_description ul,
.tag_description ol {
	margin: 0 30px;
}
.tag_description table {
	margin: auto;
}
.tag_description table td,
.tag_description table th {
	padding: 5px 20px;
	font-size: 1rem;
}
.tag_description tr th {
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 1.2rem;
}
.tag_description tr:nth-of-type(2n) {
	background-color: rgba(0, 0, 0, 0.02);
}
.tag_description tr:nth-of-type(2n+1) {
	background-color: rgba(0, 0, 0, 0.05);
}
.tag_description a {
	text-shadow: var(--text-shadow-near);
	text-decoration-line: underline;
	text-decoration-color: var(--color-text-alpha2);
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
}
.tag_description a:hover {
	text-decoration-line: underline;
	text-decoration-color: var(--color-text);
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
}

iframe[name="google_conversion_frame"] {
	position: absolute;
	top: 0;
	left: 0;
}

.star_indicator .star_positive {
	color: var(--color-star-active);
	text-shadow: var(--text-shadow-near);
}
.star_indicator .star_positive.star_negative {
	color: var(--color-star-active);
}
.star_indicator .star_negative {
	color: var(--color-text-alpha2);
}

.drawer {
	position: fixed;
	display: block;
	margin: 0 auto;
	bottom: 0;
	right: 0;
	height: var(--height-drawer);
	z-index: 200;
}
.drawer:hover {
	right: 0;
	transition-delay: 0;
}
.drawer .drawer_layout {
	position: relative;
	width: 5rem;
	height: 100%;
}
.drawer .drawer_layout > div {
	position: absolute;
}
.drawer .drawer_handle {
	height: 100%;
	width: 100%;
	background-color: var(--color-main);
	color: #fff;
	box-shadow: var(--box-shadow-near);
	z-index: 202;
}
.drawer .drawer_handle ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	height: 100%;
}
.drawer .drawer_handle li {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	box-sizing: border-box;
	width: 100%;
	text-align: center;
	font-size: 1.5rem;
	background-color: var(--color-main);
	color: var(--color-sub-thin);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.drawer .drawer_handle li.active {
	background-color: var(--color-sub);
	color: var(--color-main-light);
}
.drawer .drawer_handle .badge_notice[count]::after {
	position: absolute;
	top: calc(var(--height-drawer) / 6 - 1rem);
	right: 0.5rem;
}
.drawer .drawer_content {
	position: relative;
	height: var(--height-drawer);
	width: 800px;
	left: calc(5rem - 800px);
	padding-right: 5rem;
	border-radius: 1px 0 0 0;
	background-color: var(--color-base);
	box-shadow: 0 0 0 10px var(--color-main), 0 0 20px 10px rgba(0, 0, 0, 0.2);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	transition-delay: 0.3s;
	z-index: 201;
	overflow-y: hidden;
	visibility: hidden;
	opacity: 0;
}
.drawer .drawer_content > ul {
	width: 800px;
	list-style: none;
	position: absolute;
	top: 0;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.drawer .drawer_content > ul[pos="history"] {
	top: calc(var(--height-drawer) * -0);
}
.drawer .drawer_content > ul[pos="favorite"] {
	top: calc(var(--height-drawer) * -1);
}
.drawer .drawer_content > ul[pos="cart"] {
	top: calc(var(--height-drawer) * -2);
}
.drawer .drawer_content > ul > li {
	position: relative;
	display: block;
	height: var(--height-drawer);
}
.drawer .drawer_content > ul > li:last-of-type {
	border-radius: 10px 0 0 0;
}
.drawer .drawer_content > ul > li .drawer_content_caption {
	position: absolute;
	top: 0;
	left: 0;
	width: 4rem;
	height: auto;
	box-sizing: border-box;
	display: inline-block;
	border-radius: 0 0 10px 0;
	padding: 1rem;
	box-shadow: var(--box-shadow-near);
	font-size: 1.5rem;
	background-color: var(--color-main);
	color: var(--color-sub-thin);
	z-index: 202;
}
.drawer .drawer_content > ul > li .drawer_content_caption:hover {
	background-color: var(--color-sub);
	color: var(--color-main-light);
}

.drawer .drawer_handle:hover ~ .drawer_content,
.drawer .drawer_content:hover {
	left: -800px;
	opacity: 1;
	visibility: visible;
}
.drawer .drawer_content .loading_scrolling_list {
	height: var(--height-drawer);
	margin: 0;
}
.drawer .product_thumbnail_list::-webkit-scrollbar {
	display: none;
}

.drawer_close_background {
	position: fixed;
	top: 0;
	left: 0;
	border-radius: 0;
	width: 100%;
	height: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	opacity: 0;
	z-index: 199;
}

.drawer .drawer_content_noresult {
	position: absolute;
	width: 100%;
	height: var(--height-drawer);
	display: table;
}
.drawer .drawer_content_noresult > div {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.drawer .drawer_content_result {
	position: absolute;
	width: 100%;
	background-color: var(--color-base);
	z-index: 1;
}

.drawer .loading_scrolling_list {
	margin: 0;
}

.twitter_timeline {
	height: 600px;
	overflow-y: scroll;
}

ul.tag_link li a.button_disabled:hover{
	background-color: #999999;
	color: #ffffff;
	text-decoration: none;
}

span.wordwrap{
	display:inline-block;
}

.left_anime_title a > span.wordwrap {
	display: inline-block;
}

.main_header_operation ul.global_navigation_block {
	letter-spacing: normal;
}
.main_header_operation ul.global_navigation_block > li:first-of-type > a,
.main_header_operation ul.global_navigation_block > li:last-of-type > a {
	border-radius: 5px 5px 0 0;
}
.main_header_operation div.header_logo_block {
	width: auto;
	vertical-align: bottom;
}
.main_header_operation .layout_header_block nav {
	vertical-align: bottom;
	display: table-cell;
}
.main_header_operation div.header_logo_block img {
	width: 60px;
	height: 60px;
}
.main_header_operation .header_guide_block {
	width: 50%;
}

.footer_go_to_pagetop {
	margin: auto;
	width: 100%;
}

.slidein_notice {
	position: fixed;
	visibility: hidden;
	width: 30vw;
	min-width: 200px;
	max-width: 500px;
	left: -5rem;
	bottom: 3vh;
	transition-property: all;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
	font-size: 1rem;
	opacity: 0;
	z-index: 1000;
	white-space: nowrap;
}

.slidein_notice.slidein_notice_active {
	visibility: visible;
	left: 0;
	opacity: 1;
}

.slidein_notice_anchor {
	display: table;
	width: 100%;
	min-height: 64px;
	box-sizing: border-box;
	border-radius: 0 0.5rem 0.5rem 0;
	background-color: var(--color-text-alpha);
	color: var(--color-base);
	box-shadow: var(--box-shadow-normal);
}

.slidein_notice_anchor:hover {
	background-color: var(--color-text);
	color: var(--color-base);
}

.slidein_notice_anchor > div {
	display: table-cell;
}

.slidein_notice_anchor .slidein_notice_image {
	width: 64px;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	vertical-align: middle;
}

.slidein_notice_anchor .slidein_notice_text {
	padding: 1rem;
	vertical-align: middle;
	white-space: normal;
	hyphens: auto;
}

.slidein_notice_anchor .slidein_notice_text .slidein_notice_text_title {
	font-weight: bold;
	font-size: 1.2rem;
}

.slidein_notice_anchor .slidein_notice_text .slidein_notice_text_description {
	color: var(--color-base-dark2);
}

.slidein_notice .slidein_notice_button_close {
	position: absolute;
	width: 3rem;
	height: 3rem;
	right: -0.5rem;
	top: -0.5rem;
	border-radius: 5rem;
	box-sizing: border-box;
	background-color: var(--color-stop);
	color: var(--color-base);
	text-align: right;
	font-size: 1rem;
	text-shadow: var(--text-shadow-normal);
	box-shadow: var(--box-shadow-normal);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	cursor: pointer;
}

.slidein_notice .slidein_notice_button_close:hover {
	transform: scale(1.2);
}

.country_list {
	text-align: center;
	font-size: 0;
}
.country_list li {
	display: inline-block;
}
.country_list li a {
	position: relative;
	display: inline-block;
	margin: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	box-shadow: var(--box-shadow-near);
	background-color: var(--color-base-dark);
	color: var(--color-text);
	font-size: 1rem;
}
.country_list li a[count]::after {
	content: attr(count);
	position: absolute;
	border-radius: 50px;
	padding: 0 8px;
	top: -6px;
	right: -6px;
	background-color: var(--color-active);
	color: var(--color-text);
	box-shadow: var(--box-shadow-near);
	font-size: 0.8rem;
}
.country_list li a:hover {
	background-color: var(--color-active);
}
.country_list li a.button_country_list_other {
	font-weight: bold;
}

.hashtags_container {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	padding: 10px 10px;
	font-size: 0.9rem;
	background-color: var(--color-base-dark);
	list-style: none;
}
.hashtags_container a {
	display: inline-block;
	margin: 0.2rem;
	padding: 0.4rem 0.5rem;
	background-color: var(--color-base-dark);
	border: 1px solid var(--color-text-light);
	border-radius: 5px;
	color: var(--color-text);
	text-align: left;
	text-shadow: var(--text-shadow-near);
	box-shadow: inset 1px 1px 0px var(--color-base);
}
.hashtags_container a:hover {
	filter: brightness(110%);
}
.hashtags_container a::before {
	padding: 0 0.2rem 0 0;
	font: var(--fa-font-solid);
	content: "\0023";
}
.hashtags_container .hashtags_see_more {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.hashtags_container .hashtags_see_more label {
	display: block;
	padding: 2rem;
	box-sizing: border-box;
	font-size: 1.2rem;
	text-shadow: var(--text-shadow-near);
	text-align: center;
	background-image: linear-gradient(to bottom, transparent 0%, var(--color-base) 50%);
}
.hashtags_container .hashtags_see_more input[type="checkbox"] {
	display: none;
}
.hashtags_container .hashtags_see_more:has(input[type="checkbox"]:not(:checked)) {
	display: none;
}
.hashtags_container:not(.list_collapse) .hashtags_see_more {
	display: none;
}
.hashtags_container:has(.hashtags_see_more input[type="checkbox"]:checked) {
	max-height: 300px;
}
.hashtags_container:not(.list_collapse) {
	max-height: unset !important;
}

.paypal_link_container {
	margin: 10vh 0 2rem 0;
	text-align: center;
}
.paypal_link_container .paypal_link_note {
	color: hsla(200, 100%, 50%, 1);
}

.paypal_link_container.small_notice a {
	background: none;
}

.autocomplete_base {
	position: relative;
}
.autocomplete_base .search_recommend {
	position: absolute;
	width: fit-content;
	min-width: 100%;
	top: 100%;
	left: 0;
	box-sizing: border-box;
	z-index: 101;
	color: #666;
	background-color: #fff;
	overflow-x: hidden;
	white-space: nowrap;
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-in;
	box-shadow: 0 6px 10px 0 hsla(0, 0%, 0%, 0.2);
}
.autocomplete_base .search_recommend.hide {
	display: none;
}

.autocomplete_base .search_recommend .search_suggest_tag {
	display: block;
	padding: 1rem 2rem;
	border-bottom: 1px dashed #DDDDDD;
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
	font-size: 1rem;
	font-weight: normal;
	text-align: left;
	outline: none;
}
.autocomplete_base .search_recommend .search_suggest_tag:last-child {
	border-bottom: none;
}
.autocomplete_base .search_recommend .search_suggest_tag:hover,
.autocomplete_base .search_recommend .search_suggest_tag:focus {
	background: var(--color-sub);
}

#header_search_form.disabled {
	opacity: 0.3;
	pointer-events: none;
}

#header_search_form .input_text {
	text-align: center;
}

.big_genre_folder {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: calc(var(--height-thumbnail) + 4rem);
	
}
.big_genre_folder .big_genre {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	min-width: 4rem;
	flex: 1;
	height: 100%;
	overflow: hidden;
	box-shadow: var(--box-shadow-normal);
	background: hsl(0, 0%, 50%);
	background-color: var(--bgc);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.big_genre_folder .big_genre ul.product_thumbnail_list {
	padding: 2rem 3rem;
}
.big_genre_folder .big_genre:hover {
	flex: 1.1;
}
.big_genre_folder.active .big_genre:not(.opened) {
	flex: 0;
}
.big_genre_folder.active .big_genre:not(.opened):hover {
	flex: 0.1;
}
.big_genre_folder .big_genre .big_genre_title {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	flex: 1;
	width: 100%;
	height: 100%;
	padding: 0 1rem;
	color: var(--color-text);
	font-size: 2rem;
	font-weight: bold;
	font-style: italic;
	text-align: center;
	text-shadow: var(--text-shadow-normal);
	cursor: pointer;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.big_genre_folder .big_genre .big_genre_title .big_genre_image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: grayscale(100%) opacity(0.5);
	mix-blend-mode: multiply;
	background-image: none;
	transition-property: all;
	transition-duration: 2s;
	transition-timing-function: ease-out;
}
.big_genre_folder .big_genre:hover .big_genre_title {
	background-color: hsla(0, 100%, 100%, 0.2);
}
.big_genre_folder.active .big_genre .big_genre_title {
	padding: 0;
	-ms-writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
.big_genre_folder.active .big_genre.opened .big_genre_title {
	min-width: 4rem;
	flex: 0;
}

.big_genre_folder .big_genre .big_genre_title .big_genre_button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	visibility: hidden;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 3rem;
	background-color: hsla(0, 100%, 100%, 0.6);
	color: var(--color-text);
	box-shadow: var(--box-shadow-normal);
}
.big_genre_folder .big_genre.opened .big_genre_title .big_genre_button {
	visibility: visible;
}
.big_genre_folder .big_genre .big_genre_title .big_genre_button::before {
	content: "\f061";
	font: var(--fa-font-solid);
	font-size: 1rem;
}
.big_genre_folder .big_genre .big_genre_items {
	flex: 0;
	display: none;
}
.big_genre_folder .big_genre.opened .big_genre_items {
	display: block;
	flex: 1;
	width: calc(100% - 4rem);
	height: 100%;
}
.big_genre_folder .big_genre.opened .big_genre_items:has(.loading_scrolling_list) {
	display: table;
}
.big_genre_folder .big_genre.opened .big_genre_items [id^=scrolling_list_block_]:has(.loading_scrolling_list) {
	display: table-cell;
	vertical-align: middle;
}
.big_genre_folder .big_genre.opened .big_genre_items [id^=scrolling_list_block_] .loading_scrolling_list {
	color: var(--color-main);
}
.big_genre_folder .loading_scrolling_list {
	background-image: none;
	background-color: transparent;
}

.price_with_unit_offscreen {
	position: relative;
	position: absolute !important;
	z-index: -1 !important;
	opacity: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.price_with_unit_offscreen::before {
	content: "$";
}
.price_with_unit_visible {
	font-family: var(--font-narrow);
	font-weight: normal;
	font-size: 0.9rem;
}
.price_with_unit_visible::before {
	content: "$";
	margin-right: 0.1rem;
	font-size: 100%;
	line-height: 100%;
	vertical-align: 33%;
	opacity: 0.6;
}
.price_with_unit_visible .price_with_unit_integer {
	font-size: 150%;
	font-weight: bold;
	line-height: 100%;
}
.price_with_unit_visible .price_with_unit_point {
	position: absolute;
	opacity: 0;
}
.price_with_unit_visible .price_with_unit_fractional {
	margin-left: 0.1rem;
	font-size: 100%;
	line-height: 100%;
	vertical-align: 33%;
}

dialog#loading_view {
	color: var(--color-base);
	transition-duration: 0.8s;
}
dialog#loading_view i {
	font-size: 6rem;
}

[data-ajax-url] {
	display: flex;
	justify-content: center;
	align-items: center;
	height: calc(var(--height-thumbnail) + 1rem);
	margin: 1rem 0;
	background-image: linear-gradient(90deg, var(--color-base-dark), var(--color-base), var(--color-base-dark));
	background-size: 200% 100%;
	color: var(--color-text);
	animation: loading_scrolling_list_anime 2s linear infinite;
}
[data-ajax-url][data-loading-height="1"] {
	height: calc((var(--height-thumbnail) + 1rem) * 1);
}
[data-ajax-url][data-loading-height="2"] {
	height: calc((var(--height-thumbnail) + 1rem) * 2);
}
[data-ajax-url][data-loading-height="3"] {
	height: calc((var(--height-thumbnail) + 1rem) * 3);
}
[data-ajax-url][data-loading-height="4"] {
	height: calc((var(--height-thumbnail) + 1rem) * 4);
}
[data-ajax-url][data-loading-height="5"] {
	height: calc((var(--height-thumbnail) + 1rem) * 5);
}

[data-ajax-url]::before {
	content: "\f110";
	font: var(--fa-font-solid);
	font-size: 3rem;
	animation: fa_spin 2s linear infinite;
}
@keyframes fa_spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}



.full_center {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.seemore_cell {
	height: var(--height-thumbnail);
	aspect-ratio: var(--aspect-ratio-thumbnail);
	background-color: var(--color-sub);
	color: var(--color-main);
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
}

.seemore_cell i:first-of-type {
	font-size: 50px;
}

.horizontal_link_list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	width: fit-content;
	margin: 2rem auto;
	list-style: none;
	justify-content: center;
}
.horizontal_link_list a {
	white-space: nowrap;
	margin: auto;
}
.horizontal_link_list.small {
	gap: 0.5rem 0;
}
.horizontal_link_list.small > li + li::before {
	content: "|";
	margin: 0 1rem;
	opacity: 0.2;
}

.review_article,
.feedback_article {
	position: relative;
	margin: 4rem auto;
	max-width: 600px;
	font-size: 1rem;
}
.review_article .review_article_headline,
.feedback_article .feedback_article_headline {
	font-size: 2rem;
}
.review_article .review_article_rating,
.feedback_article .feedback_article_rating {
	margin: 1rem 0;
	font-size: 2rem;
}
.review_article .review_article_title,
.feedback_article .feedback_article_title {
	margin: 1rem 0;
	font-size: 1.5rem;
}
.review_article .review_article_comment,
.feedback_article .feedback_article_comment {
	margin: 1rem 0 0.5rem 0;
	word-break: break-word;
	hyphens: auto;
}
.review_article .review_article_info,
.feedback_article .feedback_article_info {
	font-size: 0.8rem;
	font-style: italic;
	text-align: right;
	color: var(--color-text-alpha);
}
.review_article .button_delete_article,
.feedback_article .button_delete_article {
	position: absolute;
	top: 0;
	right: 0;
	width: max-content;
}

.progress_bar {
	position: relative;
	height: 2.5rem;
	margin: 2rem 1rem;
	border-radius: 5rem;
	background-color: var(--color-base-dark);
	box-shadow: var(--box-shadow-near);
	overflow: hidden;
	-ms-user-select: none; /* IE 10+ */
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}
.progress_bar .progress_bar_bar {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	box-sizing: border-box;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: var(--color-main);
	box-shadow: var(--box-shadow-near);
	font-family: var(--font-theme);
	font-size: 1.2rem;
	text-shadow: var(--text-shadow-normal);
	white-space: nowrap;
}
.progress_bar .progress_bar_bar::before {
	visibility: hidden;
	position: absolute;
	right: 0;
	content: attr(data-caption);
	padding: 0 1rem;
	color: var(--color-base);
}
.progress_bar .progress_bar_bar::after {
	position: absolute;
	left: 100%;
	content: attr(data-caption);
	padding: 0 1rem;
	color: var(--color-main);
}
.progress_bar .progress_bar_bar.progress_bar_bar_high::before {
	visibility: visible;
}
.progress_bar .progress_bar_bar.progress_bar_bar_high::after {
	visibility: hidden;
}

[data-emoji]::before {
	content: attr(data-emoji);
	margin: 0 0.2rem;
	font-family: "Noto Color Emoji", sans-serif;
}

.expandable {
	--transition-duration: 0.4s;
	display: none;
	height: 0;
	padding-top: 0;
	padding-bottom: 0;
	opacity: 0;
	transition: 
	display var(--transition-duration) allow-discrete, 
	padding var(--transition-duration),
	height var(--transition-duration), 
	opacity var(--transition-duration);
	interpolate-size: allow-keywords; 
}
.expandable.expandable_noanimation {
	transition: none;
}
.expandable.expanded {
	display: block;
	height: auto;
	opacity: 1;
}

@starting-style {
	.expandable.expanded {
		height: 0;
		padding-top: 0;
		padding-bottom: 0;
		opacity: 0;
	}
}
