:root {
  --color-base: hsl(0, 0%, 100%);
  --color-base-dark: hsl(0, 0%, 98%);
  --color-base-dark2: hsl(0, 0%, 96%);
  --color-main: hsl(120, 90%, 50%);
  --color-main-light: hsl(120, 100%, 88%);
  --color-main-dark: hsl(120, 29%, 48%);
  --color-main-thin: hsl(353, 100%, 95%);
  --color-active: hsl(300, 90%, 50%);
  --color-active-light: hsl(300, 90%, 80%);
  --color-active-dark: hsl(300, 95%, 38%);
  --color-go: hsl(120, 90%, 50%);
  --color-go-light: hsl(120, 100%, 88%);
  --color-go-dark: hsl(120, 29%, 48%);
  --color-disabled: hsl(0, 0%, 95%);
  --color-disabled-dark: hsl(0, 0%, 70%);
  --color-stop: hsl(0, 90%, 50%);
  --color-stop-light: hsl(0, 100%, 70%);
  --color-stop-dark: hsl(0, 50%, 50%);
  --color-bg: #ffffff;
  --color-text: hsl(0, 0%, 0%);
  --color-text-light: hsl(0, 0%, 60%);
  --color-text-light2: hsl(0, 0%, 85%);
  --color-text-alpha: hsla(0, 0%, 47%, 0.8);
  --color-text-alpha2: hsla(0, 0%, 47%, 0.2);
  --color-star-active: hsla(50, 100%, 50%, 1);

	--font-default: "Avenir Next", Verdana, "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
  --font-price: Miso, 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, 30%, 20%, 0.2);
  --box-shadow-normal-inset: inset 0 4px 12px 0 hsla(0, 30%, 20%, 0.1);
  --box-shadow-near: 0 2px 5px 0 hsla(0, 30%, 20%, 0.2);
  --box-shadow-near-inset: inset 0 2px 5px 0 hsla(0, 30%, 20%, 0.15);
  --box-shadow-far: 0 0 20px 0 hsla(0, 30%, 20%, 0.2);
  --text-shadow-normal: 2px 2px 2px hsla(0, 30%, 20%, 0.1);
  --text-shadow-near: 1px 1px 0px hsla(0, 30%, 20%, 0.15);
  --text-shadow-border: 0 2px 0 hsl(0, 0%, 100%), 0 -2px 0 hsl(0, 0%, 100%), 2px 0 0 hsl(0, 0%, 100%), -2px 0 0 hsl(0, 0%, 100%);

  --gradient-slash: linear-gradient(-45deg, hsla(0, 0%, 98%, 1) 20%, hsla(0, 0%, 95%, 1) 20% 25%, hsla(0, 0%, 98%, 1) 25% 70%, hsla(0, 0%, 95%, 1) 70% 75%, hsla(0, 0%, 98%, 1) 75%);
  --gradient-slash-invert: linear-gradient(-45deg, hsla(0, 0%, 95%, 1) 20%, hsla(0, 0%, 98%, 1) 20% 25%, hsla(0, 0%, 95%, 1) 25% 70%, hsla(0, 0%, 98%, 1) 70% 75%, hsla(0, 0%, 95%, 1) 75%);
  --gradient-slash-bold: linear-gradient(-45deg, hsla(0, 0%, 98%, 1) 20%, hsla(0, 0%, 95%, 1) 20% 30%, hsla(0, 0%, 98%, 1) 30% 70%, hsla(0, 0%, 95%, 1) 70% 80%, hsla(0, 0%, 98%, 1) 80%);

  --backdrop-filter-normal: blur(6px);

  --height-product-thumbnail: 180px;
}

@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: 0px;
    padding: 0px;
}

::selection {
  background-color: hsl(300, 90%, 50%);
  color: hsl(0, 0%, 100%);
}

::-webkit-scrollbar {  /* Chrome, Safari 対応 */
  display:none;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 20dvh;
}
html:has(input:focus) {
	scroll-padding-top: 0;
}

body {
  font-family: var(--font-default);
  background: var(--gradient-slash);
  background-size: 20px 20px;
  background-attachment: fixed;
  overflow-x: hidden;
  color: var(--color-text);
  line-height: 1.5;
}
img {
    border: 0px;
    -ms-interpolation-mode: bicubic;
  aspect-ratio: attr(width) / attr(height);
}

a {
  color: var(--color-text);
  text-decoration: none;
  text-shadow: var(--text-shadow-near);
  transition-property: all;
  transition-duration: 0.0s;
  transition-timing-function: ease-out;
}
a:hover {
  color: var(--color-text);
  text-decoration: none;
  text-shadow: none;
}

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

input[type="radio"]+label[for] {
	cursor: pointer;
}
input[type="radio"]:checked + label {
  text-decoration: underline;
}
input[list]::-webkit-list-button {
  visibility: hidden;
}

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

a.inline_link {
	text-decoration-line: underline;
	text-decoration-color: var(--color-text-alpha2);
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
}
a.inline_link:hover {
	text-decoration-line: underline;
	text-decoration-color: var(--color-active);
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
}

.multiline_text {
  text-align: justify;
}

.advanced_radio_input {
  padding: 4px 0;
  font-size: 0;
}
.advanced_radio_input input[type="radio"] {
  display: none;
}
.advanced_radio_input input[type="radio"] + label {
  padding: 0.5rem 1rem;
  background-color: var(--color-base-dark);
  text-decoration: none;
  font-size: 1rem;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
.advanced_radio_input input[type="radio"] + label:hover {
  background-color: var(--color-active);
  color: var(--color-base);
}
.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);
  text-shadow: var(--text-shadow-normal);
  pointer-events: none;
}
.advanced_radio_input input[type="radio"] + label:first-of-type {
  border-radius: 50px 0 0 50px;
  border-style: none;
}
.advanced_radio_input input[type="radio"] + label:last-of-type {
  border-radius: 0 50px 50px 0;
}

img.valign_middle { vertical-align: middle; }

span.bold { font-weight: bold; }
span.nobr { white-space: nowrap; }
span.valign_middle { vertical-align: middle; }
span.large  { font-size: 15px; }
span.small  { font-size: 12px; }
span.nowrap { white-space: nowrap; }
span.underline { text-decoration: underline; }
span.textsearch_snippet_hit { color: #ff0000; }

div.full_width       { width: 100%;        }
div.text_centering   { text-align: center; }
div.text_align_left  { text-align: left;   }
div.text_align_right { text-align: right;  }
div.small_font       { font-size: 12px;    }

div.justify_block {
    text-align: justify;
    text-justify: newspaper;
}

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

div.inline_block {
    display: inline-block;
}

div.margin_1px  { margin:  1px; }
div.margin_5px  { margin:  5px; }
div.margin_10px { margin: 10px; }
div.margin_15px { margin: 15px; }
div.margin_20px { margin: 20px; }

div.padding_1px  { padding:  1px; }
div.padding_5px  { padding:  5px; }
div.padding_10px { padding: 10px; }
div.padding_15px { padding: 15px; }
div.padding_20px { padding: 20px; }

div.vspacer_1em  { height: 1em; width: 0px; }
div.vspacer_2em  { height: 2em; width: 0px; }
div.vspacer_3em  { height: 3em; width: 0px; }
div.vspacer_4em  { height: 4em; width: 0px; }
div.vspacer_5em  { height: 5em; width: 0px; }

div.vspacer_5px  { height: 5px;  width: 0px; }
div.vspacer_10px { height: 10px; width: 0px; }
div.vspacer_15px { height: 15px; width: 0px; }
div.vspacer_20px { height: 20px; width: 0px; }
div.vspacer_25px { height: 25px; width: 0px; }
div.vspacer_30px { height: 30px; width: 0px; }
div.vspacer_40px { height: 40px; width: 0px; }
div.vspacer_50px { height: 50px; width: 0px; }

div.block_200 { width: 200px; }
div.block_300 { width: 300px; }
div.block_400 { width: 400px; }
div.block_500 { width: 500px; }
div.block_600 { width: 600px; }
div.block_700 { width: 700px; }
div.block_800 { width: 800px; }
div.block_900 { width: 900px; }

div.centering_block_300 { margin: 5px auto 5px auto; width: 300px; }
div.centering_block_400 { margin: 5px auto 5px auto; width: 400px; }
div.centering_block_500 { margin: 5px auto 5px auto; width: 500px; }
div.centering_block_600 { margin: 5px auto 5px auto; width: 600px; }
div.centering_block_700 { margin: 5px auto 5px auto; width: 700px; }
div.centering_block_800 { margin: 5px auto 5px auto; width: 800px; }
div.centering_block_900 { margin: 5px auto 5px auto; width: 900px; }

div.message_block_full { background-color: #fff8e0; }
div.message_block_300  { background-color: #fff8e0; width: 275px; }
div.message_block_400  { background-color: #fff8e0; width: 375px; }
div.message_block_500  { background-color: #fff8e0; width: 475px; }
div.message_block_600  { background-color: #fff8e0; width: 575px; }
div.message_block_700  { background-color: #fff8e0; width: 675px; }

div.border_block_full { border: solid 1px #888888; }
div.border_block_300  { border: solid 1px #888888; width: 275px; }
div.border_block_400  { border: solid 1px #888888; width: 375px; }
div.border_block_500  { border: solid 1px #888888; width: 475px; }
div.border_block_600  { border: solid 1px #888888; width: 575px; }
div.border_block_700  { border: solid 1px #888888; width: 675px; }

div.border_block_full, div.message_block_full,
div.border_block_300,  div.message_block_300,
div.border_block_400,  div.message_block_400,
div.border_block_500,  div.message_block_500,
div.border_block_600,  div.message_block_600,
div.border_block_700,  div.message_block_700 {
    margin: 5px auto 5px auto;
    padding: 6px 12px 6px 12px;
    text-align: justify;
    text-justify: newspaper;
}

table.message_block_full {
	font-size: 120%;
	margin: 5px auto;
	padding: 6px 12px;
	text-align: justify;
}
table.message_block_full tr td {
  padding: 4px 10px;
}
table.message_block_full tr td:first-child {
  color: #ff9900;
  border-bottom: 3px solid #ff9900;
  width: 30%;
  font-weight: bold;
}
table.message_block_full tr td:nth-child(2) {
  border-bottom: 1px solid #ff9900;
}
table.message_block_full tr td:first-child {
  text-align: right;
  white-space: nowrap;
}
table.message_block_full tr:nth-child(2n+1) {
}

table.cart_summary_table {
  max-width: 95%;
	font-size: 1rem;
	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.1);
}
table.cart_summary_table tr td {
  padding: 0.6rem 1rem;
  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);
  text-align: right;
}

/*****************************************************************************/
/* <h*> headers                                                              */
/*****************************************************************************/
h2.section_header {
  margin: 2.5rem 0;
  padding: 0 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(transparent 0% 47%, var(--color-main) 47% 53%, transparent 53% 100%);
  color: var(--color-text);
  text-align: center;
  text-shadow: var(--text-shadow-border);
  background-repeat: repeat-y;
  background-size: auto 2rem;
  line-height: 2rem;
}

h2.section_header a {
  text-shadow: var(--text-shadow-border);
	text-decoration-line: underline;
	text-decoration-color: var(--color-text);
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
}
h2.section_header a:hover {
	text-decoration-line: underline;
	text-decoration-color: var(--color-active);
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
}
h2.section_header a:not([href]) {
  text-decoration: none;
}

h3.subsection_header {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-text);
  margin: 2rem 0px 1rem 0px;
  text-align: center;
}

h4.subsubsection_header {
    font-size: 14px;
    color: #324161;
    margin: 15px 0px 10px 0px;
}

h5.message_header {
    font-size: 15px;
    margin-bottom: 5px;
}


/*****************************************************************************/
/* lists                                                                     */
/*****************************************************************************/
ol.standard_list    { margin: 5px 0px 5px 30px; }
ol.standard_list li { margin: 0px 0px 5px 0px; }

ul.standard_list    { margin: 5px 0px 5px 25px; }
ul.standard_list li { margin: 0px 0px 5px 0px; }

dl.standard_list    { margin: 5px 0px 5px 11px; }
dl.standard_list dt { font-weight: bold; }
dl.standard_list dd { margin: 0px 0px 5px 0px; padding-left: 30px; }

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

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

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

ul.custom_list {
    margin: 5px 0px 5px 36px;
}

ul.custom_list li {
    list-style-type: none;
    position: relative;
    margin: 0px 0px 5px 0px;
}

ul.base_aligned_custom_list {
    margin: 5px 0px 5px 25px;
}

ul.base_aligned_custom_list li {
    list-style-type: none;
    position: relative;
    margin: 0px 0px 5px 0px;
}

span.custom_list_bullet {
    position: absolute;
    top: 0px;
    left: -25px;
}

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

/*****************************************************************************/
/* tables                                                                    */
/*****************************************************************************/
table.standard_table {
    border-spacing: 0px;
    border-collapse: collapse;
    margin: 5px 0px 5px 0px;
}

table.standard_table td, table.standard_table th {
    border-right:  1px solid #ffffff;
    padding: 5px 10px 5px 10px;
}
table.standard_table td:last-child, table.standard_table th:last-child {
    border-right-style: none;
}

table.standard_table th {
    font-weight: normal;
    text-align: center;
    background-color: #ff9900;
    color: #ffffff;
}

table.standard_table tr:nth-child(2n) {
  background-color: rgba(128, 128, 128, 0.2);
}

table.standard_table tr:nth-child(2n+1) {
  background-color: rgba(128, 128, 128, 0.1);
}

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;    }
.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.aligned_fieldset {
    width: 100%;
    border-style: none;
    margin-bottom: 15px;
}

fieldset.aligned_fieldset form {
  margin: 3%;
}

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

fieldset.aligned_fieldset input[type="file"],
fieldset.aligned_fieldset input[type="text"],
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: 1px 1px 4px 0 rgba(0,0,0,0.2) inset;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  box-sizing: border-box;
  padding: 2px 8px;
  background-color: #eeeeee;
  font-size: 1rem;
}

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="email"]:focus,
fieldset.aligned_fieldset input[type="password"]:focus,
fieldset.compact_fieldset input[type="text"]:focus,
fieldset.compact_fieldset input[type="password"]:focus,
fieldset.aligned_fieldset select:focus {
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.2) inset;
  background-color: #ffffff;
  outline: 8px solid rgba(255, 153, 0, 0.1);
}

fieldset.aligned_fieldset input[type="file"]:hover,
fieldset.aligned_fieldset input[type="text"]:hover,
fieldset.aligned_fieldset input[type="email"]:hover,
fieldset.aligned_fieldset input[type="password"]:hover,
fieldset.compact_fieldset input[type="text"]:hover,
fieldset.compact_fieldset input[type="password"]:hover,
fieldset.aligned_fieldset select:hover {
}

textarea.flat_textarea {
    border: 1px solid #888888;
    margin-bottom: 15px;
    font-size: 14px;
}

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

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

fieldset.aligned_fieldset textarea:focus,
fieldset.compact_fieldset textarea:focus {
  background-color: #ffffff;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.2) inset;
  outline: 8px solid rgba(255, 153, 0, 0.1);
}

fieldset.aligned_fieldset textarea:hover,
fieldset.compact_fieldset textarea:hover {
}

.form_caption {
  display: inline-block;
  background-color: #324161;
  color: #ffffff;
  margin: 20px 0 0 0;
  border-radius: 0 4px 0 0;
  padding: 4px 10px;
}
.form_caption_default {
  display: inline-block;
  background-color: #324161;
  color: #ffffff;
  margin: 20px 0 0 0;
  border-radius: 4px 4px 0 0;
  padding: 4px 10px;
}
.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_optional {
  display: inline-block;
  background-color: #999999;
  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_box {
  min-width: 60%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 20px 20px 20px;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.2) inset;
  background-color: #f9f9f9;
}

.standard_form {
  padding: 0rem 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: 768px) {
  .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-bg);
	background-color: var(--color-active);
	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 input::-webkit-input-placeholder,
.form_input_container textarea::-webkit-input-placeholder {
  color:hsla(0, 0%, 0%, 0.2);
}
.form_input_container input::-moz-input-placeholder,
.form_input_container textarea::-moz-input-placeholder {
  color:hsla(0, 0%, 0%, 0.2);
}
.form_input_container input::-ms-input-placeholder,
.form_input_container textarea::-ms-input-placeholder {
  color:hsla(0, 0%, 0%, 0.2);
}
.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;
  -webkit-hyphens: auto;
  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);
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.form_input_container .input_label_strong {
  font-weight: bold;
}
.form_input_container_sub {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
	padding: 0 2rem;
	background-color: hsl(0, 0%, 95%);
  border-left: 4px solid var(--color-main);
}
.form_input_container > .form_input.g-recaptcha {
  overflow-x: scroll;
}
.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-text);
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
  text-decoration: underline;
}
.form_input_container > .form_input input[type=checkbox] + label:hover {
  filter: brightness(1.1);
}
.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-text);
}
.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: #fff;
}
.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-text);
  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-text);
}
.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: hsl(0, 0%, 100%);
  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-active);
  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-bg);
	background-color: var(--color-active);
	box-shadow: var(--box-shadow-near);
	transform: rotate(-45deg);
}

.vertical_space {
  height: 20vh;
}

.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-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.button_default {
  display: block;
  box-sizing: border-box;
  width: 80%;
  max-width: 500px;
  margin: 2rem auto;
  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;
}

.button_default:hover,
.button_default:focus {
  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: 1rem;
}

.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: block;
  box-sizing: border-box;
  width: 80%;
  max-width: 500px;
  margin: 2rem auto;
  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;
}

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

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

.button_go {
  display: block;
  box-sizing: border-box;
  width: 80%;
  max-width: 500px;
  margin: 2rem auto;
  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;
}

.button_go:hover,
.button_go:focus {
  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: 1rem;
}

.button_stop {
  display: block;
  box-sizing: border-box;
  width: 80%;
  max-width: 500px;
  margin: 2rem auto;
  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;
}

.button_stop:hover,
.button_stop:focus {
  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: 1rem;
}

.button_delete {
  display: block;
  box-sizing: border-box;
  width: 80%;
  max-width: 500px;
  margin: 2rem auto;
  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;
}

.button_delete:hover,
.button_delete:focus {
  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: 1rem;
}

.button_admin {
  display: block;
  box-sizing: border-box;
  width: 80%;
  max-width: 500px;
  margin: 2rem auto;
  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;
}

.button_admin:hover,
.button_admin:focus {
  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: 1rem;
}

.button_note {
  margin-left: 0.5rem;
  display: inline-block;
  font-size: 60%;
}

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

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

fieldset.compact_fieldset {
    background-color: #fff8e0;
    border: none;
    padding: 20px 10px;
}

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

fieldset.compact_fieldset form {
    margin: 0px 10px 0px 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;
}

/*****************************************************************************/
/* other standard styles                                                     */
/*****************************************************************************/
p.standard_paragraph {
    text-indent: 1em;
    margin-bottom: 0.5em;
}

pre.source_code {
    background-color: #000000;
    color: #ffffff;
    text-align: left;
    margin: 5px 0px 5px 0px;
    padding: 5px;
}

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

div.foundation_background {
    margin: 1px auto 0px auto;
}

div.foundation_block {
    margin: 0px auto 0px auto;
    background-color: var(--color-base);
    font-size: 1.2rem;
    max-width: 768px;
    box-shadow: var(--box-shadow-normal);
}


/*****************************************************************************/
/* layout_header_block                                                       */
/*****************************************************************************/


div.layout_header_block {
  position: relative;
  background-color: var(--color-base);
	z-index: 2;
}

.header_logo {
  display: block;
  text-align: center;
}
.header_logo img {
  display: block;
  margin: auto;
  width: 75%;
  height:auto;
  border-radius: 0 0 5px 5px;
}

.header_menu_container {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  z-index: 11;
  top: 0;
  box-shadow: 0px 10px 8px 0px rgba(0, 0, 0, 0.2);
}

.header_menu_container.hidden {
  position: relative;
}

.header_menu {
  display: flex;
  padding: 5px 10% 0 10%;
  box-sizing: border-box;
  width: 100%;
  height: 4rem;
  box-sizing: border-box;
  border-bottom: 3px solid var(--color-main);
  background-color: var(--color-base);
}

.header_menu li {
  flex: 1;
  list-style: none;
}

.header_menu li a {
	position: relative;
  display: block;
  height: 100%;
  border-radius: 0.5rem 0.5rem 0 0;
  color: var(--color-text);
  font-size: 1.2rem;
  text-align: center;
  transition-property: background, color;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
.header_menu li a i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (min-width: 414px) {
  .header_menu li a {
    font-size: 1.5rem;
  }
}

.header_menu li a:hover,
.header_menu li a:active {
	background-color: var(--color-active);
  color: var(--color-base);
}

.header_menu li input[type=checkbox] {
  display: none;
}

.header_menu li label {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 0.5rem 0.5rem 0 0;
  color: var(--color-text);
  font-size: 1.2rem;
  text-align: center;
  transition-property: background, color;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
@media (any-hover: hover) {
	.header_menu li label {
		cursor: pointer;
	}
  .header_menu li label:hover {
		background-color: var(--color-active);
    color: var(--color-base);
  }
}

.header_menu li input[type=checkbox]:checked + label {
  background: var(--color-text);
  color: var(--color-base);
}

.header_menu li input[type=checkbox] + label > i,
.header_menu li input[type=checkbox] + label::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.header_menu li input[type=checkbox] + label::before {
	font: var(--fa-font-solid);
	content: "\f00d";
	top: 100%;
	opacity: 0;
	visibility: hidden;
}
.header_menu li input[type=checkbox]:checked + label::before {
	top: 50%;
	opacity: 1;
	visibility: visible;
}
.header_menu li input[type=checkbox] + label > i {
	top: 50%;
	opacity: 1;
	visibility: visible;
}
.header_menu li input[type=checkbox]:checked + label > i {
	top: 0%;
	opacity: 0;
	visibility: hidden;
}

@media (min-width: 414px) {
  .header_menu li label {
    font-size: 1.5rem;
  }
}

.header_toggle_menu {
  position: absolute;
  bottom: 0;
}

.header_toggle_menu.opened {
  top: 0;
}

div.header_guide_block {
    text-align: right;
}

div.header_site_description{
    color: #773300;
    font-size: 15px;
}

div.global_navigation_block {
  position: absolute;
  padding: 1rem 0;
	background-color: hsla(0, 0%, 95%, 0.8);
	-webkit-backdrop-filter: var(--backdrop-filter-normal);
	backdrop-filter: var(--backdrop-filter-normal);
  box-shadow: var(--box-shadow-normal);
}

div.global_navigation_block a {
  padding: 1rem 0 0.8rem 0;
  font-size: 1rem;
  display: inline-block;
  text-align: center;
  color: var(--color-text);
  text-decoration: none;
  width: 25%;
  text-shadow: var(--text-shadow-normal);
}

div.global_navigation_block a[href="/product/text_search.html?type=header_tab"] {
  display: none;
}

div.global_navigation_block a:hover {
    color: var(--color-base);
    background: var(--color-active);
    box-shadow: var(--box-shadow-normal);
}

div.global_navigation_block a i {
  font-size: 2.2rem;
	position: relative;
}
.global_navigation_block .global_navigation_block_special {
  padding: 0 1rem;
}
.global_navigation_block .global_navigation_block_special a {
  position: relative;
  display: block;
  width: auto;
  max-width: 400px;
  margin: 1rem auto;
  border-radius: 5rem;
  padding: 1rem 2rem;
  box-sizing: border-box;
  background-color: var(--color-bg);
  color: var(--color-sub);
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: var(--box-shadow-normal);
}
.global_navigation_block .global_navigation_block_special a::after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  right: 0;
  top: 0;
  padding: 0 1.5rem;
  content: "\f061";
  font: var(--fa-font-solid);
}
.global_navigation_block .global_navigation_block_group1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  padding: 0 1rem;
}
.global_navigation_block .global_navigation_block_group1 a {
  border: 2px solid var(--color-text);
  border-right-width: 0;
  box-shadow: var(--box-shadow-normal);
  white-space: nowrap;
}
.global_navigation_block .global_navigation_block_group1 a:first-of-type {
  border-radius: 0.5rem 0 0 0.5rem;
}
.global_navigation_block .global_navigation_block_group1 a:last-of-type {
  border-radius: 0 0.5rem 0.5rem 0;
  border-right-width: 2px;
}

.global_navigation_block .global_navigation_block_group2 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 1rem auto;
  padding: 0 1rem;
}
.global_navigation_block .global_navigation_block_group2 a {
  width: auto;
  flex: 1;
  padding: 1rem 0.5rem 0.8rem 0.5rem;
  white-space: nowrap;
  font-size: 1rem;
}
.global_navigation_block .global_navigation_block_group2 a i {
  font-size: 1.8rem;
}

.global_navigation_block .global_navigation_block_group3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 1rem;
}
.global_navigation_block .global_navigation_block_group3 a {
  width: auto;
  padding: 0.5rem;
  white-space: nowrap;
  font-size: 1rem;
}
.global_navigation_block .global_navigation_block_group3 a i {
  font-size: 1rem;
}

.global_navigation_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: hsla(0, 0%, 0%, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s;
	z-index: 1;
}

body:has(.header_menu #checkbox_header_search_block:checked) .global_navigation_overlay[for=checkbox_header_search_block],
body:has(.header_menu #checkbox_global_navigation_block:checked) .global_navigation_overlay[for=checkbox_global_navigation_block] {
	opacity: 1;
	visibility: visible;
}

/*****************************************************************************/
/* layout_body_block                                                         */
/*****************************************************************************/
body {
}

div.layout_body_block {
  margin: 5px 0px 0px 0px;
  overflow-x: hidden;
}

.layout_body_block_bottom {
  /* !!! for iOS safari scroll bug !!! */
  margin: 1px 0 0 0;
}

/* The following widths work only for two columns. */
div.layout_column_1_quarter { width: 221px; float: left; }
div.layout_column_2_quarter { width: 442px; float: left; }
div.layout_column_3_quarter { width: 663px; float: left; }
div.layout_column_1_third   { width: 295px; float: left; }
div.layout_column_2_third   { width: 589px; float: left; }


div.layout_column_hspacer {
    float: left;
    width: 10px;
}

div.two_column_text {
    float: left;
    padding: 10px;
    width: 430px;
}


/*****************************************************************************/
/* layout_footer_block                                                       */
/*****************************************************************************/
div.layout_footer_block {
  color: var(--color-base);
  margin-top: 5rem;
  padding: 2rem 0 6rem 0;
  background-color: var(--color-text);
}

div.footer_copyright {
    text-align: center;
    margin-top: 10px;
}

.footer_menu {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 12%;
  font-size: 1.2rem;
}
.footer_menu > li {
  box-sizing: border-box;
  padding: 10px;
  margin: 0 auto;
  width: 230px;
  font-weight: bold;
}
.footer_menu .footer_submenu {
  list-style: none;
  font-weight: normal;
  font-size: 0.8rem;
}
.footer_menu a {
  color: #fff;
  display: inline-block;
  margin: 0 0 2px 5px;
  padding: 0;
  font-size: 1.2rem;
	text-decoration-line: underline;
	text-decoration-color: hsla(0, 0%, 100%, 0.4);
	text-decoration-style: solid;
	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-color: hsla(0, 0%, 100%, 1);
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
}
@media only screen and (min-width: 570px) {
  .footer_menu {
    padding: 0 8%;
  }
}

/*****************************************************************************/
/* layout box style rules                                                    */
/*****************************************************************************/
div.layout_box_shadow {
    height: 100%;
    /* border-right: 4px solid #e6e6e6;  */
    /* border-bottom: 4px solid #e6e6e6; */
    margin: 0px 0px 10px 0px;
}

div.layout_box_border {
    border: 1px solid #773300;
    display: inline-block;
    width: 100%;
}

div.layout_box_header {
    border-bottom: 1px solid #773300;
}

h1.layout_box_header {
  background-color: #324161;
  color: #ffffff;
  padding: 10px;
    font-weight: bold;
    overflow: hidden;
  text-align: center;
  font-size: 24px;
}

img.layout_box_header_icon {
    margin: -5px 5px 0px 2px;
    vertical-align: middle;
}

hr.box_separator_10 {
    height: 0px;
    border: 0px;
    border-top: 1px solid #aaaaaa;
    margin: 10px 0px 10px 0px;
}


/*****************************************************************************/
/* textsearch and pagination style rules                                     */
/*****************************************************************************/
.paginator_link_list {
    width: 100%;
    text-align: center;
    margin: 3rem 0;
    font-size: 1.2rem;
}

.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);
  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;
  background-color: var(--color-base);
}
ul.paginator_indexes li > span {
  padding: 0.5rem 1rem;
  display: block;
  font-size: 1.2rem;
  background-color: var(--color-base);
}
ul.paginator_indexes.large li > a {
  font-size: 1.6rem;
}
ul.paginator_indexes.large li > span {
  font-size: 1.6rem;
}
ul.paginator_indexes li > a:hover {
  padding: 0.5rem 1rem;
  display: block;
  background-color: var(--color-active);
  color:var(--color-base);
}
ul.paginator_indexes li.here > span {
  font-weight: bold;
  background-color: var(--color-text);
  color: var(--color-base);
  box-shadow: var(--box-shadow-near-inset);
  text-shadow: var(--text-shadow-normal);
}
ul.paginator_indexes li.snip > span {
  color: var(--color-text-alpha2);
}
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: 2rem 0;
  font-size: 1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.refine_link_list .refine_link > a,
.refine_link_list .refine_link > span {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  vertical-align: middle;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.refine_link_list .refine_link a:hover {
  background-color: var(--color-active);
  color: var(--color-base);
}
.refine_link_list .refine_link > a .item_count,
.refine_link_list .refine_link > span .item_count {
  display: inline-block;
  position: absolute;
  right: 0;
  top: -5px;
  vertical-align: baseline;
  border-radius: 50px;
  padding: 0 5px;
  color: var(--color-base);
  background-color: var(--color-main);
  font-size: 0.5rem;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: var(--box-shadow-near);
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}

.refine_link_list .refine_link .selected {
  background-color: var(--color-text);
  text-shadow: var(--text-shadow-normal);
  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;
}

div.textsearch_result_block {
  margin: 10px 0;
    border-bottom: solid 5px #eeeeee;
    padding: 5px 20px;
}

div.textsearch_result_link {
    margin-bottom: 5px;
}

div.textsearch_result_snippet {
    text-align: justify;
    text-justify: newspaper;
}

div.textsearch_result_footer {
    margin-top: 5px;
    color: #008040;
}

span.textsearch_snippet_hit {
    color: #ff0000;
}


div.product_thumbnail_container {
  text-align: center;
}
div.product_thumbnail_box {
    display: inline-block;
    text-align: center;
    margin: 3px 1px 3px 1px;
    padding: 3px;
    width: 141px;
    min-height: 170px;
    vertical-align: top;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1) inset;
    transition-property: box-shadow;
    transition-duration: 0.1s;
    transition-timing-function: ease-out;
}

div.product_thumbnail_box:hover {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2) inset;
}

div.product_thumbnail_box_large{
    display: inline-block;
    text-align: center;
    margin: 3px 1px 3px 1px;
    padding: 3px;
    width: 48%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    min-height: 170px;
    vertical-align: top;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1) inset;
    transition-property: box-shadow;
    transition-duration: 0.1s;
    transition-timing-function: ease-out;
}

div.product_thumbnail_box_large:hover {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2) inset;
}


div.product_thumbnail_box_large a img{
	width:100%;
	max-width:200px;
}


div.product_thumbnail_name {
}


div.product_thumbnail_sold_out_name {
    height: 42px;
    overflow: hidden;
}

.product_thumbnail_sold_out {
  padding: 0 8px;
  background-color: hsla(0, 70%, 60%, 1);
  font-size: 0.7rem;
  color: var(--color-base);
  border-radius: 50px;
  margin: 2px 0;
	-webkit-text-stroke: initial;
	paint-order: initial;
}

.product_thumbnail_used {
  padding: 0 8px;
  background-color: hsla(60, 50%, 60%, 1);
  font-size: 0.7rem;
  color: var(--color-base);
  border-radius: 50px;
  margin: 2px 0;
	-webkit-text-stroke: initial;
	paint-order: initial;
}

.product_thumbnail_new_arrival {
  padding: 0 8px;
  background-color: hsl(90, 36%, 56%);
  font-size: 0.7rem;
  color: var(--color-base);
  border-radius: 50px;
  margin: 2px 0;
	-webkit-text-stroke: initial;
	paint-order: initial;
}

.product_thumbnail_bl {
  padding: 0 8px;
  background-color: hsla(340, 70%, 70%, 1);
  font-size: 0.7rem;
  color: var(--color-base);
  border-radius: 50px;
  margin: 2px 0;
	-webkit-text-stroke: initial;
	paint-order: initial;
}

.product_thumbnail_comiket {
  padding: 0 8px;
  background-color: hsla(200, 50%, 50%, 1);
  font-size: 0.7rem;
  color: var(--color-base);
  border-radius: 50px;
  margin: 2px 0;
	-webkit-text-stroke: initial;
	paint-order: initial;
}

.product_thumbnail_restocked {
  padding: 0 8px;
  background-color: hsla(180, 50%, 50%, 1);
  font-size: 0.7rem;
  color: var(--color-base);
  border-radius: 50px;
  margin: 2px 0;
	-webkit-text-stroke: initial;
	paint-order: initial;
}

div.breadcrumb {
    margin-bottom: 5px;
}

ul.breadcrumbList {
    list-style: none outside none;
}

li.breadcrumbListContent {
    display: inline-block;
    width:45%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    font-size:20px;
    margin-top:10px;
}

.tag {
	display: block;
	margin: 0.8rem;
	border-radius: 5rem;
	padding: 0.8rem 1rem;
	background-color: var(--color-base);
	color: var(--color-text);
	text-decoration: none;
	list-style-type:none;
	word-break: break-word;
	cursor: pointer;
	font-size: 1.2rem;
	font-weight: normal;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	box-shadow: var(--box-shadow-near);
}
.tag:hover {
	background-color: var(--color-active);
	color: var(--color-base);
}
.tag::before {
  content: "\0023";
  font: var(--fa-font-solid);
  margin-right: 5px;
}

div.product_descripton{
}

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


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

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

div.product_descripton a {
  word-break: break-word;
	text-decoration-line: underline;
	text-decoration-color: var(--color-text-alpha2);
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
}
div.product_descripton a:hover {
	text-decoration-line: underline;
	text-decoration-color: var(--color-active);
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
}
div.product_descripton a[href^="/product/tag_page.html"]::before {
  content: "\0023";
  font: var(--fa-font-solid);
}

div.product_descripton tr td:first-child{
	background-color: var(--color-base-dark2);
	color: var(--color-text);
	font-weight: bold;
  text-align: center;
  font-size: 1.5rem;
}

div.product_descripton tr td:last-child::after {
    clear: both;
    content: "";
}

.rating {
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  text-align: center;
}



div.product_thumbnail_price{
	color: var(--color-main-dark);
}

.product_price{
	color: var(--color-text);
  font-weight: bold;
	font-size:120%;
}

.cart_total_price {
	padding: 1rem;
	font-style: italic;
	text-align: center;
}

span.notice_message{
  font-weight: bold;
}

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

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

.loading {
  text-align: center;
  animation: loading_anime 0.43s ease-in 0s infinite alternate;
}
.loading i {
  font-size: 3rem;
  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: calc(var(--height-product-thumbnail) + 20px);
  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;
}

div.left_menu{
	box-shadow:3px 0 4px -4px rgba(34, 25, 25, 0.4);
}
h2.left_menu {
    border-bottom: 4px solid #324161;
    height: 25px;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 0px 0px 5px;
    color: #324161;
    overflow: hidden;
    text-align: center;
}

h3.left_menu{
    font-size: 19px;
    font-weight: bold;
    color: #555;
    margin: 15px 0px 10px 0px;
	border-bottom: 1px solid #DDD;
}

h1 {
  margin: 1rem auto;
  padding: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-text);
  overflow: hidden;
  text-align: center;
}

h1.main_area {
  color: var(--color-text);
  font-size: 2rem;
}


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


div.search_descripton table {
  border-collapse: collapse;
  width: 100%;
}
div.search_descripton tr td {
  padding: 5px 10px;
  word-break: break-word;
}
div.search_descripton tr:nth-child(2n+1) {
  background: #eeeeee;
}
div.search_descripton tr td:first-child {
  white-space: nowrap;
  font-weight: bold;
  text-align: right;
  width: 20%;
}

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

div.paginator_link_list strong{
}

div.paginator_link_list a{
}

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

div.toggle_menu{
	display: inline-block;
	width: 95%;
	border-bottom: 2px solid #FF7700;
    color: #773300;
    font-size: 20px;
    font-weight: bold;
    height: 25px;
    margin-left: 5px;
    margin-right: 5px;
    overflow: hidden;
    padding: 5px 0 0 5px;
}

.top_menu_button:hover{
	cursor:pointer;
}

.top_menu_button_clicked{
	border:1px solid #FF7700;
	border-radius: 4px 4px 4px 4px;
	background-color:#FFF;
	display:inline-block;
    color: #FF7700;
    font-size:16px;
    text-align: center;
    width: 75px;
    height: 22px;
    box-shadow: 3px 3px 4px -4px rgba(34, 25, 25, 0.4);
}
.top_menu_button{
	border-radius: 4px 4px 4px 4px;
	background-color:#FF7700;
	display:inline-block;
    color: #FFF;
    font-size:16px;
    text-align: center;
    width: 75px;
    height: 22px;
    box-shadow: 3px 3px 4px -4px rgba(34, 25, 25, 0.4);
}

#footer_back_button{
    font-size:25px;
    padding-top:10px;
    height: 40px;
	width:320px;
	marigin-top:5px;
	padding-bottom:3px;
	position:fixed;
	bottom:0px;
}

#footer_back_button_area{
    font-size:25px;
    width: 100%;
    height: 40px;
	display:none;
}


.base_button{
	border-radius: 4px 4px 4px 4px;
	background-color:#FF7700;
	display:inline-block;
    color: #FFF;
    text-align: center;
    box-shadow: 3px 3px 4px -4px rgba(34, 25, 25, 0.4);
}

.base_button:hover{
	cursor:pointer;
}


.product_right_arrow{
    border-radius: 4px 6px 6px 4px;
}

.product_left_arrow{
    border-radius: 6px 4px 4px 6px;
}

.product_arrow_disabled{
	background-color: #777777;
    color: #FFFFFF;
    padding:2px;
}


.product_arrow{
	background-color: #FF7700;
    color: #FFFFFF;
    padding:2px;
}
.product_arrow a{
    color: #FFFFFF;
}
.product_arrow a:hover{
	text-decoration:none;
}

.add_to_cart_dialog_icon {
	font-size: 3rem;
}

[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-text);
  background-color: var(--color-main);
  text-align: center;
  letter-spacing: normal;
  font-size: clamp(0.8rem, 65%, 1rem);
  font-family: var(--font-default);
  font-weight: bold;
  box-shadow: var(--box-shadow-near);
}
[data-badge="*"]::after {
  content: "";
  width: 1rem;
  height: 1rem;
  padding: 0;
}
.button_default[data-badge]::after {
  transform: translate(-65%, -30%);
}

*:has(> [data-badge-before]),
*:has(> [data-badge-after]) {
  position: relative;
}
[data-badge-before]::before,
[data-badge-after]::after {
  position: absolute;
  left: 100%;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 5rem;
  padding: 0.4rem 0.6rem;
  color: var(--color-text);
  background-color: var(--color-main);
  text-align: center;
  letter-spacing: normal;
  font-size: 1.2rem;
  font-family: var(--font-default);
  font-weight: bold;
  box-shadow: var(--box-shadow-near);
}
[data-badge-before]::before {
  content: attr(data-badge-before);
  background-color: var(--color-disabled);
  color: var(--color-text);
  animation: rotate_badge_before 1.5s ease-out;
}
[data-badge-after]::after {
  content: attr(data-badge-after);
  animation: rotate_badge_after 1.5s ease-out;
}

@keyframes rotate_badge_before {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotateY(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotateY(0deg);
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotateY(630deg);
  }
}

@keyframes rotate_badge_after {
  0% {
    transform: translate(-50%, -50%) rotateY(90deg);
  }
  50% {
    transform: translate(-50%, -50%) rotateY(90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateY(720deg);
  }
}

div.paginator_link_list_mobile a{
	padding:5px;
	font-size:20px;
	background-color: #ff9900;
    border: 0 none;
    color: #fff8e0;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.5px;
    outline: 0 none;
    text-align: center;
    text-decoration: none;
    transition-property: all;
    transition-duration: 0.1s;
    transition-timing-function: ease-out;
}
div.paginator_link_list_mobile a:hover {
  background: #fff8e0;
  color: #ff9900;
}

div.paginator_link_list_mobile span.this_page{
	font-size:18px;
	margin-left:15px;
	margin-right:15px;
	color:#888;
}

div.next_page_only a{
		padding:5px 40px 5px 40px;
}

.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;
}



@media only screen and (max-width : 359px) {
  .button_go, .button_stop, .button_admin, .button_default, .button_disabled, .button_delete {
    font-size: 1rem;
  }
}

@media only screen and (min-width : 360px) {
	/*
	iphone 5 :320px
	Galaxy S3 :360px
	iphone 6 :375px
	iphone 6 Plus:414px
	*/

	div.paginator_link_list_mobile a{
		padding:5px 10px 5px 10px;
	}

	div.next_page_only a{
			padding:5px 40px 5px 40px;
	}


	div.big_banner img {
		/*width-20 */
	    width: 360px;
	}

	.top_menu_button{
		width:95px;
	}
	.top_menu_button_clicked{
		width:95px;
	}

	div.global_navigation_block div.global_navigation_separator {
		width:178px;
	}


	div.product_thumbnail_box{
		/*width/2-19px */
	    width: 161px;
	}


	span.header_title_img{
		margin-left:5px;
		margin-right:20px;
	}
}



@media only screen and (min-width : 375px) {
	h1.main_area {
	  font-size: 20px;
	}

	div.paginator_link_list_mobile a{
		padding:5px 10px 5px 10px;
	}

	div.next_page_only a{
		padding:5px 60px 5px 60px;
	}


	/*
	iphone 5 :320px
	iphone 6 :375px
	iphone 6 Plus:414px
	*/

	div.big_banner img {
		/*width-20 */
	    width: 375px;
	}
	.top_menu_button{
		width:95px;
	}
	.top_menu_button_clicked{
		width:95px;
	}
	div.global_navigation_block a{
    font-size: 16px;
	}

	div.global_navigation_block div.global_navigation_separator {
		width:185px;
	}


	div.product_thumbnail_box{
		/*width/2-19px */
	    width: 168px;
	}


	span.header_title_img{
		margin-left:5px;
		margin-right:25px;
	}

}

@media only screen and (min-width : 414px) {
	/*
	iphone 5 :320px
	iphone 6 :375px
	iphone 6 Plus:414px
	*/

	.item_count {
	  font-size: 60%;
	}

	div.paginator_link_list_mobile a{
		padding:5px 20px 5px 20px;
	}

	div.next_page_only a{
		padding:5px 60px 5px 60px;
	}

	div.paginator_link_list_mobile span.this_page{
	margin-left:25px;
	margin-right:25px;
	}


	div.big_banner img {
		/*width-20 */
	    width: 414px;
	}
	.top_menu_button{
		width:104px;
	}
	.top_menu_button_clicked{
		width:104px;
	}

	div.global_navigation_block a{
		/*width/2 -2*/
	}

	div.global_navigation_block div.global_navigation_separator {
		width:205px;
	}



	div.product_thumbnail_box{
		/*width/2-19px */
	    width: 188px;
	}


	span.header_title_img{
		margin-left:5px;
		margin-right:25px;
	}

}

@media only screen and (min-width : 570px) {
	/*
	iphone6 yokooki => 570px;
	*/
	.item_count {
	  font-size: 70%;
	}

	div.big_banner img {
		/*width-20 */
	    width: 570px;
	}

	div.global_navigation_block div.global_navigation_separator {
		width:205px;
	}
	div.product_thumbnail_box{
		/*width/2-19px */
	    width: 266px;
	}


	span.header_title_img{
		margin-left:5px;
		margin-right:25px;
	}
}


table.menu_table{
    border:none;
    margin: 0 auto;
    width:80%;
}

table.menu_table th{
    color: #ffffff;
    font-weight: bold;
    font-size:13px;
    text-align:left;
    width:20%;
}
table.menu_table td{
    font-size: 13px;
    line-height: 120%;
    text-align:left;
    padding: 0 8px;
}
table.menu_table td a{
  color: #fff8e0;
}

.breadcrumbListContent a:hover{
	text-decoration:none;
}



span.alpabet_button{
	display:inline-block;
	text-align:center;
	width:40px;
	height:40px;
	font-size:36px;
	border-radius: 4px;
	background-color:#eee;
	color:#666;
	font-weight:bold;
}

span.alpabet_button_active{
	display:inline-block;
	text-align:center;
	width:40px;
	height:40px;
	font-size:36px;
	border-radius: 4px;
	background-color:#666;
	color:#eee;
	font-weight:bold;

}

span.alpabet_button:hover{
	background-color:#666;
	color:#eee;

}

span.alpabet_button_other{
	display:inline-block;
	text-align:center;
	font-size:17px;
	border-radius: 4px;
	background-color:#eee;
	color:#666;
	height:22px;
	width:70px;
	margin-top:10px;
}

span.alpabet_button_other_active{
	display:inline-block;
	text-align:center;
	font-size:17px;
	border-radius: 4px;
	background-color:#666;
	color:#eee;
	height:22px;
	width:70px;
	margin-top:10px;
}

span.alpabet_button_other:hover{
	background-color:#666;
	color:#eee;

}

a.header_logo{
	text-decoration: none;
}

a.header_logo:hover{
	text-decoration: none;
}

.singleline_search_form {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  box-sizing: border-box;
}
.singleline_search_form > * {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.singleline_search_form input[type="text"] {
  display: block;
  vertical-align: middle;
  width: 80%;
  font-size: 1.3rem;
  border-style: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: var(--color-base);
  color: var(--color-text);
  border-radius: 0;
  box-sizing: border-box;
  padding: 0.7rem 0 0.7rem 1.5rem;
  outline-style: none;
  text-shadow: var(--text-shadow-near);
}

.singleline_search_form input[type="text"]::-webkit-input-placeholder {
  color: var(--color-text);
  opacity: 0.2;
}
.singleline_search_form input[type="text"]::-moz-placeholder {
  color: var(--color-text);
  opacity: 0.2;
}
.singleline_search_form input[type="text"]::-ms-input-placeholder {
  color: var(--color-text);
  opacity: 0.2;
}
.singleline_search_form input[type="text"]::placeholder {
  color: var(--color-text);
  opacity: 0.2;
}

.singleline_search_form button {
  display: block;
  width: 20%;
  cursor:pointer;
  background: var(--color-base);
  font-size: 1.2rem;
  border-style: none;
  color: var(--color-text);
  outline-style: none;
}
.singleline_search_form button:hover {
  background: var(--color-active);
  color: var(--color-base);
}

.singleline_search_form_not_available {
  padding: 8px 20px;
  background: #324161;
  color: #fff;
  text-align: center;
}

.search_condition {
  min-height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  color: var(--color-base);
}
.search_condition .advanced_radio_input {
  font-size: 1rem;
  display: -webkit-flex;
  display: flex;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 0;
  border-radius: 50px;
  padding: 0;
  color: var(--color-text);
  box-shadow: var(--box-shadow-near);
  text-shadow: var(--text-shadow-normal);
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
.search_condition .advanced_radio_input label {
  flex-grow: 1;
  text-align: center;
  position: relative;
}
.search_condition .advanced_radio_input label .item_count {
  display: inline-block;
  position: absolute;
  right: 2px;
  top: -8px;
  vertical-align: baseline;
  border-radius: 50px;
  padding: 0 5px;
  color: var(--color-base);
  background-color: var(--color-main);
  font-size: 0.5rem;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: var(--box-shadow-near);
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
.search_condition .button_delete {
  display: block;
  padding: 5px 10px;
  font-size: 1rem;
}

.toggle_menu_container {
	position: relative;
}
.toggle_menu_target {
	visibility: hidden;
	position: absolute;
	width: 100%;
	top: -1rem;
	background-color: hsla(0, 0%, 95%, 0.8);
  -webkit-backdrop-filter: var(--backdrop-filter-normal);
  backdrop-filter: var(--backdrop-filter-normal);
  box-shadow: var(--box-shadow-normal);
	opacity: 0;
	transition-property: all;
	transition-duration: 0.15s;
	transition-timing-function: ease-out;
	z-index: -1;
}
.toggle_menu_target.show {
	visibility: visible;
	top: 0;
	opacity: 1;
}

.search_recommend {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 1rem;
  overflow-x: hidden;
  white-space: nowrap;
  color: var(--color-base);
	transition-property: all;
	transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.search_recommend > * {
  flex-shrink: 0;
}

.search_recommend.hide {
  display: none;
}

#main_action_search_block .search_recommend {
  flex-direction: column-reverse;
}

.search_recommend > *:not(script):not(.search_recommend_additional_loading) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#main_action_search_block .search_recommend > *:not(script):not(.search_recommend_additional_loading) {
  flex-direction: column-reverse;
}

.search_suggest_keyword.contains {
  display: none;
}
.entry_suggest_tag,
.search_suggest_keyword,
.search_suggest_tag {
	display: block;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	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;
	white-space: nowrap;
	overflow-x: hidden;
}
.search_suggest_keyword {
	border-radius: 50px;
}

.entry_suggest_tag:hover,
.search_suggest_keyword:hover,
.search_suggest_tag:hover{
	color: var(--color-base);
	background-color: var(--color-active);
	text-decoration: none;
}

.search_recommend_additional_loading {
  display: none;
  margin: 10px 0;
  text-align: center;
}

.search_recommend_additional_loading.show {
  display: block;
}

#search_recommend_base {
  display: block;
}

.search_recommend_additional {
  display: block;
}

#main_action_search_block .singleline_search_form {
  width: auto;
  height: 3.6rem;
  margin: 0.8rem;
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow-normal);
  overflow: hidden;
}

.button_rounded_stop {
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  width: 50px;
  height: 50px;
  display: inline-block;
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 50px;
  padding: 10px;
  color: var(--color-base);
  background-color: var(--color-stop);
  box-shadow: var(--box-shadow-near);
  text-shadow: var(--text-shadow-normal);
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  font-size: 1.2rem;
  cursor: pointer;
  outline-style: none;
  outline: none;
  text-align: center;
	-webkit-appearance: none;
	-moz-appearance: none;
  appearance: none;
  z-index: 1;
}

.button_rounded_stop:hover {
  color: var(--color-base);
  background-color: var(--color-stop-light);
  text-decoration: none;
}

div.paginator_link_list_mobile{
	margin-top:20px;
	text-align:center;
	width:100%;
}


div.paginator_link_list_mobile strong{
	color:#888;
}

h3.keywords{
	padding:5px;
}

a.ask_restock{
	color:#fff;
    background-color: #FA5882;
    border: none;
}

div.message_block {
	font-size:18px;
    background-color: #fff8e0;
    border: 1px solid #ff9900;
    margin: 5px auto;
    padding: 6px 12px;
    text-align: justify;

}

li.commentListContent {
        box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;

    font-size:20px;
    margin-top:10px;
    margin-left:10px;
}
li.commentListContent .tag::before {
  content: "";
}

div.toggle_menu_button{
    cursor: pointer;
    display: block;
    font-size: 1.2rem;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    background-color: hsla(0, 0%, 0%, 0.05);
    color: hsla(0, 0%, 30%, 1);
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    text-shadow: var(--text-shadow-normal);
}

.toggle_list input[type="checkbox"] {
	display: none;
}
.toggle_list label {
	position: relative;
	box-sizing: border-box;
	display: block;
	font-size: 1.4rem;
	padding: 1.2rem 2rem;
	text-align: left;
	text-decoration: none;
	color: var(--color-text);
	text-shadow: var(--text-shadow-near);
	cursor: pointer;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.toggle_list label::after {
	content: "\f0fe";
	font: var(--fa-font-solid);
	position: absolute;
	right: 5%;
    top: 50%;
	transform: translateY(-50%);
	color: var(--color-text-alpha2);
    text-shadow: none;
}
.toggle_list input[type="checkbox"]:checked + label::after {
	content: "\f146";
}

.toggle_list label:hover {
	background-color: var(--color-active);
	color: var(--color-base);
}
.toggle_list input[type="checkbox"]:checked + label {
	background-color: var(--color-active);
	color: var(--color-base);
}
.toggle_list label:hover::after,
.toggle_list input[type="checkbox"]:checked + label::after {
  color: var(--color-base);
}

.toggle_list ul {
	display: none;
    list-style: none;
}
.toggle_list input[type="checkbox"]:checked + label + ul {
	display: block;
}
.toggle_list ul a {
	display: block;
	box-sizing: border-box;
	padding: 1rem 3rem;
	background-color: var(--color-base-dark2);
	color: var(--color-text);
	font-size: 1rem;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	cursor: pointer;
}
.toggle_list ul a:hover {
	background-color: var(--color-active-light);
	color: var(--color-base);
}
.toggle_list.toggle_banner_list {
	font-size: 0;
}
.toggle_list.toggle_banner_list li {
	display: inline-block;
	width: 100%;
}
.toggle_list.toggle_banner_list li.popular_tag {
	display: none;
}
@media only screen and (min-width: 750px) {
	.toggle_list.toggle_banner_list li {
		width: 50%;
	}
}
.toggle_list.toggle_banner_list li img {
	display: block;
	width: 100%;
}

.refine_header {
  margin-top: 1rem;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--color-text);
}

#tag_selected {
  background-image: var(--gradient-slash-invert);
  background-size: 20px 20px;
  padding: 0 1rem 2rem 1rem;
}

.tag_refine_box .tag_link {
  display: block;
  padding: 2px 10px;
}
.tag_refine_box .toggle_menu_button .tag_link {
  display: block;
  padding: 2px 0;
}
.tag_refine_box .toggle_menu_button_checkbox:not(:checked) + label .tag_link li:nth-child(n+6){
  display: none;
}

.tag_refine_box .toggle_menu_button_checkbox + label .tag_link li:nth-child(6) {
  margin-top: 5px;
}

.tag_refine_by {
  padding: 0 10px;
}
.toggle_menu_button_checkbox {
  display: none;
}
.tag_refine_by .toggle_menu_button {
  display: block;
  margin: 5px 0;
  border-radius: 22px;
  padding: 2px 5px;
  background-color: #eeeeee;
  background-image: linear-gradient(to top, #eee 3.4rem, #ddd 3.4rem, #ddd);
  color: #bbbbbb;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: var(--box-shadow-near-inset);
}
.tag_refine_by .toggle_menu_button[caption]::after {
  display: block;
  font-size: 1.2rem;
  margin: 1rem;
  content: attr(caption);
  text-align: center;
}
.tag_refine_by .toggle_menu_button_checkbox:checked + .toggle_menu_button[caption]::after {
  content: "close";
}

ul.button_list li {
    list-style-type: none;
}

ul.button_list li a {
    background-color: #fff8e0;
    color: #ff9900;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;

    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    width: 100%;

    transition-property: all;
    transition-duration: 0.1s;
    transition-timing-function: ease-out;
}
ul.button_list li a:hover {
  background: #ff9900;
  color: #fff8e0;
}

#loading_view {
  box-sizing: border-box;
  display: table;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 9999;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: #000000;
  color: #ffffff;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.8s;
  transition-timing-function: ease-out;
}
#loading_view.show {
  visibility: visible;
  opacity: 0.6;
}
#loading_view i {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 100px;
}

.underbar{
	border-bottom:1px solid #aaaaaa;
}

.footer_request{
    background-color: #fff8e0;
    padding: 20px 10%;
}


.footer_request_button{
	width:90%;
	font-size:20px;
	margin-top:20px;
	margin-bottom:20px;
}

ul.navigation_taglist li {
    list-style-type: none;
    font-size:20px;
}

img.header_cart_icon{
	width:50px;
}

datalist{
	display:none;
}

.footer_search form{
	display: table;
	width: 100%;
}

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

.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 {
  margin: 4rem auto;
  padding: 1.5rem 5%;
  background-color: var(--color-base-dark);
  color: var(--color-text);
  text-align: center;
  font-size: 1.2rem;
}
.ok_notice > i:first-of-type {
  margin-bottom: 2rem;
  font-size: 4rem;
}
.ok_notice .subnotice {
  padding: 20px 5%;
  border-top: 1px dashed var(--color-text-light2);
}
.ok_notice .subnotice > i:first-of-type {
  margin-bottom: 2rem;
  font-size: 4rem;
}
.ok_notice .subnotice:first-of-type {
  border-style: none;
}
h1 + .ok_notice,
h2 + .ok_notice,
h3 + .ok_notice {
  margin-top: 1rem;
}

.small_notice {
  background-color: var(--color-base-dark);
  color: var(--color-text);
  padding: 2rem 5%;
  font-size: 1rem;
}
.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;
}

.warning_notice {
	display: block;
	font-size: 1.2rem;
	text-align: center;
	background-color: var(--color-base);
  color: var(--color-text);
	padding: 3rem 1rem;
}
.warning_notice > i {
	margin-bottom: 2rem;
	font-size: 4rem;
}

.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: 22px;
}
.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;
}

#related_circle_container {
  text-align: center;
}

#product_related_block_area {
  padding: 20px 0;
  text-align: center;
}

div.product_matrix_cell {
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  margin: 0 2px;
  padding: 5px;
  width: 200px;
  vertical-align: top;
  height:300px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1) inset;
  transition-property: box-shadow;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  white-space: normal;
}
div.product_matrix_cell:first-of-type {
  margin-left: 25px;
}
div.product_matrix_cell:last-of-type {
  margin-right: 25px;
}

div.product_matrix_cell a img{
	max-width:190px;
}

div.product_matrix_cell:hover {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2) inset;
}

div.product_matrix_name {
    height: 3.65em;
    overflow: hidden;
}

.strong_form_note {
    color: #cc2222;
    font-size: 120%;
    font-weight: bold;
}

.item_count::before {
  content: "x";
}
.asearch_taglist a .item_count {
  color: var(--color-text-light2);
}

.asearch_taglist a:hover .item_count {
  color: #ffffff;
}

.seemore_right {
  text-align: right;
  padding: 10px 0 15px 0;
}

.seemore_right a {
  background-color: #438bc5;
  color: #ffffff;
  border-radius: 50px 0 0 50px;
  padding: 5px 10px 5px 20px;
  font-size: 120%;
}

.seemore_right a:hover {
  background-color: #dfefff;
  color: var(--color-text-light2);
}

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

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

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

.seemore_table {
  position: absolute;
  left: 0;
  top: 0;
}
.seemore_cell {
  background-color: var(--color-active);
  color: var(--color-base);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
.seemore_cell:hover {
  color: var(--color-base);
  filter: brightness(1.2);
}
.seemore_cell i:first-of-type {
  font-size: 50px;
}

div.purchase_button{
	padding-top:10px;
}
div.purchase_button .button_go,
div.purchase_button .button_stop,
div.purchase_button .button_admin,
div.purchase_button .button_default,
div.purchase_button .button_disabled,
div.purchase_button .button_delete {
  font-size:1.4rem;
}

div#comikeitem_container{
	text-align:center;
}
div#comikeitem_container a.button_default{
	font-size:18px;
}

div.matrix_shadow{
  padding: 10px 0;
  position: relative;
}

div.matrix_row_container {
  position: relative;
  overflow-x: hidden;
}

.scrolling_list {
  height: var(--height-product-thumbnail);
  margin: 0;
  overflow-x: scroll;
  overflow-y: hidden;
  transform: translateZ(0);
  white-space: nowrap;
}

.scrolling_list.product_thumbnail_list_with_detail {
  width: 100%;
}

div.matrix_row{
  height:300px;
  padding: 0 25px;
	overflow-x: scroll;
  overflow-y: hidden;
  transform: translateZ(0);
  white-space: nowrap;
}
a.matrix_row_header {
    display: block;
   background-color: var(--color-base);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-text);
    padding: 1rem 0.5rem;
    margin: 1rem 0;
    text-decoration: none;
    text-align: center;
}
a.matrix_row_header:hover {
    color: var(--color-active);
}
a.matrix_row_header .scrolling_list_title_arrow {
  color: var(--color-text-light2);
}
a.matrix_row_header:hover .scrolling_list_title_arrow {
  color: var(--color-active);
}
a.matrix_row_header span {
  text-decoration-line: underline;
  text-decoration-color: var(--color-text-alpha2);
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
a.matrix_row_header:hover span {
  text-decoration-color: var(--color-active);
}

.scrolling_ui {
    display: none;
    position: absolute;
    z-index: 1;
    height: 8rem;
    top: calc((100% - 8rem)/2);
    width: 4rem;
    cursor: pointer;
    transition-property: all;
    transition-duration: 0.1s;
    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);
}
@media (any-hover: hover) {
  .scrolling_ui.show {
    display: block;
  }
}
.scrolling_ui:hover {
  background-color: var(--color-active);
}
.scrolling_ui i {
  position: relative;
  font-size: 48px;
  top: calc(50% - 48px/2);
  color: #ffffff;
}
.scrolling_ui_left {
  left: 0;
  border-radius: 0 0.5rem 0.5rem 0;
}
.scrolling_ui_right {
  right: 0;
  border-radius: 0.5rem 0 0 0.5rem;
}

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

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

.scrolling_index {
  position: relative;
  overflow-x: scroll;
  overflow-y: hidden;
  margin: 10px 0;
  white-space: nowrap;
  background-color: var(--color-base-dark);
  box-shadow: var(--box-shadow-near);
}

.scrolling_index ul {
  display: table;
  height: 100%;
  padding: 0 2rem;
}

.scrolling_index li {
  display: table-cell;
  vertical-align: middle;
  list-style: none;
}

.scrolling_index .scrolling_index_caption {
  height: 100%;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
}

.scrolling_index form {
  background-color: rgba(0, 0, 0, .1);
  margin: 0 10px 0 0;
  display: block;
  height: 100%;
}

.scrolling_index input {
  width: 70px;
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  color: #666;
  padding: 10px 0 10px 10px;
  box-sizing: border-box;
  vertical-align: middle;
  display: inline;
  font-size: 18px;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}

.scrolling_index input:focus {
  width: 200px;

}

.scrolling_index button {
  border-style: none;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0);
  color: #666;
  font-size: 32px;
  vertical-align: middle;
}

.scrolling_index button i {
  display: block;
}

.scrolling_index .alpabet_button {
  height: 100%;
  display: inline-block;
  color: var(--color-text);
  font-weight: bold;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  width: 3rem;
  text-align: center;
}
.scrolling_index .alpabet_button:hover {
  background-color: var(--color-active);
  color: var(--color-base);
}

.scrolling_index .alpabet_button.active {
  background-color: var(--color-active);
  color: var(--color-base);
}

.horizontal_list_container {
  margin: 5px 0;
}

.drawer_content .horizontal_list_container {
  margin: 0;
}

ul.product_thumbnail_list {
  font-size: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
  padding: 5px;
}
ul.product_thumbnail_list li {
  width: calc(100%/2 - 10px);
  aspect-ratio: 1;
  font-size: 0.8rem;
  margin: 5px;
  border-radius: 8px;
  list-style: none;
  position: relative;
  line-height: 0;
  box-shadow: var(--box-shadow-near);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
ul.product_thumbnail_list li a {
  width: 100%;
  height: 100%;
}
ul.product_thumbnail_list.with_scrolling li {
  margin-left: 2px;
  margin-right: 2px;
}

@media (min-width: 570px) {
  ul.product_thumbnail_list li {
    width: calc(100%/3 - 10px);
  }
}
@media (min-width: 750px) {
  ul.product_thumbnail_list li {
    width: calc(100%/4 - 10px);
  }
}

ul.product_thumbnail_list .thumbnail_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
ul.product_thumbnail_list .thumbnail_price {
  position: absolute;
	display: flex;
	align-items: center;
	height: 1.8rem;
  top: 0;
  right: 0;
  border-bottom-left-radius: 50px;
	padding: 0rem 0.6rem 0.2rem 1.2rem;
  font-size: 0.8rem;
  background-color: hsla(0, 0%, 100%, 0.85);
  color: var(--color-text);
  text-shadow: var(--text-shadow-near);
  box-shadow: var(--box-shadow-near);
  text-align: right;
  pointer-events: none;
}
ul.product_thumbnail_list .thumbnail_info {
  position: absolute;
  width: 100%;
  max-height: 100%;
  bottom: -0.5rem;
  left: 0;
  box-sizing: border-box;
  padding: 5px;
  line-height: normal;
  background-color: hsla(0, 0%, 95%, 0.8);
  -webkit-backdrop-filter: var(--backdrop-filter-normal);
  backdrop-filter: var(--backdrop-filter-normal);
  color: var(--color-text);
  opacity: 0;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, .4);
	font-family: var(--font-narrow);
  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 {
  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;
  text-align: center;
  font-size: 0.8rem;
  vertical-align: bottom;
}
ul.product_thumbnail_list .thumbnail_info_cell * {
  text-shadow: none;
}
ul.product_thumbnail_list .restock_badge {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.2rem solid var(--color-base);
  border-radius: 5rem;
  box-sizing: border-box;
  background-color: var(--color-active);
  box-shadow: var(--box-shadow-normal);
  z-index: 1;
}

ul.product_thumbnail_list.with_scrolling {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  box-sizing: border-box;
  height: calc(var(--height-product-thumbnail) + 20px);
  padding: 0 1rem;
  overflow-x: scroll;
  overflow-y: hidden;
  transform: translateZ(0);
  white-space: nowrap;
}
ul.product_thumbnail_list.with_scrolling li {
  min-width: var(--height-product-thumbnail);
  max-width: var(--height-product-thumbnail);
  width: var(--height-product-thumbnail);
  min-height: var(--height-product-thumbnail);
  max-height: var(--height-product-thumbnail);
  height: var(--height-product-thumbnail);
  vertical-align: top;
  overflow: hidden;
}
ul.product_thumbnail_list.with_scrolling li:first-of-type {
  margin-left: 20px;
}
ul.product_thumbnail_list.with_scrolling li:last-of-type {
  margin-right: 20px;
}
ul.product_thumbnail_list.with_scrolling li.scrolling_title {
  width: 150px;
  background-color: var(--color-base);
  color: var(--color-text);
  font-family: var(--font-theme);
  font-size: 1.5rem;
  line-height: 1.5rem;
  white-space: normal;
  word-break: normal;
  -webkit-hyphens: auto;
  hyphens: auto;
}
ul.product_thumbnail_list.with_scrolling li.scrolling_title:first-of-type {
  margin-left: 5px;
}
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 {
		padding: 0 5px;
		display: -webkit-box;
		overflow: hidden;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
    opacity: 1;
    background-color: transparent;
    box-shadow: none;
    color: var(--color-base);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    font-weight: bold;
    bottom: 5px;
  }
  @supports (-webkit-text-stroke: 1px black) {
    ul.product_thumbnail_list .thumbnail_info {
      color: var(--color-text);
      -webkit-text-stroke: 4px var(--color-base);
      paint-order: stroke;
			font-weight: normal;
      text-shadow: var(--text-shadow-normal);
    }
  }
  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-default);
  }
}

ul.product_thumbnail_list.with_scrolling li.scrolling_title .title_contents {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
	padding: 1rem;
	word-break: break-word;
	-webkit-hyphens: auto;
	hyphens: auto;
  border-radius: 8px;
  text-shadow: var(--text-shadow-near);
  align-items: center;
  text-align: center;
}

@media (max-width: 569px) {
  ul.product_thumbnail_list.with_scrolling li.scrolling_title {
    font-size: 1.2rem;
		min-width: fit-content;
		width: fit-content;
    line-height: 1.4rem;
    -ms-writing-mode: tb-rl; /* for MS IE8+ */
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    overflow: visible;
    aspect-ratio: auto;
  }
  ul.product_thumbnail_list.with_scrolling li.scrolling_title .title_contents {
    padding: 1rem 2rem;
    width: fit-content;
    align-items: baseline;
  }
}

ul.product_thumbnail_list.with_scrolling li.scrolling_title a {
  color: var(--color-text);
	text-decoration-line: underline;
	text-decoration-color: var(--color-text-alpha2);
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
}

ul.product_thumbnail_list.with_scrolling li.scrolling_title a:hover {
	text-decoration-line: underline;
	text-decoration-color: var(--color-active);
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
}

.merchant_toolbox {
  position: fixed;
  z-index: 200;
  top: 0;
  left: -200px;
  display: table;
  border-bottom-right-radius: 10px;
  opacity: 0.1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
.merchant_toolbox.can_hover {
  transition-delay: 0.5s;
}
.merchant_toolbox.can_hover:hover,
.merchant_toolbox.opened {
  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;
  cursor: pointer;
}
.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-active);
  color: var(--color-base);
}
.toolbox_container > ul.toolbox_tools_default {
  display: table;
  width: 100%;
}
.toolbox_container > ul.toolbox_tools_default li {
  display: table-cell;
  width: calc(100%/3);
  font-size: 20px;
}

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

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

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

ul.tag_link li a {
  display: table-cell;
  position: relative;
  padding: 5px 10px;
  background-color: var(--color-base);
  border-radius:50px;
  color: var(--color-text);
  box-sizing:border-box;
  font-size: 20px;
  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-base);
}

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 0 0 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 li a.button_single_cell {
  border-radius: 50px;
  text-align: left;
}
ul.tag_link li a.button_single_cell .tag_link_layout > span:last-of-type {
  text-align: left;
  width: auto;
  padding: 0 5px;
}
ul.tag_link li .button_jump_to_search {
  background-color: #fcfcfc;
}

ul.tag_link li a + a {
  border-left: 1px solid #ddd;
}

ul.tag_link .item_count {
  color: var(--color-text);
  font-size: 0.8rem;
  text-shadow: none;
  font-weight: normal;
}

ul.tag_link a:hover .item_count {
  color: var(--color-text);
}

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: #ddd;
  color: #666;
  font-size: 110%;
  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{
	color: #fff;
	background-color: var(--color-text-light2);
}

.article_body {
  box-sizing: border-box;
	padding: 10px;
	word-wrap:break-word;
}
.article_body a {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.article_body a:hover {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.article_body img {
  max-width: 300px;
}

@media only screen and (min-width: 360px) {
  .article_body img {
    max-width: 340px;
  }
}
@media only screen and (min-width: 375px) {
  .article_body img {
    max-width: 355px;
  }
}
@media only screen and (min-width: 414px) {
  .article_body img {
    max-width: 394px;
  }
}
@media only screen and (min-width: 570px) {
  .article_body img {
    max-width: 550px;
  }
}
@media only screen and (min-width: 750px) {
  .article_body img {
    max-width: 730px;
  }
}

.carousel_content.hide {
  display: none;
}
.blog_entry_list {
  padding: 10px;
	list-style: none;
	font-size: 0;
  white-space: nowrap;
  overflow-x: scroll;
}
.carousel_content {
  display: flex;
	list-style: none;
	font-size: 0;
  white-space: nowrap;
  overflow-x: scroll;
  background-color: #eee;
  text-align: center;
	scroll-snap-type: x mandatory;
}
.blog_entry_list > li {
  width: 100%;
  padding: 10px;
	font-size: 1rem;
	display: block;
	white-space: normal;
  vertical-align: middle;
  box-sizing: border-box;
}
.carousel_content > li {
  display: inline-block;
  min-width: 100%;
	font-size: 1rem;
	white-space: normal;
  vertical-align: top;
  background-color: var(--color-base);
  box-shadow: var(--box-shadow-near);
  z-index: 0;
	scroll-snap-align: center;
}
.carousel_content > li.blog_parts_container {
  min-width: 90%;
}
@media (min-width: 570px) {
  .carousel_content > li.blog_parts_container {
    width: 48%;
  }
  .blog_entry_list > li.blog_parts_container {
    width: 50%;
  }
}

.blog_entry_list > li > a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow-near);
}

.blog_entry_list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.blog_parts .blog_img {
	aspect-ratio: calc(788/512);
	position: relative;
	overflow: hidden;
}
.blog_parts .blog_img .blog_img_blur {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: blur(10px);
	transform: scale(1.1);
	z-index: 0;
}
.blog_parts .blog_img img {
	display: block;
	position: absolute;
	object-fit: contain;
	width: 100%;
	height: 100%;
	filter: drop-shadow(0px 4px 8px hsl(0, 0%, 0%, 0.2));
}

.blog_parts .blog_desc {
  background-color: #fefefe;
  color: var(--color-text);
  padding: 1rem;
  white-space: normal;
  word-wrap: normal;
  word-break: normal;
  text-shadow: none;
}

.blog_desc .blog_title {
  text-align: left;
}

.blog_desc .blog_info {
  margin: 10px 0 0 0;
  text-align: right;
  font-size: 0.8rem;
  text-shadow: none;
}

.carousel_content .blog_desc .blog_info {
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.blog_info .blog_author img {
	width: 25px;
	background-color: #eee;
	border-radius: 50px;
	vertical-align: -5px;
}
.blog_seemore {
	text-align: center;
  font-size: 1.2rem;
}
.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%;
  display: block;
  height:auto;
}

.carousel_ui_container {
  position: relative;
  overflow: scroll;
  box-shadow: var(--box-shadow-near);
}
.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;
}

.main_action_area {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 768px;
  background-color: hsla(0, 0%, 95%, 0.8);
  -webkit-backdrop-filter: var(--backdrop-filter-normal);
  backdrop-filter: var(--backdrop-filter-normal);
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
  z-index: 20;
  visibility: visible;
  opacity: 1;
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
  transition-delay: 0.4s;
}
.main_action_area.hidden {
  visibility: hidden;
  bottom: -0.5rem;
  opacity: 0;
}
.main_action_area .button_default,
.main_action_area .button_go,
.main_action_area .button_stop,
.main_action_area .button_disabled,
.main_action_area .button_delete,
.main_action_area .button_admin {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: calc(100% - 0.8rem * 2);
  height: 3.6rem;
  max-width: none;
  margin: 0.8rem;
  font-size: 1.4rem;
  text-align: center;
}

.header_option_container {
  width: 100%;
  max-height: calc(100vh - (56px + 44px + 54px));
  max-height: calc(100svh - (56px + 44px + 54px));
  padding: 1rem 0;
  box-sizing: border-box;
  overflow-y: scroll;
	overscroll-behavior: contain;
}

.main_action_option_container {
  display: flex;
  flex-direction: column-reverse;
  height: calc(100vh - 1.6rem - 3.6rem);
  height: calc(100dvh - 1.6rem - 3.6rem);
  padding-top: 2rem;
  box-sizing: border-box;
  overflow-y: scroll;
	overscroll-behavior: contain;
}
.main_action_option_container > * {
  flex-shrink: 0;
}

#button_main_area_close.button_rounded_stop {
  visibility: hidden;
  top: -1rem;
  margin-right: 0.5rem;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  opacity: 0;
}

#button_main_area_close.button_rounded_stop.show {
  visibility: visible;
  top: 0.5rem;
  opacity: 1;
}

.short_blink {
  animation: short_blink_anime 0.3s ease 0.2s 4 alternate;
}

@keyframes short_blink_anime {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

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

@keyframes blink_anime {
  0% {
    filter: saturate(2) brightness(2);
    transform: scale(1.1);
    background-color: var(--color-active-light);
  }
  50% {
    filter: saturate(1) brightness(1);
    transform: scale(1);
  }
  100% {
    filter: saturate(1) brightness(1);
    transform: scale(1);
  }
}

.global_navigation_block .blink {
  animation: blink_anime_global_navigation 1s ease 1s 4;
}

@keyframes blink_anime_global_navigation {
  0% {
    filter: saturate(2) brightness(2);
    transform: scale(1.1);
    background-color: var(--color-active);
  }
  50% {
    filter: saturate(1) brightness(1);
    transform: scale(1);
  }
  100% {
    filter: saturate(1) brightness(1);
    transform: scale(1);
  }
}

.social_header {
  color: #ffffff;
  font-size: 30px;
  text-align: center;
  margin: 10px;
}
.social_header a {
  color: #ffffff;
  text-decoration: none;
}
.social_container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 2rem;
}
.social_container > div {
  padding: 5px;
}
.social_container > a {
  display: inline-block;
  padding: 5px 20px;
  background-color: var(--color-text);
  color: var(--color-base);
  box-shadow: var(--box-shadow-near);
  margin: 0;
  border-radius: 0;
  font-size: 1.2rem;
  text-align: center;
}
.social_container > a:hover {
  color: var(--color-base);
  background-color: var(--color-active);
}
.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: #e7383b;
color: hsla(221, 44%, 100%, 1.0);
}

.cart_product .social_container {
  display: -webkit-flex;
  display: flex;
  margin: 0;
  font-size: 0;
}
.cart_product .social_container > a.social_button_twitter {
  border-radius: 0;
}
.cart_product .social_container > a {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cart_product .social_container > a.button_default {
  width: auto;
  max-width: none;
  border-radius: 0;
}
.cart_product .social_container > a.social_button_twitter {
  border-radius: 0;
}
.cart_product .social_container > a.social_button_tumblr {
  border-radius: 0;
}
.cart_product .social_container > a.social_button_facebook {
  border-radius: 0;
}

.cart_products {
  padding: 10px;
}
.cart_product {
  position: relative;
  margin-bottom: 1rem;
  box-sizing: border-box;
}
.cart_product .cart_product_anchor {
  display: table;
  width: 100%;
  border-radius: 0.5rem;
  background-color: var(--color-base);
  box-shadow: var(--box-shadow-near);
  overflow: hidden;
}
.cart_product .cart_product_anchor:hover {
  background-color: var(--color-base-dark);
}
.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;
  text-shadow: none;
}
.cart_product .product_img {
  width: 40%;
  text-align: center;
}
.cart_product .product_img img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.cart_product .product_img .product_img_caption {
  padding: 1rem;
  background-color: var(--color-base);
  text-shadow: var(--text-shadow-normal);
}
.cart_product .product_desc {
  padding: 10px 5%;
}
.cart_product .product_original_title {
  color: #666;
}
.cart_product .button_product_delete {
  display: block;
  width: 2rem;
  margin: 0 1rem 0 auto;
  border-radius: 0 0 0.8rem 0.8rem;
	padding: 0.6rem 1rem;
  font-size: 1.2rem;
  background-color: var(--color-base-dark2);
  color: var(--color-text);
  text-align: center;
  text-shadow: var(--text-shadow-normal);
  box-shadow: var(--box-shadow-near);
}
.cart_product .button_product_delete:hover {
  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: 0;
  padding: 0.3rem 1.2rem 0.3rem 0.5rem;
  border-radius: 0 0 50px 0;
  font-size: 0.6rem;
  box-shadow: var(--box-shadow-near);
}
.cart_product .product_badges .product_badge.product_badge_adult {
  background-color: #ff88a3;
  color: #fff;
}

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

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

span.wordwrap{
	display:inline-block;
}

.slidein_notice {
  position: fixed;
  visibility: hidden;
  width: 100vw;
  left: -100%;
  bottom: 0;
  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;
  background-color: hsla(0, 0%, 0%, 0.8);
  color: #fff;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2), 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.slidein_notice_anchor:hover {
  background-color: hsla(0, 0%, 0%, 0.9);
  color: #fff;
}

.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: 10px;
  vertical-align: middle;
  white-space: normal;
  -webkit-hyphens: auto;
  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: #aaa;
}

.slidein_notice .slidein_notice_button_close {
  position: absolute;
  width: 32px;
  height: 32px;
  padding: 0 0 5px 5px;
  border-radius: 0 0 0 50px;
  right: 0;
  top: 0;
  background-color: var(--color-base);
  color: var(--color-text);
  text-align: right;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  text-shadow: var(--text-shadow-normal);
  font-size: 1rem;
}

.slidein_notice .slidein_notice_button_close:hover {
  background-color: hsla(0, 60%, 60%, 1);
}

.list_default {
  margin: 10px;
	text-align: center;
  font-size: 0;
}
.list_default li {
	display: block;
}
.list_default li a {
	position: relative;
	display: flex;
  justify-content: space-between;
  align-items: center;
	margin: 0.2rem;
	padding: 0.5rem 0.8rem 0.5rem 2rem;
	border-radius: 50px;
	box-shadow: var(--box-shadow-near);
	background-color: var(--color-base);
	color: var(--color-text);
	font-size: 1.2rem;
	text-align: left;
}
.list_default li a[count]::after {
	content: attr(count);
	border-radius: 50px;
	padding: 0.2rem 1rem;
	right: 0.5rem;
	background-color: var(--color-text);
	color: var(--color-base);
  font-size: 0.8rem;
	box-shadow: var(--box-shadow-near);
}
.list_default li a:hover {
	background-color: var(--color-active);
  color: var(--color-base);
}
.list_default li a.button_country_list_other {
  font-style: italic;
}
.list_default li a.button_country_list_other:hover {
}
.list_default .tag::before {
	content: "";
}

.list_simple li {
	font-size: 1.2rem;
	list-style: none;
	background-color: var(--color-base);
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.list_simple li:nth-of-type(2n+1) {
	background-color: var(--color-base-dark);
}
.list_simple li a {
    display: inline-block;
    width: 100%;
    height: 100%;
	padding: 1rem 2rem;
    box-sizing: border-box;
}
.list_simple li a:hover {
	background-color: var(--color-active);
	color: var(--color-base);
}

.full_overlay_dialog_window {
  position: relative;
  display: inline-block;
}
.full_overlay_dialog_window .button_rounded_stop {
  left: auto;
  top: -10px;
  right: -10px;
  z-index: 11;
}
.full_overlay_dialog_window .full_overlay_dialog_title {
  padding: 10px;
  background-color: #d94d46;
  color: #fff;
  font-size: 24px;
}
.full_overlay_dialog_window .full_overlay_dialog_content {
  position: relative;
  max-height: 90vh; max-height: 90dvh;
  max-width: 70vh; max-width: 70dvh;
  width: 90vw; width: 90dvw;
  border-radius: 10px;
  background-color: var(--color-base);
  -webkit-align-items: stretch;
  align-items: stretch;
  overflow: scroll;
	overscroll-behavior: contain;
  box-shadow: var(--box-shadow-normal);
}
.full_overlay_dialog_window .full_overlay_dialog_buttons {
  position: sticky;
  display: table;
  table-layout: fixed;
  bottom: 0;
  width: 100%;
  background-color: #eee;
}

.full_overlay_dialog_window .full_overlay_dialog_buttons > div {
  display: table-row;
}

.full_overlay_dialog_window .full_overlay_dialog_buttons a,
.full_overlay_dialog_window .full_overlay_dialog_buttons button {
  display: table-cell;
  margin: 0;
  border-radius: 0;
  border-width: 0;
  padding: 20px;
  vertical-align: middle;
  width: auto;
  word-wrap: normal;
  word-break: normal;
  white-space: normal;
}

.full_overlay_dialog_window .full_overlay_dialog_content {
  display: block;
}

.full_overlay_dialog_window #items_in_cart {
  min-height: 30vh;
}

.imageBox {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}

.large_image_box {
  position: absolute;
  top: 0;
  left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0;
	margin: auto;
	background-size: contain;
	background-repeat: no-repeat;
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
	background-position: 50% 50%;
}

div.large_image_block {
  width: 100%;
  text-align:center;
  box-sizing:border-box;
  position: relative;
}
div.large_image_block:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.large_image_button {
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index:10;
  font-size: 2rem;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.large_image_button:hover {
  opacity: 0.7;
}
.large_image_button.large_image_button_prev {
  left: 0;
}
.large_image_button.large_image_button_next {
  right: 0;
}

.thumbnail_list {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  display: block;
  border-radius: 0px;
  padding: 10px 30px;
  white-space: nowrap;
  overflow-x: scroll;
  box-shadow: var(--box-shadow-near-inset);
  background-color: var(--color-base);
  text-align: center;
}
.thumbnail_list:not(:has(> .small_image_block:not(:first-child):not(.hidden))) {
	display: none;
}
.small_image_block {
  display: inline-block;
  margin: 3px;
  vertical-align:middle;
  text-align:center;
}
.small_image_block img {
  border-radius: 3px;
  vertical-align:middle;
  height: 60px;
  box-shadow: var(--box-shadow-near), 0 0 0 0 var(--color-active);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
.small_image_block.selected img {
  box-shadow: var(--box-shadow-near), 0 0 0 5px var(--color-active);
}

.full_overlay_dialog_info {
  padding: 1rem 2rem;
  color: var(--color-text);
}

#full_overlay_product_purchase_dialog .full_overlay_dialog_info {
  white-space: nowrap;
  box-sizing: border-box;
}
#full_overlay_product_purchase_dialog .full_overlay_dialog_info img {
  margin: 10px;
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
  vertical-align: middle;
}
#full_overlay_product_purchase_dialog .full_overlay_dialog_info i {
  vertical-align: middle;
}
#full_overlay_product_purchase_dialog .full_overlay_dialog_info i.fa-arrow-right {
  position: relative;
  font-size: 3rem;
  color: var(--color-active);
  vertical-align: middle;
  animation: movearrow 0.5s ease-in 0s infinite alternate;
}
@keyframes movearrow {
  0% {
    left: 0;
  }
  50% {
    left: 0;
  }
  100% {
    left: 10px;
  }
}
#full_overlay_product_purchase_dialog .full_overlay_dialog_info i.fa-shopping-cart {
  font-size: 4rem;
  color: var(--color-text);
  vertical-align: middle;
}
#full_overlay_product_purchase_dialog .full_overlay_dialog_info span.cart_counter{
  right: -10px;
  top: -15px;
  font-size: 18px;
  padding: 10px;
  animation: rotatecounter_after 1.5s ease-out;
  font-family: var(--font-default);
}
@keyframes rotatecounter_after {
  0% {
    transform: rotateY(90deg);
  }
  50% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}
#full_overlay_product_purchase_dialog .full_overlay_dialog_info span.cart_counter.cart_counter_before {
  right: -10px;
  top: -15px;
  font-size: 18px;
  padding: 10px;
  animation: rotatecounter_before 1.5s ease-out;
  background-color: #666;
  color: #fff;
  border-color: #666;
  opacity: 0;
}
@keyframes rotatecounter_before {
  0% {
    opacity: 1;
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(0deg);
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotateY(630deg);
  }
}

.hashtags_container {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 0.7rem;
  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-light2);
  border-radius: 5px;
  color: var(--color-text);
  word-break: break-word;
  text-align: left;
  text-shadow: var(--text-shadow-normal);
  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";
}

.paypal_link_container {
	margin: 20vh 0 2rem 0;
  text-align: center;
}
.paypal_link_container .paypal_link_note {
   color: var(--color-text);
}

#paypal-button-container {
  position: relative;
  text-align: center;
  padding: 0 2rem;
  z-index: 1;
}

.imageBox .large_image_block .spinner {
	position: absolute;
	display: flex;
	visibility: hidden;
	align-items: center;
	justify-content: center;
	visibility: visible;
	top: 0;
	width: 100%;
	height: 100%;
	color: #333;
  background-color:hsla(0, 0%, 100%, 1);
	opacity: 0;
	font-size: 8rem;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
	pointer-events: none;
}
.imageBox.image_loading .large_image_block {
	filter: grayscale(1);
}
.imageBox.image_loading .large_image_block .spinner {
	visibility: visible;
	opacity: 0.5;
}

.review_article,
.feedback_article {
	position: relative;
	margin: 4rem 10%;
	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);
}
.review_article .button_delete_article,
.feedback_article .button_delete_article {
	position: absolute;
	top: 0;
	right: 0;
	width: max-content;
}

.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);
}

.star_message{
  height:40px;
  font-size:150%;
  padding-left:50px;
  font-weight:bold;
  display:none;
}

.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-price);
  font-weight: normal;
  font-size: 0.8rem;
}
.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: 0;
}
.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%;
}

.image_showcase_container {
	position: relative;
}
.image_showcase {
	display: flex;
	overflow-x: scroll;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	width: 100%;
}
.image_showcase_image_container {
	position: relative;
	flex: 0 0 100%;
	scroll-snap-align: center;
	aspect-ratio: 1;
	width: 100%;
}
.image_showcase_image_container .image_showcase_image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
	opacity: 1;
}
.image_showcase_image_container .image_showcase_image[data-src] {
	opacity: 0;
	pointer-events: none;
}
.image_showcase_image_container .image_showcase_image.image_showcase_image_large {
	transform-origin: top left;
	transform: scale(2);
}
.image_showcase_image_container:has(.image_showcase_image.image_showcase_image_large) {
	overflow: scroll;
}
.image_showcase:has(.image_showcase_image.image_showcase_image_large) {
	overflow-x: hidden;
}
.image_showcase_image_container:has(.image_showcase_image) .image_showcase_image_spinner {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 5rem;
	color: var(--color-text);
	opacity: 0;
	pointer-events: none;
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
}
.image_showcase_image_container:has(.image_showcase_image[data-src]) .image_showcase_image_spinner {
	opacity: 0.2;
}
.image_showcase_control {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.image_showcase_container:not(:has(.image_showcase > .image_showcase_image_container:not(:first-child):not(.hidden))) .image_showcase_control {
	display: none;
}
.image_showcase_control > * {
	pointer-events: auto;
}
.image_showcase_control .image_showcase_control_button {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	bottom: 0;
	width: 15%;
	color: black;
	background-color: transparent;
	text-shadow: var(--text-shadow-near);
	font: var(--fa-font-solid);
	font-size: 1.2rem;
	opacity: 0.5;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
}
.image_showcase_control .image_showcase_control_button:hover {
	opacity: 1;
	background-color: hsla(0, 0%, 0%, 0.1);
}
.image_showcase_control .image_showcase_control_button.image_showcase_control_button_left {
	left: 0;
}
.image_showcase_control .image_showcase_control_button.image_showcase_control_button_left::before {
	content: "\f053";
	text-shadow: -0.3rem 0 0 white;
}
.image_showcase_control .image_showcase_control_button.image_showcase_control_button_right {
	right: 0;
}
.image_showcase_control .image_showcase_control_button.image_showcase_control_button_right::before {
	content: "\f054";
	text-shadow: 0.3rem 0 0 white;
}
.sister_site_element.image_showcase_image_container {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	box-sizing: border-box;
	text-align: center;
	overflow-y: scroll;
}
.sister_site_element.image_showcase_image_container img {
	max-width: 100%;
}
.sister_site_element.hidden {
	display: none;
}

.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-active);
	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-bg);
}
.progress_bar .progress_bar_bar::after {
	position: absolute;
	left: 100%;
	content: attr(data-caption);
	padding: 0 1rem;
	color: var(--color-text);
}
.progress_bar .progress_bar_bar.progress_bar_bar_high::before {
	visibility: visible;
}
.progress_bar .progress_bar_bar.progress_bar_bar_high::after {
	visibility: hidden;
}
