@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

.luxbar-fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  border-bottom: 1px solid #bfbfbf;
}

.luxbar-hamburger span,
.luxbar-hamburger span::before,
.luxbar-hamburger span::after {
  display: block;
  height: 2px;
  width: 26px;
  transition: 0.6s ease;
}

.luxbar-checkbox:checked ~ .luxbar-menu li .luxbar-hamburger span {
  background-color: transparent;
}

.luxbar-checkbox:checked ~ .luxbar-menu li .luxbar-hamburger span::before,
.luxbar-checkbox:checked ~ .luxbar-menu li .luxbar-hamburger span::after {
  margin-top: 0;
}

.luxbar-header {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  height: 110px;
}
@media (max-width: 750px) {
  .luxbar-header {
    height: 70px;
  }
}

.luxbar-menu-left .luxbar-navigation,
.luxbar-menu-left .luxbar-header {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.luxbar-menu-right .luxbar-hamburger {
  margin-left: auto;
}

.luxbar-brand {
  padding: 18px 24px 18px 24px;
}

.luxbar-menu {
  min-height: 70px;
  transition: 0.6s ease;
}

.luxbar-navigation {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.luxbar-menu a,
.luxbar-item a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.luxbar-item {
  height: auto;
}

.luxbar-item a {
  display: block;
}

.luxbar-hamburger {
  padding: 30px 20px;
  position: relative;
  cursor: pointer;
}

.luxbar-hamburger span::before,
.luxbar-hamburger span::after {
  content: '';
  position: absolute;
}

.luxbar-hamburger span::before {
  margin-top: -8px;
}

.luxbar-hamburger span::after {
  margin-top: 8px;
}

.luxbar-checkbox {
  display: none;
}

.luxbar-checkbox:not(:checked) ~ .luxbar-menu {
  overflow: hidden;
  height: 110px;
}
@media (max-width: 750px) {
  .luxbar-checkbox:not(:checked) ~ .luxbar-menu {
    height: 70px;
  }
}

.luxbar-checkbox:checked ~ .luxbar-menu {
  transition: height 0.6s ease;
  height: 100vh;
  overflow: auto;
}

.dropdown {
  position: relative;
  height: auto;
  min-height: 58px;
}

.dropdown:hover > ul {
  position: relative;
  display: block;
  min-width: 100%;
}

.dropdown > a::after {
  position: absolute;
  content: '';
  right: 10px;
  top: 25px;
  border-width: 5px 5px 0;
  border-color: transparent;
  border-style: solid;
}

.dropdown > ul {
  display: block;
  overflow-x: hidden;
  list-style: none;
  padding: 0;
}

.dropdown > ul .luxbar-item {
  min-width: 100%;
  height: 29px;
  padding: 5px 10px 5px 40px;
}

.dropdown > ul .luxbar-item a {
  min-height: 29px;
  line-height: 29px;
  padding: 0;
}

@media (min-width: 751px) {
  .luxbar-navigation {
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-flow: row;
    flex-flow: row;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }

  .luxbar-hamburger {
    display: none;
  }

  .luxbar-checkbox:not(:checked) ~ .luxbar-menu {
    overflow: visible;
  }

  .luxbar-checkbox:checked ~ .luxbar-menu {
    height: 110px;
  }

  .luxbar-menu .luxbar-item {
    border-top: 0;
  }

  .luxbar-menu-right .luxbar-header {
    margin-right: auto;
  }

  .dropdown {
    height: 58px;
  }

  .dropdown:hover > ul {
    position: absolute;
    left: 0;
    top: 58px;
    padding: 0;
  }

  .dropdown > ul {
    display: none;
  }

  .dropdown > ul .luxbar-item {
    padding: 5px 10px;
  }

  .dropdown > ul .luxbar-item a {
    white-space: nowrap;
  }
}
.luxbar-checkbox:checked + .luxbar-menu .luxbar-hamburger-doublespin span::before {
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.luxbar-checkbox:checked + .luxbar-menu .luxbar-hamburger-doublespin span::after {
  -moz-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.luxbar-checkbox:checked + .luxbar-menu .luxbar-hamburger-spin span::before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.luxbar-checkbox:checked + .luxbar-menu .luxbar-hamburger-spin span::after {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/******* color variables *******/
/* MY CUSTOM */
#luxbar {
  background: #ffffff;
}

.luxbar-menu-light,
.luxbar-menu-light .dropdown ul {
  background-color: #ffffff;
  color: #212121;
}

.luxbar-menu-light .luxbar-hamburger span,
.luxbar-menu-light .luxbar-hamburger span::before,
.luxbar-menu-light .luxbar-hamburger span::after {
  background-color: #ff0000;
  background-color:#f00;
}

/******* default dark *******/
/******* default light *******/
/******* default material-red *******/
/******* default material-indigo *******/
/******* default material-green *******/
/******* default material-amber *******/
/******* default material-brown *******/
/******* default material-bluegrey *******/
/******* default material-cyan *******/
/*# sourceMappingURL=luxbar.css.map */
/* ----------------------------------------------------
/* Base
/* --------------------------------------------------*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  width: 100%;
}

html {
  font-size: 100%;
}

body {
  text-size-adjust : 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-color: #000000;
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Meiryo, Arial, Verdana, Meiryo, "M+ 1p", sans-serif;
  line-height: 1.6;
  font-size: 15px;
}
@media (max-width: 750px) {
  body {
    font-size: 14px;
  }
}

#container {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding-top: 110px;
}
@media (max-width: 750px) {
  #container {
    padding-top: 70px;
  }
}

#main {
  min-height: 300px;
}

/* ----------------------------------------------------
/* Layout
/* --------------------------------------------------*/
.wrap-page-width {
  overflow: hidden;
  zoom: 1;
  max-width: 1020px;
  margin: 0 auto;
  padding: 20px 20px;
}

.wrap-page-width.top {
  padding: 60px 20px 20px !important;
}

@media (max-width: 750px) {
  .wrap-page-width {
    padding: 10px 15px;
  }
  .wrap-page-width.top {
    padding: 30px 20px 20px !important;
  }

}

@media (min-width: 751px) {
  #topnews .wrap-page-width,
  #footer .wrap-page-width {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/* ----------------------------------------
 responsive
---------------------------------------- */
@media (min-width: 751px) {
  .pc-only {
    display: block !important;
  }
  .sp-only {
    display: none !important;
  }
  .br-sp {
    display: none;
  }
}
@media (max-width: 750px) {
  .pc-only {
    display: none !important;
  }
  .pc-only-catchcop{
    margin: 0 auto;
  }

  .sp-only {
    display: block !important;
  }

  .sp-only-catchcopy {
    margin: 0 auto !important;
  }

  .br-pc {
    display: none;
  }
}
/* ----------------------------------------------------
/* Link
/* --------------------------------------------------*/
a {
  color: #338fff;
  text-decoration: none;
}

a:hover {
  color: #338fff;
}

a:active {
  color: #338fff;
}

.arr {
  position: relative;
  display: inline-block;
  padding: 0 0 0 1em;
  color: #212121;
  vertical-align: middle;
  text-decoration: none;
}

.arr::before,
.arr::after {
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.arr.btm::before {
  top: -1px;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ff0000;
  border-right: 2px solid #ff0000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.arr.top::before {
  top: 5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ff0000;
  border-right: 2px solid #ff0000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.arr.right {
  padding: 0 1em 0 0;
}

.arr.right::after {
  top: 1px;
  left: unset;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ff0000;
  border-right: 2px solid #ff0000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.arr.left {
  padding: 0 0 0 1em;
}

.arr.left::after {
  top: 1px;
  left: 0;
  right: unset;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ff0000;
  border-right: 2px solid #ff0000;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.arr.more {
  padding-left: 20px;
}
.arr.more a {
  color: #003bff;
}
.arr.more a:hover {
  color: #003bff;
}

.arr.more::before {
  width: 8px;
  height: 8px;
  border-top: 2px solid #ff0000;
  border-right: 2px solid #ff0000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.arr.more:hover::before {
  border-color: #003bff;
}

/* ----------------------------------------------------
/* Text
/* --------------------------------------------------*/
.red {
  color: #cc304f;
}

.blue {
  color: #ff0000;
}

h2 {
  font-size: 1.3em;
  font-weight: 600;
  text-indent: 0.1em;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

/* ----------------------------------------------------
/* List
/* --------------------------------------------------*/
.list-mark li {
  display: block;
  margin-bottom: .5em;
  padding-left: 1em;
  text-indent: -1em;
}

.list-num li {
  display: block;
  margin-bottom: .5em;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

/* ----------------------------------------------------
/* Button
/* --------------------------------------------------*/
.btn,
a.btn {
  display: block;
  -moz-box-shadow: #262626 0 6px;
  -webkit-box-shadow: #262626 0 6px;
  box-shadow: #262626 0 6px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #333333;
  border: 1px #333333 solid;
  border-bottom: 1px #404040 solid;
  font-size: 1.2em;
  font-weight: 600;
  text-align: center;
  padding: 0.7em 1em 0.8em;
  cursor: pointer;
  color: #ffffff;
}
.btn:hover,
a.btn:hover {
  background-color: #363636;
  border-bottom: 1px #4a4a4a solid;
}
.btn.blue,
a.btn.blue {
  -moz-box-shadow: #005ccc 0 6px;
  -webkit-box-shadow: #005ccc 0 6px;
  box-shadow: #005ccc 0 6px;
  background-color: #ff0000;
  border: 1px #ff0000 solid;
  border-bottom: 1px #338fff solid;
}
.btn.blue:hover,
a.btn.blue:hover {
  background-color: #1a81ff;
  border: 1px #1a81ff solid;
}
.btn.white,
a.btn.white {
  -moz-box-shadow: #a3a3a3 0 6px;
  -webkit-box-shadow: #a3a3a3 0 6px;
  box-shadow: #a3a3a3 0 6px;
  background-color: #f2f2f2;
  border: 1px #ffffff solid;
  border-bottom: 1px #ffffff solid;
  color: #212121;
}
.btn.white:hover,
a.btn.white:hover {
  background-color: #ffffff;
  border-bottom: 1px #a3a3a3 solid;
}
.btn.red,
a.btn.red {
  -moz-box-shadow: #921932 0 6px;
  -webkit-box-shadow: #921932 0 6px;
  box-shadow: #921932 0 6px;
  background-color: #cc304f;
  border: 1px #cc304f solid;
  border-bottom: 1px #921932 solid;
}
.btn.red:hover,
a.btn.red:hover {
  background-color: #b72b47;
  border-bottom: 1px #921932 solid;
}
.btn.orange,
a.btn.orange {
  -moz-box-shadow: #ff5400 0 6px;
  -webkit-box-shadow: #ff5400 0 6px;
  box-shadow: #ff5400 0 6px;
  background-color: #ff7f00;
  border: 1px #ff6000 solid;
  border-bottom: 1px #ff8b20 solid;
}
.btn.orange:hover,
a.btn.orange:hover {
  background-color: #ff6700;
  border-bottom: 1px #ff7300 solid;
}

/* ----------------------------------------------------
/* Header
/* --------------------------------------------------*/
#logo a {
  display: block;
  background: url('../images/logo.png') no-repeat;
  width: 160px;
  height: 50px;
  background-size: 160px 50px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin-left: 25px;
}
@media (max-width: 750px) {
  #logo a {
    display: block;
    background: url('../images/logo.png') no-repeat;
    width: 128px;
    height: 40px;
    background-size: 128px 40px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin-left: 20px;
  }
}

@media (min-width: 751px) {
  .mixma #header .gm-biz a.biz-all {
    color: #ff0000;
  }

  .mixad #header .gm-biz a.biz-all {
    color: #ff0000;
  }

  .company #header .gm-company a {
    color: #ff0000;
  }

  .recruit #header .gm-recruit a {
    color: #ff0000;
  }

  .contact #header .gm-contact a {
    color: #ff0000;
  }
}
#header {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1020px;
  min-width: 320px;
  margin: 0 auto;
  font-size: 15px;
}
#header .uc span {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  background-color: #212121;
  color: #959595;
  font-size: 0.8em;
  padding: 2px 5px;
  margin-left: 12px;
}
@media (min-width: 751px) {
  #header h1 {
    margin-left: 15px;
  }
  #header .luxbar-menu {
    position: relative;
  }
  #header .luxbar-item a {
    color: #222222;
    font-weight: 500;
    padding: 42px 20px 41px;
  }
  #header .luxbar-item:not(.pdown-menu) a:hover, #header .cur a {
    border-bottom: 4px solid #ff0000;  }
  #header .pdown-menu {
    position: relative;
  }
  #header .pdown-menu a {
    cursor: default;
  }
  #header .pdown-menu .submenu a {
    cursor: pointer;
    font-weight: normal;
  }
  #header .pdown-menu .submenu {
    -moz-border-radius: 0 0 2px 2px;
    -webkit-border-radius: 0;
    border-radius: 0 0 2px 2px;
    width: 380px;
    text-align: center;
    z-index: 100000;
    position: absolute;
    top: 106px;
    left: -72px;
    background-color: #000000;
    border-top: 3px #ff0000 solid;
    color: #ffffff;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
  }
  #header .pdown-menu:hover {
    color: #ff0000;
  }
  #header .pdown-menu:hover .biz-all::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 50%;
    bottom: 0;
    margin-left: -12px;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #ff0000;
    border-left: 12px solid transparent;
  }
  #header .pdown-menu:hover .submenu {
    visibility: visible;
    opacity: 0.95;
  }
  #header .pdown-menu:hover .submenu:hover {
    opacity: 1;
  }
  #header .pdown-menu:hover .submenu a {
    text-align: center;
    color: #ffffff;
    border-bottom: none;
    padding: 16px 20px;
    border-bottom: 1px solid #212121;
  }
  #header .pdown-menu:hover .submenu a:not(.uc):hover {
    background-color: #333333;
  }
  #header .pdown-menu:hover .submenu a.uc {
    cursor: default;
  }
  #header .menu-title,
  #header .close {
    display: none;
  }
}
@media (max-width: 750px) {
  #header .luxbar-menu {
    position: relative;
  }
  #header .luxbar-navigation {
    border-bottom: 1px dotted #959595;
  }
  #header .luxbar-item {
    border-top: 1px dotted #959595;
    height: auto;
  }
  #header .luxbar-item a,
  #header .luxbar-item.pdown-menu a {
    position: relative;
    display: block;
    width: 100%;
    color: #212121;
    /* vertical-align:middle; */
    text-decoration: none;
    padding: 12px 20px 15px;
  }
  #header .luxbar-item:not(.pdown-menu) a:hover,
  #header .cur a {
    border-bottom: none;
  }
  #header .luxbar-item:not(.pdown-menu) a::after,
  #header .luxbar-item.pdown-menu a:not(.uc)::after {
    position: absolute;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 8px;
    height: 8px;
    top: -2px;
    bottom: 0;
    right: 13px;
    border-top: 1px solid #212121;
    border-right: 1px solid #212121;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #header .pdown-menu {
    position: relative;
  }
  #header .pdown-menu .biz-all {
    position: relative;
    padding-bottom: 0px !important;
    margin-bottom: -5px;
  }
  #header .pdown-menu .submenu {
    position: relative;
    top: 0;
    width: 95%;
    margin-left: 5%;
    /*background-color: #f2f2f2;*/
    color: #212121;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -moz-transition-duration: none;
    -o-transition-duration: none;
    -webkit-transition-duration: none;
    transition-duration: none;
    -moz-transition-timing-function: none;
    -o-transition-timing-function: none;
    -webkit-transition-timing-function: none;
    transition-timing-function: none;
    visibility: visible;
    opacity: 1;
  }
  #header .pdown-menu .submenu a {
    color: #212121;
    padding: 12px 30px 15px;
    border-bottom: 1px dotted #959595;
  }
  #header .pdown-menu .submenu .arrow {
    position: absolute;
    left: 0px;
    top: 26px;
    width: 13px;
    height: 9px;
    border-top: 4px solid #ff0000;
    border-right: 4px solid #ff0000;
    transform: rotate3d(-106,-106,0,180deg);
  }

  #header .pdown-menu .submenu .arrow::after {
    content: "";
    position: absolute;
    bottom: -7px;
    right: -9px;
    border-top: 7px solid #ff0000;
    border-left: 6px solid transparent;
    border-right: 7px solid transparent;
  }
  #header .pdown-menu .submenu .mixma-arrow {
    top: 13px !important;
  }
  #header .pdown-menu .biz-all::after {
    transform: rotate(135deg) !important;
  }

  #header .pdown-menu .submenu .mixad::before {
    top: 23px !important;
  }
  #header .pdown-menu .submenu a:not(.uc):hover,
  #header .pdown-menu .submenu a:hover {
    background-color: #eeeeee;
  }
  #header .pdown-menu .submenu li {
    position: relative;
    margin-right: 20px;
  }
  #header .pdown-menu .submenu li:last-of-type a {
    border-bottom: none;
  }
  #header .pdown-menu .submenu li a::after{
    content: none !important;
  }
  #header .menu-title {
    display: block;
    background-color: #f2f2f2;
    text-align: center;
    font-weight: 600;
    font-size: 1em;
    padding: 5px 0 10px;
  }
  #header .menu-title + .luxbar-item {
    border: none;
  }
}
#header .st-contact {
  position: absolute;
  top: 24px;
  right: 66px;
  font-weight: 600;
  color: #222222;
  font-size: 0.9em;
}

/* ----------------------------------------------------
/* Footer
/* --------------------------------------------------*/
#footer {
  overflow: hidden;
  zoom: 1;
  color: #c8c8c8;
  font-weight: 300;
  background-image: url("../images/footer-bg.jpg");
  background-repeat: no-repeat;
  background-position: bottom right 10%;
  background-color: #111;
  background-size: 100%;
  padding-top: 30px;
}
#footer a {
  color: #fbfbfb;
}
#footer a:hover,
#footer li a:hover,
#footer .menu-tree li a:hover {
  color: #fbfbfb;
}
#footer .access {
  display: block;
  font-size: 0.9em;
}
#footer .access address p:first-of-type {
  margin-bottom: 1em;
}
#footer .access .more {
  padding-left: 20px;
}
#footer .access .more a:hover {
  color: #ffffff;
}
#footer .access .more::before {
  border-color: #959595;
}
@media (min-width: 751px) {
  #footer .wrap-page-width {
    overflow: hidden;
    zoom: 1;
  }
  #footer .block1 {
    float: left;
    width: 50%;
    padding-right: 30px;
  }
  #footer .block1:not(:first-of-type) {
    clear: both;
  }
  #footer .block2 {
    float: right;
    width: 50%;
    padding-right: 0;
  }
  #footer #footer-logo {
    display: block;
    width: 160px;
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 80px;
  }
  #footer .lead-txt {
    display: block;
    margin-top: 5px;
    margin-bottom: 80px;
  }
  #footer .sitemap {
    overflow: hidden;
    zoom: 1;
    display: block;
    margin-bottom: 80px;
    padding-left: .5em;
    color: #fbfbfb;
  }
  #footer .sitemap ul {
    display: block;
  }
  #footer .sitemap .menu-tree li:first-of-type,
  #footer .sitemap .menu-tree li:first-of-type a {
    margin-bottom: 20px;
  }
  #footer .sitemap .menu-tree li:not(:first-of-type) {
    margin-left: .8em;
  }
  #footer .sitemap .menu-single li {
    margin-bottom: 20px;
  }
  #footer .sitemap span {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    display: inline-block;
    background-color: #212121;
    color: #959595;
    font-size: 0.8em;
    padding: 2px 5px;
    margin-left: 5px;
  }
  #footer .sitemap .menu-tree a {
    color: #fff;
    font-size: .9em;
  }
  #footer .sitemap .menu-tree li {
    margin-bottom: 10px;
  }
  #footer .sitemap .menu-tree li:last-of-type {
    margin-bottom: 25px;
  }
  #footer .sitemap .menu-tree .arr.more::before {
    border-color: #959595;
  }
  #footer .sitemap .menu-tree .arr.more:hover::before {
    border-color: #ff0000;
  }
  #footer #copyright {
    margin-top: 20px;
    background-color: #000000;
    color: #ffffff;
  }
  #footer #copyright .wrap-page-width {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  #footer #copyright small {
    font-size: 90%;
    color: #959595;
  }
}
@media (max-width: 750px) {
  #footer {
    padding-top: 0;
    background-size: auto;
    background-position: top center;
    background-image:none;
  }
  #footer .block1, #footer .block2 {
    width: 100%;
    float: none;
    padding: 0;
  }
  #footer .wrap-page-width {
    width: 100%;
    padding: 30px 0;
  }
  #footer #footer-logo {
    display: block;
    width: 128px;
    height: 40px;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 auto 30px;
  }
  #footer .lead-txt {
    display: block;
    margin-bottom: 30px;
    text-align: center;
    padding: 0 15px;
  }
  #footer .sitemap {
    overflow: hidden;
    zoom: 1;
    display: block;
    margin-bottom: 30px;
  }
  #footer .sitemap ul {
    overflow: hidden;
    zoom: 1;
    display: block;
    width: 100%;
    margin-bottom: 0;
  }
  #footer .sitemap .menu-tree li:first-of-type {
    display: block;
    float: none;
    width: 100%;
    background-color: #212121;
    color: #fff;
    padding: 1em 1.5em;
  }
  #footer .sitemap .menu-single li {
    display: block;
    background-color: #212121;
    width: 100%;
  }
  #footer .sitemap .menu-single li a {
    color: #fff;
  }
  #footer .sitemap .menu-tree li a,
  #footer .sitemap .menu-single li a {
    padding: 1em 2em 1em 1.5em;
    position: relative;
    display: block;
    width: 100%;
    padding-right: 2em;
    /* vertical-align: middle; */
    text-decoration: none;
    border-bottom: 1px solid #2b2b2b;
  }
  #footer .sitemap .menu-tree li a::after,
  #footer .sitemap .menu-single li a::after {
    position: absolute;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 8px;
    height: 8px;
    top: -2px;
    bottom: 0;
    right: 16px;
    border-top: 1px solid #959595;
    border-right: 1px solid #959595;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #footer .sitemap .menu-tree li {
    display: block;
    width: 100%;
    padding-left: 0;
    font-size: .9em;
    background-color:#212121;
  }
  #footer .sitemap .menu-tree li a {
    color: #fff;
    padding-left: 2em;
  }
  #footer .sitemap .menu-tree li::before {
    display: none;
  }
  #footer .sitemap span {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    display: inline-block;
    background-color: #212121;
    font-size: 0.8em;
    padding: 2px 5px;
    margin-left: 5px;
  }
  #footer .access {
    padding: 0 20px;
  }
  #footer .access .more a {
    font-size: 1.1em;
  }
  #footer #copyright {
    background-color: #000000;
    color: #ffffff;
  }
  #footer #copyright .wrap-page-width {
    padding: 20px 20px;
    text-align: center;
  }
  #footer #copyright small {
    font-size: 90%;
    color: #959595;
  }
}

/* ----------------------------------------------------
/* iFrame 埋め込みレスポンシブ対応
/* --------------------------------------------------*/
.wrap-iframe {
  position: relative;
  width: 100%;
  height: 1200px;
}
.wrap-iframe.mixma {
  height: 1580px;
}
@media (max-width: 750px) {
  .wrap-iframe {
    height: 1400px;
  }
  .wrap-iframe.mixma {
    height: 1740px;
  }
}
.wrap-iframe .iframe {
  width: 100% !important;
  height: 110% !important;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 750px) {
  .wrap-iframe .iframe {
    height: 140% !important;
  }
}

/* ----------------------------------------------------
/* 企業情報　dir: company/
/* --------------------------------------------------*/
#c-profile .wrap-page-width {
  max-width: 880px;
}
#c-profile h2{
  padding-top:10px;
  margin-bottom:0px;
}
#c-profile h3{
  font-size: 1.15em;
  font-weight: 600;
  padding-top:10px;
  margin-bottom:10px;
}
#c-profile tbody th, #c-profile tbody td {
  padding: 10px;
}
#c-profile tbody th {
  font-weight: 600;
  min-width: 140px;
  vertical-align: top;
}
#c-profile tbody td p {
  margin-top: .5em;
}
#c-profile tbody td p:first-child {
  margin-top: 0;
}
@media (max-width: 750px) {
  #c-profile tbody th, #c-profile tbody td {
    font-size: 0.9em;
  }
  #c-profile tbody th {
    min-width: 100px;
    padding: 10px 5px;
  }
  #c-profile tbody td {
    padding-left: 0;
    padding-right: 0;
  }
}

#c-history {
  background-color: #f8f8f8;
  padding-bottom:15px;
}
#c-history .wrap-page-width {
  max-width: 880px;
}
#c-history h2{
  padding-top:10px;
  margin-bottom:10px;
}
@media (min-width: 751px) {
  #c-history dl {
    display: block;
    text-align: left;
  }
  #c-history dt, #c-history dd {
    padding: 0 10px 10px;
  }
  #c-history dd:last-of-type {
    padding-bottom: 0;
  }
  #c-history dt {
    display: block;
    float: left;
    width: 120px;
    margin-right: 20px;
    max-width: 120px;
    font-weight: 600;
  }
  #c-history dd::after {
    clear: both;
  }
}
@media (max-width: 750px) {
  #c-history dl {
    display: block;
    text-align: left;
  }
  #c-history dt {
    padding: 0 10px 5px;
  }
  #c-history dd {
    padding: 0 10px 10px;
  }
  #c-history dt {
    display: block;
    font-weight: 600;
  }
  #c-history dd + dt {
    padding-top: 20px;
  }
}

/* ----------------------------------------------------
/* Header　帯注意書き
/* --------------------------------------------------*/
#header-caution {
  display: block;
  width: 100%;
  height: 80px;
  padding: 25px 0;
  position: absolute;
  top: 0;
  background: #212121;
  text-align: center;
}
#header-caution + .iframe {
  margin-top: 80px;
  padding-bottom: 50px;
}
#header-caution p {
  max-width: 700px;
  margin: 0 auto;
  color: #ffffff;
}
#header-caution p a {
  position: relative;
  color: #ffffff;
}
#header-caution p a:hover {
  color: #ff0000;
}
#header-caution p a span {
  text-decoration: underline;
}
@media (max-width: 750px) {
  #header-caution {
    padding: 15px;
    top: 26px;
  }
  #header-caution + .iframe {
    margin-top: 80px;
    padding-bottom: 60px;
  }
}

.element--description, .element--hover {
  text-transform: uppercase;
  color: #ffffff;
  background-color: #ff0000;
  padding: 2rem 4rem;
  border-radius: 4px;
}

.element--description {
  margin-right: 4rem;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1), 0 1px 0 rgba(0, 0, 0, 0.05), 0 8px 0 rgba(0, 0, 0, 0.1), 0 16px 0 rgba(0, 0, 0, 0.1), 0 32px 32px rgba(0, 0, 0, 0.15);
}

.element--hover {
  cursor: pointer;
  transition: box-shadow 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), transform 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99);
}

.element--hover:hover {
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1), 0 1px 0 rgba(0, 0, 0, 0.05), 0 8px 0 rgba(0, 0, 0, 0.1), 0 16px 0 rgba(0, 0, 0, 0.1), 0 32px 32px rgba(0, 0, 0, 0.15);
  transform: scale(1.05) translateY(-0.5rem);
}

.element--hover:active {
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1), 0 1px 0 rgba(0, 0, 0, 0.05), 0 8px 0 rgba(0, 0, 0, 0.1), 0 16px 0 rgba(0, 0, 0, 0.1), 0 32px 32px rgba(0, 0, 0, 0.15);
}

/* ----------------------------------------------------
/* 汎用
/* --------------------------------------------------*/
.fwb{font-weight:bold;}
.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

/* ----------------------------------------------------
/* clearfix
/* --------------------------------------------------*/
.clearfix::after {
  content: " ";
  display: block;
  clear: both;
}

#container {
  padding-top: 0;
}

#main {
  padding-top: 110px;
}
@media (max-width: 750px) {
  #main {
    padding-top: 70px;
  }
}

/* ----------------------------------------------------
/* TOPLEAD
/* --------------------------------------------------*/
#toplead {
  background: #ffffff url("../images/lead-bg.jpg") bottom center no-repeat;
  background-size: cover;
}
#toplead h2{
  z-index: 2000;
  color: #fff;
  /*text-shadow: black 7px 3px 10px;*/
  letter-spacing: 9.0px;
}
@media (min-width: 751px) {
  #toplead{
  padding:20px 0 60px;
  }
  #toplead h2 {
    font-size: 3.0em;
    font-weight: 600; 
    margin: 0px auto;
    text-align: center;
  }
  #toplead .type-2col {
    display: block;
    max-width: 780px;
    padding: 0 14px;
    margin: 0 auto 60px;
  }
  #toplead .type-2col li {
    display: block;
    width: 45%;
    min-width: 320px;
  }
  #toplead .type-2col li:first-of-type {
    float: left;
  }
  #toplead .type-2col li:last-of-type {
    float: right;
  }
  #toplead .type-2col li a {
    display: block;
    min-height: 308px;
    border-top:2px solid #f00;
    background-size: 100%;
    background-color: rgba(255,255,255,0.85);
    padding: 30px 20px 0;
    font-size: 2.8em;
    font-weight: 500;
    color: #111;
    text-align: center;
  }
  #toplead .type-2col li a:hover {
    transition-duration: 0.5s;
    transform: scale(1) translateY(-0.4rem);
  }
  #toplead .type-2col li a span {
    display: block;
    font-size: 0.5em;
    line-height: 1.5;
  }
  #toplead .type-2col li a i {
    display: block;
    margin: 0 auto 30px;
  }
  #toplead .type-2col .mixma i {
    display: block;
    width: 215px;
    height: 117.14286px;
    background: url('../images/bnr-img-axma.png') no-repeat;
    background-size: 215px 117.14286px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  #toplead .type-2col .mixad i {
    display: block;
    width: 166px;
    height: 94px;
    background: url('../images/bnr-img-axad.png') no-repeat;
    background-size: 166px 94px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 26px;
  }
  #toplead .type-2col + p {
    padding-top: 60px;
  }
  #toplead p {
    display: block;
    clear: both;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 1050px) {
  #toplead h2 {
    font-size: 2.0em;
  }
}
@media (max-width: 750px) {
  #toplead{
    padding:20px 0 0;
  }
  #toplead h2 {
    font-size: 1.6em;
    font-weight: 600;
    margin: 30px auto 0;
    text-align: center;
    letter-spacing: 5.0px;
  }
  #toplead .type-2col {
    display: block;
    width: 92%;
    min-width: 280px;
    margin: 0 auto 30px;
  }
  #toplead .type-2col li {
    display: block;
    margin-bottom: 26px;
  }
  #toplead .type-2col li:last-of-type {
    margin-bottom: 0;
  }
  #toplead .type-2col li a {
    display: block;
    border-top:2px solid #f00;
    background-size: 100%;
    background-color: rgba(255,255,255,0.85);
    padding: 20px 0 20px 5%;
    font-size: 2em;
    font-weight: 500;
    color: #111;
    text-align: center;
  }
  #toplead .type-2col li a span {
    display: block;
    font-size: 0.45em;
    line-height: 1.5;
  }
  #toplead .type-2col li a i {
    display: block;
    float: left;
    margin-right: 10px;
  }
  #toplead .type-2col .mixma i {
    display: block;
    width: 64px;
    height: 52.5px;
    background: url('../images/bnr-img-axma-s.png') no-repeat;
    background-size: 64px 52.5px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin-right: 0;
    margin-left: 10px;
  }
  #toplead .type-2col .mixad i {
    display: block;
    width: 95.76923px;
    height: 54.23077px;
    background: url('../images/bnr-img-axad.png') no-repeat;
    background-size: 95.76923px 54.23077px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin-top: 10px;
  }
  #toplead p {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
  }
}

#toptext{
  padding:0px 20px;
  margin:30px 0 0;
  text-align:center;
  font-weight:bold;
  line-height:2;
}

/* ----------------------------------------------------
/* お知らせ
/* --------------------------------------------------*/
@media (min-width: 751px) {
  #topnews {
    padding: 30px 0;
  }

  #newslist .list-linetxt {
    overflow: hidden;
    zoom: 1;
    display: block;
    padding: 20px 10px;
    margin: 20px 0;
    border-top: 1px solid #bfbfbf;
    border-bottom: 1px solid #bfbfbf;
  }
  #newslist .list-linetxt dt {
    clear: both;
    float: left;
    display: block;
    width: 140px;
    font-weight:bold;
    padding: 0.8em 1em 0.8em 0;
  }
  #newslist .list-linetxt dd {
    display: block;
    margin-left: 140px;
    padding: 0 1em 1em 0.5em;
  }
  #newslist .list-linetxt dt + dd {
    padding-top: 0.8em;
  }
}
@media (max-width: 750px) {
  #topnews {
    padding: 20px 0;
  }

  h2 {
    margin-bottom: 0;
  }

  #newslist .list-linetxt {
    display: block;
    padding: 15px 10px;
    margin: 0 0 15px;
    border-top: 1px solid #bfbfbf;
    border-bottom: 1px solid #bfbfbf;
  }
  #newslist .list-linetxt dt {
    display: block;
    width: 120px;
    font-weight:bold;
    padding: 0.8em 1em 0.8em 0;
  }
  #newslist .list-linetxt dd {
    display: block;
    padding: 0 1em 1em 0.5em;
  }
}


/* ----------------------------------------------------
/* 事業内容
/* --------------------------------------------------*/
.mixad .btn.client, .mixad .btn.optout {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: #c70404 0 6px;
  -webkit-box-shadow: #c70404 0 6px;
  box-shadow: #c70404 0 6px;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuODQxNTA2IiB5MT0iMS4wOTE1MDYiIHgyPSIwLjE1ODQ5NCIgeTI9Ii0wLjA5MTUwNiI+PHN0b3Agb2Zmc2V0PSIzMCUiIHN0b3AtY29sb3I9IiNlMjIzMGIiLz48c3RvcCBvZmZzZXQ9IjMwJSIgc3RvcC1jb2xvcj0iI2U3NDUyZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -moz-linear-gradient(120deg, #e2230b 30%, #e7452f 30%);
  background-image: -webkit-linear-gradient(120deg, #e2230b 30%, #e7452f 30%);
  background-image: linear-gradient(-30deg, #e2230b 30%, #e7452f 30%);
  background-color: #e7452f;
  border: 1px #e2230b solid;
  border-bottom: 1px #ff614c solid;
}
.mixad .btn.client:hover {
  background-image: none;
  background-color: #e2230b;
}

.mixad .btn.media, .mixad .btn.optin {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: #ef4200 0 6px;
  -webkit-box-shadow: #ef4200 0 6px;
  box-shadow: #ef4200 0 6px;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuODQxNTA2IiB5MT0iMS4wOTE1MDYiIHgyPSIwLjE1ODQ5NCIgeTI9Ii0wLjA5MTUwNiI+PHN0b3Agb2Zmc2V0PSIzMCUiIHN0b3AtY29sb3I9IiNmMDZmMDAiLz48c3RvcCBvZmZzZXQ9IjMwJSIgc3RvcC1jb2xvcj0iI2YwODIwMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -moz-linear-gradient(120deg, #f06f00 30%, #f08200 30%);
  background-image: -webkit-linear-gradient(120deg, #f06f00 30%, #f08200 30%);
  background-image: linear-gradient(-30deg, #f06f00 30%, #f08200 30%);
  background-color: #f08200;
  border: 1px #f06f00 solid;
  border-bottom: 1px #ff9d0b solid;
}
.mixad .btn.media:hover {
  background-image: none;
  background-color: #f06f00;
}

.biz-main.mixad section:nth-child(odd) {
  background-color: #f2f2f2;
}
.biz-main.mixad .wrap-page-width {
  overflow: hidden;
  zoom: 1;
}
.biz-main.mixad h3 {
  display: block;
  text-align:center;
  font-size: 1.6em;
  font-weight: 600;
  margin: 20px auto 30px;
}

.biz-main.mixma section:nth-child(odd) {
  background-color: #f2f2f2;
}
.biz-main.mixma .wrap-page-width {
  overflow: hidden;
  zoom: 1;
}
.biz-main.mixma h3 {
  display: block;
  text-align:center;
  font-size: 1.6em;
  font-weight: 600;
  margin: 20px auto 30px;
}

#npa-toplead {
  background-color: #f8f8f8;
  color: #212121;
}
#npa-toplead h2 {
  font-size: 2.4em;
  text-align: center;
  margin: 20px auto 10px;
}
#npa-toplead .service-img {
  display: block;
  max-width: 800px;
  padding: 0 30px;
  margin: 0 auto 40px;
}
#npa-toplead .intro {
  background: url("../images/bg-film-rptY.png") left top 8px repeat-y;
  background-size: 100%;
  background-color: #ffffff;
  max-width: 800px;
  margin: 0 auto 50px;
  padding-bottom: 34px;
  text-align: center;
}
#npa-toplead .intro p {
  padding: 0 70px;
  text-align:left;
  line-height:1.75;
}
#npa-toplead .intro .border-4color {
  overflow: hidden;
  zoom: 1;
  display: block;
}
#npa-toplead .intro .border-4color li {
  display: block;
  float: left;
  width: 25%;
  height: 4px;
}
#npa-toplead .intro .border-4color li:nth-child(1) {
  background-color: #004ea2;
}
#npa-toplead .intro .border-4color li:nth-child(2) {
  background-color: #d70c25;
}
#npa-toplead .intro .border-4color li:nth-child(3) {
  background-color: #5abaeb;
}
#npa-toplead .intro .border-4color li:nth-child(4) {
  background-color: #f08200;
}
@media (max-width: 750px) {
  #npa-toplead .wrap-page-width {
    padding-top: 15px;
    padding-bottom: 20px;
  }
  #npa-toplead h2 {
    font-size: 7vw;
    text-align: center;
    margin: 0 auto 10px;
    border-bottom: none;
    padding-left: 0;
    padding-right: 0;
  }
  #npa-toplead h2 span {
    font-size: 4.7vw;
  }
  #npa-toplead .service-img {
    max-width: 100%;
    padding: 0 10px;
    margin-bottom: 40px;
  }
  #npa-toplead .intro {
    background: #fff;
    margin-bottom: 0;
  }
  #npa-toplead .intro h3 {
    margin: 20px auto 15px;
    border-bottom: none;
    font-size: 1.4em;
  }
  #npa-toplead .intro p {
    padding: 0 20px;
    text-align: left;
  }
}

#npa-format .format-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  -js-display: flex;
}
#npa-format .format-list li {
  -webkit-flex: 0 1 26%;
  flex: 0 1 26%;
  margin: 40px 3% 0;
  display: block;
}
#npa-format .format-list h4 {
  background-color: #f2f2f2;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
#npa-format .format-list .txt {
  text-align: center;
  min-height: 2.4em;
}
#npa-format .format-list .img {
  padding: 20px 30px;
}
@media (max-width: 750px) {
  #npa-format .wrap-page-width {
    padding: 20px 10px;
  }
  #npa-format .format-list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
    -js-display: flex;
  }
  #npa-format .format-list li {
    -webkit-flex: 0 1 44%;
    flex: 0 1 44%;
    margin: 20px auto;
    display: block;
  }
  #npa-format .format-list li .img {
    padding: 20px 15px;
  }
  #npa-format .format-list li.type3 .txt, #npa-format .format-list li.type4 .txt {
    min-height: 5em;
  }
}

#npa-merit h4 {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: block;
  text-align: center;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 1.2em;
  background-color: #ffffff;
}
#npa-merit .merit-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
  -js-display: flex;
  margin-bottom: 60px;
}
#npa-merit .merit-list li {
  overflow: hidden;
  zoom: 1;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-flex: 0 1 48%;
  flex: 0 1 48%;
  flex-basis: 48%;
  max-width: 48%;
  display: block;
  padding: 25px 30px;
  margin-top: 30px;
  background-color: #ffffff;
}
#npa-merit .merit-list li .num {
  display: block;
  float: left;
  margin-top: 3px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  line-height: 18px;
  text-align: center;
  background-color: #212121;
  color: #ffffff;
  font-weight: 500;
  font-size: .9em;
}
#npa-merit .merit-list li h5 {
  margin-bottom: 20px;
  font-weight: bold;
  margin-left: 30px;
}
#npa-merit .client li .num {
  background-color: #f05e1d;
}
#npa-merit .media li .num {
  background-color: #0073ff;
}
#npa-merit h4 {
  font-size: 1.2em;
  color: #ffffff;
}
#npa-merit .client h4 {
  background-color: #f05e1d;
}
#npa-merit .media h4 {
  margin-top:20px;
  background-color: #0073ff;
}
@media (max-width: 750px) {
  #npa-merit .merit-list {
    margin-bottom: 0;
  }
  #npa-merit .merit-list li {
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
    flex-basis: 100%;
    max-width: 100%;
    padding: 20px 25px;
    margin-top: 20px;
  }
  #npa-merit .merit-list li .num {
    margin-top: 2px;
    font-weight: 600;
    line-height: 21px;
  }
}

@media (min-width: 751px) {
  #npa-flow .flow-list {
    overflow: hidden;
    zoom: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: strech;
    align-items: strech;
    -js-display: flex;
    margin-bottom: 40px;
    padding: 0 10px;
    /* Step-Num ----------- */
  }
  #npa-flow .flow-list li {
    -webkit-flex: 0 1 25%;
    flex: 0 1 25%;
    display: block;
    margin-right: 3%;
    text-align: center;
  }
  #npa-flow .flow-list li:first-of-type {
    margin-left: 0;
  }
  #npa-flow .flow-list li:last-of-type {
    margin-right: 0;
  }
  #npa-flow .flow-list .box {
    height: 300px;
    position: relative;
    background-color: #ffffff;
    border: 3px solid #f2f2f2;
    border-top: none;
    padding: 20px 10% 30px;
  }
  #npa-flow .flow-list .box a {
    color: #f05e1d;
  }
  #npa-flow .flow-list li:not(:last-of-type) .box::before,
  #npa-flow .flow-list li:not(:last-of-type) .box::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    top: 106px;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }
  #npa-flow .flow-list li:not(:last-of-type) .box::before {
    right: -23px;
    border-left: 20px solid #f2f2f2;
  }
  #npa-flow .flow-list li:not(:last-of-type) .box::after {
    right: -19px;
    border-left: 20px solid #ffffff;
  }
  #npa-flow .flow-list .num {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #212121;
    padding: 5px 8px;
  }
  #npa-flow .flow-list .flow1 .num {
    background-color: #ff6e03;
  }
  #npa-flow .flow-list .flow2 .num {
    background-color: #ff5603;
  }
  #npa-flow .flow-list .flow3 .num {
    background-color: #ea4800;
  }
  #npa-flow .flow-list .flow4 .num {
    background-color: #e63a05;
  }
  #npa-flow .flow-list .flow-img {
    display: block;
    width: 70px;
    height: 70px;
    margin: 10px auto 20px;
    text-align: center;
  }
  #npa-flow .flow-list .flow1 .flow-img {
    margin-top: 15px;
  }
  #npa-flow .flow-list .flow2 .flow-img {
    width: 60px;
  }
  #npa-flow .flow-list .flow3 .flow-img {
    margin-top: 15px;
  }
  #npa-flow .flow-list .flow4 .flow-img {
    width: 60px;
  }
  #npa-flow .flow-list .flow-title {
    text-align: center;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.4;
    display: table;
    height: 70px;
    width: 100%;
  }
  #npa-flow .flow-list .flow-detail {
    font-size: .9em;
  }
  #npa-flow .media h3 {
    margin-top: 100px;
  }
  #npa-flow .media .flow2 .flow-img {
    width: 80px;
    height: 60px;
    margin-top: 20px;
  }
}
@media (max-width: 750px) {
  #npa-flow .wrap-page-width {
    padding-bottom: 20px;
  }
  #npa-flow h3 {
    text-align: center;
  }
  #npa-flow .flow-list {
    margin-bottom: 40px;
    /* Step-Num ----------- */
  }
  #npa-flow .flow-list li {
    display: table;
    width: 100%;
    background-color: #ffffff;
    position: relative;
    border: 3px solid #f2f2f2;
    margin-bottom: 24px;
  }
  #npa-flow .flow-list .box {
    padding: 15px 25px 15px;
  }
  #npa-flow .flow-list .box a {
    color: #f05e1d;
  }
  #npa-flow .flow-list li:not(:last-of-type)::before,
  #npa-flow .flow-list li:not(:last-of-type)::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 50%;
    margin-left: -20px;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
  }
  #npa-flow .flow-list li:not(:last-of-type)::before {
    bottom: -23px;
    border-top: 20px solid #f2f2f2;
  }
  #npa-flow .flow-list li:not(:last-of-type)::after {
    bottom: -19px;
    border-top: 20px solid #ffffff;
  }
  #npa-flow .flow-list .num {
    display: table-cell;
    width: 50px;
    text-align: center;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
  }
  #npa-flow .flow-list .flow1 .num {
    background-color: #ff6e03;
  }
  #npa-flow .flow-list .flow2 .num {
    background-color: #ff5603;
  }
  #npa-flow .flow-list .flow3 .num {
    background-color: #ea4800;
  }
  #npa-flow .flow-list .flow4 .num {
    background-color: #e63a05;
  }
  #npa-flow .flow-list .flow-img {
    display: block;
    width: 50px;
    height: 50px;
    float: left;
    margin-top: 10px;
  }
  #npa-flow .flow-list .flow2 .flow-img {
    width: 40px;
  }
  #npa-flow .flow-list .flow-title {
    display: table-cell;
    text-align: left;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.4;
    height: 54px;
    vertical-align: middle;
    padding-left: 20px;
  }
  #npa-flow .flow-list .flow-detail {
    display: block;
    clear: both;
    text-align: left;
    font-size: .9em;
    margin: 15px auto 10px;
  }
  #npa-flow .media h3 {
    margin-top: 60px;
  }
  #npa-flow .media .flow2 .flow-img {
    width: 50px;
    margin-top: 10px;
  }
}

#npa-faq {
  overflow: hidden;
  zoom: 1;
}
#npa-faq h4 {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: block;
  text-align: center;
  padding: 12px 20px;
  font-weight: bold;
  background-color: #ffffff;
  margin-bottom: 30px;
}
#npa-faq .client {
  width: 50%;
  float: left;
  padding-right: 15px;
}
#npa-faq .media {
  width: 50%;
  float: right;
  padding-left: 15px;
}
#npa-faq .faq-list dt {
  margin-left: 36px;
  margin-bottom: 20px;
}
#npa-faq .faq-list dt i {
  display: block;
  float: left;
  margin-top: 2px;
  margin-left: -36px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  text-align: center;
  background-color: #212121;
  color: #ffffff;
  font-weight: 600;
  font-size: .9em;
}
#npa-faq .faq-list dd {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #ffffff;
  padding: 15px 20px;
  margin-bottom: 50px;
  font-size: .9em;
}
#npa-faq .client dt i {
  background-color: #f05e1d;
}
#npa-faq .media dt i {
  background-color: #0073ff;
}
@media (max-width: 750px) {
  #npa-faq .wrap-page-width {
    padding-bottom: 0;
  }
  #npa-faq h4 {
    color: #ffffff;
  }
  #npa-faq .client h4 {
    background-color: #f05e1d;
  }
  #npa-faq .media h4 {
    background-color: #0073ff;
  }
  #npa-faq .client,
  #npa-faq .media {
    float: none;
    width: 100%;
    padding: 0;
  }
  #npa-faq .client {
    margin-bottom: 50px;
  }
  #npa-faq .faq-list dt i {
    margin-top: 0;
    line-height: 23px;
  }
  #npa-faq .faq-list dd {
    font-size: 1em;
    margin-bottom: 30px;
  }
}

@media (min-width: 751px) {
  #adv-toplead {
    background: url("../images/axma-bg.png") top 100% center no-repeat;
    background-color: #0073ff;
    color: #ffffff;
  }
  #adv-toplead h2 {
    font-size: 2.4em;
    text-align: center;
    margin: 10px auto 10px;
  }
  #adv-toplead .intro {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
  }
  #adv-toplead .intro h3 {
    display: inline-block;
    font-size: 1.6em;
    font-weight: 600;
    margin:20px 0;
    padding-bottom: 10px;
  }
}
@media (max-width: 750px) {
  #adv-toplead {
    background: url("../images/axma-bg.png") top 100% center no-repeat;
    background-size: cover;
    background-color: #0073ff;
    color: #ffffff;
  }
  #adv-toplead h2 {
    font-size: 1.6em;
    text-align: center;
    margin: 30px auto 0px;
    border: none;
  }
  #adv-toplead .intro {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (min-width: 751px) {
  #mixasp-toplead {
    background: url("../images/footer-bg.jpg") top 100% center no-repeat;
    background-color: #000;
    color: #ffffff;
  }
  #mixasp-toplead h2 {
    font-size: 2.4em;
    text-align: center;
    margin: 10px auto 10px;
  }
  #mixasp-toplead .intro {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
  }
  #mixasp-toplead .intro h3 {
    display: inline-block;
    font-size: 1.6em;
    font-weight: 600;
    margin:20px 0;
    padding-bottom: 10px;
  }
}
@media (max-width: 750px) {
  #mixasp-toplead {
    background: url("../images/footer-bg.jpg") top 100% center no-repeat;
    background-color: #000;
    color: #ffffff;
  }
  #mixasp-toplead h2 {
    font-size: 1.6em;
    text-align: center;
    margin: 30px auto 0px;
    border: none;
  }
  #mixasp-toplead .intro {
    text-align: center;
    margin-bottom: 30px;
  }
}
.mixma .main-txt p {
  margin: 1em 0;
}

@media (max-width: 750px) {
  .mixma .main-txt {
    text-align: left;
    margin: 0 auto;
  }
  .mixma .main-txt p {
    margin: .5em;
  }
}
.adtype-list {
  overflow: hidden;
  zoom: 1;
  display: block;
}
@media (min-width: 751px) {
  .adtype-list h4 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 1em;
  }
  .adtype-list h4 + p {
    display: block;
    float: left;
    width: 50%;
  }
  .adtype-list li {
    overflow: hidden;
    zoom: 1;
    display: block;
    float: left;
    width: 48%;
    margin-right: 28px;
    background-color: #ffffff;
    padding: 20px 30px 30px;
    height: 350px;
    margin-bottom: 40px;
  }
  .adtype-list li:nth-child(2n+1) {
    clear: both;
  }
  .adtype-list li:nth-child(2n) {
    margin-right: 0;
  }
  .adtype-list .ad-img {
    display: block;
    float: right;
    width: 50%;
    padding-left: 30px;
  }
  .adtype-list .bnrtype1,
  .adtype-list .bnrtype2,
  .adtype-list .bnrtype3 {
    display: block;
    width: 50%;
    float: left;
    margin-bottom: 20px;
  }
  .adtype-list .bnrtype1 p,
  .adtype-list .bnrtype2 p,
  .adtype-list .bnrtype3 p {
    font-size: 0.8em;
    margin-bottom: 0.5em;
  }
  .adtype-list .bnrtype1 {
    padding-right: 30px;
  }
  .adtype-list .caution {
    clear: both;
    margin: 30px 0;
  }
}
@media (max-width: 750px) {
  .adtype-list h4 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 1em;
  }
  .adtype-list h4 + p {
    display: block;
    float: left;
    width: 65%;
  }
  .adtype-list li {
    overflow: hidden;
    zoom: 1;
    display: block;
    width: 100%;
    background-color: #ffffff;
    padding: 20px 25px 30px;
    margin-bottom: 40px;
    text-align: left;
  }
  .adtype-list .ad-img {
    display: block;
    float: right;
    padding-left: 10px;
    width: 30%;
    min-width: 80px;
  }
  .adtype-list .bnrtype1,
  .adtype-list .bnrtype2,
  .adtype-list .bnrtype3 {
    display: block;
    width: 90%;
    float: none;
    margin-bottom: 20px;
  }
  .adtype-list .bnrtype1 p,
  .adtype-list .bnrtype2 p,
  .adtype-list .bnrtype3 p {
    font-size: 1em;
    margin-bottom: 1em;
  }
}

#adv-perform {
  padding: 10px 0 30px;
  text-align: center;
}

#adv-perform h4 {
  display:block;
  margin-bottom:20px;
}
#adv-perform h4 a{
  display:block;
  font-size: 1.2em;
  color: #ffffff;
  padding:20px;
}
#adv-perform h4 .client{
  background-color: #f05e1d;
}
#adv-perform h4 .media{
  margin-top:20px;
  background-color: #0073ff;
}


#mixma-result .wrap-page-width {
  max-width:420px;
  padding-bottom:0;
  margin-bottom:0;
}
@media (max-width: 750px) {
  #mixma-result .wrap-page-width {
    max-width: 350px;
  }
}
#mixma-result h2{
  text-align:center;
  padding-top:0px;
  margin-bottom:0px;
}
#mixma-result tbody th, #mixma-result tbody td {
  padding: 5px;
}
#mixma-result tbody th {
  font-weight: 600;
  min-width: 100px;
  vertical-align: top;
  text-align:right;
  padding-right:20px;
}
#mixma-result tbody td p {
  margin-top: .5em;
}
#mixma-result tbody td p:first-child {
  margin-top: 0;
}
@media (max-width: 750px) {
  #mixma-result tbody th, #mixma-result tbody td {
    font-size: 0.9em;
  }
  #mixma-result tbody th {
  min-width: 100px;
  padding-right:20px;
  }
  #mixma-result tbody td {
    padding-left: 0;
    padding-right: 0;
  }
}


#adv-adtype .lead-txt {
  text-align: center;
  margin-bottom:30px;
}



#adv-flow .flow-list .num {
  color: #ffffff;
  background-color: #e2e2e2;
  width: 80px;
  height: 80px;
  text-align: center;
  display: block;
  margin: 0 auto 20px;
  border-radius: 50%;
  font-size: 45px;
  font-weight: 500;
}
#adv-flow .flow-list li {
  display: block;
  margin-bottom: 20px;
  background-image: url("../images/dot-tate.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 9.33333px;
  padding-top: 52px;
}
#adv-flow .flow-list li .box {
  overflow: hidden;
  zoom: 1;
  display: block;
  background-color: #ffffff;
  padding: 40px 50px;
}
#adv-flow .flow-list .flow-img {
  display: block;
  float: left;
  width: 40%;
  padding-right: 50px;
}
#adv-flow .flow-list .flow-title {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  #adv-flow .flow-list .num {
    color: #ffffff;
    background-color: #e2e2e2;
    width: 45px;
    height: 45px;
    text-align: center;
    display: block;
    margin: 0 auto 10px;
    border-radius: 50%;
    font-size: 25px;
    font-weight: 500;
  }
  #adv-flow .flow-list li {
    display: block;
    margin-bottom: 20px;
    background-image: url("../images/dot-tate.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 9.33333px;
    padding-top: 52px;
  }
  #adv-flow .flow-list li .box {
    padding: 30px 25px;
  }
  #adv-flow .flow-list .flow-img {
    display: block;
    float: none;
    width: 80%;
    padding-right: 0;
    margin: 10px auto 20px;
  }
  #adv-flow .flow-list .flow-title {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #f2f2f2;
    padding: 10px 1em;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 1em;
  }
  #adv-flow .flow-list .flow-detail {
    text-align: left;
    padding: 0 0.5em;
  }
}
