:root {
  --color-base: hsl(0, 0%, 100%);
  --color-base-dark: hsl(0, 0%, 98%);
  --color-base-dark2: hsl(0, 0%, 96%);
  --color-main: #ff88a3;
  --color-main-light: #ffb6cd;
  --color-main-dark: #b3455e;
  --color-main-thin: #fff2f6;
  --color-sub: #324161;
  --color-sub-light: #546486;
  --color-accent: #ff88a3;
  --color-go: hsl(120, 100%, 85%);
  --color-go-light: hsl(120, 96%, 91%);
  --color-go-dark: hsl(120, 30%, 57%);
  --color-disabled: hsl(0, 0%, 95%);
  --color-disabled-dark: hsl(0, 0%, 70%);
  --color-stop: hsl(0, 100%, 70%);
  --color-stop-light: hsl(0, 100%, 90%);
  --color-stop-dark: hsl(0, 40%, 40%);
  --color-bg: #ffffff;
  --color-bg-dark: hsl(0, 0%, 98%);
  --color-text: hsl(300, 8%, 40%);
  --color-text-light: hsl(300, 5%, 60%);
  --color-text-light2: hsl(300, 5%, 85%);
  --color-text-alpha: hsla(300, 3%, 47%, 0.8);
  --color-text-alpha2: hsla(300, 3%, 47%, 0.2);
  --color-white: #dddddd;
  --color-black: #444444;
  --color-link: #438bc5;

  --font-default: "Avenir Next", Verdana, "メイリオ", Meiryo, sans-serif;
  --font-price: "Roboto Condensed", sans-serif;

  --box-shadow-normal: 0 4px 12px 0 hsla(0, 0%, 0%, 0.2);
  --box-shadow-normal-inset: inset 0 4px 12px 0 hsla(0, 0%, 0%, 0.1);
  --box-shadow-near: 0 2px 5px 0 hsla(0, 0%, 0%, 0.2);
  --box-shadow-near-inset: inset 0 2px 5px 0 hsla(0, 0%, 0%, 0.15);
  --text-shadow-normal: 2px 2px 2px hsla(0, 0%, 0%, 0.1);
  --text-shadow-near: 1px 1px 0px hsla(0, 0%, 0%, 0.1);

  --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-list: 220px;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url(/media/font/roboto_condensed/RobotoCondensed-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url(/media/font/roboto_condensed/RobotoCondensed-Bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url(/media/font/roboto_condensed/RobotoCondensed-BoldItalic.ttf) format("truetype");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url(/media/font/roboto_condensed/RobotoCondensed-Italic.ttf) format("truetype");
  font-weight: normal;
  font-style: italic;
}

* {
    margin: 0;
    padding: 0;
}

::selection {
  background-color: #ff88a3;
  color: #fff;
}

body {
  font-family: var(--font-default);
  background: var(--gradient-slash);
  background-size: 20px 20px;
  background-attachment: fixed;
  overflow-x: hidden;
  color: var(--color-text);
}
body, input, select, textarea, button {
    font-size: 1rem;
    line-height: 1.3;
}

img {
    border: 0;
    aspect-ratio: attr(width) / attr(height);
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
a:hover {
  color: var(--color-sub);
  text-decoration: 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;
}

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

a.inline_link {
  text-decoration: underline 2px;
}

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

.advanced_radio_input {
  font-size: 1rem;
  display: -webkit-flex;
  display: flex;
  border-collapse: collapse;
  table-layout: fixed;
  border-radius: 50px;
  margin: 5px;
  background-color: rgba(127, 127, 127, 0.1);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
.advanced_radio_input:hover {
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2), 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}
.advanced_radio_input input[type="radio"] {
  display: none;
}
.advanced_radio_input input[type="radio"] + label {
  position: relative;
  padding: 4px 20px;
  flex-grow: 1;
  text-align: center;
  text-decoration: none;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  white-space: nowrap;
}
.advanced_radio_input input[type="radio"] + label:hover {
  background-color: hsla(200, 70%, 60%, 1);
  color: #fff;
}
.advanced_radio_input input[type="radio"] + label[for] {
  cursor: pointer;
}
.advanced_radio_input input[type="radio"]:checked + label {
  background-color: var(--color-link);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4) inset;
  color: #ffffff;
}
.advanced_radio_input input[type="radio"]:checked + label:hover {
  background-color: hsla(200, 70%, 60%, 1);
}
.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;
}
.advanced_radio_input input[type="radio"] + label .item_count {
  display: inline-block;
  position: absolute;
  right: 2px;
  top: -8px;
  vertical-align: baseline;
  border-radius: 50px;
  padding: 0 5px;
  color: #fff;
  background-color: #f66;
  font-size: 0.6rem;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}

.advanced_radio_input.vertical {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.advanced_radio_input.vertical input[type="radio"] + label {
  display: block;
  border-radius: 0;
  text-align: center;
  border-style: none;
}
.advanced_radio_input.vertical {
  border-radius: 5px;
}
.advanced_radio_input.vertical input[type="radio"] + label:first-of-type {
  border-radius: 5px 5px 0 0;
}
.advanced_radio_input.vertical input[type="radio"] + label:last-of-type {
  border-radius: 0 0 5px 5px;
}

.advanced_checkbox_input {
  display: inline-block;
}

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

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

.advanced_checkbox_input input[type="checkbox"] + label:hover {
  background-color: hsla(0, 0%, 40%, 1);
  color: #fff;
}

.advanced_checkbox_input input[type="checkbox"]:checked + label {
  box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.2), inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  background-color: var(--color-link);
  color: #fff;
}

.advanced_checkbox_input input[type="checkbox"]:checked + label:hover {
  background-color: hsla(200, 70%, 60%, 1);
}

div.layout_body_block a.find_by_type{
	color:#FFF;
}

div.layout_body_block a.find_by_type:hover{
	color:var(--color-link);
}

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: 0;
    height: 0;
}

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: 0; }
div.vspacer_2em  { height: 2em; width: 0; }
div.vspacer_3em  { height: 3em; width: 0; }
div.vspacer_4em  { height: 4em; width: 0; }
div.vspacer_5em  { height: 5em; width: 0; }

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

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: #ffdfe9; }
div.message_block_300  { background-color: #ffdfe9; width: 275px; }
div.message_block_400  { background-color: #ffdfe9; width: 375px; }
div.message_block_500  { background-color: #ffdfe9; width: 475px; }
div.message_block_600  { background-color: #ffdfe9; width: 575px; }
div.message_block_700  { background-color: #ffdfe9; 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 {
  width: 100%;
	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: var(--color-main);
  border-bottom: 3px solid var(--color-main);
  width: 30%;
}
table.message_block_full tr td:nth-child(2) {
  border-bottom: 1px solid var(--color-main);
}
table.message_block_full tr td:first-child {
  text-align: right;
  white-space: nowrap;
}

/*****************************************************************************/
/* <h*> headers                                                              */
/*****************************************************************************/
h2.section_header {
  margin: 50px 0 0 0;
  padding: 10px 0;
  background: #ffdfe9;
  border-top: 2px solid var(--color-main);
  font-size: 20px;
  font-weight: bold;
  color: var(--color-main);
  overflow: hidden;
  text-align: center;
}

h2.section_header a       { color: var(--color-sub); }
h2.section_header a:hover { opacity: 0.8; }

h3.subsection_header {
    font-size: 19px;
    font-weight: bold;
    color: var(--color-sub);
    margin: 15px 0 10px 0;
    text-align: center;
}

h4.subsubsection_header {
    font-size: 14px;
    color: var(--color-main);
    margin: 15px 0 10px 0;
}

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


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

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

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

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

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

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

dl.base_aligned_list dd a {
  color: var(--color-link);
  text-decoration: none;
}

dl.base_aligned_list dd a:hover {
  color: var(--color-sub);
}
ul.custom_list {
    margin: 5px 0 5px 36px;
}

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

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

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

span.custom_list_bullet {
    position: absolute;
    top: 0;
    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-top: none;
    border-spacing: 0px;
    border-collapse: collapse;
    margin: 5px 0px 5px 0px;
    font-size: 0.8rem;
    background-color: rgba(255, 255, 255, 0.6);
}

table.standard_table td,
table.standard_table th {
  border-top: none;
  border-right:  1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 10px 5px 10px;
}
table.standard_table td:last-of-type,
table.standard_table th:last-of-type {
  border-right-width: 0;
}

table.standard_table th {
    font-weight: bold;
    text-align: center;
    background-color: var(--color-main);
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

table.standard_table tr,
table.standard_table td {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
table.standard_table tr:nth-child(2n) {
  background-color: rgba(128, 128, 128, 0.12);
}
table.standard_table tr:nth-child(2n+1) {
  background-color: rgba(128, 128, 128, 0.06);
}
table.standard_table tr:hover {
  background-color: rgba(128, 128, 128, 0.18);
}

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

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


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

fieldset.aligned_fieldset {
    width: 100%;
    border-style: none;
    margin-bottom: 15px;
}

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

fieldset.aligned_fieldset input[type="date"],
fieldset.aligned_fieldset input[type="datetime"] {
  display: inline-block;
  border-style: none;
  box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.2);
transition-property: all;
transition-duration: 0.1s;
transition-timing-function: ease-out;
box-sizing: border-box;
padding: 2px 8px;
background-color: rgba(0, 0, 0, 0.05);
outline: 0 solid rgba(255, 136, 163, 0.5);
}

fieldset.aligned_fieldset .input_date_range {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.2);
}
fieldset.aligned_fieldset .input_date_range input[type="date"] {
  flex-grow: 1;
  font-size: 0.7rem;
  width: 0;
  background-color: transparent;
  box-shadow: none;
}
fieldset.aligned_fieldset .input_date_range input[type="date"] + input[type="date"]::before {
  position: absolute;
  width: 30px;
  left: calc(50% - 15px);
  text-align: center;
  content: "\f061";
  font-family: FontAwesome;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  opacity: 0.7;
  pointer-events: none;
}
fieldset.aligned_fieldset .input_date_range input[type="date"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

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

fieldset.aligned_fieldset input[type="file"]:focus,
fieldset.aligned_fieldset input[type="text"]:focus,
fieldset.aligned_fieldset input[type="url"]:focus,
fieldset.aligned_fieldset input[type="email"]:focus,
fieldset.aligned_fieldset input[type="number"]:focus,
fieldset.aligned_fieldset input[type="password"]:focus,
fieldset.aligned_fieldset input[type="date"]:focus,
fieldset.aligned_fieldset input[type="datetime"]:focus,
fieldset.compact_fieldset input[type="text"]:focus,
fieldset.compact_fieldset input[type="url"]:focus,
fieldset.compact_fieldset input[type="email"]:focus,
fieldset.compact_fieldset input[type="number"]:focus,
fieldset.compact_fieldset input[type="password"]:focus,
fieldset.compact_fieldset input[type="date"]:focus,
fieldset.compact_fieldset input[type="datetime"]:focus,
fieldset.aligned_fieldset select:focus {
  background-color: #fff;
  outline: 4px solid rgba(255, 136, 163, 0.5);
}

fieldset.aligned_fieldset input[type="file"]:hover,
fieldset.aligned_fieldset input[type="text"]:hover,
fieldset.aligned_fieldset input[type="url"]:hover,
fieldset.aligned_fieldset input[type="email"]:hover,
fieldset.aligned_fieldset input[type="number"]:hover,
fieldset.aligned_fieldset input[type="password"]:hover,
fieldset.aligned_fieldset input[type="date"]:hover,
fieldset.aligned_fieldset input[type="datetime"]:hover,
fieldset.compact_fieldset input[type="text"]:hover,
fieldset.compact_fieldset input[type="url"]:hover,
fieldset.compact_fieldset input[type="email"]:hover,
fieldset.compact_fieldset input[type="number"]:hover,
fieldset.compact_fieldset input[type="password"]:hover,
fieldset.compact_fieldset input[type="date"]:hover,
fieldset.compact_fieldset input[type="datetime"]:hover,
fieldset.aligned_fieldset select:hover {
  outline: 4px solid rgba(255, 136, 163, 0.5);
}

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: 14px;
    box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.2);
    transition-property: all;
    transition-duration: 0.1s;
    transition-timing-function: ease-out;
    box-sizing: border-box;
    padding: 2px 8px;
    background-color: rgba(0, 0, 0, 0.05);
    outline: 0 solid rgba(255, 136, 163, 0.5);
}

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

fieldset.aligned_fieldset textarea:hover,
fieldset.compact_fieldset textarea:hover {
  outline: 4px solid rgba(255, 136, 163, 0.5);
}

fieldset.aligned_fieldset table {
  width: 100%;
  border-collapse: collapse;
}

fieldset.aligned_fieldset table tr td:first-child {
  text-align: right;
  font-weight: bold;
  font-size: 0.9rem;
}

fieldset.aligned_fieldset table tr + tr td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

fieldset.aligned_fieldset table tr td {
  padding: 4px 10px;
}

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

fieldset.aligned_fieldset label {
  cursor: pointer;
}

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

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

.form_caption {
  display: inline-block;
  background-color: var(--color-sub);
  color: #ffffff;
  margin: 20px 0 0 0;
  border-radius: 0 4px 0 0;
  padding: 4px 10px;
}
.form_caption_default {
  display: inline-block;
  background-color: var(--color-sub);
  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_note a {
  color: #ffffff;
  text-decoration: underline;
}
.form_note a:hover {
  text-decoration: none;
}
.form_attention {
  padding: 4px 10px;
  background-color: #ffdfe9;
}
.form_box {
  min-width: 60%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 20px 20px 20px;
  box-shadow: 0 0 0 5px rgba(0,0,0,0.05) inset, 0 0 5px 0 rgba(0,0,0,0.2) inset;
  background-color: #fff;
}
.form_box_nocaption {
  box-sizing: border-box;
  padding: 10px 20px;
  box-shadow: 0 0 0 5px rgba(0,0,0,0.05) inset, 0 0 5px 0 rgba(0,0,0,0.2) inset;
  background-color: #fff;
}

.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,
.form_input_container label.required:before  {
	content: '';
  position: absolute;
  left: -0.8rem;
  width: 1.2rem;
  height: 1.2rem;
  border: 0.2rem solid #fff;
	border-radius: 5rem;
	background-color: var(--color-accent);
  box-shadow: var(--box-shadow-near);
}
.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;
  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;
}
.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;
  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;
  hyphens: auto;
}
.form_input_container .input_label_strong {
  font-weight: bold;
}
.form_input_container_sub {
  flex: 1;
	padding: 0 2rem;
	background-color: hsl(0, 0%, 95%);
  border-left: 4px solid var(--color-main);
}
.form_input_container > .form_input.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-main);
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;

}
.form_input_container > .form_input input[type=checkbox] + label:hover {
  filter: brightness(1.1);
  text-decoration: underline;
}
.form_input_container > .form_input input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1.7rem;
  height: 1.7rem;
	border-radius: 5rem;
  background: hsl(0, 0%, 90%);
  box-shadow: var(--box-shadow-near-inset);
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
.form_input_container > .form_input input[type=checkbox]:checked + label::before {
	background-color: var(--color-main-light);
}
.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-main);
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
.form_input_container > .form_input input[type=radio] + label:hover {
  filter: brightness(1.1);
  text-decoration: underline;
}

.form_input_container > .form_input input[type=radio] + label::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1.7rem;
  height: 1.7rem;
	border-radius: 5rem;
  background: hsl(0, 0%, 90%);
  box-shadow: var(--box-shadow-near-inset);
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
.form_input_container > .form_input input[type=radio]:checked + label::before {
	background-color: var(--color-main-light);
}
.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-main);
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-style: italic;
}
.form_badge_sample .form_badge_sample_required {
  position: relative;
  display: block;
  padding-left: 2rem;
}
.form_badge_sample .form_badge_sample_required::before {
	content: '';
  position: absolute;
  left: -0.8rem;
  width: 1.2rem;
  height: 1.2rem;
  border: 0.2rem solid #fff;
	border-radius: 5rem;
	background-color: var(--color-accent);
  box-shadow: var(--box-shadow-near);
}


.button_default{
  display: inline-block;
  margin: 10px;
  border: 0;
  border-radius: 4px;
	padding: 4px 20px;
  color: #ffffff;
  background-color: hsla(200, 50%, 50%, 1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 0 10px 0 rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  font-size: 1.2rem;
  cursor: pointer;
	outline-style: none;
  white-space: nowrap;
  text-align: center;
}

.button_default:hover,
.button_default:focus {
  color: #ffffff;
  background-color: hsla(200, 70%, 60%, 1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 0 15px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.button_default.small {
  margin: 2px;
  border-radius: 2px;
  padding: 2px 10px;
  font-size: 100%;
}

.button_default:disabled,
.button_go:disabled,
.button_stop:disabled {
  color: #ffffff;
  background-color: hsla(0, 0%, 60%, 1);
  cursor: not-allowed;
  pointer-events: none;
}

.button_disabled {
  display: inline-block;
  margin: 10px;
  border: 0;
  border-radius: 4px;
	padding: 4px 20px;
  color: #ffffff;
  background-color: hsla(0, 0%, 60%, 1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 0 10px 0 rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  font-size: 1.2rem;
  cursor: not-allowed;
	outline-style: none;
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
}

.button_disabled:hover,
.button_disabled:focus {
  color: #ffffff;
  text-decoration: none;
}

.button_disabled.small {
  margin: 2px;
  border-radius: 2px;
  padding: 2px 10px;
  font-size: 100%;
}

.button_go{
  display: inline-block;
  margin: 10px;
  border: 0;
  border-radius: 4px;
	padding: 4px 20px;
  color: #ffffff;
  background-color: hsla(120, 60%, 50%, 1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 0 10px 0 rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  font-size: 1.2rem;
  cursor: pointer;
	outline-style: none;
  white-space: nowrap;
  text-align: center;
  width: 70%;
  max-width: 500px;
}

.button_go:hover,
.button_go:focus {
  color: #ffffff;
  background-color: hsla(120, 70%, 60%, 1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 0 15px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.button_go.small {
  margin: 2px;
  border-radius: 2px;
  padding: 2px 10px;
  font-size: 100%;
}

.button_stop{
  display: inline-block;
  margin: 10px;
  border: 0;
  border-radius: 4px;
	padding: 4px 20px;
  color: #ffffff;
  background-color: hsla(0, 70%, 60%, 1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 0 10px 0 rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  font-size: 1.2rem;
  cursor: pointer;
	outline-style: none;
  white-space: nowrap;
  text-align: center;
}

.button_stop:hover,
.button_stop:focus {
  color: #ffffff;
  background-color: hsla(0, 100%, 50%, 1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 0 15px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.button_stop.small {
  margin: 2px;
  border-radius: 2px;
  padding: 2px 10px;
  font-size: 100%;
}

.button_delete {
  display: inline-block;
  margin: 10px;
  border: 0;
  border-radius: 4px;
	padding: 4px 20px;
  color: #ffffff;
  background-color: hsla(0, 0%, 33%, 1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 0 10px 0 rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  font-size: 1.2rem;
  cursor: pointer;
	outline-style: none;
  white-space: nowrap;
  text-align: center;
}

.button_delete:hover,
.button_delete:focus {
  color: #ffffff;
  background-color: hsla(0, 100%, 50%, 1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 0 15px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.button_delete.small {
  margin: 2px;
  border-radius: 2px;
  padding: 2px 10px;
  font-size: 100%;
}

.button_admin {
  display: inline-block;
  margin: 10px;
  border: 0;
  border-radius: 4px;
	padding: 4px 20px;
  color: #ffffff;
  background-color: hsla(0, 70%, 60%, 1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 0 10px 0 rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  font-size: 1.2rem;
  cursor: pointer;
	outline-style: none;
  white-space: nowrap;
  text-align: center;
}

.button_admin:hover,
.button_admin:focus {
  color: #ffffff;
  background-color: hsla(0, 100%, 50%, 1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 0 15px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.button_admin.small {
  margin: 2px;
  border-radius: 2px;
  padding: 2px 10px;
  font-size: 100%;
}

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

ul.button_list {
  display: -webkit-flex;
  display: flex;
  width: 90%;
  margin: 5px auto;
  list-style: none;
  align-items: stretch;
}
ul.button_list > li {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
ul.button_list > li > a,
ul.button_list > li > input,
ul.button_list > li > button,
ul.button_list > li > span,
ul.button_list > li > .small {
  display: block;
  margin: 0;
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
ul.button_list > li:first-of-type > a,
ul.button_list > li:first-of-type > input,
ul.button_list > li:first-of-type > button,
ul.button_list > li:first-of-type > span {
  border-radius: 4px 0 0 4px;
}
ul.button_list > li:last-of-type > a,
ul.button_list > li:last-of-type > input,
ul.button_list > li:last-of-type > button,
ul.button_list > li:last-of-type > span {
  border-radius: 0 4px 4px 0;
  border-right-style: none;
}

button.compact_fieldset_button:hover {
    opacity: 0.9;
}

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

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

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

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

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

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

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

/*****************************************************************************/
/* 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 0 5px 0;
    padding: 5px;
}

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

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

div.foundation_block {
    width: 100%;
    margin: 0 auto 0 auto;
    background-color: #ffffff;
    font-size: 1rem;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

div.foundation_block header {
  margin-bottom: 10px;
}

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

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

div.header_logo_block a{
	color:#FFF;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

ul.global_navigation_block > li:last-of-type > a {
  border-radius: 5px 0 0 0;
}

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

/* 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: 307px; 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: #ffffff;
    padding: 20px;
    background-color:var(--color-main);
}

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

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


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

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

div.layout_box_header {
}

h1.layout_box_header {
  background-color: var(--color-sub);
  color: #ffffff;
  padding: 4px 10px;
    font-weight: bold;
    overflow: hidden;
  text-align: center;
}

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


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

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

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



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

.paginator_link_list .paginator_items_total {
  color: #999;
}
.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;
  background-color: rgba(127, 127, 127, 0.1);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  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: 5px 10px;
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
}
ul.paginator_indexes li > span {
  padding: 5px 10px;
  display: block;
  font-size: 1.2rem;
}
ul.paginator_indexes.large li > a {
  font-size: 1.8rem;
}
ul.paginator_indexes.large li > span {
  font-size: 1.8rem;
}
ul.paginator_indexes li > a:hover {
  padding: 5px 10px;
  display: block;
  background-color: rgba(67, 139, 197, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  color: var(--color-link);
}
ul.paginator_indexes li.here > span {
  font-weight: bold;
  background-color: rgba(67, 139, 197, 1);
  color: #fff;
  box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.2), inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
ul.paginator_indexes li.snip > span {
  color: #ccc;
}
ul.paginator_indexes li:first-of-type > a,
ul.paginator_indexes li:first-of-type > span {
  border-radius: 50px 0 0 50px;
  padding-left: 20px;
}
ul.paginator_indexes li:last-of-type > a,
ul.paginator_indexes li:last-of-type > span {
  border-radius: 0 50px 50px 0;
  padding-right: 20px;
}

.refine_link_list {
  text-align: center;
  margin: 10px 0;
  font-size: 18px;
  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;
  margin: 5px;
  text-decoration: none;
  list-style: none;
  background-color: rgba(127, 127, 127, 0.1);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  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 {
  display: block;
  position: relative;
  padding: 5px 20px;
  vertical-align: middle;
}
.refine_link_list .refine_link > a .item_count,
.refine_link_list .refine_link > span .item_count {
  display: inline-block;
  position: absolute;
  right: 2px;
  top: -8px;
  vertical-align: baseline;
  border-radius: 50px;
  padding: 0 5px;
  color: #fff;
  background-color: #f66;
  font-size: 0.5rem;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
.refine_link_list .refine_link a:hover {
  background-color: rgba(67, 139, 197, 0.2);
  color: var(--color-link);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.refine_link_list .refine_link .selected {
  background-color: rgba(67, 139, 197, 1);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  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 {
    border-bottom: solid 5px #eeeeee;
    padding: 5px;
    margin: 0 0 10px 0;
}

ul.textsearch_result_list {
  list-style: none;
}
ul.textsearch_result_list > li {
  border-bottom: dashed 1px #ccc;
  overflow-x: hidden;
}
ul.textsearch_result_list > li:first-of-type {
  border-top: dashed 1px #ccc;
}
ul.textsearch_result_list > li > a {
  display: block;
  padding: 10px 20px;
  font-size: 1rem;
}
ul.textsearch_result_list > li > a:hover {
  background-color: var(--color-link);
  color: #fff;
}

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_box {
    display: inline-block;
    text-align: center;
    margin: 3px 1px 3px 1px;
    padding: 3px;
    width: 128px;
    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 6px 3px 6px;
    padding: 3px;
    width: 163px;
    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{
	max-width:157px;
}

div.product_thumbnail_name {
    height: 50px;
    overflow: hidden;
}


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


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

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

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

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

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

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

/*****************************************************************************/
/* added at 2012/10/04                                                       */
/*****************************************************************************/

div.breadcrumb {
    margin: 10px 0;
}

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

ul.breadcrumbList li {
  display: inline;
  white-space: nowrap;
}

.tag {
  padding: 5px 10px;
  background-color: #eee;
  border-radius:50px;
  color: #666;
  box-sizing:border-box;
  display:block;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  word-break: break-all;
  word-wrap: break-word;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
.tag:hover{
	text-decoration:none;
	color:#FFF;
	background-color:var(--color-link);
  text-decoration: none;
}
.tag::before {
  content: "\f292";
  font-family: FontAwesome;
  margin-right: 5px;
}

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

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


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

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

div.product_descripton table tr td {
  width: 100%;
  float: left;
	padding: 10px 5%;
  box-sizing: border-box;
}

div.product_descripton table tr td:first-child {
  padding: 10px 3%;
  background-color: #eee;
  color: #666;
  font-weight: bold;
}

div.product_descripton a {
  word-break: break-word;
  text-decoration: underline 2px;
}

div.product_descripton a {
  word-break: break-word;
  text-decoration: underline 2px;
}
div.product_descripton a[href^="/product/tag_page.html"]::before {
  content: "\f292";
  font-family: FontAwesome;
}

div.product_thumbnail_price{
	color:#990000
}

.product_price{
	color:hsl(0, 50%, 40%);
  font-size: 1.1rem;
  font-weight: bold;
}

.product_stock{
	font-size:18px;
}

.cart_total_price {
  padding: 1rem;
  color: hsla(0, 70%, 60%, 1);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

span.notice_message{
	color: #ff3333;
  font-weight: bold;
  font-size: 120%;
}

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

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

ul.product_banner img {
  width: 100%;
}

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

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

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

h2.left_menu {
    padding: 10px 0;
    background: #ffdfe9;
    border-top: 2px solid var(--color-main);
    font-size: 20px;
    font-weight: bold;
    color: var(--color-main);
    overflow: hidden;
    text-align: center;
}

h3.left_menu{
    font-size: 18px;
    font-weight: bold;
    color: var(--color-main);
    margin: 20px 0 5px 0px;
    padding: 10px 0;
    border-top: 1px solid var(--color-main);
    overflow: hidden;
    text-align: center;
}
div.left_menu {
  text-align: center;
}

h1 {
  margin: 1rem auto;
  padding: 1rem 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

h1.main_area {
  margin: 0;
  padding: 10px;
  background-color: var(--color-sub);
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  overflow: hidden;
  text-align: center;
}


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;
}
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{
  margin: 10px 0;
  padding: 10px 0;
  background-color: var(--color-sub);
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  overflow: hidden;
  text-align: center;
}

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

div.paginator_link_list a{
	font-size:120%;
}

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

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

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

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

.left_anime_title_tag a{
  padding: 5px 10px;
  background-color: #eee;
  border-radius:50px;
  color: #000;
  box-sizing:border-box;
  display:table;
  width: 100%;
  text-decoration: none;
  word-break: break-all;
  word-wrap: break-word;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
.left_anime_title a{
  display:table;
  width: 100%;
  box-sizing:border-box;
}
.left_anime_title a > span,
.left_anime_title_tag a > span {
  display: table-cell;
}

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

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

.left_anime_title a > span.item_count,
.left_anime_title_tag a > span.item_count {
  vertical-align: bottom;
  color: var(--color-link);
  font-size: 12px;
}

.left_anime_title a:hover > span.item_count,
.left_anime_title_tag a:hover > span.item_count {
  color: #ffffff;
}

.left_anime_title_tag a:hover{
	text-decoration:none;
	color:#FFF;
	background-color:var(--color-link);
  text-decoration: none;
}

.left_anime_seemore a{
  display:table;
  width: 100%;
  box-sizing:border-box;

  padding: 5px 10px;
  background-color: #ddd;
  border-radius:50px;
  color: #000;
  box-sizing:border-box;
  display:table;
  width: 100%;
  text-decoration: none;
  word-break: break-all;
  word-wrap: break-word;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
.left_anime_seemore a > span {
  display: table-cell;
  font-size: 110%;
  text-align: center;
}

.left_anime_seemore a:hover{
	text-decoration:none;
	color:#FFF;
	background-color:var(--color-link);
  text-decoration: none;
}

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

ul.tag_link li {
  width: 100%;
  display: table;
  margin: 1px 0;
  border-radius: 50px;
  border-collapse: collapse;
  padding: 1px 0 0 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

ul.tag_link li a {
  display: table-cell;
  position: relative;
  padding: 5px 10px;
  background-color: hsla(0, 0%, 93%, 1);
  border-radius:50px;
  color: #666;
  box-sizing:border-box;
  text-decoration: none;
  word-break: break-all;
  word-wrap: break-word;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}

ul.tag_link li a:hover {
  background-color: var(--color-link);
  color: #fff;
}

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

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

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

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

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

ul.tag_link .item_count {
  color: var(--color-link);
  font-size: 12px;
}

ul.tag_link a:hover .item_count {
  color: #fff;
}

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-all;
  word-wrap: 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-link);
}

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

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

.anime_scale0 {
  border-left: 5px solid #eeeeee;
}

.layout_column_custom_left .item_count {
  color: var(--color-link);
}

.layout_column_custom_left a:hover .item_count {
  color: var(--color-sub);
}

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

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

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

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

.search_box input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search_box input::-moz-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search_box input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search_box input::-o-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

.search_box .input_select:hover {
  background: rgba(255, 255, 255, 0.2);

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

.search_box .input_select option {
  color: #fff;
  background-color: var(--color-sub);
}

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

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

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

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

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

.header_search_hint {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  padding: 5px 20px;
  border-radius: 50px;
  background-color: #ddffdd;
  color: #335533;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  transition-delay: 1s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  overflow-x: visible;
  white-space: nowrap;
  z-index: 1;
}

.search_container:hover .header_search_hint {
  display: block;
}

.i_search_input{
  width: 350px;
  margin-left:5px;
  border-style: none;
  border-bottom:1px var(--color-sub) solid;
  padding: 2px 5px;
  background-color: #ffffff;
}
.i_search_input::-webkit-input-placeholder {
  padding: 2px 5px;
  color: var(--color-sub);
}
.i_search_input::-moz-input-placeholder {
  padding: 2px 5px;
  color: var(--color-sub);
}
.i_search_input::-ms-input-placeholder {
  padding: 2px 5px;
  color: var(--color-sub);
}
.i_search_button{
	display:inline-block;
	cursor:pointer;
  font-size: 18px;
  border-style: none;
  color: var(--color-sub);
}

.layout_column_custom_left .search_form {
  text-align: center;
	display:inline-block;
  margin: 10px auto;
  padding: 5px 10px 5px 15px;
	border-radius: 50px;
	background-color:var(--color-sub);
	color:#fff;
	font-weight:bold;
  font-size: 120%;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  white-space: nowrap;
}
.layout_column_custom_left .search_form:hover {
  background-color:#40527A;
	color:#eee;
}
.layout_column_custom_left .search_form:hover input {
  color:#eee;
}

.layout_column_custom_left .search_form input {
  width: 200px;
  border-style: none;
  background-color: transparent;
  color: #fff;
}
.layout_column_custom_left .search_form input::-webkit-input-placeholder {
  padding: 2px 5px;
  color: rgba(255, 255, 255, 0.4);
}
.layout_column_custom_left .search_form input::-moz-input-placeholder {
  padding: 2px 5px;
  color: rgba(255, 255, 255, 0.4);
}
.layout_column_custom_left .search_form input::-ms-input-placeholder {
  padding: 2px 5px;
  color: rgba(255, 255, 255, 0.4);
}

.layout_column_custom_left #left_search_button {
  cursor: pointer;
}

.search_form_box {
	box-sizing: border-box;
	width: 80%;
	margin: 20px auto;
	padding: 20px 5%;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
	background-color: rgba(255, 136, 163, 0.1);
	border-radius: 5px;
}
.search_form_box input {
	font-size: 1.2rem;
}
.search_form_box .search_button {
	font-size: 1.2rem;
	padding: 0;
	width: 50px;
}
.search_form_box legend {
  border-radius: 50px;
  padding: 5px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: var(--color-main);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.search_hint {
	display: none;
	position: absolute;
	top: 45px;
	left: 0;
	padding: 5px 20px;
	border-radius: 50px;
	background-color: #ddffdd;
	color: #335533;
	transition-property: all;
	transition-duration: 0.1s;
	transition-timing-function: ease-out;
	transition-delay: 1s;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
	overflow-x: visible;
	white-space: nowrap;
	z-index: 1;
}
.hint_container {
	position: relative;
}
.hint_container:hover .search_hint {
	display: block;
}

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

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

.search_form_container {
  text-align: center;
  padding: 0 10px;
}
.instant_search_form {
  width: 100%;
  text-align: center;
  display:-webkit-flex;
  display:flex;
  margin: 10px auto;
  border-radius: 50px;
  background-color: var(--color-sub);
  color:#fff;
  font-size: 16px;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  white-space: nowrap;
}
.instant_search_form:hover {
  background-color:#40527A;
	color:#eee;
  box-shadow: 0 0 0 5px rgba(255, 136, 163, 0.2);
}
.instant_search_form input {
  vertical-align: top;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 5px 0 5px 15px;
  border-style: none;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
}
.instant_search_form input::-webkit-input-placeholder {
  padding: 2px 5px;
  color: rgba(255, 255, 255, 0.4);
}
.instant_search_form input::-moz-input-placeholder {
  padding: 2px 5px;
  color: rgba(255, 255, 255, 0.4);
}
.instant_search_form input::-ms-input-placeholder {
  padding: 2px 5px;
  color: rgba(255, 255, 255, 0.4);
}
.instant_search_form .search_button {
  border-style: none;
  vertical-align: top;
  box-sizing: border-box;
  width: 35px;
  padding: 5px;
  cursor: pointer;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  outline-style: none;
}
.instant_search_form select {
  outline: none;
  box-sizing: border-box;
  border-style: none;
  border-radius: 2px;
  padding: 5px 5px;
  margin-left: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0);
}

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

a.matrix_row_header {
    display: block;
   background-color:var(--color-main);
   color:#FFF;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0;
    text-align: center;
    transition-property: all;
    transition-duration: 0.1s;
    transition-timing-function: ease-out;
}

a.matrix_row_header:hover {
background-color:#ffdfe9;
color:var(--color-main);
text-decoration:none;
}

div.layout_column_custom_left   {
  width: 265px; float: left;
  border-right: 1px solid #eeeeee;
  box-sizing: border-box;
}
div.layout_column_custom_right  { width: 619px; float: left; }

div.product_matrix_navi {
    display: inline-block;
    text-align: center;
    width: 18px;
    padding-top: 85px;
}

div.product_matrix_cell {
    display: inline-block;
    height: 280px;
    margin: 3px 1px 3px 0;
    padding: 6px 3px;
    text-align: center;
    vertical-align: top;
    width: 200px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1) inset;
}

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

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

input.tag_search {
   width: 465px;
}

div.related_products_row{
  text-align: center;
}

#header_paypal{
	float:left;margin-left:4px;margin-top:4px;
}

#header_tumblr{
	float:left;margin-left:4px;margin-top:4px;
}

span.cart_counter{
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 0 5px;
  color:#fff;
  background-color: #f66;
  font-weight: bold;
  text-align: center;
  letter-spacing: normal;
  font-size: 0.7rem;
  vertical-align: top;
}

.badge_notice[count]::after  {
  content: attr(count);
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 0 5px;
  color:#fff;
  background-color: #f66;
  font-weight: bold;
  text-align: center;
  letter-spacing: normal;
  font-size: 0.7rem;
  vertical-align: top;
}

.breadcrumbListContent a.button_default{
  display: inline;
}


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

span.alpabet_button_active{
	display:inline-block;
	text-align:center;
	width:22px;
	height:22px;
	font-size:17px;
	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;

}

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

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

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

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

	span.alpabet_button_active{
	width:25px;
	height:25px;
	font-size:20px;
	}
}

@media only screen and (min-width : 1100px) {
	div.product_matrix_cell {
    	margin: 3px 1px 3px 1px;
	    padding: 6px 3px 6px 3px;
	}
	div.product_thumbnail_box_large {
    	margin: 3px 1px 3px 1px;
	}

	div.layout_column_custom_right  {
		width: 757px;
	}
	div.layout_column_2_third {
 	   width: 727px;
	}
	div.layout_column_2_quarter_left{
	width:580px;
	}

	.i_search_input{
	width:470px;
	}
	#header_paypal{
	margin-left:10px;
	}
	#header_tumblr{
	margin-left:10px;
	}

}

a.find_by_type {
  font-size: 100%;
    background-color: var(--color-link);
    color: #fff;
    display: inline-block;
    font-size: 90%;
    padding: 5px 10px;
    text-decoration: none;
}

a.find_by_type:hover{
	color:var(--color-link);
	background-color:#dfefff;
}

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

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: #ffdfe9;
}

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

div.paginator_link_list_mobile a{
	padding:5px 20px 5px 20px;
	font-size:20px;
	background-color: #4070ff;
    border: 0 none;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.5px;
    outline: 0 none;
    text-align: center;
    text-decoration: none;
}

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

.footer_request{
  background-color: #ffdfe9;
  padding: 20px;
}


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

 .align_center { text-align: center;  }

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

div.page_notice {
  box-shadow: none;
  font-size: 1.2rem;
  margin: 15px 5%;
  letter-spacing: 1px;
  border-right: 4px solid #ccc;
  border-left: 4px solid #ccc;
  border-radius: 12px;
  padding: 10px 20px;
  color: #333;
  text-align: justify;
}
div.page_notice span {
  border-bottom: 1px dashed #ccc;
}
.warning_notice {
	font-weight: bold;
	font-size: 130%;
  text-align: center;
  background-color: #ffffcc;
  color: #ff3333;
  display: block;
  padding: 20px 0;
}
.warning_notice i {
	font-size: 200%;
}

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

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

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

.ok_notice {
  background-color: #ddeedd;
  color: #33aa33;
  margin: 3rem auto;
  padding: 1.5rem 5%;
  text-align: center;
  font-size: 22px;
}
.ok_notice > i:first-of-type {
  font-size: 60px;
}
.ok_notice .subnotice {
  padding: 20px 5%;
  border-top: 1px dashed #aaddaa;
}
.ok_notice .subnotice > i:first-of-type {
  font-size: 60px;
}
.ok_notice .subnotice:first-of-type {
  border-style: none;
}

.small_notice {
  background-color: #eee;
  color: #666;
  padding: 20px 5%;
  font-size: 16px;
}
.small_notice i:first-of-type {
  font-size: 40px;
}
.small_notice .subnotice {
  padding: 20px 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;
}

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

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

.notice_strong {
	font-weight: bold;
}

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


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

.faq_body {
  max-width: 750px;
  margin: 20px auto 10px auto;
  font-size: 140%;
}
.shopinfo_body {
  max-width: 750px;
  margin: 5rem auto;
  font-size: 1.4rem;
}
.feedback_body {
  max-width: 750px;
  margin: 10px auto;
  font-size: 1.2rem;
}
.shipping_body {
  max-width: 750px;
  margin: 20px auto 10px auto;
  font-size: 140%;
}
.article_body{
  max-width: 850px;
	margin:10px auto;
	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);
}

.dashboard {
  color: #666;
  font-size: 130%;
}

.dashboard h1 {
  text-align: center;
  margin: 20px 0 10px 0;
}

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

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

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

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

.status_table tr td.status_table_value a {
  display: block;
  background-color: hsla(200, 50%, 50%, 1);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.status_table tr td.status_table_value a:hover,
.status_table tr td.status_table_value a:focus {
  color: #ffffff;
  background-color: hsla(200, 70%, 60%, 1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

.status_table tr td.status_table_value_caution a {
  display: block;
  background-color: hsla(0, 70%, 60%, 1);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.status_table tr td.status_table_value_caution a:hover,
.status_table tr td.status_table_value_caution a:focus {
  color: #ffffff;
  background-color: hsla(0, 100%, 50%, 1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

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

.status_table_function a {
  padding: 4px 10px;
  display: block;
  transition-property: all;
  transition-duration: 0.05s;
  transition-timing-function: ease-out;
  border-top: 1px dashed #ddd;
}

.status_table_function a:hover {
  background-color: var(--color-link);
  color: #fff;
}

.status_table_function a.status_table_caution {
  color: #f33;
  font-weight: bold;
}

.status_table_function a.status_table_caution:hover {
  background-color: #f33;
  color: #fff;
}

.sales_amount_table {
  width: 100%;
  border-collapse: collapse;
}

.sales_amount_table tr th {
  text-align: right;
  background-color: var(--color-main);
  color: #ffffff;
  padding: 5px 15px;
}
.sales_amount_table tr td {
  text-align: right;
  border-bottom: 1px dashed #dddddd;
  padding: 5px 10px;
}

.new_items_table {
  width: 100%;
  border-collapse: collapse;
}

.new_items_table tr th {
  text-align: right;
  background-color: var(--color-main);
  color: #ffffff;
  padding: 5px 15px;
}

.new_items_table tr td {
  text-align: right;
  border-bottom: 1px dashed #dddddd;
  padding: 5px 10px;
}

.event_table {
  width: 100%;
  border-collapse: collapse;
}

.event_table tr th {
  text-align: right;
  background-color: var(--color-main);
  color: #ffffff;
  padding: 5px 15px;
}

.event_table tr td {
  text-align: right;
  border-bottom: 1px dashed #dddddd;
  padding: 5px 10px;
}

.event_table tr th.left_cell,
.event_table tr td.left_cell {
  text-align: left;
}

.item_count {
  vertical-align: super;
  color: #ff3333;
  font-size: 40%;
  font-weight: bold;
  white-space: nowrap;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
.item_count::before {
  content: "x";
  margin: 0 2px;
}

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

.index_menu_area h1 {
  background-color: var(--color-sub);
  color: #ffffff;
  padding: 4px;
  font-weight: bold;
  overflow: hidden;
  text-align: center;
}

.index_menu_area h2 {
  background-color: var(--color-main);
  color: #ffffff;
  margin: 10px 0;
  padding: 4px;
  font-weight: bold;
  overflow: hidden;
  text-align: center;
}

.index_menu_area h3 {
  color: var(--color-main);
  padding: 2px;
  font-weight: bold;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--color-main);
}

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

.index_menu_area ul li {
  list-style-type: none;
  border-top: 1px dashed #DDDDDD;
}
.index_menu_area ul li:first-of-type {
  border-top-style: none;
}
.index_menu_area ul li.list_hr {
  border-top: 1px solid #ccc;
  height: 0px;
  overflow: hidden;
}
.index_menu_area ul li.list_hr + li {
  border-top-style: none;
}

.index_menu_area ul li a{
  padding: 4px 10px;
	display:block;
  transition-property: all;
  transition-duration: 0.05s;
  transition-timing-function: ease-out;
}

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

.adult_query{
	width:120px;
	height:24px;
	border-radius: 0;
	border: 3px solid var(--color-sub);
	padding: 0;
	background: none var(--color-sub);
	vertical-align: middle;
	font-size: 13px;
	color: #FFFFFF;
	box-sizing: content-box;
}

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

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

.link_box a:hover {
  background-color: hsla(200, 50%, 50%, 1);
  color: #ffffff;
}

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

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

.id_box {
  width: 30px;
}

.seemore_table {
  position: absolute;
  left: 0;
  top: 0;
}

.seemore_content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  background-color: hsla(200, 50%, 50%, 1);
  color: #fff;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
.seemore_content:hover {
  color: #fff;
  filter: brightness(1.2);
}
.seemore_content i:first-of-type {
  font-size: 50px;
}

.scrolling_ui {
  display: none;
  position: absolute;
  z-index: 100;
  height: 100%;
  width: 50px;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media (any-hover: hover) {
  .scrolling_ui.show {
    display: block;
  }
}
.scrolling_ui:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.scrolling_ui i {
  position: relative;
  font-size: 48px;
  top: calc(50% - 48px/2);
  color: #ffffff;
}
.scrolling_ui_left {
  left: 0;
}
.scrolling_ui_right {
  right: 0;
}

#floating_notice {
  position: absolute;
  background-color: #ddffdd;
  width: 400px;
  color: #335533;
  opacity: 0.95;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 10px;
  display: none;
  border-radius: 5px;
  z-index: 300;
}

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

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

#floating_notice_str {
  font-size: 18px;
}

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

.floating_notice {
  position: absolute;
  background-color: #ddffdd;
  width: 400px;
  color: #335533;
  opacity: 0.95;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 10px;
  display: none;
  border-radius: 5px;
  letter-spacing: normal;
}

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

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

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

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

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

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

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

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

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

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

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

.horizontal_layout_box > div:last-of-type {
  border-right-style: none;
}

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

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

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

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

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

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

.left_index_list #left_search_button {
  cursor: pointer;
}

.left_index_list #circle_search_button {
  cursor: pointer;
}

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

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

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

.right_banner_block {
  width: 277px;
  min-width: 277px;
  max-width: 277px;
}

.right_banner_block a img {
  width: 100%;
}

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;
  background-color: hsla(0, 0%, 0%, 0.05);
  box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.2), inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
ul.product_thumbnail_list li {
  width: calc(var(--height-product-thumbnail-list) - 20px);
  min-width: calc(var(--height-product-thumbnail-list) - 20px);
  max-width: calc(var(--height-product-thumbnail-list) - 20px);
  font-size: 0.8rem;
  margin: 5px;
  list-style: none;
  position: relative;
  line-height: 0;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  overflow: hidden;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  aspect-ratio: 1;
}

ul.product_thumbnail_list li:hover {
  background-size: 110%;
}

ul.product_thumbnail_list.with_cols2 li {
  width: calc(100%/2 - 10px);
  min-width: calc(100%/2 - 10px);
  max-width: calc(100%/2 - 10px);
}
ul.product_thumbnail_list.with_cols3 li {
  width: calc(100%/3 - 10px);
  min-width: calc(100%/3 - 10px);
  max-width: calc(100%/3 - 10px);
}
ul.product_thumbnail_list.with_cols4 li {
  width: calc(100%/4 - 10px);
  min-width: calc(100%/4 - 10px);
  max-width: calc(100%/4 - 10px);
}
ul.product_thumbnail_list.with_cols5 li {
  width: calc(100%/5 - 10px);
  min-width: calc(100%/5 - 10px);
  max-width: calc(100%/5 - 10px);
}

@media (max-width: 1100px) {
  ul.product_thumbnail_list.with_cols2.with_change_width li {
    width: calc(100%/1 - 10px);
    min-width: calc(100%/1 - 10px);
    max-width: calc(100%/1 - 10px);
  }
  ul.product_thumbnail_list.with_cols3.with_change_width li {
    width: calc(100%/2 - 10px);
    min-width: calc(100%/2 - 10px);
    max-width: calc(100%/2 - 10px);
  }
  ul.product_thumbnail_list.with_cols4.with_change_width li {
    width: calc(100%/3 - 10px);
    min-width: calc(100%/3 - 10px);
    max-width: calc(100%/3 - 10px);
  }
  ul.product_thumbnail_list.with_cols5.with_change_width li {
    width: calc(100%/4 - 10px);
    min-width: calc(100%/4 - 10px);
    max-width: calc(100%/4 - 10px);
  }
}

ul.product_thumbnail_list.with_scrolling {
  display: flex;
  flex-wrap: nowrap;
  padding: 5px 25px;
  overflow-x: scroll;
  overflow-y: hidden;
}
ul.product_thumbnail_list.with_scrolling li:first-of-type {
  margin-left: 25px;
}
ul.product_thumbnail_list.with_scrolling li:last-of-type {
  margin-right: 25px;
}

ul.product_thumbnail_list .thumbnail_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
ul.product_thumbnail_list li:hover .thumbnail_img {
  transform: scale(1.1);
  filter: brightness(1.1);
}
ul.product_thumbnail_list .thumbnail_price {
  position: absolute;
  top: 0;
  right: 0;
  border-bottom-left-radius: 50px;
  padding: 2px 5px 2px 15px;
  background-color: white;
  font-weight: bold;
  background-color: hsla(130, 100%, 91%, 0.85);
	color: hsl(0, 0%, 25%);
  text-shadow: var(--text-shadow-near);
  box-shadow: var(--box-shadow-near);
  line-height: normal;
  text-align: right;
  pointer-events: none;
}
ul.product_thumbnail_list .thumbnail_info_left {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: block;
  pointer-events: none;
}
ul.product_thumbnail_list .thumbnail_bonus_info {
  display: inline-block;
  border-radius: 0 0 50px 0;
  padding: 2px 15px 2px 5px;
  background-color: white;
  font-weight: bold;
  color: var(--color-text);
  box-shadow: var(--box-shadow-near);
  line-height: normal;
  text-align: left;
}
ul.product_thumbnail_list .thumbnail_info {
  position: absolute;
  width: 100%;
  max-height: 100%;
  bottom: -0.5rem;
  left: 0;
  box-sizing: border-box;
  padding: 5px;
  line-height: normal;
  background-color: rgba(0, 0, 0, .6);
  color: #fff;
  opacity: 0;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, .4);
  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;
  vertical-align: middle;
  text-align: center;
  font-size: 0.8rem;
}

ul.product_thumbnail_list .thumbnail_info .thumbnail_info_product_title::before {
  content: attr(data-title-default);
}

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

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

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

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

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

.instant_search_form select option {
    color: #fff;
    background-color: var(--color-sub);
}


.info_menu {
	position: relative;
}
.info_menu::after {
	position: absolute;
	top: 0;
	right: 0;
	margin: 5px;
	font-weight: bold;
	content: attr(info);
}
.submenu_branch {
	position: relative;
}
.submenu_branch > ul {
	position: absolute;
	left: 100%;
	top: 0;
  margin: 0;
	display: none;
	white-space: nowrap;
	box-sizing: border-box;
	z-index: 1;
	background-color: #fff;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2), 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.submenu_branch > ul.align_bottom {
	top: auto;
	bottom: 0;
}
.index_menu_area ul li.submenu_branch > a {
	position: relative;
  padding: 4px 20px 4px 10px;
}
.submenu_branch > ul img {
  display: block;
}
.submenu_branch > a::after {
	position: absolute;
	top: 0;
	right: 0;
	margin: 5px;
	font-weight: bold;
	content: "\f0da";
  font-family: FontAwesome;
}
.submenu_branch:hover > ul {
	display: inline-block;
	animation: submenu_open 0.1s ease-out;
}
@keyframes submenu_open {
	0% {
		opacity: 0;
		left: 90%;
	}
	100% {
		opacity: 1;
		left: 100%;
	}
}

.carousel_content {
  display: flex;
	list-style: none;
	font-size: 0;
  white-space: nowrap;
  overflow: hidden;
	box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.2), inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.blog_entry_list {
  display: flex;
  flex-direction: column;
	list-style: none;
	font-size: 0;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.2), inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.carousel_content > li,
.blog_entry_list > li {
	font-size: 1rem;
	display: inline-block;
	white-space: normal;
	min-width: 100%;
	vertical-align: middle;
}

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

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

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

.blog_parts .blog_img img {
	display: block;
	width: 100%;
	background-color: #eee;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

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

.blog_desc .blog_title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.blog_info .blog_author img {
	width: 25px;
	background-color: #eee;
	border-radius: 50px;
	vertical-align: -5px;
}
.blog_seemore {
	text-align: center;
}
.blog_seemore a {
	display: inline-block;
	margin: 0 10px 10px 10px;
	padding: 10px 20px;
	border-radius: 0 0 10px 10px;
	background-color: hsla(200, 50%, 50%, 1);
	color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 0 10px 0 rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.blog_seemore a:hover {
	margin: 0 10px 5px 10px;
	padding: 15px 20px 10px 20px;
  background-color: hsla(200, 70%, 60%, 1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

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

}

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

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

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

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

.star_indicator .star_positive {
  color: #e93;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.star_indicator .star_positive.star_negative {
  color: #c96;
}
.star_indicator .star_negative {
  color: #999;
}

.drawer {
  position: fixed;
  display: block;
  margin: 0 auto;
  bottom: 220px;
  right: 0;
  z-index: 200;
}
.drawer:hover {
  right: 0;
  transition-delay: 0;
}
.drawer .drawer_layout {
  position: relative;
  width: 50px;
}
.drawer .drawer_layout > div {
  position: absolute;
}
.drawer .drawer_handle {
  width: 50px;
  background-color: var(--color-main);
  color: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  z-index: 202;
}
.drawer .drawer_handle ul {
  list-style: none;
}
.drawer .drawer_handle li {
  display: block;
  box-sizing: border-box;
  width: 50px;
  height: calc(220px / 3);
  padding: 10px 0;
  text-align: center;
  font-size: 1.5rem;
  background-color: var(--color-main);
  color: #fff;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
.drawer .drawer_handle li.active {
  background-color: #ffdfe9;
  color: var(--color-main);
}
.drawer .drawer_content {
  position: relative;
  height: 220px;
  width: calc(800px + 60px);
  left: 0;
  padding-right: 60px;
  border-radius: 1px 0 0 0;
  background-color: #fff;
  box-shadow: 0 0 0 10px var(--color-main), 0 0 20px 10px rgba(0, 0, 0, 0.2);
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  transition-delay: 0.3s;
  z-index: 201;
  overflow-y: hidden;
}
.drawer:hover .drawer_content {
}
.drawer .drawer_content > ul {
  width: 800px;
  list-style: none;
  position: absolute;
  top: 0;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
.drawer .drawer_content > ul[pos="history"] {
  top: calc(-240px * 0);
}
.drawer .drawer_content > ul[pos="favorite"] {
  top: calc(-240px * 1);
}
.drawer .drawer_content > ul[pos="cart"] {
  top: calc(-240px * 2);
}
.drawer .drawer_content > ul > li {
  position: relative;
  display: block;
  height: 240px;
}
.drawer .drawer_content > ul > li:last-of-type {
  border-radius: 10px 0 0 0;
}
.drawer .drawer_content > ul > li .drawer_content_caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  box-sizing: border-box;
  display: inline-block;
  border-radius: 0 0 10px 0;
  padding: 10px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  font-size: 2rem;
  background-color: var(--color-main);
  color: #fff;
  z-index: 202;
}
.drawer .drawer_content > ul > li .drawer_content_caption:hover {
  background-color: #ffdfe9;
  color: var(--color-main);
}

.drawer .drawer_handle:hover ~ .drawer_content {
  left: -800px;
  transition-delay: 0s;
}
.drawer .drawer_content:hover {
  left: -800px;
  transition-delay: 0s;
}

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

.drawer .drawer_content_noresult {
  width: 100%;
  height: 220px;
  display: table;
}
.drawer .drawer_content_noresult > div {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.social_header {
  color: var(--color-main);
  font-size: 30px;
  text-align: center;
  margin: 10px;
}
.social_header a {
  color: var(--color-main);
  text-decoration: none;
}
.social_container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 10px;
}
.social_container > div {
  padding: 5px;
}
.social_container > a {
  display: inline-block;
  padding: 5px 20px;
  background-color: var(--color-link);
  color: #dfefff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  margin: 0;
  border-radius: 0;
  font-size: 1.2rem;
}
.social_container > a:hover {
  color: var(--color-link);
  background-color: #dfefff;
}
.social_container > a:first-of-type {
  border-radius: 5px 0 0 5px;
}
.social_container > a:last-of-type {
  border-radius: 0 5px 5px 0;
}
.social_container > a:first-of-type:last-of-type {
  border-radius: 5px;
}
.social_container .social_button_twitter {
  background-color: hsla(200, 70%, 44%, 1.0);
  color: hsla(200, 70%, 100%, 1.0);
}
.social_container .social_button_twitter:hover {
  background-color: hsla(200, 70%, 80%, 1.0);
  color: hsla(200, 70%, 44%, 1.0);
}
.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 {
  position: absolute;
  bottom: 0;
  right: 0;
}

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

span.wordwrap{
	display:inline-block;
}

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

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

.footer_go_to_pagetop {
  margin: auto;
  width: 100%;
  background-color: hsla(0, 0%, 100%, 0.2);
  box-sizing: border-box;
}
.footer_go_to_pagetop:hover {
  margin: auto;
  width: 100%;
  background-color: hsla(0, 0%, 100%, 0.4);
}

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

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

.slidein_notice_anchor {
  display: table;
  width: 100%;
  min-height: 64px;
  box-sizing: border-box;
  border-radius: 0 5px 5px 0;
  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;
  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 5px 0 50px;
  right: 0;
  top: 0;
  background-color: hsla(0, 50%, 50%, 0.8);
  color: #fff;
  text-align: right;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

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

.country_list {
	text-align: center;
	font-size: 0;
}
.country_list li {
	display: inline-block;
}
.country_list li a {
	position: relative;
	display: inline-block;
	margin: 5px;
	padding: 5px 15px;
	border-radius: 50px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	background-color: hsla(200, 50%, 50%, 1);
	color: #fff;
	font-size: 1rem;
}
.country_list li a[count]::after {
	content: attr(count);
	position: absolute;
	border-radius: 50px;
	padding: 0 8px;
	top: -6px;
	right: -6px;
	background-color: #fff;
	color: hsla(200, 50%, 50%, 1);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	font-size: 0.8rem;
}
.country_list li a:hover {
	background-color: hsla(200, 70%, 60%, 1);
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2), 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.country_list li a.button_country_list_other {
	background-color: hsla(190, 50%, 50%, 1);
}
.country_list li a.button_country_list_other:hover {
	background-color: hsla(190, 70%, 60%, 1);
}

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

.hashtags_container {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  font-size: 1rem;
  background-color: #f0f0f0;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  list-style: none;
}

.hashtags_container a {
  display: inline-block;
  margin: 0.2rem;
  padding: 0.4rem 0.5rem;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #666;
  word-break: break-word;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.6);
}

.hashtags_container a:hover {
  filter: brightness(110%);
}

.hashtags_container a::before {
  padding: 0 0.2rem 0 0;
  font-family: FontAwesome;
  content: "\f292";
}

.no_creditcards {
  margin: 1rem 0;
  text-align: center;
}
.no_creditcards .creditcard_logo {
  height: 50px;
}
.no_creditcards .no_creditcards_note {
  margin: 1rem;
  color: hsla(200, 100%, 50%, 1);
}

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

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

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

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

@font-face{font-display: swap;
}

.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;
}
.price_with_unit_visible::before {
  content: "$";
  margin-right: 0.2rem;
  font-size: max(0.8rem, 50%);
  line-height: 100%;
  vertical-align: 30%;
  opacity: 0.6;
}
.price_with_unit_visible .price_with_unit_integer {
  font-size: 140%;
}
.price_with_unit_visible .price_with_unit_point {
  position: absolute;
  opacity: 0;
}
.price_with_unit_visible .price_with_unit_fractional {
  font-size: max(0.8rem, 50%);
  line-height: 100%;
  vertical-align: 30%;
}

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

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

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