@charset "utf-8";

#main_menu {
  position: relative;
  width: 585px;
  height: 100%;
  margin: 0 auto;
  padding-bottom: 0;
  background-color: rgba(0, 0, 0, .7);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.hero_style #main {
  padding-bottom: 0;
  width: 1100px;
  max-width: none;
}

.title_hero {
  padding-top: 20px;
}

.category_title {
  border-bottom: none;
  letter-spacing: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.category_title:after {
  display: none;
}

#categoryinner {
  position: relative;
}

#categoryinner.on {
  position: relative;
  -webkit-transition: top .4s;
  -moz-transition: top .4s;
  -ms-transition: top .4s;
  -o-transition: top .4s;
  transition: top .4s;
}

.category_section {
  display: table;
  letter-spacing: -1em;
  padding: 0 0 44px 20px;
  position: relative;
  vertical-align: middle;
  width: 100%;
}

.category_group {
  display: inline-block;
  letter-spacing: 0;
  margin-right: 20px;
  position: relative;
  vertical-align: top;
}

.category_unit {
  color: #fff;
  margin: 20px 0;
  width: 250px;
}

.category_group h3,
.category_group h3 span {
  background-color: #ccc;
  color: #fff;
  display: block;
  font-size: 18px;
  padding: 5px 10px;
  text-align: center;
}

.category_group ul + h3 {
  margin-top: 20px;
}

.category_unit.machine h3 {
  background-color: #fa965a;
}

.category_unit.sales h3 {
  background-color: #19a69a;
}

.category_unit ul {
  display: inline-block;
  font-size: 0;
  width: 250px;
}

.category_unit h3 + ul {
  margin-top: 2px;
}

.category_unit ul + ul {
  margin-top: 2px;
  margin-left: 15px;
  vertical-align: top;
}

.category_unit li {
  list-style: none;
  height: 44px;
  margin-top: 10px;
  overflow: hidden;
}

.category_unit li a {
  display: table;
  height: 44px;
  width: 100%;
}

.category_unit li a:hover,
.category_unit li a:focus {
  background-color: rgba(0, 5, 10, .3);
}

.category_unit li a .icon {
  display: table-cell;
  width: 44px;
}

.category_unit li a .name {
  color: #fff;
  display: table-cell;
  font-size: 14px;
  padding-left: 10px;
  vertical-align: middle;
}

/* global menu
--------------------*/
#global_header {
  position: fixed;
  top: 51px;
  left: 0px;
  width: 100%;
  z-index: 11;
}

.global_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 61px;
  padding: 0 10px;
  width: 100%;
  position: relative;
  background-color: var(--color-scheme-UI-filter-10);
  letter-spacing: -1em;
  vertical-align: middle;
}

.nav_content {
  display: flex;
  list-style-type: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav_content li a span.arrow_down {
  font-size: 18px;
}

.tab {
  position: relative;
  text-align: center;
  background-color: var(--color-scheme-UI-reversal);
  cursor: pointer;
  transition: background-color 0.3s;
  color: var(--color-scheme-UI-reversal);
  width: 160px;
}

.tab.open {
  background-color: var(--color-scheme-UI-filter-10) !important;
}

.tab.active.open > a {
  color: var(--color-scheme-text-main) !important;
}

.tab.active.open > a > span {
  content: "";
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

[data-color-scheme-mode="light"] .tab.active.open > a > span {
  background-image: url('../../img/icon/keyboard_arrow_down_FILL0.svg');
}
[data-color-scheme-mode="dark"] .tab.active.open > a > span {
  background-image: url('../../img/icon/keyboard_arrow_down_FILL1.svg');
}

@media (prefers-color-scheme: dark) {
  [data-color-scheme-mode="auto"] .tab.active.open > a > span {
    background-image: url('../../img/icon/keyboard_arrow_down_FILL1.svg');
  }
}
@media (prefers-color-scheme: light) {
  [data-color-scheme-mode="auto"] .tab.active.open > a > span {
    background-image: url('../../img/icon/keyboard_arrow_down_FILL0.svg');
  }
}


.tab.active {
  background-color: var(--color-scheme-accent-green-base);
}

.tab.active > a {
  color: var(--color-scheme-UI-reversal);
}

.tab.active > a > span {
  content: "";
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

[data-color-scheme-mode="light"] .tab.active > a > span {
  background-image: url('../../img/icon/keyboard_arrow_down_FILL0_white.svg');
}
[data-color-scheme-mode="dark"] .tab.active > a > span {
  background-image: url('../../img/icon/keyboard_arrow_down_FILL1_white.svg');
}

@media (prefers-color-scheme: dark) {
  [data-color-scheme-mode="auto"] .tab.active > a > span {
    background-image: url('../../img/icon/keyboard_arrow_down_FILL1_white.svg');
  }
}
@media (prefers-color-scheme: light) {
  [data-color-scheme-mode="auto"] .tab.active > a > span {
    background-image: url('../../img/icon/keyboard_arrow_down_FILL0_white.svg');
  }
}


.tab-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 51px;
  font-weight: bold;
  text-decoration: none;
  color: var(--color-scheme-text-main);
  transition: color 0.3s;
}

.tab-title:hover {
  color: var(--color-scheme-text-main);
  text-decoration: none;
}

.tab-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  padding: 0;
  margin: 0;
  list-style-type: none;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  z-index: 1;
  background-color: var(--color-scheme-UI-reversal);
  font-weight: bold;
}

.tab-content.show {
  max-height: 300px;
}

.tab-content a {
  display: grid;
  align-items: center;
  text-decoration: none;
  color: var(--color-scheme-text-main);
  background: var(--color-scheme-UI-reversal);
}

.dropdown-item {
  display: block;
  height: 51px;
  cursor: pointer;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: var(--color-scheme-UI-filter-10);
}

/*
ユーザガイド部分
--------------------*/
.info_link {
    display: flex;
    align-items: center;
}
.info_link li {
    display: inline-flex;
    color: var(--color-scheme-text-main);
    margin: 0px 8px;
    height: 51px;
    align-items: center;
}
.info_link li a {
    color: var(--color-scheme-text-main);
    display: flex;
    align-items: center;
    padding-top: 3px;
}
.info_link li a span {
    margin-right: 4px;
}
.info_link li a span.material-icons {
    vertical-align: middle;
    font-size: 20px;
    padding-bottom: 4px;
    line-height: 1;
}
.info_link li div span {
    margin-right: 4px;
}

/* ダークモードトグル */
.browser_theme_toggle_title {
  color: var(--color-scheme-text-main);
  padding-bottom: 5px;
  padding-right: 5px;
  font-weight: bold;
}

.browser_theme_toggle {
  width: 138px;
  margin-right: 5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-scheme-UI-filter-10);
  padding: 3px;
  overflow: hidden;
  border-radius: 5px;
  margin: 0 auto;
}
.browser_theme_toggle input {
  display: none;
}

.browser_theme_toggle label {
  display: block;
  float: left;
  cursor: pointer;
  width: 137px;
  color: var(--color-scheme-text-main);
  font-size: 12px;
  text-align: center;
  line-height: 2;
  transition: .2s;
  border-radius: 5px;
}

.browser_theme_toggle .switch-on {
  background-color: #ffffff;
  color: #000000;
}

.browser_theme_toggle .switch-off {
  color: #C1C1C1;
}

/* スマートフォンからのアクセスはこちら */
.tap_here_mobile_area {
  padding: 12px;
  height: 51px;
  background: var(--color-scheme-UI-bg);
  display: flex;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  margin-left: 12px;
}

.tap_here_mobile_icon {
  height: 43px;
  width: 28px;
  background-size: contain;
  background-repeat: no-repeat;
}

[data-color-scheme-mode="light"] .tap_here_mobile_icon {
  background-image: url('../../img/tap_here_mobile.png');
}
[data-color-scheme-mode="dark"] .tap_here_mobile_icon {
  background-image: url('../../img/tap_here_mobile_white.png');
}

@media (prefers-color-scheme: dark) {
  [data-color-scheme-mode="auto"] .tap_here_mobile_icon {
    background-image: url('../../img/tap_here_mobile_white.png');
  }
}
@media (prefers-color-scheme: light) {
  [data-color-scheme-mode="auto"] .tap_here_mobile_icon {
    background-image: url('../../img/tap_here_mobile.png');
  }
}


.tap_here_mobile_text {
  font-weight: bold;
  color: var(--color-scheme-text-main);
  font-size: 14px;
  align-items: center;
  padding-left: 12px;
}

.tap_here_mobile_qr_modal {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: absolute;
  text-align: center;
  display: inline-block;
  width: 550px;
  height: 300px;
  max-width: 550px;
  max-height: 300px;
  visibility: hidden;
}

.tap_here_mobile_qr_modal_title {
  color: black;
  font-size: 14px;
  font-weight: bold;
}
