@charset "UTF-8";

/* webfont */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Raleway:wght@500&display=swap');

body, input, textarea, button {
  font-family: 'Noto Sans JP','ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','HiraKakuProN-W3','ヒラギノ角ゴシック W3','メイリオ','Meiryo','ＭＳ Ｐゴシック',Osaka,sans-serif;
  font-weight: 400;
}
html {
  font-size: 62.5%;
}
body {
  font-size:1.6rem;/* 16px*/
}
* {
  box-sizing: border-box;
}
/* 必須マーク調整*/
.m-inputCustomerInfo.u-2cols-container .o-require {
  height: auto;
  border: 1px solid #d62727;
  color: #d62727;
}
/*===============================================================
dx-header
===============================================================*/
.dx-header {
  position: relative;
  background: #222;
  z-index: 2000;
}

.dx-header_top {
  position: relative;
  background: #222;
}

.dx-header_nav {
  position: relative;
  background: #222;
}

@media screen and (min-width: 1025px) {
  .dx-header_nav {
    display: block !important;
  }
}

@media screen and (max-width: 1024px) {
  .dx-header_nav {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    display: none;
    border-top: 1px solid #fff;
    z-index: 2;
  }
}

/*===============================================================
dx-logo
===============================================================*/
@media screen and (max-width: 768px) {
  .dx-logo {
    max-width: 150px;
  }
}

.dx-logo a {
  display: block;
}

.dx-logo img {
  max-width: 100%;
  height: auto;
}

/*===============================================================
dx-h-util
===============================================================*/
.dx-h-util {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1300px;
  margin: auto;
  padding: 5px 20px;
}
@media screen and (min-width: 769px) {
  .dx-h-util {
      height: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .dx-h-util {
    padding: 0;
  }
}

@media screen and (max-width: 1024px) {
  .dx-h-util_logo {
    padding: 7px 0 6px 10px;
  }
}

@media screen and (max-width: 1024px) {
  .dx-h-util_links {
    display: none;
  }
}

.dx-h-util_tgl {
  display: none;
}

@media screen and (max-width: 1024px) {
  .dx-h-util_tgl {
    display: block;
  }
}

/*===============================================================
dx-h-links
===============================================================*/
@media screen and (min-width: 1025px) {
  .dx-h-links-sp {
    display: none;
  }
}

.dx-h-links_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

@media screen and (max-width: 1024px) {
  .dx-h-links_body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 5px 10px 15px;
  }
}

.dx-h-links_item {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .dx-h-links_item {
    width: 50%;
    margin-top: 10px;
    padding: 0 5px;
  }
}

.dx-h-links_item + .dx-h-links_item {
  margin-left: 30px;
}

@media screen and (max-width: 1024px) {
  .dx-h-links_item + .dx-h-links_item {
    margin-left: 0;
  }
}

.dx-h-links_link {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .dx-h-links_link {
    display: block;
    padding: 14px 10px;
    background: #fff;
    color: #222;
    text-align: center;
  }
}

.dx-h-links_link:link, .dx-h-links_link:visited, .dx-h-links_link:hover {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .dx-h-links_link:link, .dx-h-links_link:visited, .dx-h-links_link:hover {
    color: #222;
  }
}

.dx-h-links_link:hover {
  opacity: .6;
}

/*-------------------------------------------------------------
icon
-------------------------------------------------------------*/
.icon-mypage,
.icon-cart,
.icon-mail,
.icon-login {
  position: relative !important;
}

/*===============================================================
dx-navTgl
===============================================================*/
.dx-navTgl {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.dx-navTgl_line {
  position: absolute;
  width: 24px;
  height: 2px;
  left: 18px;
  background: #fff;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.dx-navTgl_line:nth-child(1) {
  top: 14px;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.dx-navTgl_line:nth-child(2) {
  top: 22px;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.dx-navTgl_line:nth-child(3) {
  top: 30px;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.dx-navTgl.is-open .dx-navTgl_line:nth-child(1) {
  width: 30px;
  top: 22px;
  left: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.dx-navTgl.is-open .dx-navTgl_line:nth-child(2) {
  width: 0;
}

.dx-navTgl.is-open .dx-navTgl_line:nth-child(3) {
  width: 30px;
  top: 22px;
  left: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.dx-navTgl_text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 39px;
  font-size: 10px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

/*===============================================================
dx-nav
===============================================================*/
.dx-nav {
  max-width: 1300px;
  margin: auto;
}

@media screen and (max-width: 1024px) {
  .dx-nav {
    border-top: 1px solid #fff;
  }
}

.dx-nav_body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}

@media screen and (max-width: 1024px) {
  .dx-nav_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.dx-nav_item {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .dx-nav_item {
    width: 100%;
  }
  .dx-nav_item + .dx-nav_item {
    border-top: 1px solid #fff;
  }
}

.dx-nav_link {
  position: relative;
  display: block;
  padding: 20px 21px 18px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  z-index: 3;
}

@media screen and (max-width: 1024px) {
  .dx-nav_link {
    padding: 15px 15px 13px;
  }
}

.dx-nav_item.has-child .dx-nav_link {
  padding: 20px 42px 18px 21px;
}

@media screen and (max-width: 1024px) {
  .dx-nav_item.has-child .dx-nav_link {
    padding: 15px 42px 13px 15px;
  }
}

.dx-nav_link:link, .dx-nav_link:visited {
  color: #fff;
  text-decoration: none;
}

.dx-nav_item.has-child .dx-nav_link:after {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  top: -4px;
  bottom: 0;
  right: 20px;
  margin: auto;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: border-color .1s linear;
  transition: border-color .1s linear;
}

@media screen and (max-width: 1024px) {
  .dx-nav_item.has-child .dx-nav_link:after {
    width: 9px;
    height: 9px;
    right: 21px;
  }
  .dx-nav_item.has-child .dx-nav_link.active:after {
    top: 4px;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
}

@media screen and (min-width: 1025px) {
  .dx-nav_item.is-active .dx-nav_link {
    background: #fff;
    color: #333;
  }
  .dx-nav_item.is-active .dx-nav_link:after {
    border-color: #333;
  }
}

@media screen and (min-width: 1025px) {
  .dx-nav_link:hover {
    background: #ccc;
    color: #333;
  }
  .dx-nav_link:hover:after {
    border-color: #333;
  }
}

.dx-nav_child {
  display: none;
}

@media screen and (min-width: 1025px) {
  .dx-nav_child {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    -webkit-box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.3);
    z-index: 2;
  }
}

/*===============================================================
dx-navChild
===============================================================*/
.service_list {
  background: #222;
  padding: 0;
  display: none;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.service_list .dx-navCard_ttl {
  padding: 15px;
  width: 230px;
  height: 100%;
  position: relative;
  text-align: center;
}
.service_list .dx-navCard_ttl p {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
}
.service_list .dx-navCard_ttl a {
  margin: 20px auto;
  padding: 10px;
  width: 100px;
  color: #222;
  background: #fff;
  font-size: 1.1rem;
  display: block;
  text-decoration: none;
}
.nav-category {
  width: calc( 100% - 230px );
  padding: 30px 0 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #fff;
}
.nav-category > li {
  width: calc( 100% / 3 - 31px );
  margin: 0 30px 30px 0;
}
.nav-category > li .category-title {
  color: #222;
  font-size: 1.6rem;
  font-weight: 700;
}
.nav-category > li ul.category-list a {
  color: #666;
  padding: 10px 10px 0 20px;
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
}
.nav-category > li ul.category-list a:before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: #707070;
  position: absolute;
  top: calc( 10px + 0.5em );
  left: 0px;
}
.nav-category li a {
  text-decoration: none;
}
.nav-category li a:hover {
  opacity: .6;
}
@media screen and (max-width: 1024px) {
    .service_list .dx-navCard_ttl {
        display: none;
    }
  .service_list,
  .nav-category {
    width: 100%;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .service_list .dx-navCard_ttl_sp {
    display: block;
    width: 100%;
    padding: 15px 20px;
    text-decoration: none;
    color: #222;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .nav-category {
    margin: 0;
    padding: 0;
  }
  .nav-category > li {
    width: 100%;
    margin: 0;
  }
  .nav-category > li .category-title {
    pointer-events: none;
    display: block;
    position: relative;
    padding: 12px 20px 15px 45px;
  }
  .nav-category > li .category-title:before,
  .nav-category > li .category-title:after {
    content: "";
    display: block;
    background: #222;
    position: absolute;
    transition: all 0.3s;
  }
  .nav-category > li .category-title:before {
    width: 14px;
    height: 1px;
    top: calc( 13px + 0.6em );
    left: 20px;
  }
  .nav-category > li .category-title:after {
    width: 1px;
    height: 14px;
    top: calc( 7px + 0.6em );
    left: 27px;
  }
  .nav-category > li.active .category-title:after {
    transform: rotate(-90deg);
    opacity: 0;
  }
  .nav-category > li ul.category-list {
    display: none;
    background: rgba(0, 0, 0, 0.1);
    padding: 0 20px;
  }
  .nav-category > li ul.category-list li:not(:last-of-type) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  }
  .nav-category > li ul.category-list a {
    display: block;
    padding: 10px 10px 10px 25px;
  }
  .nav-category > li ul.category-list a:before {
    display: none;
  }
  .nav-category > li ul.category-list li:first-of-type {
    font-weight: 700;
  }
}

/*===============================================================
dx-overlay
===============================================================*/
.dx-overlay {
  display: none;
}

@media screen and (max-width: 1024px) {
  .dx-overlay {
    position: absolute;
    width: 100%;
    min-width: 100vw;
    height: 100%;
    min-height: 100vh;
    background: #000;
    opacity: .6;
    z-index: 1999;
  }
}

.footer_wrp {
  padding: 0 !important;
}

.footer_wrp .content_width {
  width: 100%;
  margin: 0;
  padding: 0;
}

.footer_wrp .free_area {
  margin: 0 !important;
  padding: 0 !important;
  text-align: left;
}

.footer_wrp .footer {
  display: none;
}

/*===============================================================
dx-footer
===============================================================*/
.footer_wrp .content_width {
  background: #222;
}
.dx-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1300px;
  margin: auto;
  padding: 13px 20px;
}
@media screen and (min-width: 1380px) {
  .dx-footer {
    padding: 13px 0;
  }
}
/* SNSアイコン */
.dx-footer .footer-sns {
  padding: 0 0 10px 0;
  width: 100%;
}
.dx-footer .footer-sns img {
  vertical-align: middle;
  display: inline-block;
  margin: 0 20px 0 0;
}
.dx-footer .footer-sns img#sns-youtube {
  width: 45.41px;
  height: 32px;
}
.dx-footer .footer-sns img#sns-facebook {
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 1024px) {
  .dx-footer {
    padding: 13px 20px 0;
  }
  .dx-footer .dx-f-links {
    width: 100%;
    padding: 0 0 13px;
  }
  .dx-copyright {
    width: calc( 100% + 40px );
    margin: 0 -20px;
    padding: 9px 10px 7px;
    border-top: 1px solid #444;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .dx-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .dx-f-links {
    padding: 10px 10px 18px;
    box-sizing: border-box;
  }
}
/*===============================================================
dx-footer
===============================================================*/
.dx-f-links {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -5px -13px 0;
}
.dx-f-links_item {
  margin: 5px 0 0;
  padding: 0 13px;
  box-sizing: border-box;
}
.dx-f-links_link {
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .dx-f-links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .dx-f-links_item {
    width: 50%;
    margin: 12px 0 0;
    padding-left: 0;
  }
  .dx-f-links_link {
    font-size: 12px;
  }
}
.dx-f-links_link:link, .dx-f-links_link:visited {
  color: #fff;
  text-decoration: none;
}

.dx-f-links_link:hover {
  color: #fff;
  text-decoration: underline;
}

/*===============================================================
dx-copyright
===============================================================*/
.dx-copyright {
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .dx-copyright {
    font-size: 12px;
  }
}

/*===============================================================
btn_pagetop
===============================================================*/
#btn_pagetop a {
  background: #222;
}

#btn_pagetop a:hover {
  background: #222;
  opacity: .6 !important;
}

#btn_pagetop a:after {
  border-color: #fff;
}

.section_wrp {
  margin: 0 !important;
}

/*===============================================================
dx-mvSection
===============================================================*/
.dx-mvSection_inner {
  max-width: 1300px;
  margin: auto;
}

/*===============================================================
dx-mvSlider
===============================================================*/
.dx-mvSlider {
  position: relative;
}

@media screen and (max-width: 768px) {
  .dx-mvSlider {
    padding-bottom: 34px;
  }
}

.dx-mvSlider .bx-wrapper {
  padding: 0;
}

.dx-mvSlider_card {
  display: block;
}

.dx-mvSlider_card img {
  max-width: 100%;
  height: auto;
}

a.dx-mvSlider_card {
  -webkit-transition: opacity .1s;
  transition: opacity .1s;
}

a.dx-mvSlider_card:hover {
  opacity: .6;
}

.dx-mvSlider_btn {
  position: absolute;
  top: calc(50% - 30px);
}

@media screen and (max-width: 768px) {
  .dx-mvSlider_btn {
    top: calc(50% - 32px);
  }
}

.dx-mvSlider_btn a {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0;
  padding: 0;
  background: #000;
  border: none;
  border-radius: 50%;
  outline: none;
  font-size: 0;
  opacity: .4;
  cursor: pointer;
  -webkit-transition: opacity .1s;
  transition: opacity .1s;
}

@media screen and (max-width: 768px) {
  .dx-mvSlider_btn a {
    width: 30px;
    height: 30px;
  }
}

.dx-mvSlider_btn a:hover {
  opacity: .6;
}

.dx-mvSlider_btn a:after {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border: solid #fff;
  border-width: 2px 0 0 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .dx-mvSlider_btn a:after {
    width: 8px;
    height: 8px;
  }
}

.dx-mvSlider_btn.is-prev {
  left: 10px;
}

.dx-mvSlider_btn.is-prev a:after {
  left: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .dx-mvSlider_btn.is-prev a:after {
    left: 4px;
  }
}

.dx-mvSlider_btn.is-next {
  right: 10px;
}

.dx-mvSlider_btn.is-next a:after {
  right: 8px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media screen and (max-width: 768px) {
  .dx-mvSlider_btn.is-next a:after {
    right: 4px;
  }
}

.dx-mvSlider_control {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  bottom: -24px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .dx-mvSlider_control {
    bottom: 0px;
  }
}

/*-------------------------------------------------------------
dx-mvPager
-------------------------------------------------------------*/
.dx-mvPager {
  position: relative;
}

@media screen and (min-width: 769px) {
  .dx-mvPager {
    top: -40px;
  }
}

.dx-mvPager .bx-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dx-mvPager .bx-pager-item + .bx-pager-item {
  margin-left: 5px;
}

.dx-mvPager .bx-pager-link {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  font-size: 0;
}

.dx-mvPager .bx-pager-link:before, .dx-mvPager .bx-pager-link:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
}

.dx-mvPager .bx-pager-link:before {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .dx-mvPager .bx-pager-link:before {
    width: 11px;
    height: 11px;
  }
}

.dx-mvPager .bx-pager-link:after {
  width: 10px;
  height: 10px;
  background: #d9d9d9;
}

.dx-mvPager .bx-pager-link.active:before {
  opacity: 1;
}

.dx-mvPager .bx-pager-link.active:after {
  width: 8px;
  height: 8px;
  background-color: #333;
}

/*-------------------------------------------------------------
dx-mvTgl
-------------------------------------------------------------*/
.dx-mvTgl {
  position: relative;
  margin-left: 10px;
}

@media screen and (min-width: 769px) {
  .dx-mvTgl {
    top: -40px;
  }
}

.dx-mvTgl .bx-controls-auto .bx-start,
.dx-mvTgl .bx-controls-auto .bx-stop {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  background: #333;
  border: none;
  border-radius: 0;
  font-size: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.dx-mvTgl .bx-controls-auto .bx-start:before, .dx-mvTgl .bx-controls-auto .bx-start:after,
.dx-mvTgl .bx-controls-auto .bx-stop:before,
.dx-mvTgl .bx-controls-auto .bx-stop:after {
  position: absolute;
  content: "";
  display: block;
  top: 7px;
}

.dx-mvTgl .bx-controls-auto .bx-start:before, .dx-mvTgl .bx-controls-auto .bx-start:after {
  width: 0;
  height: 0;
  left: 8px;
  background: none;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
}

.dx-mvTgl .bx-controls-auto .bx-stop:before, .dx-mvTgl .bx-controls-auto .bx-stop:after {
  width: 3px;
  height: 10px;
  background: #fff;
}

.dx-mvTgl .bx-controls-auto .bx-stop:before {
  left: 8px;
}

.dx-mvTgl .bx-controls-auto .bx-stop:after {
  left: 13px;
}

/*===============================================================
dx-mainArea
===============================================================*/
.dx-mainArea * + p {
  margin-top: 20px;
}

.dx-mainArea_inner {
  max-width: 1300px;
  margin: auto;
  padding: 17px 0 80px;
}
@media screen and (max-width: 1380px) {
  .dx-mainArea_inner {
    max-width: 100%;
    padding: 17px 40px 80px;
  }
}
@media screen and (max-width: 768px) {
  .dx-mainArea_inner {
    padding: 13px 20px 80px;
  }
}
@media screen and (max-width: 480px) {
  .dx-mainArea_inner {
    padding: 13px 10px 80px;
  }
}

/*===============================================================
dx-list
===============================================================*/
.dx-breadCrumb {
  margin: 0 0 10px 0;
}

/*===============================================================
dx-listBreadCrumb
===============================================================*/
.dx-listBreadCrumb {
  letter-spacing: -.34em;
}

.dx-listBreadCrumb_item {
  position: relative;
  display: inline;
  letter-spacing: normal;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .dx-listBreadCrumb_item {
    font-size: 12px;
  }
}

.dx-listBreadCrumb_item + .dx-listBreadCrumb_item {
  margin-left: 6px;
}

.dx-listBreadCrumb_item + .dx-listBreadCrumb_item:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: -2px 16px 0 0;
  border: solid #222;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  vertical-align: middle;
  letter-spacing: -.34em;
}

@media screen and (max-width: 768px) {
  .dx-listBreadCrumb_item + .dx-listBreadCrumb_item:before {
    width: 4px;
    height: 4px;
    margin-right: 14px;
    border-width: 0 1px 1px 0;
  }
}

.dx-listBreadCrumb_item_link {
  color: #222;
  text-decoration: none;
}

.dx-listBreadCrumb_item_link:link, .dx-listBreadCrumb_item_link:visited {
  color: #222;
  text-decoration: none;
}

.dx-listBreadCrumb_item_link:hover {
  color: #666;
  text-decoration: underline;
}

/*===============================================================
　カラー一括変更
===============================================================*/
/*///// ベースカラー /////*/
/* 背景色 */
table.basic thead tr th,
table.basic td.detail a:hover,
input[type=radio] + .inputLabel:after,
.selectWrap::before,
.baseBtn,
.tabaccordionbody .btn_detail.btn_next .custom_items_button,
.u-cornerBox-container .o-header,
.u-pager > ul li > a:hover,
.u-pager > ul li.a-pager-current a,
.u-pager > ul li.a-pager-current span,
.m-accordion-menu .o-header,
.m-headline-mini,
.navigation_wrp,
.flowbox .popbox.active .popbox_body,
.popbox.active .popbox_arw:after,
.footer_wrp,
.l-footer-right .btn_detail.btn_detail_white.o-phonenumber a,
.l-footer-left:before,
.sidemenu_wrp .submit_btn,
.sidemenu_wrp.m-sideSearchBox .sidemenu_search dt,
.sidemenu_wrp.m-sideSearchBox .sidemenu_select dt,
.sidemenu_wrp.m-sideSearchBox .sidemenu_search .submit_btn,
.sidemenu_wrp.m-sideSearchBox .sidemenu_select .submit_btn,
.m-topFilterBox .o-box-head,
.m-charges-model > ul > li:nth-child(odd) p.o-model-title,
.m-charges-model > ul > li:nth-child(even) p.o-model-title,
.l-cartTotalBox-inner .o-header,
.m-estimated-info .o-header,
.m-customer-info .o-header,
.m-payment-method .o-title,
.m-customer-subinfo .o-title,
.m-orderSideBox-inner .o-header,
.m-itemDetailSideBox-inner .o-header,
.m-topFilterBox .clearBtn .baseBtn,
.m-sideSearchBox .clearBtn .baseBtn,
.searchPanel .panel_header,
.modal .modal_container .modal_header {
  background-color: #222;
}
@media screen and (max-width: 768px) {
  .local_menu_btn span,
  .local_menu_btn span:before,
  .local_menu_btn span:after {
    background-color: #222;
  }
}
/* hover */
.tabaccordionbody .btn_detail.btn_next .custom_items_button:hover {
  background-color: #666;
}
/* 文字色 */
.borderBtn > span,
.header_wrp .username,
.m-headline .o-title,
.l-itemDetailMainBox > .m-headline-mini .o-title,
.message_container,
.btn_cart p a,
.m-FeaturedProducts .headline .title,
.m-FeaturedProducts .products_list .item .title,
.sidemenu_wrp.m-sideSearchBox .sidemenu_search dd,
.sidemenu_wrp.m-sideSearchBox .sidemenu_select dd,
.m-topFilterBox .sidemenu_search dd,
.m-topFilterBox .sidemenu_select dd,
.m-topFilterBox .topFilterCategory dd,
.m-charges-model .o-btn-modelDetail > span,
.m-cartItemPhoto .o-modalBtn > span, .m-cartItemPhoto .o-externalLinkBtn > span,
.m-cartItemList .o-row-head,
.m-cartItemList .o-row-subItem .o-externalLinkBtn > span,
.m-cartItemList .o-row-subItem .o-modalBtn > span,
.m-cartItemList .o-row-subTotal > span:nth-child(3),
.m-cartItemActionBox,
.selectSetProduct .not_select .inputLabel,
.product_sets_list .not_select .inputLabel,
.m-product-select-checkbox .inputLabel,
.m-product-select-checkbox .radio .o-label-outside,
.m-product-select-checkbox .checkbox .o-label-outside,
.m-product-option .inputLabel,
.m-product-option .o-radioBtn-header,
.m-itemDetail-head .o-itemname,
.m-itemDetail-head .o-modalBtn > span,
.m-itemDetail-head .o-externalLinkBtn > span,
.m-productOption-item .o-item-name,
.m-productOption-item .o-detail-link .o-modalBtn > span,
.headline .title,
.mypage_menu .title,
.content_header .title {
  color: #222;
}
/* リンク文字色 */
a,
table.basic td.detail a,
.btn_modal a,
.btn_externalLink a,
.u-pager > ul li > a,
.btn_cart p a,
.pankuzu li a,
.m-cartItemActionBox a,
.m-product-detail .o-product-name,/*契約関連のモーダル画面用*/
.m-product-detail .o-product-name a,
.l-footer-right .btn_detail.btn_detail_white.o-inquiries > a,
.m-tabaccordion .tabaccordionhead > ul > li > a,
.localnav .navlist li.current a {
  color: #222;
}
a:hover,
.pankuzu li a:hover,
.localnav .navlist li a:hover {
  color: #666;
}
/* ボーダー色 */
table.basic td.detail a,
input[type=checkbox] + .inputLabel:after,
.group .checkbox_text .checked:after,
.borderBtn:after,
.btn_modal a:after,
.btn_externalLink a:after,
.u-pager > ul li > a,
.u-pager > ul li.a-pager-current a,
.u-pager > ul li.a-pager-current span,
.m-headline,
.headline .title,
.l-itemDetailMainBox > .m-headline-mini,
.message_container,
.pankuzu li a:after,
.flowbox .popbox_right.active .popbox_body,
.l-footer-right .btn_detail.btn_detail_white.o-inquiries > a:after,
.m-FeaturedProducts .headline,
.m-product-detail .o-product-name,
.m-charges-model .o-btn-modelDetail,
.m-charges-model .o-btn-modelDetail:after,
.m-cartItemPhoto .o-modalBtn:after,
.m-cartItemPhoto .o-externalLinkBtn:after,
.m-product-select-checkbox .product_set_name > .radio,
.m-product-select-checkbox .product_set_name > .checkbox,
.m-product-option ul.charges_model > li.js-radio-selected,
.l-itemDetailMainBox .product_sets,
.product_sets_list .product_sets,
.m-itemDetail-head .o-right-header,
.m-itemDetail-head .o-modalBtn:after,
.m-itemDetail-head .o-externalLinkBtn:after,
.m-itemImage-5box .o-itemimage-small span.js-photo-active,
.m-productOption-item .o-detail-link .o-modalBtn:after,
.headline .title {
  border-color: #222;
}
/* hover時反転 */
table.basic td.detail a {
  background: #fff;
}
table.basic td.detail a:hover {
  color: #fff;
}

/*///// セカンドカラー /////*/
/* 背景色 */
.m-headline-mini,
.l-searchBox-wide .sidemenu_searchbox .submit_btn.a-view-text,
.m-topFilterBox .sidemenu_search > dt,
.m-topFilterBox .sidemenu_select > dt,
.m-topFilterBox .topFilterCategory > dt,
.m-topFilterBox .sidemenu_search .submit_btn,
.m-topFilterBox .sidemenu_select .submit_btn,
.m-topFilterBox .topFilterCategory .submit_btn,
.m-payYearModel-selectBox .o-header {
  background-color: #666;
}
@media screen and (max-width: 768px) {
  .header_wrp .nav .navlist li.home,
  .header_wrp .nav .navlist li.inquiry,
  .header_wrp .nav .navlist li.mypage,
  .header_wrp .nav .navlist li.signin,
  .header_wrp .nav .navlist li.login,
  .header_wrp .nav .navlist li.logout {
    background-color: #666;
  }
}
/* 文字色 */
@media screen and (max-width: 768px) {
  .header_wrp .header .nav {
    color: #666;
  }
}

/*///// 淡色 /////*/
/* 背景色 */
table.selectable_table tbody.selected,
.message_container,
.m-FeaturedProducts,
.sidemenu_wrp .sidemenu_select li.selected > a,
.m-payment-method .o-inner,
.m-product-option ul.charges_model > li.js-radio-selected,
.m-payMonthModel-selectBox .o-payModel-box.js-radio-selected,
.m-payYearModel-selectBox .o-payModel-box.js-radio-selected,
.m-productOption-item.js-OpMS-selected,
.localnav {
    background-color: #eee;
}
.m-productOption-item{
  border-color: #eee;
}
@media screen and (max-width: 768px) {
  .sidemenu_select dd.js-category-menu-body > ul li.selected > a,
  .topFilterCategory dd.js-category-menu-body > ul li.selected > a{
    background-color: #eee;
  }
}
/* ボーダー色 */
@media screen and (max-width: 768px) {
  .header_wrp .nav .navlist li.home a,
  .header_wrp .nav .navlist li.inquiry a,
  .header_wrp .nav .navlist li.mypage a,
  .header_wrp .nav .navlist li.signin a,
  .header_wrp .nav .navlist li.login a,
  .header_wrp .nav .navlist li.logout a {
    border-color: #ddd;
  }
}
/*///// アクセントカラー /////*/
/* 背景色 */
.nextPageBtn,
.btn_detail.btn_next a,
.btn_detail.btn_next button,
.btn_detail.btn_next input,
.btn_detail.regist a,
.btn_detail.pdf a {
  background-color: #222;
}
/*///// ボタン変更 /////*/
[class^="btn_"].btn_detail a,
[class^="btn_"].btn_detail button,
[class^="btn_"].btn_detail input,
.submit_btns .custom_items_button,
.nextPageBtn,
.btn_detail.regist a,
.btn_detail.pdf a {
    font-weight: 400;
    border-radius: 2px;
}
.btn_detail.btn_next.download:before {
    display: none;
}
.btn_detail.btn_next.download:after {
    top: -2px;
    width: 4px;
    height: 4px;
}
/* hover */
.btn_detail.btn_next a:hover,
.btn_detail.btn_next button:hover,
.btn_detail.btn_next input:hover,
.btn_detail.regist a:hover,
.nextPageBtn:hover {
    background-color: #2a7ab8;
}
.btn_detail.btn_next:after,
.btn_detail.regist:after {
    width: 4px;
    height: 4px;
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
}
.btn_detail.btn_prev:after {
    border-right: solid 1px #222;
    border-bottom: solid 1px #222;
    width: 4px;
    height: 4px;
}
/* hover */
.btn_detail.btn_next a:hover,
.btn_detail.btn_next button:hover,
.btn_detail.btn_next input:hover,
.btn_detail.regist a:hover {
  background-color: #2a7ab8;
}
/* 文字色 */
.l-cartTotalBox-inner .o-row-total .o-text-right,
.billing_cart .cart_table td.totalprice p {
  color: #2a7ab8;
}
/*お気に入りオン*/
.m-itemDetail-head .o-favstar .favorite {
  color: #2a7ab8;
}
/*お気に入りオフ*/
.m-itemDetail-head .o-favstar .favorite .fa-star-o{
  color: #666;
}

/*///// 重要・警告系カラー /////*/
/* 文字色 */
.notice,
.caution,
.has-error,
.warning_msg,
.newsDetail .headline .title .important {
  color: #d62727;
}
/* ボーダー色 */
.disabledItem .warning_msg,
.newsDetail .headline .title .important {
  border: 1px solid #d62727;
}
/* 削除系 */
.uploaded_file .delete,
.btn_detail.btn_next.delete a,
.btn_detail.btn_next.warning a,
.btn_remove a {
  color: #fff;
  background: #d62727;
}
.btn_detail.btn_next.delete a:hover,
.btn_detail.btn_next.warning a:hover,
.btn_remove a:hover {
  background-color: #ed3c3c;
}

/*///// タブレット以下で検索・カテゴリ周りのセカンドカラーをベースカラーに上書きするため後に記載 /////*/
@media screen and (max-width: 768px) {
  .m-tabaccordion .tabaccordionbody .accordion_header a,
  .m-topFilterBox .sidemenu_search > dt,
  .m-topFilterBox .sidemenu_select > dt,
  .m-topFilterBox .topFilterCategory > dt,
  .m-topFilterBox .sidemenu_search .submit_btn,
  .m-topFilterBox .sidemenu_select .submit_btn,
  .m-topFilterBox .topFilterCategory .submit_btn {
    background-color: #222;
  }
}

/*******************************************************************************
　2020.02 リニューアル・新規追加分スタイル
********************************************************************************/
/*===============================================================
共通スタイル
===============================================================*/
html {
  overflow-x: hidden;
}
sub {
  vertical-align: baseline;
  font-size: 1.2rem;
}
.dx-content img {
  max-width: 100%;
}
.dx-content section {
  margin-bottom: 60px;
}
section::after {
  content: "";
  display: block;
  clear: both;
}
.dx-content .box {
  border-color: #222;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  .dx-content .box {
    padding: 15px;
  }
}
/* CMSページ以外のパンクズ位置調整 */
.pankuzu {
  max-width: 1280px;
  margin: 0 auto;
}
.pankuzu .content_width {
  padding: 0;
}
.dx-mainArea h1, .dx-mainArea h2, .dx-mainArea h3, .dx-mainArea h4,
.dx-mainArea p, .dx-mainArea li, .dx-mainArea dt, .dx-mainArea dd,
[class^="index-section"] p, [class^="index-section"] dt, [class^="index-section"] dd {
  color: #222;
  line-height: 2;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.dx-mainArea li {
  line-height: 1.8;
}
@media screen and (max-width: 480px) {
  .dx-mainArea h1, .dx-mainArea h2, .dx-mainArea h3, .dx-mainArea h4,
  .dx-mainArea p, .dx-mainArea li, .dx-mainArea dt, .dx-mainArea dd,
  [class^="index-section"] p, [class^="index-section"] dt, [class^="index-section"] dd {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}
.dx-mainArea h1, .dx-mainArea h2, .dx-mainArea h3, .dx-mainArea h4,
[class^="index-section"] h2 {
  line-height: 1.2;
}
.dx-mainArea h1 {
  margin: 0 0 20px 0;
  width: 100%;
  height: 0;
   /* (画像の高さ / 画像の横幅) × 100 */
  padding-top: 15.2%;
  background: transparent url("/image/contents-header-bg") right center no-repeat;
  background-size: cover;
  position: relative;
  color: #222;
}
.dx-mainArea h1 span {
  position: absolute;
  left: 0;
  top: 30%;
  font-weight: 700;
}
.dx-mainArea h1 span small {
  padding-top: 10px;
  display: block;
  position: relative;
  font-family: Raleway,'Noto Sans JP','ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','HiraKakuProN-W3','ヒラギノ角ゴシック W3','メイリオ','Meiryo','ＭＳ Ｐゴシック',Osaka,sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.dx-mainArea h1 span small:before {
  content: "";
  display: block;
  width: 3em;
  height: 2px;
  margin-bottom: 10px;
  background: #222;
}
@media (min-width: 769px) {/*769px以上*/
  .dx-mainArea h1 span {
    font-size: 3rem;
  }
  .dx-mainArea h1 span small {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {/*768px以下（SP～TAB）*/
  .dx-mainArea h1 {
    background-size: cover;
  }
  .dx-mainArea h1 span{
    top: 20%;
    font-size: 2.6rem;
  }
  .dx-mainArea h1 span small {
    font-size: 1.4rem;
    padding-top: 5px;
  }
  .dx-mainArea h1 span small:before {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 480px) {
  .dx-mainArea h1 {
    margin-top: 0;
     /* (画像の高さ / 画像の横幅) × 100 */
    padding-top: 32%;
    background-position: left -80px center;
  }
  .dx-mainArea h1 span{
    left: 10px;
  }
}
@media screen and (max-width: 350px) {
  .dx-mainArea h1 span{
    font-size: 2.3rem;
  }
}
.dx-mainArea h1 + p {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .dx-mainArea h1 + p {
    text-align: left;
  }
}
.dx-mainArea h2 {
  margin: 0 0 25px 0;
  padding: 0 0 0 20px;
  color: #222;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  position: relative;
  font-weight: 700;
}
.dx-mainArea h2::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 10px 0 0;
  position: absolute;
  left: 0;
  top: 8px;
  background: #222;
}
.dx-mainArea h3 {
  margin: 40px 0 20px 20px;
  line-height: 1.4;
}
.dx-mainArea h3:first-of-type {
  margin: 0 0 20px 20px;
}
.dx-mainArea h4 {
  margin: 0 0 10px 20px;
  font-weight: 700;
}
.dx-mainArea p {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .dx-mainArea h2 {
    padding: 0 0 0 15px;
  }
  .dx-mainArea h2::before {
    left: 2px;
  }
  .dx-mainArea h3,
  .dx-mainArea h4,
  .dx-mainArea p {
    margin-right: 15px!important;
    margin-left: 15px!important;;
  }
}
@media screen and (max-width: 480px) {
  .dx-mainArea h2 {
    font-size: 2rem;
  }
}
.dx-content {
  line-height: 1.6;
}
.dx-content ol {
  padding: 0 0 0 30px;
}
.dx-content ol li {
  list-style: decimal outside;
  margin: 0 0 1.5em 0;
  padding: 0 0 0 10px;
}
@media screen and (max-width: 767px) {
  .dx-content ol {
    padding: 0 0 0 25px;
  }
  .dx-content ol li  {
    padding: 0 15px 0 5px;
  }
}
.dx-content p.note {
  margin: 10px 0 0 1em;
  line-height: 1.6;
  font-size: 90%;
}
.dx-content p.note .mark {
  margin-left: -1em;
}
.dx-content strong {
  font-weight: 700;
}
.flex,
.photoBox {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.flex.middle,
.photoBox {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.photoBox {
  margin-bottom: 60px;
}
.photoBox .content,
.photoBox .photo {
  width: 50%;
}
.photoBox .content {
  padding-right: 20px;
}
.photoBox .content p {
  margin-bottom: 10px;
}
.photoBox .content .note {
  margin: 0 0 0 20px;
}
.photoBox .photo img {
  width: 100%;
  max-width: 100%;
}
.photoBox .photo .photo-small {
  width: 50%;
  padding: 0 0 0 1px;
}
.photoBox .photo .photo-small:first-child {
  padding: 0 1px 0 0;
}
@media screen and (max-width: 900px) {
  .photoBox {
    display: block;
  }
  .photoBox .content,
  .photoBox .photo {
    width: 100%;
  }
  .photoBox .content {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .photoBox .photo {
    padding: 0 15px;
  }
}
.dx-mainArea ul.history {
  margin: 0 0 0 20px;
}
.dx-mainArea ul.history li {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.dx-mainArea ul.history .history-date,
.dx-mainArea ul.history .history-content {
  margin-bottom: 10px;
  padding: 5px 10px;
  color: #fff;
  background: #666;
}
.dx-mainArea ul.history .history-date {
  margin-right: 10px;
  width: 320px;
}
.dx-mainArea ul.history .history-content {
  width: calc( 100% - 330px );
}
@media screen and (max-width: 768px) {
  .dx-mainArea ul.history {
    margin: 0 15px;
  }
  .dx-mainArea ul.history li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .dx-mainArea ul.history .history-date {
    width: 100%;
    margin: 0 0 1px;
  }
  .dx-mainArea ul.history .history-content {
    width: 100%;
  }
}
/* 絞り込みコンテナ */
.filter-controls,
.filter-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.filter-controls {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .filter-controls {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.filter-container {
  margin: 110px 0 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.filter-container .card,
.filter-container .gap {
  display: inline-block;
  vertical-align: top;
  width: 350px;
  max-width: 98%;
}
.filter-container .card {
  background: #fff;
}
/* 絞り込みボタン */
.filter-controls .control {
  margin: 30px 1.5% 0;
  width: 20%;
  max-width: 200px;
  min-width: 120px;
  height: 50px;
  color: #222;
  background: #fff;
  font-size: 1.8rem;
  border: 2px solid #666;
  border-radius: 2px;
  text-align: center;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition-duration: 0.3s;
}
.filter-controls .mixitup-control-active {
  color: #fff;
  background: #222;
}
@media screen and (min-width: 1025px) { /* 1025px以上のみ */
  .filter-controls .control:hover {
    color: #222;
    background: #eee;
  }
}
/* カード共通スタイル */
.filter-container .card {
  padding: 0 0 80px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  position: relative;
}
.filter-container h2::before,
.filter-container h2::after {
  display: none;
}
.filter-container .card-title {
  margin: 20px;
  padding: 0 10px;
  border-left: 4px solid #222;
  color: #222;
  font-size: 2rem;
  line-height: 1.4;
  text-align: left;
}
.filter-container .card-title a {
  color: #222;
  text-decoration: none;
}
.filter-container .card-title a:hover,
.filter-container .card-title a:active {
  color: #2a7ab8;
}
.filter-container .card a.logo,
.filter-container .card a.photo {
  width: 350px;
  display: block;
  position: relative;
  border-bottom: 1px solid #efefef;
}
.filter-container .card a.logo:after,
.filter-container .card a.photo:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: box-shadow 0.4s ease;
}
@media screen and (min-width: 1025px) { /* 1025px以上のみ */
  .filter-container .card a.logo:hover:after,
  .filter-container .card a.photo:hover:after {
    box-shadow: #2a7ab8 0px 0px 0px 4px inset;
  }
}
.filter-container .card-title span {
  display: block;
  font-size: 1.4rem;
}
.filter-container .tag {
  color: #222;
  margin: 0 0 0 20px;
  padding: 2px 10px;
  border: 1px solid #222;
  border-radius: 2px;
  font-size: 1.2rem;
  font-weight: 400;
}
.filter-container .card .details,
.filter-container .card .item {
  margin: 0 20px;
}
.filter-container .card p.details {
  margin-top: 15px;
  line-height: 1.6;
}
.filter-container .card dl dt {
  margin: 15px 0 0 0;
  display: inline-block;
  font-weight: 700;
  border-bottom: 2px solid #222;
  color: #222;
  line-height: 1.6;
}
.filter-container .card dl dd {
  margin: 6px 0 0 0;
  line-height: 1.6;
}
.filter-container .card dl dd a {
  text-decoration: none;
}
.filter-container .btn_detail {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}
@media screen and (min-width: 1025px) { /* 1025px以上のみ */
  .filter-container .card dl dd a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 1300px) {
  .filter-container {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .filter-controls .control {
    width: 18%;
    margin: 30px 1% 0;
  }
}
@media screen and (max-width: 900px) {
  .filter-controls .control {
    width: 24%;
    height: auto;
    margin: 20px 2% 0;
    padding: 10px 0;
  }
  .filter-container {
    margin: 30px 0 0;
  }
  .filter-container .card-title {
    margin: 20px 15px;
  }
  .filter-container .tag,
  .filter-container .card dl {
    margin: 0 15px;
  }
  .filter-container .card .details {
    margin: 0 15px;
  }
}
@media screen and (max-width: 480px) {
  .filter-controls .control {
    width: 46%;
    font-size: 1.4rem;
    margin: 10px 2% 0;
    padding: 7px 0;
  }
  .filter-container .btn_detail {
    width: calc( 100% - 30px );
  }
}
/* リンクボタン */
.topics .headline .btn_more a {
    background: #222;
}
[class^="index-section"] .btn_detail {
  min-width: 250px;
}
[class^="index-section"] .btn_detail.btn_next a:hover,
.topics .headline .btn_more a:hover,
[class^="index-section"] .btn_detail.btn_next a:active,
.topics .headline .btn_more a:active,
[class^="index-section"] .btn_detail.btn_next a:focus,
.topics .headline .btn_more a:focus {
  color: #fff;
  background: #2a7ab8;
}
.btn_more a:hover {
  opacity: 1;
}
@media screen and (max-width: 480px) {
  [class^="index-section"] .btn_detail.btn_next {
    width: 70%;
  }
  [class^="index-section"] .btn_detail.btn_next a,
  .topics .headline .btn_more a {
    font-size: 1.6rem;
  }
}
/*===============================================================
トップページ
===============================================================*/
.main-visual {
  height: 469px;
  margin-bottom: 40px;
  background: transparent url("/image/top-main") center 0 no-repeat;
}
.main-visual span {
  color: transparent;
  opacity: 0;
}
.index-section-introduction {
  background: transparent url("/image/top-about_bg") center 0 no-repeat;
  margin-bottom: 0;
}
.index-section-introduction .introduction-content {
  padding: 50px 0;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.index-section-introduction .introduction-text {
  width: calc( 100% - 460px );
  padding: 0 5% 0 0;
}
.index-section-introduction .introduction-text p {
  color: #fff;
}
.index-section-introduction .btn_detail.btn_next a {
  background: transparent;
  border: 1px solid #fff;
}
.index-section-introduction .introduction-img {
  width: 460px;
  max-width: 50%;
}
.index-section-introduction .introduction-img img {
  max-width: 100%;
  display: block;
}
.movie {
  width: 497.78px;
  max-width: 98%;
  max-height: 280px;
}
.movie-wrap {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}
.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie {
    margin: 30px auto 0;
  }
@media screen and (max-width: 1380px) {
  .main-visual {
    height: 300px;
    background-size:cover;
  }
  .index-section-introduction {
    background-size:cover;
  }
  .index-section-introduction .introduction-content {
    padding: 50px 40px;
  }
}

@media screen and (max-width: 900px) {
  .index-section-introduction .introduction-content {
    display: block;
    padding: 0;
  }
  .index-section-introduction .introduction-text {
    width: 100%;
    padding: 20px;
  }
  .index-section-introduction .introduction-img {
    margin: 0 auto;
    padding: 20px 0;
  }
  .index-section-introduction .introduction-img img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .main-visual {
    height: 200px;
  }
}
@media screen and (max-width: 480px) {
  .main-visual {
    height: 100px;
  }
  .index-section-introduction .introduction-img {
    max-width: 100%;
  }
  .index-section-introduction .introduction-img {
    padding-bottom: 0;
  }
}
/* top見出し */
[class^="index-section"] h2,
.topics .headline .title {
  position: relative;
  display: block;
  margin: 0 0 20px;
  padding: 0 0 0 40px;
  font-size: 3rem;
  font-weight: 400;
  color: #222;
  border: none;
}
.topics .headline .title {
  margin: 0 0 40px;
  line-height: 1.2;
}
[class^="index-section"] h2:before,
.topics .headline .title:before {
  content: "";
  position: absolute;
  margin: auto;
  width: 25px;
  height: 25px;
  top: 8px;
  left: 0;
  background: transparent url("/image/icon-square-black") right center no-repeat;
}
[class^="index-section"] h2 .sub_title,
.topics .topic_list:before {
  display: block;
  color: #222;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 4px;
}
[class^="index-section"] .introduction-text h2:before {
  background-image: url("/image/icon-square-white");
}
[class^="index-section"] .introduction-text h2,
[class^="index-section"] .introduction-text .sub_title {
  color: #fff;
}
.index-section-introduction h2 .sub_title {
  margin-left: 2px;
}
@media screen and (max-width: 768px) {
  .index-section-introduction h2 .sub_title {
    margin-left: 1px;
  }
}
/* お知らせサブタイトルを疑似要素で表示 */
#section02 .topic_list:before {
  content: "Information";
  position: absolute;
  top: -45px;
  left: 40px;
}
@media screen and (min-width: 1101px) {
  .index-section-introduction .btn_detail {
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 480px) {
  [class^="index-section"] h2,
  .topics .headline .title {
    font-size: 2.4rem;
  }
  [class^="index-section"] h2:before,
  .topics .headline .title:before {
    top: 8px;
    left: 0;
  }
}
/* お知らせ */
.section_wrp .topics {
  max-width: 1300px;
  padding: 0;
  margin: 0 auto 50px;
  position: relative;
}
@media screen and (max-width: 1380px) {
  .section_wrp .topics {
    padding: 0 40px;
  }
}
@media screen and (max-width: 900px) {
  .section_wrp .topics {
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  .section_wrp .topics {
    margin: 0 auto 30px;
  }
}
.topics .headline {
  text-align: left;
}
.topics .headline .btn_more {
  position: absolute;
  width: 200px;
  height: auto;
  top: 0;
  bottom: 0;
  right: 0;
}
.topics .headline .btn_more a {
  padding: 3px 10px;
  border: none;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.topics .headline .btn_more a:after {
  content: "";
  position: absolute;
  display: block;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  box-sizing: border-box;
  transform: rotate(-45deg);
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .topics .headline .btn_more {
    width: auto;
    bottom: -5px;
  }
  .topics .headline .btn_more a {
    font-size: 1.4rem;
    padding: 10px 2em 10px 1em;
  }
}
.section_wrp .topics h3 {
  display: none;
}
.topic_list {
  float: none;
  width: 100%;
  border-top: none;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .topic_list {
    margin-top: 21px;
  }
}
.section_wrp .topics .topic_list dl {
  margin: 0;
  border: none;
}
.topics .topic_list dt {
  width: 140px;
  padding: 8px 0;
  border: none;
  line-height: 1.5;
  font-size: 1.6rem;
  color: #222;
  position: relative;
}
.topics .topic_list dt:after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #222;
  position: absolute;
  bottom: 0.2em;
  left: 0;
}
.topics .topic_list dt .icon {
  display: none;
}
.topics .topic_list dd {
  padding: 8px 0 8px 150px;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: none;
}
.section_wrp .topics .topic_list dd {
  border: none;
}
.topics .topic_list dd a {
  color: #222;
  text-decoration: none;
}
.topics .topic_list dd a:hover {
  color: #666;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .topics .topic_list dt,
  .topics .topic_list dd {
    width: 100%;
  }
  .topics .topic_list dt {
    font-weight: 400;
  }
  .topics .topic_list dd {
    padding: 0 0 8px;
  }
}
/* flexboxの最終列左寄せ用 */
[class^="index-section"] .filter-container {
  margin: 25px 0 0;
}
/* flexboxの最終列左寄せ用 */
[class^="index-section"] .filter-container:after {
  content: "";
  display: block;
  width: 350px;
  height: 0;
}
@media screen and (max-width: 768px) {
  [class^="index-section"] .filter-container .card {
    width: 100%;
    min-height: 190px;
    position: relative;
    padding: 0;
    overflow: hidden;
  }
  .index-section-recommend .filter-container .card {
    padding: 15px;
  }
  .index-section-case_study .filter-container .card .detail_upper {
    min-height: 190px;
    padding: 15px 15px 55px 15px;
    position: relative;
  }
  [class^="index-section"] .filter-container .card .logo,
  [class^="index-section"] .filter-container .card .photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 44%;
    height: 100%;
    max-width: 50%;
    border: none;
  }
  [class^="index-section"] .filter-container .card .photo {
    width: 40%;
    object-fit:cover;
  }
  [class^="index-section"] .filter-container .card-title,
  [class^="index-section"] .filter-container .card .item {
    margin: 0 0 0 45%;
  }
  [class^="index-section"] .filter-container .card .tag,
  [class^="index-section"] .filter-container .btn_detail.btn_next {
    margin: 10px 0 0 45%;
  }
  [class^="index-section"] .filter-container .card-title {
    font-size: 1.5rem;
  }
  [class^="index-section"] .filter-container .card-title span {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  [class^="index-section"] .filter-container .card .tag {
    display: inline-block;
    padding: 0px 10px;
    border-width: 1px;
    font-size: 1.1rem;
  }
  [class^="index-section"] .filter-container .card dl dt,
  [class^="index-section"] .filter-container .card dl dd {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  [class^="index-section"] .filter-container .card dl dt {
    margin-top: 8px;
  }
  [class^="index-section"] .filter-container .btn_detail.btn_next {
    width: 52%;
    min-width: auto;
  }
  [class^="index-section"] .filter-container .btn_detail.btn_next a {
    margin: 0 auto;
  }
  [class^="index-section"] .filter-container .toggle-detail {
    margin: -40px 0 0 45%;
    width: 50%;
    padding: 3px;
    color: #222;
    border: 1px solid #222;
    text-decoration: none;
    text-align: center;
    font-size: 1.2rem;
    display: block;
    border-radius: 7px;
    position: relative;
  }
  [class^="index-section"] .filter-container .toggle-detail:after {
    content: '';
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 6px;
    height: 6px;
    border-right: solid 1px #222;
    border-bottom: solid 1px #222;
    transform: rotate(45deg);
  }
  [class^="index-section"] .filter-container .card .details {
    height: 0;
    padding: 0 8px;
    transition: .2s;
    overflow: hidden;
  }
  [class^="index-section"] .filter-container .card [id^="detail-switch-"]:checked + .toggle-detail:after {
    top: 5px;
    transform: rotate(-135deg);
  }
  [class^="index-section"] .filter-container .card [id^="detail-switch-"]:checked + .toggle-detail + .details {
    height: auto;
    padding: 20px 8px;
  }
}
@media screen and (max-width: 480px) {
  .index-section-recommend .filter-container .card {
    padding: 8px;
  }
  .index-section-case_study .filter-container .card .detail_upper {
    padding: 8px 8px 45px 8px;
  }
  [class^="index-section"] .filter-container .card .tag,
  [class^="index-section"] .filter-container .btn_detail.btn_next {
    margin: 8px 0 0 45%;
  }
  [class^="index-section"] .filter-container .card-title {
    font-size: 1.4rem;
  }
  [class^="index-section"] .filter-container .card-title span {
    font-size: 1rem;
    letter-spacing: 0;
  }
  [class^="index-section"] .filter-container .btn_detail.btn_next a {
    font-size: 1.3rem;
  }
  [class^="index-section"] .filter-container .card .item {
    margin-top: 0!important;
  }
  [class^="index-section"] .filter-container .toggle-detail {
    margin: -35px 0 0 45%;
  }
}
@media screen and (max-width: 400px) {
  [class^="index-section"] .filter-container .card .logo,
  [class^="index-section"] .filter-container .card .photo {
    width: 39%;
  }
  [class^="index-section"] .filter-container .card-title,
  [class^="index-section"] .filter-container .card .item {
    margin: 0 0 0 42%;
  }
  [class^="index-section"] .filter-container .card .tag,
  [class^="index-section"] .filter-container .btn_detail.btn_next {
    margin: 6px 0 0 42%;
  }
}
/*===============================================================
会員企業一覧
===============================================================*/
#company-list .filter-container .card,
#company-list .filter-container .gap {
    width: 300px;
}
.filter-container .card .logo {
  max-width: 100%;
  height: 250px;
}
@media screen and (min-width: 1025px) { /* 1025px以上のみ */
  .filter-container .card dl dd a:hover {
    text-decoration: underline;
  }
}
.filter-container .card .logo img {
  max-width: 280px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
@media screen and (max-width: 768px) {
  .filter-container .card .logo img {
    max-width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .filter-container .card .logo {
    height: 150px;
  }
  .filter-container .card .logo img {
    max-width: 90%;
  }
}
/*===============================================================
導入事例
===============================================================*/
.filter-container .card .photo {
  width: 350px;
  max-width: 100%;
  height: auto;
}
/*===============================================================
会員企業詳細
===============================================================*/
#company-detail  section figure {
  margin-bottom: 13px;
  max-width: 360px;
}
#company-detail [class^="photo-"] img {
  max-width: 600px;
  display: block;
}
#company-detail .photo-left img {
  float: left;
  margin-right: 30px;
  margin-left: 20px;
}
#company-detail .photo-right img {
  float: right;
  margin-left: 30px;
}
#company-detail [class^="photo-"]::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 1280px) {
  #company-detail [class^="photo-"] img {
    max-width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #company-detail [class^="photo-"] img {
    float: none;
    max-width: 80%;
    margin: 20px auto 40px;
  }
}
@media screen and (max-width: 480px) {
  #company-detail [class^="photo-"] img {
    max-width: calc(100% - 40px);
  }
}
/*===============================================================
北九州システムインテグレータネットワークとは
===============================================================*/
#about-SIer .lead {
  margin-top: 60px;
}
#about-SIer .lead h2 {
  padding: 0;
  color: #2a7ab8;
}
#about-SIer .lead h2::before {
  display: none;
}
#about-SIer .lead p {
  margin-left: 0;
}
#about-SIer h3 {
  padding: 0 0 10px 0;
  color: #2a7ab8;
  border-bottom: 2px solid #2a7ab8;
  display: inline-block;
  font-size: 2rem;
}
#about-SIer .introduction-photo {
  font-weight: 700;
  background: transparent url("/image/aboutSIer-bg") right center no-repeat;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#about-SIer .introduction-photo p {
  margin: 0 20px 0 0;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #about-SIer .lead h2 {
    padding: 0 0 0 15px;
  }
}
@media screen and (max-width: 480px) {
  #about-SIer .introduction-photo {
    margin-bottom: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
#about-SIer .introduction-photo p {
  margin: 0 20px 0 0;
  font-weight: 700;
}
/*===============================================================
Kitakyushu SIerNet DX MarketPlaceとは
===============================================================*/
#about-DX .dx-mainArea_inner {
  padding-bottom: 50px;
}
#about-DX h2 {
  padding: 0 0 20px 0;
  text-align: center;
}
#about-DX h2:after {
  content: "";
  display: block;
  width: 2em;
  height: 2px;
  background: #222;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -1em;
}
#about-DX h2::before {
  display: none;
}
#about-DX [class^="dx-content"] img {
  margin: 50px auto 0;
  display: block;
  max-width: 100%;
  height: auto;
}
/* 紹介文 */
#about-DX .introduction {
  margin: 80px auto 0;
  width: 800px;
  max-width: 100%;
}
#about-DX .introduction img {
  width: 494px;
}
#about-DX .introduction .notice {
  margin: 30px 0 0;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .introduction {
    padding: 0 10px;
  }
}
/* 特長 */
#about-DX .feature {
  margin: 0 auto 30px;
  max-width: 1300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
#about-DX .feature h3 {
  margin-left: 0;
  font-size: 3rem;
  color: #fff;
  position: relative;
  display: inline-block;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
}
#about-DX .feature h3 span {
  margin-bottom: 0.5em;
  color: #fff;
  display: block;
  line-height: 1;
  text-transform: uppercase;
}
#about-DX .feature h3:after {
  content: "";
  display: block;
  height: 7px;
  background: #2a7ab8;
  margin-top: -0.4em;
}
#about-DX .feature .feature-text {
  padding: 50px 40px;
  width: calc( 100% - 35% );
  display: block;
  position: relative;
}
#about-DX .feature .feature-text p {
  color: #fff;
  margin-left: 0;
}
#about-DX .feature .feature-text:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  z-index: -2;
}
#about-DX .feature.left .feature-text:before {
  background: #222;
  left: 0;
}
#about-DX .feature.right .feature-text:before {
  background: #666;
  right: 0;
}
@media screen and (min-width: 1301px) { /* 1300px以上はウィンドウサイズの端まで背景を出す */
  #about-DX .feature .feature-text:before {
    width: 300%;
  }
  #about-DX .feature.left .feature-text:before {
    left: -200%;
  }
  #about-DX .feature.right .feature-text:before {
    right: -200%;
  }
}
#about-DX .feature .icon {
  width: 35%;
  min-height: 200px;
  position: relative;
}
#about-DX .feature .icon svg {
  width: auto;
  max-width: 240px;
  height: 200px;
  fill: #222;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
@media screen and (max-width: 900px) {
  #about-DX .feature .feature-text {
    width: calc( 100% - 30% );
  }
  #about-DX .feature .icon {
    width: 30%;
    min-height: 150px;
  }
  #about-DX .feature .icon svg {
    height: 150px;
  }
}
@media screen and (max-width: 767px) { /* 768px未満（SP～TAB） */
  #about-DX .feature {
    margin: 0 auto 10px;
    display: block;
  }
  #about-DX .feature:last-of-type {
    margin-bottom: 30px;
  }
  #about-DX .feature h3 {
    font-size: 1.8rem;
    font-weight: 700;
  }
  #about-DX .feature h3 span {
    color: #2a7ab8;
    font-size: 3rem;
  }
  #about-DX .feature .feature-text {
    width: 100%;
    padding: 30px 20px;
  }
  #about-DX .feature .icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  #about-DX .feature .icon svg {
    height: 200px;
    z-index: -1;
  }
  #about-DX .feature.left .icon svg {
    fill: #333;
  }
  #about-DX .feature.right .icon svg {
    fill: #777;
  }
}
/*===============================================================
FAQ
===============================================================*/
#faq .dx-content [class^="faq-content-"] {
  max-width: 1200px;
  margin: 0 auto 50px;
}
#faq .dx-content [class^="faq-content-"] dt {
  font-weight: 700;
  font-size: 2rem;
  margin: 30px 0 10px 0;
  padding: 0 0 0 40px;
  position: relative;
}
#faq .dx-content [class^="faq-content-"] dt:before {
  content:"";
  display: block;
  width: 20px;
  height: 2px;
  background: #222;
  position: absolute;
  top: 20px;
  left: 0;
}
#faq .dx-content [class^="faq-content-"] dd {
  padding: 0 0 0 40px;
}
@media screen and (max-width: 900px) {
  #faq .dx-content [class^="faq-content-"] dt {
    line-height: 1.6;
  }
  #faq .dx-content [class^="faq-content-"] dt:before {
    top: 16px;
  }
}
@media screen and (max-width: 480px) {
  #faq .dx-content [class^="faq-content-"] {
    max-width: 96%;
  }
  #faq .dx-content [class^="faq-content-"] dt {
    font-size: 1.6rem;
    padding: 0 0 0 24px;
  }
  #faq .dx-content [class^="faq-content-"] dt:before {
    width: 12px;
    top: 12px;
  }
  #faq .dx-content [class^="faq-content-"] dd {
    padding: 0 0 0 24px;
  }
}
/*===============================================================
Cookie対応　下部表示枠線なくす設定
===============================================================*/
.cookie-consent {
    border: 0px;
}

/*===============================================================
header 外部リンクマーク表示 調整　
===============================================================*/
a.ex_link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
a.ex_link span {
  margin-right: 5px;
}
a.ex_link img {
  width: 18px;
  margin-top: 1px;
}
