main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

p:not([class]) {
  margin-bottom: 0.5rem;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ol:not([class]), ul:not([class]) {
  padding-left: 16px;
}

ol:not([class]), ul:not([class]), dl:not([class]) {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol:not([class]) ol, ul:not([class]) ul, ol:not([class]) ul, ul:not([class]) ol {
  margin-bottom: 0;
}

ul[role=list],
ol[role=list] {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 300;
}

dd {
  margin-left: 0;
}

dd:not([class]) {
  margin-bottom: 0.5rem;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  color: var(--color-base-black);
  background-color: transparent;
  text-decoration: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  text-underline-offset: 0.2em;
  color: var(--color-base-3);
  word-break: break-all;
  text-decoration: underline;
}
a:not([class]):hover {
  text-decoration: none;
  opacity: 0.8;
}

a:not([class]):not([href]),
a:not([class]):not([href]):hover,
a:not([class]):not([href]):focus {
  color: inherit;
  text-decoration: none;
  outline: 0;
}

abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: 500;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  vertical-align: middle;
  border-style: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: auto;
}

img,
embed,
object,
iframe {
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

img,
picture {
  max-width: 100%;
  display: block;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px; /* 1 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

summary[class]::-webkit-details-marker {
  display: none;
}

[contenteditable] {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.display_none {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.text_wrap {
  white-space: normal;
}

.text_nowrap {
  white-space: nowrap;
}

.text_break {
  word-wrap: break-word;
  word-break: break-word;
}

.text_left {
  text-align: left;
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.d_block {
  display: block;
}

.d_flex {
  display: flex;
  flex-wrap: wrap;
}

.d_inline_block {
  display: inline-block;
}

.justify_content_start {
  justify-content: flex-start;
}

.justify_content_center {
  justify-content: center;
}

.justify_content_end {
  justify-content: flex-end;
}

.justify_content_between {
  justify-content: space-between;
}

.align_items_start {
  align-items: flex-start;
}

.align_items_center {
  align-items: center;
}

.align_items_end {
  align-items: flex-end;
}

.text_decoration_none {
  text-decoration: none;
}

.text_decoration_underline {
  text-decoration: underline;
}

.border_style_dotted {
  border-style: dotted;
}

@media screen and (max-width: 919.8px) {
  .pc_only {
    display: none;
  }
}
@media screen and (min-width: 920px) {
  .pc_only {
    display: initial;
  }
}

@media screen and (min-width: 920px) {
  .sp_only {
    display: none;
  }
}

.pointer_event_none {
  pointer-events: none;
}

/* reset */
:root {
  --color-base-black: #333333;
  --color-base-white: #FFFFFF;
  --color-base-1: #002955;
  --color-base-2: #656565;
  --color-base-3: #000000;
  --color-base-4: #FF9900;
  --color-base-5: #6E6E6E;
  --color-base-6: #FF0000;
  --color-shiraishi-1: #00B1BB;
  --color-shiraishi-2: #9BCCD0;
  --color-exelco-1: #000000;
  --color-exelco-2: #6C6E70;
  --color-parler-1: #AE92BE;
  --color-parler-2: #CDB7D9;
  --color-crazy-1: #000000;
  --color-crazy-2: #000000;
  --color-accent-1: #999999;
  --color-accent-2: #707070;
  --color-accent-3: #8094AA;
  --color-accent-4: #4D708C;
  --color-accent-5: #CFCFCF;
  --color-accent-6: #B29A5A;
  --color-accent-7: #CC0000;
  --color-accent-8: #FDF1F0;
  --color-accent-9: #0092C4;
  --color-accent-10: #DE5D50;
  --color-tag-default: #eee;
  --color-tagid1: #FF9900;
  --color-tagid2: #18A246;
  --color-tagid3: #E55F83;
  --color-tagid4: #CC0000;
  --color-tagid5: #000000;
  --color-button-default: #6E6E6E;
  --color-button-action: #FF9900;
  --color-button-cancel: #9E9E9E;
  --color-warn: #CC0000;
  --color-alert-warn-txt: #CC0000;
  --color-alert-warn-bg: #DE5D50;
  --color-text-red: #DE5D50;
  --line-height--base-125: 1.25;
  --line-height--base-155: 1.55;
  --line-height--base-185: 1.85;
  --line-height--base-205: 2.05;
  --letter-spacing--base-01: 0.01em;
  --letter-spacing--base-10: 0.1em;
  --container-base-space: 15px;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  line-height: 1.55;
  font-size: 16px;
  scroll-padding-top: 16px;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  text-align: left;
  background-color: var(--color-base-white);
  color: var(--color-base-black);
  margin: 0;
  min-height: 100dvh;
}

/**
==============================
common
==============================
*/
.ec-debugModeAlert + *,
.ec-maintenanceAlert + *,
.ec-debugModeAlert + .ec-layoutRole .ec-headerDrawerMenuRole .ec-headerDrawerMenuRole__body,
.ec-maintenanceAlert + .ec-layoutRole .ec-headerDrawerMenuRole .ec-headerDrawerMenuRole__body {
  margin-top: 50px;
}

.ec-twoModeAlert + *,
.ec-twoModeAlert + .ec-layoutRole .ec-headerDrawerMenuRole .ec-headerDrawerMenuRole__body {
  margin-top: 100px;
}

.ec-maintenanceAlert {
  z-index: 1400;
  background: steelblue;
  height: 50px;
  position: absolute;
  top: 0;
  width: 100%;
  color: white;
  display: flex;
  font-weight: bold;
}
.ec-maintenanceAlert > * {
  margin: auto;
}
.ec-maintenanceAlert .ec-maintenanceAlert__icon {
  display: inline-block;
  margin-right: 1rem;
  width: 20px;
  height: 20px;
  color: #fff;
  fill: #fff;
  vertical-align: top;
}

.ec-debugModeAlert {
  z-index: 1400;
  background: red;
  height: 50px;
  position: absolute;
  top: 0;
  width: 100%;
  color: white;
  display: flex;
  font-weight: bold;
}
.ec-debugModeAlert > * {
  margin: auto;
}
.ec-debugModeAlert .ec-debugModeAlert__icon {
  display: inline-block;
  margin-right: 1rem;
  width: 20px;
  height: 20px;
  color: #fff;
  fill: #fff;
  vertical-align: top;
}

.ec-pageTop .ec-pageTop__button {
  position: fixed;
  z-index: 1000;
  background-color: var(--color-accent-4);
  color: var(--color-base-white);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 919.8px) {
  .ec-pageTop .ec-pageTop__button {
    font-size: max(0.625rem, 10px);
    width: 40px;
    height: 40px;
    bottom: 60px;
    right: 15px;
  }
}
@media screen and (min-width: 920px) {
  .ec-pageTop .ec-pageTop__button {
    font-size: max(1.125rem, 10px);
    width: 80px;
    height: 80px;
    bottom: 60px;
    right: 15px;
  }
}
.ec-pageTop .ec-pageTop__button:hover {
  opacity: 0.8;
}

.ec-no_pagination-wrap {
  padding: 0 15px;
  margin: 60px 0;
}
.ec-no_pagination-wrap .ec-no_pagination {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
}

.swiper-horizontal .swiper-pagination > .swiper-pagination-bullet {
  background-color: #919395;
  width: 14px;
  height: 14px;
  margin: 0 10px;
  opacity: 1;
}
.swiper-horizontal .swiper-pagination > .swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.5);
}

/**
==============================
ec-layoutRole__header
==============================
*/
.ec-layoutHerder__top {
  position: sticky;
  top: 0;
  z-index: 1500;
  background-color: var(--color-base-1);
}
@media screen and (max-width: 919.8px) {
  .ec-layoutHerder__top {
    padding: 15px 15px;
  }
}
@media screen and (min-width: 920px) {
  .ec-layoutHerder__top {
    padding: 15px 40px;
  }
}
.ec-layoutHerder__top .headerTop__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.ec-layoutHerder__top .headerTop__text {
  display: inline-block;
  color: var(--color-base-white);
}
@media screen and (max-width: 919.8px) {
  .ec-layoutHerder__top .headerTop__text {
    font-size: max(0.75rem, 10px);
  }
}
@media screen and (min-width: 920px) {
  .ec-layoutHerder__top .headerTop__text {
    font-size: max(1.125rem, 10px);
  }
}
.ec-layoutHerder__top .headerTop__text:hover {
  opacity: 0.8;
}
.ec-layoutHerder__top .headerTop__pcNav {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 919.8px) {
  .ec-layoutHerder__top .headerTop__pcNav {
    display: none !important;
  }
}
@media screen and (min-width: 920px) {
  .ec-layoutHerder__top .headerTop__pcNav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-left: auto;
  }
}
.ec-layoutHerder__top .headerTop__pcNav .nav_item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.ec-layoutHerder__top .headerTop__pcNav .nav_item:hover {
  opacity: 0.8;
}
.ec-layoutHerder__top .headerTop__pcNav .cart_item_quantity {
  position: relative;
}
.ec-layoutHerder__top .headerTop__pcNav .cart_item_quantity .quantity_badge {
  position: absolute;
  z-index: 1;
  right: 2px;
  top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  font-weight: 400;
  font-size: max(0.75rem, 10px);
  line-height: 1.25;
  min-width: 16px;
  height: 16px;
  background-color: var(--color-base-white);
}
.ec-layoutHerder__top .price_text {
  background-color: var(--color-base-white);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  line-height: 30px;
  padding: 0 15px;
  border-radius: 15px;
  font-size: max(0.75rem, 10px);
  min-width: 100px;
}
.ec-layoutHerder__top .headerTop__spIcon {
  margin-left: auto;
}
@media screen and (min-width: 920px) {
  .ec-layoutHerder__top .headerTop__spIcon {
    display: none !important;
  }
}
.ec-layoutHerder__top .headerTop__spIcon .drawer_button {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 34px;
  padding: 4px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.ec-layoutHerder__top .headerTop__spIcon .drawer_button .drawer_button_icon {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}
.ec-layoutHerder__top .headerTop__spIcon .drawer_button .drawer_button_icon span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-base-white);
}
.ec-layoutHerder__top .headerTop__spIcon .drawer_button .drawer_button_icon_b1 {
  top: 0;
}
.ec-layoutHerder__top .headerTop__spIcon .drawer_button .drawer_button_icon_b2 {
  top: 12px;
}
.ec-layoutHerder__top .headerTop__spIcon .drawer_button .drawer_button_icon_b3 {
  bottom: 0;
}

.ec-layoutHerder__bottom {
  background-color: var(--color-base-white);
  border-bottom: 1px solid var(--color-accent-2);
}
@media screen and (max-width: 919.8px) {
  .ec-layoutHerder__bottom {
    padding: 15px 15px;
  }
}
@media screen and (min-width: 920px) {
  .ec-layoutHerder__bottom {
    padding: 20px 15px;
  }
}
.ec-layoutHerder__bottom .ec-headerBottom__inner {
  max-width: 1500px;
  margin: 0 auto;
}
@media screen and (min-width: 920px) {
  .ec-layoutHerder__bottom .ec-headerBottom__inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }
}
.ec-layoutHerder__bottom .ec-headerBottom__inner .ec-headerBottom__logo-wrap:hover {
  opacity: 0.8;
}
@media screen and (max-width: 919.8px) {
  .ec-layoutHerder__bottom .ec-headerBottom__logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 919.8px) {
  .ec-layoutHerder__bottom .ec-headerBottom__block {
    display: none;
  }
}
@media screen and (min-width: 920px) {
  .ec-layoutHerder__bottom .ec-headerBottom__block {
    display: grid;
    justify-content: end;
    margin-left: auto;
  }
}
.ec-layoutHerder__bottom .block_search-wrap {
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.ec-layoutHerder__bottom .block_search-wrap .block_search_select-wrap {
  position: relative;
}
.ec-layoutHerder__bottom .block_search-wrap .block_search_select-wrap .block_search_select {
  display: inline-block;
  min-width: 200px;
  min-height: 50px;
  color: var(--color-base-white);
  background-color: var(--color-base-2);
  border: 1px solid var(--color-base-2);
  overflow: hidden;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 15px 35px 15px 15px;
  cursor: pointer;
  background-image: url("../img/arr_select_white.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right 10px center;
}
.ec-layoutHerder__bottom .block_search-wrap .block_search_keyword-wrap {
  position: relative;
}
.ec-layoutHerder__bottom .block_search-wrap .block_search_keyword-wrap .block_search_keyword {
  width: 100%;
  min-width: 400px;
  min-height: 50px;
  display: inline-block;
  background-color: var(--color-base-white);
  border: 1px solid var(--color-accent-2);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 15px 45px 15px 15px;
}
.ec-layoutHerder__bottom .block_search-wrap .block_search_button {
  position: absolute;
  top: 12px;
  right: 5px;
  width: 35px;
  height: 35px;
}
.ec-layoutHerder__bottom .block_link-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.ec-layoutHerder__bottom .block_link-wrap > li {
  position: relative;
}
.ec-layoutHerder__bottom .block_link-wrap > li:not(:first-child):before {
  content: "/";
  display: inline-block;
  color: var(--color-accent-1);
  margin: 0 10px;
  font-weight: max(0.875rem, 10px);
}
.ec-layoutHerder__bottom .block_link-wrap .block_link {
  display: inline-block;
  color: var(--color-accent-1);
  font-weight: max(0.875rem, 10px);
}
.ec-layoutHerder__bottom .block_link-wrap .block_link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/**
==============================
header_drawer_menu_toggle
==============================
*/
#header_drawer_menu_toggle {
  display: none !important;
}

#header_drawer_menu_toggle:checked ~ .ec-layoutHerder__top {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}
#header_drawer_menu_toggle:checked ~ .ec-layoutHerder__top .headerTop__spIcon .drawer_button_icon_b1 {
  transform: translateY(12px) rotate(-45deg);
}
#header_drawer_menu_toggle:checked ~ .ec-layoutHerder__top .headerTop__spIcon .drawer_button_icon_b2 {
  opacity: 0;
}
#header_drawer_menu_toggle:checked ~ .ec-layoutHerder__top .headerTop__spIcon .drawer_button_icon_b3 {
  transform: translateY(-12px) rotate(45deg);
}
#header_drawer_menu_toggle:checked ~ .ec-headerDrawerMenuRole {
  display: block;
}

/**
==============================
ec-headerDrawerMenuRole
==============================
*/
.ec-headerDrawerMenuRole {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 1300;
  overflow-y: auto;
  overscroll-behavior-y: none;
}
.ec-headerDrawerMenuRole .ec-headerDrawerMenuRole__toggleOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1310;
  background-color: rgba(0, 0, 0, 0.6);
}
.ec-headerDrawerMenuRole .ec-headerDrawerMenuRole__body {
  position: relative;
  z-index: 1320;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  min-height: calc(100% + 1px);
  padding-top: 65px;
  margin-left: auto;
  max-width: clamp(350px, 70%, 380px);
}
.ec-headerDrawerMenuRole .ec-headerDrawerMenuRole__inner {
  width: 100%;
  background-color: var(--color-base-1);
  padding-bottom: 15dvh;
}
.ec-headerDrawerMenuRole .block_search-wrap {
  background-color: var(--color-base-white);
  padding: 15px 15px 0 15px;
}
.ec-headerDrawerMenuRole .block_search-wrap .block_search_select-wrap {
  position: relative;
}
.ec-headerDrawerMenuRole .block_search-wrap .block_search_select-wrap .block_search_select {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  min-height: 30px;
  color: var(--color-base-white);
  background-color: var(--color-base-2);
  border: 1px solid var(--color-base-2);
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 5px 35px 5px 10px;
  font-size: max(0.875rem, 10px);
  background-image: url("../img/arr_select_white.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: right 10px center;
}
.ec-headerDrawerMenuRole .block_search-wrap .block_search_keyword-wrap {
  position: relative;
}
.ec-headerDrawerMenuRole .block_search-wrap .block_search_keyword-wrap .block_search_keyword {
  width: 100%;
  max-width: 100%;
  min-height: 30px;
  display: inline-block;
  background-color: var(--color-base-white);
  border: 1px solid var(--color-accent-2);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 5px 35px 5px 10px;
  font-size: max(0.875rem, 10px);
}
.ec-headerDrawerMenuRole .block_search-wrap .block_search_button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 25px;
  height: 25px;
}
.ec-headerDrawerMenuRole .menu_brand_block {
  background-color: var(--color-base-white);
  padding: 20px 15px;
}
.ec-headerDrawerMenuRole .menu_brand_block .menu_brand_link-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ec-headerDrawerMenuRole .menu_brand_block .brand_link {
  display: flex;
  justify-content: space-between;
  color: var(--color-base-1);
  font-size: max(1rem, 10px);
  padding: 5px 0;
  font-weight: 400;
}
.ec-headerDrawerMenuRole .menu_brand_block .brand_link .icon_arrow {
  max-width: 8px;
}
.ec-headerDrawerMenuRole .menu_block_layout1 {
  background-color: var(--color-base-1);
}
.ec-headerDrawerMenuRole .menu_block_layout1 .menu_link-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ec-headerDrawerMenuRole .menu_block_layout1 .menu_link-wrap > li {
  padding: 0 15px;
  border-bottom: 1px solid var(--color-accent-3);
}
.ec-headerDrawerMenuRole .menu_block_layout1 .menu_link {
  display: flex;
  justify-content: space-between;
  color: var(--color-base-white);
  font-size: max(1rem, 10px);
  padding: 10px 0;
}
.ec-headerDrawerMenuRole .menu_block_layout1 .menu_link .text_icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.ec-headerDrawerMenuRole .menu_block_layout1 .menu_link .text_icon img {
  margin-right: 5px;
  max-width: 16px;
}
.ec-headerDrawerMenuRole .menu_block_layout1 .cart_item_quantity {
  position: relative;
  display: flex;
  justify-content: center;
}
.ec-headerDrawerMenuRole .menu_block_layout1 .cart_item_quantity .quantity_badge {
  text-align: center;
  color: var(--color-base-black);
  display: inline-block;
  border-radius: 50%;
  font-weight: 400;
  font-size: max(0.75rem, 10px);
  line-height: 1.25;
  min-width: 16px;
  height: 16px;
  background-color: var(--color-base-white);
}
.ec-headerDrawerMenuRole .menu_block_layout2 {
  padding: 15px;
  background-color: var(--color-base-1);
}
.ec-headerDrawerMenuRole .menu_block_layout2 .menu_link-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
}
.ec-headerDrawerMenuRole .menu_block_layout2 .menu_link {
  display: flex;
  justify-content: space-between;
  color: var(--color-base-white);
  font-size: max(0.875rem, 10px);
}
.ec-headerDrawerMenuRole .menu_block_layout2 .menu_link .icon_arrow {
  max-width: 8px;
}
.ec-headerDrawerMenuRole .menu_block_layout2 .menu_link .text_icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.ec-headerDrawerMenuRole .menu_block_layout2 .menu_link .text_icon img {
  margin-left: 5px;
  max-width: 14px;
}

/**
==============================
ec-layoutRole__footer
==============================
*/
.ec-layoutRole__footer {
  position: relative;
}
.ec-layoutRole__footer .ec-footerRole__top {
  background-color: var(--color-base-1);
}
@media screen and (max-width: 919.8px) {
  .ec-layoutRole__footer .ec-footerRole__top {
    padding: 15px 15px;
  }
}
@media screen and (min-width: 920px) {
  .ec-layoutRole__footer .ec-footerRole__top {
    padding: 30px 15px;
  }
}
.ec-layoutRole__footer .ec-footerRole__top .ec-footerTop__inner {
  margin: 0 auto;
}
@media screen and (max-width: 919.8px) {
  .ec-layoutRole__footer .ec-footerRole__top .ec-footerTop__inner {
    max-width: 780px;
  }
}
@media screen and (min-width: 920px) {
  .ec-layoutRole__footer .ec-footerRole__top .ec-footerTop__inner {
    max-width: 1180px;
  }
}
@media screen and (max-width: 919.8px) {
  .ec-layoutRole__footer .ec-footerRole__top .ec-footerTop__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media screen and (min-width: 920px) {
  .ec-layoutRole__footer .ec-footerRole__top .ec-footerTop__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
  }
}
@media screen and (max-width: 919.8px) {
  .ec-layoutRole__footer .ec-footerRole__top .footer_menu-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
.ec-layoutRole__footer .ec-footerRole__top .footer_menu-wrap .menu_title {
  display: inline-block;
  color: var(--color-base-white);
}
@media screen and (max-width: 919.8px) {
  .ec-layoutRole__footer .ec-footerRole__top .footer_menu-wrap .menu_title {
    font-size: max(1rem, 10px);
  }
}
@media screen and (min-width: 920px) {
  .ec-layoutRole__footer .ec-footerRole__top .footer_menu-wrap .menu_title {
    font-size: max(1.125rem, 10px);
    margin-bottom: 15px;
  }
}
.ec-layoutRole__footer .ec-footerRole__top .footer_menu-wrap .menu_item-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 5px;
}
.ec-layoutRole__footer .ec-footerRole__top .footer_menu-wrap .menu_item {
  font-size: max(0.875rem, 10px);
  color: var(--color-base-white);
}
.ec-layoutRole__footer .ec-footerRole__top .footer_menu-wrap .menu_item:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.ec-layoutRole__footer .ec-footerRole__top .footer_link-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 919.8px) {
  .ec-layoutRole__footer .ec-footerRole__top .footer_link-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media screen and (min-width: 920px) {
  .ec-layoutRole__footer .ec-footerRole__top .footer_link-wrap {
    display: grid;
    gap: 5px;
  }
}
@media screen and (max-width: 919.8px) {
  .ec-layoutRole__footer .ec-footerRole__top .footer_link-wrap > li {
    min-width: calc((100% - 15px) / 2);
  }
}
.ec-layoutRole__footer .ec-footerRole__top .footer_link-wrap .link_item {
  display: inline-block;
  color: var(--color-base-white);
}
@media screen and (max-width: 919.8px) {
  .ec-layoutRole__footer .ec-footerRole__top .footer_link-wrap .link_item {
    font-size: max(0.875rem, 10px);
  }
}
@media screen and (min-width: 920px) {
  .ec-layoutRole__footer .ec-footerRole__top .footer_link-wrap .link_item {
    font-size: max(1rem, 10px);
  }
}
.ec-layoutRole__footer .ec-footerRole__top .footer_link-wrap .link_item:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.ec-layoutRole__footer .ec-footerRole__top .footer_link-wrap .link_item .text_icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.ec-layoutRole__footer .ec-footerRole__top .footer_link-wrap .link_item .text_icon img {
  margin-left: 5px;
}
@media screen and (max-width: 919.8px) {
  .ec-layoutRole__footer .ec-footerRole__top .footer_link-wrap .link_item .text_icon img {
    max-width: 14px;
  }
}
@media screen and (min-width: 920px) {
  .ec-layoutRole__footer .ec-footerRole__top .footer_link-wrap .link_item .text_icon img {
    max-width: 16px;
  }
}
.ec-layoutRole__footer .ec-footerRole__bottom {
  background-color: var(--color-base-white);
}
@media screen and (max-width: 919.8px) {
  .ec-layoutRole__footer .ec-footerRole__bottom {
    padding: 15px 15px;
  }
}
@media screen and (min-width: 920px) {
  .ec-layoutRole__footer .ec-footerRole__bottom {
    padding: 30px 15px;
  }
}
.ec-layoutRole__footer .ec-footerRole__bottom .ec-footerRole__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 919.8px) {
  .ec-layoutRole__footer .ec-footerRole__bottom .ec-footerRole__logo picture {
    max-width: 320px;
  }
}
.ec-layoutRole__footer .ec-footerRole__bottom .ec-footerRole__copyright {
  margin-top: 5px;
  font-size: max(1rem, 10px);
  text-align: center;
}

/**
==============================
ec-page_layout_top
==============================
*/
.page_layout_top_news {
  max-width: 1430px;
  margin: 0 auto;
}
@media screen and (max-width: 919.8px) {
  .page_layout_top_news {
    padding: 20px 15px 20px;
  }
}
@media screen and (min-width: 920px) {
  .page_layout_top_news {
    padding: 30px 15px 40px;
  }
}
@media screen and (min-width: 920px) {
  .page_layout_top_news .layout_top_news_inner {
    display: flex;
  }
}
@media screen and (max-width: 919.8px) {
  .page_layout_top_news .layout_title-wrap {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 920px) {
  .page_layout_top_news .layout_title-wrap {
    flex-basis: 230px;
  }
}
.page_layout_top_news .layout_title-wrap .layout_title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 15px;
  line-height: 1;
}
.page_layout_top_news .layout_title-wrap .title_en {
  font-size: max(1.625rem, 10px);
}
.page_layout_top_news .layout_title-wrap .title_text {
  font-size: max(1.25rem, 10px);
}
.page_layout_top_news .top_news_list-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 5px;
}
.page_layout_top_news .top_news_list-wrap .top_news {
  position: relative;
  display: inline-block;
  font-size: max(0.875rem, 10px);
}
.page_layout_top_news .top_news_list-wrap .top_news:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.page_layout_brand .brand_inner,
.page_layout_top_brand .brand_inner {
  max-width: 1600px;
  margin: 0 auto 50px;
}
.page_layout_brand .brand_slider,
.page_layout_top_brand .brand_slider {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page_layout_brand .brand_slider .brand_slide,
.page_layout_top_brand .brand_slider .brand_slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_layout_brand .button_block-wrap,
.page_layout_top_brand .button_block-wrap {
  display: flex;
  justify-content: center;
  padding: 0 15px;
}
.page_layout_brand .button_block-wrap .button_block,
.page_layout_top_brand .button_block-wrap .button_block {
  background-color: var(--color-base-3);
  color: var(--color-base-white);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 360px;
  border-radius: 10px;
  font-weight: 400;
}
@media screen and (max-width: 919.8px) {
  .page_layout_brand .button_block-wrap .button_block,
  .page_layout_top_brand .button_block-wrap .button_block {
    min-height: 50px;
    font-size: max(0.875rem, 10px);
  }
}
@media screen and (min-width: 920px) {
  .page_layout_brand .button_block-wrap .button_block,
  .page_layout_top_brand .button_block-wrap .button_block {
    min-height: 60px;
  }
}
.page_layout_brand .button_block-wrap .button_block:hover,
.page_layout_top_brand .button_block-wrap .button_block:hover {
  opacity: 0.8;
}

.page_layout_top_brand {
  margin: 0 0 100px;
  overflow: hidden;
}
@media screen and (max-width: 919.8px) {
  .page_layout_top_brand .button_block-wrap {
    margin: 30px auto 0;
  }
}
@media screen and (min-width: 920px) {
  .page_layout_top_brand .button_block-wrap {
    margin: 50px auto 0;
  }
}

.page_layout_brand {
  margin: 0 0 50px;
  overflow: hidden;
}
@media screen and (max-width: 919.8px) {
  .page_layout_brand .button_block-wrap {
    margin: 30px auto 30px;
  }
}
@media screen and (min-width: 920px) {
  .page_layout_brand .button_block-wrap {
    margin: 50px auto 50px;
  }
}

.product_simple_list-wrap {
  margin: 0;
  padding: 0 15px;
}
.product_simple_list-wrap .product_simple_list {
  list-style: none;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  display: grid;
}
@media screen and (max-width: 919.8px) {
  .product_simple_list-wrap .product_simple_list {
    gap: 15px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 920px) {
  .product_simple_list-wrap .product_simple_list {
    gap: clamp(15px, 4.2857142857vw, 60px);
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.product_simple_list-wrap .product_item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.product_simple_list-wrap .product_item .item_block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.product_simple_list-wrap .product_item .item_block:hover {
  opacity: 0.8;
}
.product_simple_list-wrap .product_item .item_block:hover .item_title {
  text-decoration: underline;
}
.product_simple_list-wrap .product_item .item_balloon {
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--color-base-white);
  clip-path: polygon(0 0, 0% 100%, 100% 0%);
  display: grid;
  line-height: 1;
  justify-content: start;
  align-content: start;
  color: var(--color-base-white);
  background-color: var(--color-base-3);
}
@media screen and (max-width: 919.8px) {
  .product_simple_list-wrap .product_item .item_balloon {
    width: 70px;
    height: 60px;
    padding: 4px;
    gap: 2px;
  }
}
@media screen and (min-width: 920px) {
  .product_simple_list-wrap .product_item .item_balloon {
    width: 90px;
    height: 80px;
    padding: 8px;
    gap: 5px;
  }
}
.product_simple_list-wrap .product_item .item_balloon .item_balloon_number {
  font-weight: 500;
}
@media screen and (max-width: 919.8px) {
  .product_simple_list-wrap .product_item .item_balloon .item_balloon_number {
    font-size: max(1rem, 10px);
  }
}
@media screen and (min-width: 920px) {
  .product_simple_list-wrap .product_item .item_balloon .item_balloon_number {
    font-size: max(1.25rem, 10px);
  }
}
.product_simple_list-wrap .product_item .item_balloon .item_balloon_number small {
  font-size: max(0.75rem, 10px);
}
.product_simple_list-wrap .product_item .item_balloon .item_balloon_text {
  font-size: max(0.75rem, 10px);
}
.product_simple_list-wrap .product_item .item_image-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  overflow: hidden;
  border: 1px solid var(--color-accent-5);
}
.product_simple_list-wrap .product_item .item_image-wrap:hover {
  opacity: 0.8;
}
.product_simple_list-wrap .product_item .item_image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product_simple_list-wrap .product_item .item_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
}
.product_simple_list-wrap .product_item .item_category-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  gap: 5px;
  line-height: 1.25;
  font-size: max(0.75rem, 10px);
}
.product_simple_list-wrap .product_item .item_category-wrap > li {
  position: relative;
  display: inline;
}
.product_simple_list-wrap .product_item .item_category-wrap > li:not(:first-child):before {
  content: ">";
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.product_simple_list-wrap .product_item .item_category-wrap .item_category {
  display: inline;
  text-decoration: underline;
}
.product_simple_list-wrap .product_item .item_category-wrap .item_category:hover {
  opacity: 0.8;
}
.product_simple_list-wrap .product_item .item_title {
  line-height: 1.25;
  font-weight: 400;
  font-size: max(1rem, 10px);
}
.product_simple_list-wrap .product_item .item_price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.product_simple_list-wrap .product_item .item_price .item_price1 {
  font-size: max(0.75rem, 10px);
  line-height: 1.25;
  text-decoration: line-through;
}
.product_simple_list-wrap .product_item .item_price .item_price2 {
  line-height: 1.25;
}
@media screen and (max-width: 919.8px) {
  .product_simple_list-wrap .product_item .item_price .item_price2 {
    font-size: max(0.875rem, 10px);
  }
}
@media screen and (min-width: 920px) {
  .product_simple_list-wrap .product_item .item_price .item_price2 {
    font-size: max(1rem, 10px);
  }
}

.product_mini_list-wrap {
  margin: 0;
  padding: 0 15px;
}
.product_mini_list-wrap .product_simple_list {
  list-style: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
@media screen and (min-width: 920px) {
  .product_mini_list-wrap .product_simple_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(137px, 1fr));
    gap: 12px;
  }
}
.product_mini_list-wrap .swiper-horizontal .swiper-pagination {
  position: relative;
  bottom: 0;
  left: 0;
  margin: 15px 0 0;
}
@media screen and (min-width: 920px) {
  .product_mini_list-wrap .swiper-horizontal .swiper-pagination {
    display: none;
  }
}
.product_mini_list-wrap .swiper-horizontal .swiper-pagination > .swiper-pagination-bullet {
  background-color: #919395;
}
.product_mini_list-wrap .swiper-horizontal .swiper-pagination > .swiper-pagination-bullet-active {
  background-color: rgba(145, 147, 149, 0.5);
}
.product_mini_list-wrap .product_item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.product_mini_list-wrap .product_item .item_block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.product_mini_list-wrap .product_item .item_balloon {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 70px;
  height: 60px;
  background: var(--color-base-white);
  clip-path: polygon(0 0, 0% 100%, 100% 0%);
  display: grid;
  line-height: 1;
  justify-content: start;
  align-content: start;
  padding: 4px;
  gap: 2px;
  color: var(--color-base-white);
  background-color: var(--color-base-3);
}
.product_mini_list-wrap .product_item .item_balloon .item_balloon_number {
  font-weight: 500;
}
@media screen and (max-width: 919.8px) {
  .product_mini_list-wrap .product_item .item_balloon .item_balloon_number {
    font-size: max(1rem, 10px);
  }
}
@media screen and (min-width: 920px) {
  .product_mini_list-wrap .product_item .item_balloon .item_balloon_number {
    font-size: max(1.25rem, 10px);
  }
}
.product_mini_list-wrap .product_item .item_balloon .item_balloon_number small {
  font-size: max(0.75rem, 10px);
}
.product_mini_list-wrap .product_item .item_balloon .item_balloon_text {
  font-size: max(0.75rem, 10px);
}
.product_mini_list-wrap .product_item .item_image-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  overflow: hidden;
  border: 1px solid var(--color-accent-5);
}
.product_mini_list-wrap .product_item .item_image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product_mini_list-wrap .product_item .item_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
}
.product_mini_list-wrap .product_item .item_category-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  line-height: 1.25;
  font-size: max(0.75rem, 10px);
}
.product_mini_list-wrap .product_item .item_category-wrap > li {
  position: relative;
  display: inline;
}
.product_mini_list-wrap .product_item .item_category-wrap > li:not(:first-child):before {
  content: ">";
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}
.product_mini_list-wrap .product_item .item_category-wrap .item_category {
  display: inline;
  text-decoration: underline;
}
.product_mini_list-wrap .product_item .item_title {
  line-height: 1.25;
  font-weight: 400;
  font-size: max(0.875rem, 10px);
}
.product_mini_list-wrap .product_item .item_price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product_mini_list-wrap .product_item .item_price .item_price1 {
  font-size: max(0.75rem, 10px);
  line-height: 1.25;
  text-decoration: line-through;
}
.product_mini_list-wrap .product_item .item_price .item_price2 {
  line-height: 1.25;
}
@media screen and (max-width: 919.8px) {
  .product_mini_list-wrap .product_item .item_price .item_price2 {
    font-size: max(0.75rem, 10px);
  }
}
@media screen and (min-width: 920px) {
  .product_mini_list-wrap .product_item .item_price .item_price2 {
    font-size: max(0.875rem, 10px);
  }
}

.product_detail_list-wrap {
  margin: 0;
  padding: 0 15px;
}
.product_detail_list-wrap .product_detail_list {
  list-style: none;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  display: grid;
}
@media screen and (max-width: 919.8px) {
  .product_detail_list-wrap .product_detail_list {
    gap: 10px;
  }
}
@media screen and (min-width: 920px) {
  .product_detail_list-wrap .product_detail_list {
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}
.product_detail_list-wrap .product_item {
  display: grid;
  gap: 15px;
  grid-template-columns: clamp(130px, 15vw, 220px) 1fr;
  padding: 10px;
  border: 1px solid var(--color-accent-5);
  height: 100%;
}
.product_detail_list-wrap .product_item:hover {
  opacity: 0.8;
}
.product_detail_list-wrap .product_item:hover .item_title {
  text-decoration: underline;
}
.product_detail_list-wrap .product_item .item_left {
  position: relative;
}
.product_detail_list-wrap .product_item .item_right {
  position: relative;
  display: grid;
  justify-content: start;
  align-content: start;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 919.8px) {
  .product_detail_list-wrap .product_item .item_right {
    gap: 6px;
  }
}
@media screen and (min-width: 920px) {
  .product_detail_list-wrap .product_item .item_right {
    gap: 10px;
  }
}
.product_detail_list-wrap .product_item .item_balloon {
  position: absolute;
  z-index: 1;
  top: -1px;
  left: -1px;
  background: var(--color-base-white);
  clip-path: polygon(0 0, 0% 100%, 100% 0%);
  display: grid;
  line-height: 1;
  justify-content: start;
  align-content: start;
  color: var(--color-base-white);
  background-color: var(--color-base-3);
}
@media screen and (max-width: 919.8px) {
  .product_detail_list-wrap .product_item .item_balloon {
    width: 70px;
    height: 60px;
    padding: 4px;
    gap: 2px;
  }
}
@media screen and (min-width: 920px) {
  .product_detail_list-wrap .product_item .item_balloon {
    width: 90px;
    height: 80px;
    padding: 8px;
    gap: 5px;
  }
}
.product_detail_list-wrap .product_item .item_balloon .item_balloon_number {
  font-weight: 500;
}
@media screen and (max-width: 919.8px) {
  .product_detail_list-wrap .product_item .item_balloon .item_balloon_number {
    font-size: max(1rem, 10px);
  }
}
@media screen and (min-width: 920px) {
  .product_detail_list-wrap .product_item .item_balloon .item_balloon_number {
    font-size: max(1.25rem, 10px);
  }
}
.product_detail_list-wrap .product_item .item_balloon .item_balloon_number small {
  font-size: max(0.75rem, 10px);
}
.product_detail_list-wrap .product_item .item_balloon .item_balloon_text {
  font-size: max(0.75rem, 10px);
}
.product_detail_list-wrap .product_item .item_image-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  overflow: hidden;
  border: 1px solid var(--color-accent-5);
}
.product_detail_list-wrap .product_item .item_image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product_detail_list-wrap .product_item .item_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
}
.product_detail_list-wrap .product_item .item_price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.product_detail_list-wrap .product_item .item_price .item_price1 {
  font-size: max(0.75rem, 10px);
  line-height: 1.25;
  text-decoration: line-through;
}
.product_detail_list-wrap .product_item .item_price .item_price2 {
  line-height: 1.25;
}
@media screen and (max-width: 919.8px) {
  .product_detail_list-wrap .product_item .item_price .item_price2 {
    font-size: max(0.875rem, 10px);
  }
}
@media screen and (min-width: 920px) {
  .product_detail_list-wrap .product_item .item_price .item_price2 {
    font-size: max(1rem, 10px);
  }
}
.product_detail_list-wrap .product_item .item_tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.product_detail_list-wrap .product_item .item_tags .item_tag {
  display: inline-block;
  border-radius: 5px;
  line-height: 1.25;
  font-size: max(0.75rem, 10px);
  font-weight: 400;
  padding: 5px 10px;
  background-color: var(--color-tag-default);
}
.product_detail_list-wrap .product_item .item_tags .tagid1 {
  background-color: var(--color-tagid1);
  color: var(--color-base-white);
}
.product_detail_list-wrap .product_item .item_tags .tagid2 {
  background-color: var(--color-tagid2);
  color: var(--color-base-white);
}
.product_detail_list-wrap .product_item .item_tags .tagid3 {
  background-color: var(--color-tagid3);
  color: var(--color-base-white);
}
.product_detail_list-wrap .product_item .item_tags .tagid4 {
  background-color: var(--color-tagid4);
  color: var(--color-base-white);
}
.product_detail_list-wrap .product_item .item_tags .tagid5 {
  background-color: var(--color-tagid5);
  color: var(--color-base-white);
}
.product_detail_list-wrap .product_item .item_title {
  line-height: 1.25;
  font-weight: 400;
  font-size: max(1rem, 10px);
}
@media screen and (max-width: 919.8px) {
  .product_detail_list-wrap .product_item .item_detail {
    font-size: max(0.75rem, 10px);
  }
}
@media screen and (min-width: 920px) {
  .product_detail_list-wrap .product_item .item_detail {
    font-size: max(0.875rem, 10px);
  }
}

/*# sourceMappingURL=main.css.map */
