@charset "UTF-8";


.category-header {
  border-bottom: 1px solid #CCC;
  width: 100%;
  background: #EEE;
}
@media screen and (min-width: 768px) {
  .category-header {
    padding: 12px 0 6px;
  }
}
.category-header.is-fixed {
  position: sticky;
  top: 0;
  z-index: 9;
}
.category-header__inner {
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (min-width: 768px) {
  .category-header__inner {
    min-width: 1064px;
  }
}
.category-header__ttl {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .category-header__ttl {
    position: relative;
    padding: 16px;
  }
}
@media screen and (max-width: 767px) {
  .category-header__ttl::before {
    position: absolute;
    top: 50%;
    right: 16px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    font-family: Arial, Helvetica, "sans-serif";
    content: "+";
  }
}
@media screen and (max-width: 767px) {
  .category-header__ttl.is-active::before {
    content: "-";
  }
}
.category-header__btn--inquiry, .category-header__btn--catalog {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 180px;
  height: 36px;
  color: #FFF !important;
  font-weight: bold;
}
.category-header__btn--inquiry::before, .category-header__btn--catalog::before {
  display: inline-block;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background: no-repeat center/contain;
  content: "";
}
@media screen and (min-width: 768px) {
  .category-header__btn--inquiry:hover, .category-header__btn--catalog:hover {
    text-decoration: none;
  }
}
.category-header__btn--inquiry {
  background: #eda900;
}
.category-header__btn--inquiry::before {
  background-image: url(/files/user/images/common/icon_quotation.png);
}
.category-header__btn--catalog {
  margin-left: 1em;
  background: #009fe8;
}
.category-header__btn--catalog::before {
  background-image: url(/files/user/images/common/icon_catalog.png);
}
@media screen and (max-width: 767px) {
  .category-header-nav {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .category-header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .category-header-nav.is-active {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .category-header-nav__child {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    border: 1px solid #EEE;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    width: 400px;
    background: #FFF;
  }
}
.category-header-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .category-header-nav__list {
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
  }
}
@media screen and (min-width: 768px) {
  .category-header-nav__list {
    display: flex;
  }
}
.category-header-nav__list--child {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .category-header-nav__list--child {
    border-top: 1px dotted #FFF;
  }
}
.category-header-nav__item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .category-header-nav__item {
    border-bottom: 1px dotted #FFF;
  }
}
@media screen and (max-width: 767px) {
  .category-header-nav__item:last-of-type {
    border-bottom: 0;
  }
}
.category-header-nav__item:hover .category-header-nav__child {
  display: block;
}
.category-header-nav__ttl {
  margin-top: 8px;
  padding: 8px 16px;
  font-weight: bold;
}
.category-header-nav__ttl::before {
  padding-right: 0.25em;
  content: "■";
}
.category-header-nav__ttl:first-of-type {
  border-top: 0;
  margin-top: 0;
}
.category-header-nav__link {
  display: block;
  padding: 8px 16px;
  color: #333 !important;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .category-header-nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid transparent;
    padding: 0 1em;
    height: 44px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .category-header-nav__link:hover {
    border-bottom-color: #009fe8;
    text-decoration: none;
    opacity: 1;
  }
}
.category-header-nav__link.is-active {
  border-bottom-color: #009fe8;
}
@media screen and (min-width: 768px) {
  .category-header-nav__link--parent::after {
    display: inline-block;
    margin-left: 8px;
    font-family: "fa_custom";
    font-weight: normal;
    content: "\f0d7";
  }
}
.category-header-nav__link--child {
  position: relative;
  display: block;
  padding: 8px 24px 8px 16px;
}
@media screen and (max-width: 767px) {
  .category-header-nav__link--child {
    padding-left: calc(16px + 1em);
    color: #333;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  .category-header-nav__link--child::before {
    position: absolute;
    top: 50%;
    right: 16px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    height: 7px;
    width: 7px;
    -webkit-transform: translate(0, -50%) rotate(45deg);
            transform: translate(0, -50%) rotate(45deg);
    content: "";
  }
}
.category-header-nav__btnWrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .category-header-nav__btnWrap {
    margin: 16px 0;
    padding: 0 16px;
  }
}

#header:after,
#nav-global:after {
  content: "";
  clear: both;
  display: block;
}

body.is-header-fixed {
  padding-top: 48px;
}
@media screen and (min-width: 768px) {
  body.is-header-fixed {
    padding-top: 73px;
  }
}
@media screen and (min-width: 768px) {
  body.is-header-fixed:has(#nav-global) {
    padding-top: 120px;
  }
}
body.is-header-fixed .headerWrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  transition: top 0.3s;
}
body.is-header-fixed .headerWrap.is-hide {
  top: -48px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  body.is-header-fixed .headerWrap.is-hide {
    top: -120px;
  }
}

.headerWrap {
  width: 100%;
  height: 48px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .headerWrap {
    height: 73px;
  }
}
@media screen and (min-width: 768px) {
  .headerWrap:has(#nav-global) {
    height: 120px;
  }
}

.headerInner {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}

#header {
  position: relative;
}
#header .logo {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

#header-link,
#header-list,
#header-menu {
  clear: right;
  float: right;
}

#header {
  border-bottom: 1px solid #eee;
  position: relative;
}

@media screen and (min-width: 768px) {
  .header-inner {
    margin: 0 auto;
    padding: 15px 0 15px 10px;
    width: 1200px;
  }
}

.header-logo {
  float: left;
}
.header-logo .logo {
  background: url(/lib_image/common/logo_hd_reform.png) no-repeat 0 0;
  background-size: 100%;
  display: block;
}

.header-summary {
  color: #000;
  float: left;
  font-weight: bold;
  margin: 6px 0 0 35px;
}
.header-summary .num {
  color: #0195cf;
}
.header-summary .date {
  color: #666;
  font-size: 1.1rem;
  font-weight: normal;
}

.header-inner a:link {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .header-menu {
    float: right;
    display: flex;
    align-items: center;
    margin-top: 6px;
  }
}

.header-link,
.header-search {
  float: left;
}

.header-link {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-link a {
  color: #000;
  display: inline-block;
  font-size: 1.3rem;
  padding: 0 15px;
}

.header-link_employment {
  margin-left: 20px;
  line-height: 1.5;
}
.header-link_employment a {
  color: #333;
  font-weight: bold;
}

.header-link_btn a {
  border: 1px solid #666;
  border-radius: 4px;
  padding: 10px 30px 10px 15px;
  position: relative;
}
.header-link_btn a:after {
  content: "";
  display: block;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  height: 5px;
  width: 5px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .header-link_employment {
    display: none;
  }
}

.header-search {
  margin-left: 20px;
  background: #f3f3f3;
  border-radius: 100px;
  height: 30px;
  position: relative;
  text-align: center;
  width: 230px;
}
.header-search:after {
  content: "\f002";
  margin-top: -0.55em;
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 0;
}
.header-search input {
  background: transparent;
  border: none;
  vertical-align: top;
}
.header-search input[type=text] {
  height: 30px;
  padding: 0 5px 5px 10px;
  width: 190px;
  outline: none;
}
.header-search input[type=submit] {
  height: 30px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  width: 30px;
  z-index: 1;
}
.header-search .mf_finder_searchBox_items {
  padding: 0;
}
.header-search .mf_finder_searchBox_submit {
  height: 30px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  width: 30px;
  z-index: 1;
  border: none;
  background: none;
}
.header-search .mf_finder_searchBox_suggest_items {
  text-align: left;
}

.header-language {
  float: right;
  height: 26px;
  line-height: 20px;
  margin: 0 0 0 20px;
  position: relative;
  width: 60px;
  z-index: 9998;
}
.header-language .header-language_list {
  background: #fff;
  margin: 0;
  list-style: none;
  padding: 0 0 5px;
  text-align: center;
}
.header-language .header-language_list:before {
  content: "\f0ac";
  position: absolute;
  left: 0;
  top: 5px;
}
.header-language .header-language_list:after {
  content: "\f0d7";
  position: absolute;
  right: 0;
  top: 5px;
}
.header-language .header-language_list:hover li {
  display: block;
}
.header-language li {
  display: none;
}
.header-language li.is-selected {
  display: block;
}
.header-language li a {
  color: #000;
  display: block;
  padding: 3px 18px;
}

@media screen and (max-width: 767px) {
  #header {
    height: 48px;
  }
  .header-inner {
    padding: 12px 10px 8px;
  }
  .header-logo {
    width: 54px;
  }
  .member_welcome {
    font-size: 11px;
    font-weight: normal;
  }
  .header-menu .header-search {
    background: none;
    border: 1px solid #fff;
    display: block;
    float: none;
    height: 32px;
    margin: 20px;
    width: auto;
  }
  .header-menu .header-search input[type=text] {
    color: #fff;
    font-size: 16px;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    padding-top: 0;
    width: 100%;
  }
  .header-menu .header-search::after {
    color: #fff;
    font-size: 14px;
  }
  .header-menu .header-search .mf_finder_searchBox_suggest_items {
    background: #fff;
    border: none;
    margin-top: -3px;
    padding: 0;
  }
  .header-menu .header-search .mf_finder_searchBox_suggest_item {
    border: none;
  }
  .header-menu .header-search .mf_finder_searchBox_suggest_items li + li {
    border-top: 1px solid #ddd;
  }
  .header-menu .header-search .mf_finder_searchBox_suggest_item a {
    color: #000;
    padding: 1em 1.5em;
  }
  .header-menu .header-search .mf_finder_searchBox {
    margin: 0;
  }
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .header-logo {
    float: none;
  }
  .header-summary {
    margin: 0 0 0 16px;
    max-width: calc(100% - 118px);
  }
  .header-summary .date {
    display: inline-block;
  }
  .header-link,
  .member_welcome {
    display: none;
  }
  .header-menu {
    display: none;
    position: fixed;
    left: 0;
    top: 48px;
    overflow-y: scroll;
    padding-bottom: 12.8rem;
    width: 100%;
    height: calc(100vh - 48px);
    z-index: 10;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
  }
  /*.is-active #nav-global,*/
  .is-active .header-menu {
    display: block;
  }
  .header-menu .header-tel {
    border: 1px solid #ddd;
    border-radius: 4px;
    line-height: 1.5;
    margin: 20px 20px 5px;
    padding: 0.5em 0.25em 0.25em;
    text-align: center;
  }
  .header-menu .header-tel > span {
    font-size: 1.154em;
  }
  .header-menu .header-tel .num {
    font-size: 1.333em;
  }
  .header-menu .header-tel + .fs-small {
    font-size: 10px;
    margin: 0 20px;
  }
  .header-menu .header-language {
    float: none;
    height: auto;
    margin: 20px;
    padding-left: 37px;
    width: auto;
  }
  .header-menu .header-language .header-language_list {
    background: none;
    border: 1px solid #fff;
    border-radius: 3px;
    display: table;
    overflow: hidden;
    padding: 0;
    width: 100%;
  }
  .header-menu .header-language .header-language_list::before {
    font-size: 29px;
  }
  .header-menu .header-language .header-language_list::after {
    display: none;
  }
  .header-menu .header-language .header-language_list li {
    display: table-cell;
    overflow: hidden;
    width: 25%;
  }
  .header-menu .header-language .header-language_list li + li {
    border-left: 1px solid #fff;
  }
  .header-menu .header-language .header-language_list li a {
    color: #fff;
    padding: 0.5em 0;
  }
  .header-menu .header-language .header-language_list li.is-selected {
    background: #fff;
  }
  .header-menu .header-language .header-language_list li.is-selected a {
    color: #000;
    font-weight: bold;
  }
}
/* 最近チェックした商品 */
.nav-history {
  position: absolute;
  top: 74px;
  left: 0;
  z-index: 9998;
  overflow: hidden;
  width: 100%;
  height: 0;
  background: #eee;
  font-weight: normal;
  transition: height 0.4s;
}

.nav-history_trigger {
  display: flex;
  align-items: center;
  float: left;
  margin-left: 32px;
  font-weight: bold;
}

.nav-history_close {
  text-align: center;
}

.nav-history_close_link {
  position: relative;
  padding-left: 32px;
  color: #333 !important;
}
.nav-history_close_link::before {
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 50%;
  width: 24px;
  line-height: 24px;
  background: #333;
  color: #fff !important;
  font-weight: bold;
  text-align: center;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "×";
}

.nav-history.is-active {
  padding-bottom: 0.1px;
  height: 360px;
}

.nav-history_trigger > span {
  position: relative;
  padding-right: 22px;
  cursor: pointer;
}
.nav-history_trigger > span::before {
  position: absolute;
  top: 50%;
  right: 0;
  border: 5px solid transparent;
  border-top: 6px solid #333;
  border-bottom: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
}
.nav-history_trigger > span > img {
  margin-right: 8px;
  width: 32px;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .nav-history_label,
  .nav-history_trigger {
    display: none;
  }
}
.nav-history_inner {
  margin: 32px auto;
  padding: 16px;
  width: 1120px;
  background: #fff;
}

.nav-history_ttl {
  margin-bottom: 1em;
  font-size: 1.6rem;
  font-weight: normal;
}

.nav-history_slide {
  margin: 0 auto;
  width: 1000px;
}

.nav-history-slide_prev,
.nav-history-slide_next {
  position: absolute;
  top: 50%;
  border: 1px solid #0195cf;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  cursor: pointer;
}

.nav-history-slide_prev.slick-disabled,
.nav-history-slide_next.slick-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.nav-history-slide_prev {
  left: -48px;
}

.nav-history-slide_next {
  right: -48px;
}

.nav-history-slide_prev::before,
.nav-history-slide_next::before {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  content: "";
}

.nav-history-slide_prev::before {
  left: calc(50% + 3px);
  border-bottom: 1px solid #0195cf;
  border-left: 1px solid #0195cf;
}

.nav-history-slide_next::before {
  left: calc(50% - 3px);
  border-top: 1px solid #0195cf;
  border-right: 1px solid #0195cf;
}

.nav-history-slide_dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 16px;
}
.nav-history-slide_dots > li {
  margin: 0 4px;
}
.nav-history-slide_dots > li > button {
  -webkit-appearance: none;
          appearance: none;
  display: block;
  border: none;
  padding: 0;
  outline: none;
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #ccc;
}
.nav-history-slide_dots > li.slick-active > button {
  background: #0195cf;
}

.nav-history_item {
  text-align: center;
}

.nav-history-item_link {
  display: inline-block;
  color: #333 !important;
  font-size: 1.3rem;
  text-align: left;
}

.nav-history-item_name {
  margin-top: 0.5em;
  color: #0195cf;
  text-decoration: underline;
}

.nav-history-item_desc {
  margin-top: 0.5em;
  line-height: 1.6;
}

.item-header {
  position: sticky;
  top: 0;
  z-index: 8;
  border-bottom: 1px solid #CCC;
  width: 100%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .item-header {
    padding: 12px 0 6px;
  }
}
.item-header__inner {
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (min-width: 768px) {
  .item-header__inner {
    display: flex;
  }
}
.item-header__pic {
  width: 64px;
}
@media screen and (max-width: 767px) {
  .item-header__pic {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .item-header__body {
    width: calc(100% - 64px);
  }
}
.item-header__ttl {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .item-header__ttl {
    position: relative;
    padding: 16px;
  }
}
@media screen and (max-width: 767px) {
  .item-header__ttl::before {
    position: absolute;
    top: 50%;
    right: 16px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    font-family: Arial, Helvetica, "sans-serif";
    content: "+";
  }
}
@media screen and (max-width: 767px) {
  .item-header__ttl.is-active::before {
    content: "-";
  }
}
.item-header__btn--inquiry, .item-header__btn--catalog {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 1.5em;
  height: 36px;
  color: #FFF !important;
  font-weight: bold;
}
.item-header__btn--inquiry::before, .item-header__btn--catalog::before {
  display: inline-block;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background: no-repeat center/contain;
  content: "";
}
@media screen and (min-width: 768px) {
  .item-header__btn--inquiry:hover, .item-header__btn--catalog:hover {
    text-decoration: none;
  }
}
.item-header__btn--inquiry {
  background: #eda900;
}
.item-header__btn--inquiry::before {
  background-image: url(/files/user/images/common/icon_quotation.png);
}
.item-header__btn--catalog {
  margin-left: 1em;
  background: #009fe8;
}
.item-header__btn--catalog::before {
  background-image: url(/files/user/images/common/icon_catalog.png);
}
@media screen and (min-width: 768px) {
  .item-header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .item-header-nav.is-hide {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .item-header-nav.is-show {
    display: block;
  }
}
.item-header-nav__list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .item-header-nav__list {
    margin: 0 16px;
  }
}
.item-header-nav__link {
  color: #333 !important;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .item-header-nav__link {
    display: inline-block;
    margin-right: 1em;
    text-decoration: underline !important;
  }
}
@media screen and (min-width: 768px) {
  .item-header-nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid transparent;
    padding: 0 1em;
    height: 44px;
  }
}
@media screen and (min-width: 768px) {
  .item-header-nav__link:hover {
    border-bottom-color: #009fe8;
    text-decoration: none;
    opacity: 1;
  }
}
.item-header-nav__link.is-active {
  border-bottom-color: #009fe8;
}
.item-header-nav__btnWrap {
  display: flex;
  margin-left: 16px;
}
@media screen and (max-width: 767px) {
  .item-header-nav__btnWrap {
    margin: 16px 0;
    padding: 0 16px;
  }
}

.member_area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.member_area__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #127690;
  margin-top: 3px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .member_area__link {
    cursor: pointer;
  }
}
.member_area .site-title {
  display: inline-block;
  vertical-align: middle;
}

.member_welcome {
  margin-right: 10px;
  color: #127690;
  font-size: 13px;
  line-height: 1.3;
}

.member_menu {
  margin-left: 10px;
  line-height: 1.5;
  font-size: 13px;
}

.member-mypage_linkOuter {
  position: relative;
  margin-left: 15px;
}

.member_menu {
  max-width: 150px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.member-mypage-menu {
  display: none;
  position: absolute;
  top: 32px;
  left: 20px;
  z-index: 9998;
  border: 1px solid #eee;
  padding: 24px;
  width: 180px;
  background: #fff;
  font-weight: normal;
}
.member-mypage-menu.is-active {
  display: block;
}

.member-mypage-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.member-mypage-menu-list_item {
  position: relative;
  margin-bottom: 1em;
  padding-left: 14px;
}
.member-mypage-menu-list_item:last-of-type {
  margin-bottom: 0;
}
.member-mypage-menu-list_item::before {
  position: absolute;
  top: 2px;
  left: 0;
  border: 5px solid transparent;
  border-right: 0;
  border-left: 5px solid #0195cf;
  content: "";
}
.member-mypage-menu-list_item:last-child {
  margin-bottom: 0;
}

#nav-global {
  clear: both;
  position: relative;
}

ul.nav-global_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media print, screen and (min-width: 768px) {
  #nav-global {
    margin: 0 auto;
    width: 1200px;
  }
  ul.nav-global_list {
    margin-top: -1px;
    position: relative;
  }
  ul.nav-global_list > li {
    border-top: 2px solid transparent;
    float: left;
    padding: 10px 0;
    width: 16.6666666667%;
  }
  ul.nav-global_list > li > a {
    border-right: 1px solid #eee;
    color: #333;
    display: block;
    font-weight: bold;
    padding: 5px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
  }
  ul.nav-global_list > li.cat-03 > a {
    padding: 4px 0;
  }
  ul.nav-global_list > li > a:after {
    content: "\f0d7";
    margin-left: 15px;
  }
  ul.nav-global_list > li.current {
    border-top: 2px solid #0195cf;
  }
  ul.nav-global_list > li:first-child > a {
    border-left: 1px solid #eee;
  }
  .nav-global_list .cat-01 .menu-wrap,
  .nav-global_list .cat-02 .menu-wrap,
  .nav-global_list .cat-03 .menu-wrap,
  .nav-global_list .cat-04 .menu-wrap {
    position: absolute;
    min-width: 1200px;
    background: #004966;
    padding: 40px 0;
    z-index: 10000;
    width: 100vw;
    left: 50%;
    top: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: none;
  }
  .nav-global_list .cat-01 .menu-wrap .list-product,
  .nav-global_list .cat-02 .menu-wrap .list-product,
  .nav-global_list .cat-03 .menu-wrap .list-product,
  .nav-global_list .cat-04 .menu-wrap .list-product {
    width: 1120px;
    margin: 0 auto;
  }
  .nav-global_list .cat-01 .menu-wrap .list-product .list-product_item {
    margin: 0 1px 1px 0;
    border-radius: 0;
  }
  .nav-global_list .cat-02 .menu-wrap .list-product .list-product_item,
  .nav-global_list .cat-03 .menu-wrap .list-product .list-product_item,
  .nav-global_list .cat-04 .menu-wrap .list-product .list-product_item {
    margin: 0 1px 1px 0;
  }
  .nav-global_list .cat-01 .menu-wrap .list-product .list-product_item:first-child {
    border-radius: 4px 0 0 0;
  }
  .nav-global_list .cat-01 .menu-wrap .list-product .list-product_item:nth-child(2) {
    border-radius: 0 4px 0 0;
  }
  .nav-global_list .cat-01 .menu-wrap .list-product .list-product_item:nth-child(3) {
    border-radius: 0 0 0 4px;
  }
  .nav-global_list .cat-01 .menu-wrap .list-product .list-product_item:nth-child(4) {
    border-radius: 0 0 4px 0;
  }
  .nav-global_list .cat-01:hover .menu-wrap {
    display: block;
  }
  .nav-global_list .cat-02:hover .menu-wrap,
  .nav-global_list .cat-03:hover .menu-wrap,
  .nav-global_list .cat-04:hover .menu-wrap {
    display: block;
  }
  .nav-global_list .cat-01 .menu-wrap .list-product:after,
  .nav-global_list .cat-02 .menu-wrap .list-product:after,
  .nav-global_list .cat-03 .menu-wrap .list-product:after,
  .nav-global_list .cat-04 .menu-wrap .list-product:after {
    top: -40px;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #fff;
    border-width: 20px;
    z-index: 10010;
    margin-top: -1px;
  }
  .nav-global_list .cat-01 .menu-wrap .list-product:after {
    margin-left: -41.5%;
  }
  .nav-global_list .cat-02 .menu-wrap .list-product:after {
    margin-left: -7%;
  }
  .nav-global_list .cat-03 .menu-wrap .list-product:after {
    margin-left: 8.5%;
  }
  .nav-global_list .cat-04 .menu-wrap .list-product:after {
    margin-left: -23.5%;
  }
  .nav-global_list .cat-02 .list-product .list-product_item {
    flex-basis: 31%;
  }
  .nav-global_list .cat-02 .list-product_label {
    margin-bottom: 10px;
  }
  .nav-global_list .cat-03 > a::before {
    background: url(/files/user/images/common/icon_common_guide_bl.png) no-repeat 0 0/contain;
    content: "";
    display: inline-block;
    width: 12px;
    height: 17px;
    vertical-align: -0.2em;
    margin-right: 5px;
  }
  .nav-global_list .cat-05 > a::after,
  .nav-global_list .cat-06 > a::after,
  .nav-global_list .cat-07 > a::after {
    display: none;
  }
  #nav-global.is-fixed {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10000;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  }
  #nav-global.is-fixed .nav-global_list {
    width: 1200px;
    margin: 0 auto;
  }
}
#sp-menu {
  background: url(/files/user/images/common/icon-spmenu.png) no-repeat 50% 50%;
  background-size: 24px 17px;
  top: 0;
  height: 48px;
  position: absolute;
  right: 0;
  width: 48px;
}
@media screen and (min-width: 768px) {
  #sp-menu {
    display: none;
  }
}
#sp-menu.is-active {
  background-color: #000;
  background-image: url(/files/user/images/common/icon_spmenu_close.png);
  background-size: 18px 18px;
  z-index: 100;
}

@media screen and (max-width: 767px) {
  #nav-global {
    display: none;
  }
  ul.nav-global_sp {
    border-top: 1px solid #282828;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  ul.nav-global_sp li {
    border-bottom: 1px solid #282828;
  }
  ul.nav-global_sp li a {
    color: #fff;
    display: block;
    padding: 1.25em 20px;
    text-decoration: none;
  }
  .cat-01 .menu-wrap {
    display: none;
  }
  .nav-global_sp .cat-03 a::before {
    background: url(/files/user/images/common/icon_guide_wh.png) no-repeat 0 0/contain;
    content: "";
    display: inline-block;
    width: 12px;
    height: 16px;
    vertical-align: -0.25em;
    margin-right: 5px;
  }
}
.nav-global_listAttentionLink {
  margin-top: 16px;
  text-align: center;
}
.nav-global_listAttentionLink a {
  color: #fff;
}

.gNavChild {
  padding: 10px;
  text-align: left;
}

.gNavChild_col2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.gNavChild_col2Sub {
  width: 240px;
}

.gNavChild_col2Main {
  width: calc(100% - 264px);
}

.gNavChild_ttl {
  margin-bottom: 0.5em;
  color: #004966;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}

.gNavChild_ttl--beginner {
  margin-bottom: 0.5em;
  color: #004966;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}
.gNavChild_ttl--beginner::before {
  display: inline-block;
  margin-right: 5px;
  width: 12px;
  height: 17px;
  vertical-align: -0.2em;
  background: url(/files/user/images/common/icon_common_guide_bl.png) no-repeat 0 0/contain;
  content: "";
}

.gNavChild_lead {
  margin-bottom: 24px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.gNavChild_txt {
  margin-bottom: 1em;
  color: #666;
  line-height: 1.5;
}

.gNavChildList_wrap {
  position: relative;
  min-height: 330px;
}
.gNavChildList_wrap.support {
  min-height: 240px;
}

.gNavChild_linkBox--download {
  margin-top: 80px;
  padding-left: 1em;
}

.gNavChildItem {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}

.gNavChildItem--arrow {
  position: relative;
  padding-left: 16px;
}
.gNavChildItem--arrow::before {
  position: absolute;
  top: 0;
  left: 0;
  border: 6px solid transparent;
  border-left: 6px solid #0195cf;
  content: "";
}

.gNavChildItem_pic {
  margin-right: 8px;
  width: 50px;
}

.gNavChildItem_ttl {
  font-weight: bold;
}

.gNavChildList,
.gNavChildList--2nd,
.gNavChildList--3rd {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 220px;
  height: 100%;
}

.gNavChildList.support,
.gNavChildList--2nd.support {
  width: 300px;
}

.gNavChildList.download, .gNavChildList.support {
  position: relative;
}
.gNavChildList.download::before, .gNavChildList.download::after {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 1px;
  background: #ccc;
  pointer-events: none;
  content: "";
}
.gNavChildList.support::before {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 1px;
  background: #ccc;
  pointer-events: none;
  content: "";
}
.gNavChildList.download::before, .gNavChildList.download::after,
.gNavChildList.download .gNavChildList_childList > ul {
  height: 330px;
}
.gNavChildList.support::before,
.gNavChildList.support .gNavChildList_childList > ul {
  height: 240px;
}
.gNavChildList.download::before {
  left: 219px;
}
.gNavChildList.download::after {
  left: 438px;
}
.gNavChildList.support::before {
  left: 300px;
}

.gNavChildList_childList {
  display: none;
}

.gNavChildList > li,
.gNavChildList--2nd > li,
.gNavChildList--3rd > li {
  line-height: 1.5;
}

.gNavChildList > li:not(.nolink):hover,
.gNavChildList--2nd > li:not(.nolink):hover,
.gNavChildList--3rd > li:not(.nolink):hover {
  background: #eee;
}

.gNavChildList > li:hover > .gNavChildList_childList,
.gNavChildList--2nd > li:hover > .gNavChildList_childList,
.gNavChildList--3rd > li:hover > .gNavChildList_childList {
  display: block;
}

.gNavChildList > li > a,
.gNavChildList--2nd > li > a,
.gNavChildList--3rd > li > a,
.gNavChildList > li.nolink,
.gNavChildList--2nd > li.nolink,
.gNavChildList--3rd > li.nolink {
  display: block;
  position: relative;
  padding: 5px 30px 5px 20px;
  font-weight: bold;
}

.gNavChildList > li.nolink,
.gNavChildList--2nd > li.nolink,
.gNavChildList--3rd > li.nolink {
  font-weight: normal;
}

.gNavChildList > li > a.is-active,
.gNavChildList--2nd > li > a.is-active,
.gNavChildList--3rd > li > a.is-active {
  background: #eee;
}

.gNavChildList_item_boxList {
  display: flex;
  flex-wrap: wrap;
}

.gNavChildList_item_boxLink {
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
  padding: 16px;
  width: calc(50% - 8px);
  border: 1px solid #ccc;
  transition: box-shadow 0.4s, opacity 0.4s;
}
.gNavChildList_item_boxLink:hover {
  text-decoration: none !important;
  opacity: 0.6 !important;
}
.gNavChildList_item_boxLink:nth-of-type(odd) {
  margin-right: 16px;
}
.gNavChildList_item_boxLink .gNavChildList_item_ttl {
  color: #0195cf;
}

.gNavChildList_item_trigger {
  padding-right: 24px;
}
.gNavChildList_item_trigger.nolink {
  color: #333 !important;
}
.gNavChildList_item_trigger.nolink:hover {
  text-decoration: none !important;
}
.gNavChildList_item_trigger::before {
  position: absolute;
  top: 50%;
  right: 20px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  height: 7px;
  width: 7px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -4px;
  content: "";
}

.gNavChildList--2nd,
.gNavChildList--3rd {
  position: absolute;
  top: 0;
  left: 219px;
}

.gNavChildList--2nd.support {
  left: 300px;
}

.gNavChildList--3rd {
  width: 360px;
}

.gNavChildList_item_pic {
  margin-right: 16px;
}

.gNavChildList_item_ttl,
.gNavChildList_item_txt {
  margin-right: 24px;
}

.gNavChildList_item_ttl {
  margin-bottom: 0.5em;
  color: #666;
  font-weight: bold;
  line-height: 1.5;
}

.gNavChildList_item_txt {
  margin-bottom: 1em;
  margin-left: 1em;
  color: #666;
  line-height: 1.5;
}

/* navigation:local */
.nav-local_common {
  line-height: 1.2;
}
.nav-local_common a:after {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  content: "";
  display: block;
  height: 7px;
  margin-top: -5px;
  position: absolute;
  top: 50%;
  width: 7px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-local_title {
  background: #004966;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 20px 18px 20px 28px;
}

.nav-local_sub .nav-local_title {
  font-size: 1.5rem;
}

.nav-local_title a {
  color: #fff;
  display: block;
  padding-right: 20px;
  position: relative;
}
.nav-local_title a:after {
  border-top-color: #fff;
  border-right-color: #fff;
  height: 10px;
  margin-top: -5px;
  right: 0;
  width: 10px;
}

.nav-local_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-local_list a {
  display: block;
  padding-left: 32px;
  position: relative;
  text-decoration: none;
}
.nav-local_list .active > a {
  background: #f3f5f8;
}
.nav-local_list a.current {
  background: #e8edf3;
  color: #0195cf;
}
.nav-local_list a:after {
  left: 15px;
}
.nav-local_parent > li {
  border-bottom: 1px solid #f3f3f3;
}
.nav-local_parent > li > a {
  font-weight: bold;
}

.active .nav-local_child {
  background: #f3f5f8;
}

.nav-local_child li {
  border-top: 1px dotted #ddd;
}
.nav-local_child a {
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav-local_child a:after {
  height: 5px;
  width: 5px;
  margin-top: -3px;
}

@media print, screen and (min-width: 768px) {
  .nav-local_parent > li.active {
    padding: 10px 0;
  }
  .nav-local_parent > li > a {
    font-size: 1.5rem;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .nav-local_child a {
    padding-rop: 12px;
    padding-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .nav-local_common {
    margin-bottom: 25px;
  }
  .nav-local_title {
    font-size: 1.5rem;
  }
  .nav-local_list a {
    font-size: 1.4rem;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .nav-local_parent > li {
    border-bottom-color: #ddd;
  }
  .nav-local_parent > li.active, .nav-local_parent > li.current {
    padding: 10px;
  }
  .nav-local_child li a {
    font-size: 1.3rem;
  }
  .nav-local_sub .nav-local_parent {
    border-bottom: 1px solid #ddd;
    padding: 0 10px;
  }
  .nav-local_sub .nav-local_parent > li {
    border-bottom: none;
  }
}