@charset "UTF-8";
@import url(//fonts.googleapis.com/css?family=Lato:400,700,900);
@import url(//fonts.googleapis.com/css?family=Roboto:400,700,900);
@import url("viprflow.css");
@import url("spmenu.css");
@import url("fixedmenu.css");

.u-clearfix::before,
.u-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.luxbar-default {
  width: 100%;
  position: relative;
  box-shadow: none;
}

.luxbar-static {
  box-shadow: none;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.luxbar-static .luxbar-checkbox:checked ~ .luxbar-menu {
  position: absolute;
}

.luxbar-fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: none;
}

.luxbar-fixed-bottom {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  box-shadow: none;
}

.luxbar-hamburger span, .luxbar-hamburger span::before, .luxbar-hamburger span::after {
  display: block;
  height: 2px;
  width: 26px;
  transition: 0.4s 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: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.luxbar-menu-left .luxbar-navigation, .luxbar-menu-left .luxbar-header {
  justify-content: flex-start;
}

.luxbar-menu-right .luxbar-hamburger {
  margin-left: auto;
}

.luxbar-brand {
  font-size: 1.6em;
  padding: 18px 24px 18px 24px;
}

.luxbar-menu {
  min-height: 80px;
  transition: 0.4s ease;
  width: 100%;
}

.luxbar-navigation {
  display: flex;
  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: 80px;
}
.luxbar-item a {
  padding: 18px 24px 18px 24px;
  display: block;
}

.luxbar-hamburger {
  padding: 18px 24px 18px 24px;
  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: 80px;
}
.luxbar-checkbox:checked ~ .luxbar-menu {
  transition: height 0.4s ease;
  height: 100vh;
  overflow: auto;
}

.dropdown {
  position: relative;
  height: auto;
  min-height: 80px;
}
.dropdown:hover > ul {
  position: relative;
  display: block;
  min-width: 100%;
}
.dropdown > a::after {
  position: absolute;
  content: '';
  right: 10px;
  top: 36px;
  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: 40px;
  padding: 5px 10px 5px 40px;
}
.dropdown > ul .luxbar-item a {
  min-height: 40px;
  line-height: 40px;
  padding: 0;
}

@media screen and (min-width: 751px) {
  .luxbar-navigation {
    flex-flow: row;
    justify-content: flex-end;
  }

  .luxbar-hamburger {
    display: none;
  }

  .luxbar-checkbox:not(:checked) ~ .luxbar-menu {
    overflow: visible;
  }
  .luxbar-checkbox:checked ~ .luxbar-menu {
    height: 80px;
  }

  .luxbar-menu .luxbar-item {
    border-top: 0;
  }

  .luxbar-menu-right .luxbar-header {
    margin-right: auto;
  }

  .dropdown {
    height: 80px;
  }
  .dropdown:hover > ul {
    position: absolute;
    left: 0;
    top: 80px;
    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 {
  transform: rotate(225deg);
}
.luxbar-checkbox:checked + .luxbar-menu .luxbar-hamburger-doublespin span::after {
  transform: rotate(-225deg);
}

.luxbar-checkbox:checked + .luxbar-menu .luxbar-hamburger-spin span::before {
  transform: rotate(45deg);
}
.luxbar-checkbox:checked + .luxbar-menu .luxbar-hamburger-spin span::after {
  transform: rotate(-45deg);
}

/******* color variables *******/
/******* default dark *******/
.luxbar-menu-dark,
.luxbar-menu-dark .dropdown ul {
  background-color: #212121;
  color: #fff;
}

.luxbar-menu-dark .active,
.luxbar-menu-dark .luxbar-item:hover {
  background-color: #424242;
}
.luxbar-menu-dark .luxbar-hamburger span,
.luxbar-menu-dark .luxbar-hamburger span::before,
.luxbar-menu-dark .luxbar-hamburger span::after {
  background-color: #fff;
}

/******* default light *******/
.luxbar-menu-light,
.luxbar-menu-light .dropdown ul {
  background-color: #e0e0e0;
  color: #212121;
}

.luxbar-menu-light .active,
.luxbar-menu-light .luxbar-item:hover {
  background-color: #bdbdbd;
}
.luxbar-menu-light .luxbar-hamburger span,
.luxbar-menu-light .luxbar-hamburger span::before,
.luxbar-menu-light .luxbar-hamburger span::after {
  background-color: #212121;
}

/******* default material-red *******/
.luxbar-menu-material-red,
.luxbar-menu-material-red .dropdown ul {
  background-color: #b71c1c;
  color: #fff;
}

.luxbar-menu-material-red .active,
.luxbar-menu-material-red .luxbar-item:hover {
  background-color: #c62828;
}
.luxbar-menu-material-red .luxbar-hamburger span,
.luxbar-menu-material-red .luxbar-hamburger span::before,
.luxbar-menu-material-red .luxbar-hamburger span::after {
  background-color: #fff;
}

/******* default material-indigo *******/
.luxbar-menu-material-indigo,
.luxbar-menu-material-indigo .dropdown ul {
  background-color: #1a237e;
  color: #fff;
}

.luxbar-menu-material-indigo .active,
.luxbar-menu-material-indigo .luxbar-item:hover {
  background-color: #283593;
}
.luxbar-menu-material-indigo .luxbar-hamburger span,
.luxbar-menu-material-indigo .luxbar-hamburger span::before,
.luxbar-menu-material-indigo .luxbar-hamburger span::after {
  background-color: #fff;
}

/******* default material-green *******/
.luxbar-menu-material-green,
.luxbar-menu-material-green .dropdown ul {
  background-color: #1b5e20;
  color: #fff;
}

.luxbar-menu-material-green .active,
.luxbar-menu-material-green .luxbar-item:hover {
  background-color: #2e7d32;
}
.luxbar-menu-material-green .luxbar-hamburger span,
.luxbar-menu-material-green .luxbar-hamburger span::before,
.luxbar-menu-material-green .luxbar-hamburger span::after {
  background-color: #fff;
}

/******* default material-amber *******/
.luxbar-menu-material-amber,
.luxbar-menu-material-amber .dropdown ul {
  background-color: #ff6f00;
  color: #fff;
}

.luxbar-menu-material-amber .active,
.luxbar-menu-material-amber .luxbar-item:hover {
  background-color: #ff8f00;
}
.luxbar-menu-material-amber .luxbar-hamburger span,
.luxbar-menu-material-amber .luxbar-hamburger span::before,
.luxbar-menu-material-amber .luxbar-hamburger span::after {
  background-color: #fff;
}

/******* default material-brown *******/
.luxbar-menu-material-brown,
.luxbar-menu-material-brown .dropdown ul {
  background-color: #3e2723;
  color: #fff;
}

.luxbar-menu-material-brown .active,
.luxbar-menu-material-brown .luxbar-item:hover {
  background-color: #4e342e;
}
.luxbar-menu-material-brown .luxbar-hamburger span,
.luxbar-menu-material-brown .luxbar-hamburger span::before,
.luxbar-menu-material-brown .luxbar-hamburger span::after {
  background-color: #fff;
}

/******* default material-bluegrey *******/
.luxbar-menu-material-bluegrey,
.luxbar-menu-material-bluegrey .dropdown ul {
  background-color: #263238;
  color: #fff;
}

.luxbar-menu-material-bluegrey .active,
.luxbar-menu-material-bluegrey .luxbar-item:hover {
  background-color: #37474f;
}
.luxbar-menu-material-bluegrey .luxbar-hamburger span,
.luxbar-menu-material-bluegrey .luxbar-hamburger span::before,
.luxbar-menu-material-bluegrey .luxbar-hamburger span::after {
  background-color: #fff;
}

/******* default material-cyan *******/
.luxbar-menu-material-cyan,
.luxbar-menu-material-cyan .dropdown ul {
  background-color: #006064;
  color: #fff;
}

.luxbar-menu-material-cyan .active,
.luxbar-menu-material-cyan .luxbar-item:hover {
  background-color: #00838f;
}
.luxbar-menu-material-cyan .luxbar-hamburger span,
.luxbar-menu-material-cyan .luxbar-hamburger span::before,
.luxbar-menu-material-cyan .luxbar-hamburger span::after {
  background-color: #fff;
}

/* ---------------------------------------------------
 reset
--------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strong, sub, sup, var,
b, u, i,
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: medium;
}

body {
  font: 62.5%/1.5 Helvetica, Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

dt, dd, li, caption, th, td, h1, h2, h3, h4, h5, h6, p, address {
  font-size: 1em;
}

dd p, dd dt, dd dd, dd li, dd th, dd td, dd select, dd textarea, dd input, li p,
li dt, li dd, li li, li th, li td, li select, li textarea, li input, td p,
td dt, td dd, td li, td th, td td, td select, td textarea, td input,
p select, p input, p textarea {
  font-size: 1em;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

th {
  font-weight: bold;
}

th, td {
  vertical-align: top;
}

input, textarea, select {
  font-family: Helvetica, Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

input, textarea {
  margin: 0;
  font-size: 100%;
}

input[type="image"] {
  cursor: pointer;
  vertical-align: top;
  /*zoom: 0.5;*/
}

textarea {
  resize: vertical;
}

address {
  font-style: normal;
  font-weight: normal;
}

img {
  border: none;
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
  /*zoom: 0.5;*/
}

object, embed, iframe {
  vertical-align: top;
  outline: none;
}

em, strong {
  font-style: normal;
  font-weight: bold;
}

sup, sub {
  font-size: 0.75em;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

/* IE11 */
main {
  display: block;
}

/* ---------------------------------------------------
 link
--------------------------------------------------- */
a,
a:hover,
a:active,
a:visited {
  text-decoration: none;
}

/* ---------------------------------------------------
 clearfix
--------------------------------------------------- */
header:after,
footer:after,
main:after,
section:after,
article:after,
aside:after,
nav:after,
#container:after,
#header:after,
#contents:after,
#main:after,
#aside:after,
#footer:after,
.article:after,
.section:after,
.box:after,
.row:after,
.item:after {
  content: "";
  display: block;
  clear: both;
}

/*----------------------------------------
  Values
----------------------------------------*/
/*----------------------------------------
  Media Query Mixins
----------------------------------------*/
/*----------------------------------------
  View Control
----------------------------------------*/
@media (min-width: 751px) {
  .pc-only {
    display: block !important;
  }

  .sp-only {
    display: none !important;
  }

  .tab-only {
    display: none !important;
  }

  .br-pc {
    display: block !important;
  }

  .br-sp {
    display: none !important;
  }

  .br-tab {
    display: none !important;
  }
}
@media (max-width: 750px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }

  .tab-only {
    display: none !important;
  }

  .br-pc {
    display: none !important;
  }

  .br-sp {
    display: block !important;
  }

  .br-tab {
    display: none !important;
  }
}
@media (min-width: 751px) and (max-width: 900px) {
  .tab-only {
    display: block !important;
  }

  .br-tab {
    display: block !important;
  }
}
/*----------------------------------------
  Parts Style Classes
------------------------------------------
Link
Button
List
Balloon
Hr
Iframe
Tuning

----------------------------------------*/
/*----------------------------------------
  Link
----------------------------------------*/
a, a:visited {
  color: #000000;
  -webkit-tap-highlight-color: transparent;
}

a:hover, a:active {
  color: #f60d3c;
}

a:not(.btn).link-blank {
  display: block;
  position: relative;
  padding-left: 1.8rem;
}
a:not(.btn).link-blank::before {
  position: absolute;
  display: block;
  font-family: fontAwesome;
  left: 0;
  content: '\f14c';
}

@media (min-width: 751px) {
  a:hover {
    -moz-transition-property: color;
    -o-transition-property: color;
    -webkit-transition-property: color;
    transition-property: color;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }

  .btn:hover {
    -moz-transition-property: background-color;
    -o-transition-property: background-color;
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
}
/*----------------------------------------
  Button
----------------------------------------*/
a.btn, input.btn {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  position: relative;
  background-color: #ba0c2f;
  color: #ffffff;
  padding: 16px 54px 16px 16px;
}
a.btn:hover, input.btn:hover {
  background-color: #ea0f3b;
}
a.btn.no-arr, input.btn.no-arr {
  padding: 16px 16px;
  text-align: center;
}
a.btn:not(.no-arr)::after, input.btn:not(.no-arr)::after {
  position: absolute;
  display: block;
  font-family: fontAwesome;
  content: '\f105';
  right: 18px;
  top: 50%;
  margin-top: -2.1rem;
  font-size: 2.6rem;
}
a.btn.link-blank::after, input.btn.link-blank::after {
  content: '\f14c';
  margin-top: -1.3rem;
  font-size: 1.6rem;
}
a.btn.tel::after, input.btn.tel::after {
  content: '\f095';
  margin-top: -1.6rem;
  font-size: 2rem;
}
a.btn.mail::after, input.btn.mail::after {
  content: '\f003';
  margin-top: -1.4rem;
  font-size: 1.8rem;
}
a.btn.pdf, input.btn.pdf {
  font-size: 1.6rem;
  padding: 16px 24px 16px 48px;
  text-align: center;
}
a.btn.pdf::after, input.btn.pdf::after {
  content: '\f1c1';
  margin-top: -1.6rem;
  font-size: 2rem;
  left: 18px;
  right: auto;
}
a.btn.black, input.btn.black {
  background-color: #000000;
}
a.btn.black:hover, input.btn.black:hover {
  background-color: #0d0d0d;
}

/*----------------------------------------
  List
----------------------------------------*/
.list-dot {
  display: block;
}
.list-dot li {
  list-style-type: none;
  text-indent: -1.4rem;
  margin-left: 1rem;
  margin-bottom: 4px;
}
.list-dot li:last-of-type {
  margin-bottom: 0;
}
.list-dot li::before {
  display: inline;
  content: "・";
  color: #000000;
  margin-right: 4px;
}

.list-caution {
  display: block;
  margin-left: 1.2em;
}
.list-caution li {
  list-style-type: none;
  text-indent: -1.2em;
  line-height: 1.6;
  margin-bottom: 6px;
}
.list-caution li:last-of-type {
  margin-bottom: 0;
}
.list-caution li::before {
  display: inline;
  content: "※ ";
}

.list-num {
  display: block;
}
.list-num li {
  list-style-type: decimal;
  margin-left: 2rem;
  margin-bottom: 4px;
}
.list-num li:last-of-type {
  margin-bottom: 0;
}

dl.doc dt {
  display: block;
  padding: 0 8px 16px;
  font-weight: bold;
  text-indent: -2.2rem;
  padding-left: 2.2rem;
  margin-top: 32px;
  margin-bottom: 16px;
  border-bottom: 2px solid #000000;
}
dl.doc dt:first-of-type {
  margin-top: 10px;
}
dl.doc dd {
  padding: 0 8px 16px;
}
dl.doc dd p:not(:first-of-type) {
  margin-top: 16px;
}
dl.doc ul {
  display: block;
  margin: 12px 16px 24px;
}
dl.doc .has-mark {
  text-indent: -1.8rem;
  margin-left: 1.8rem;
}
@media (max-width: 750px) {
  dl.doc dt {
    margin-top: 30px;
  }
}

/*----------------------------------------
  Balloon
----------------------------------------*/
.balloon {
  position: relative;
  display: block;
  padding: 24px;
  background-color: #e3e3e2;
}
.balloon::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
}
.balloon.top::before {
  left: 50%;
  margin-left: -12px;
  top: -11px;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #e3e3e2;
  border-left: 12px solid transparent;
}
.balloon.btm::before {
  left: 50%;
  margin-left: -12px;
  bottom: -11px;
  border-top: 12px solid #e3e3e2;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}
.balloon.left::before {
  left: -11px;
  top: 50%;
  margin-top: -12px;
  border-right: 12px solid #e3e3e2;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.balloon.right::before {
  right: -11px;
  top: 50%;
  margin-top: -12px;
  border-left: 12px solid #e3e3e2;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.balloon.black {
  background-color: #000000;
  color: #ffffff;
}
.balloon.black.top::before {
  border-bottom-color: #000000;
}
.balloon.black.btm::before {
  border-top-color: #000000;
}
.balloon.black.left::before {
  border-right-color: #000000;
}
.balloon.black.right::before {
  border-left-color: #000000;
}

.balloon-line {
  position: relative;
  display: block;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #000000;
}
.balloon-line::before, .balloon-line::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
}
.balloon-line.top::before, .balloon-line.top::after {
  left: 50%;
  margin-left: -12px;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}
.balloon-line.top::before {
  top: -12px;
  border-bottom: 12px solid #000000;
}
.balloon-line.top::after {
  top: -11px;
  border-bottom: 12px solid #ffffff;
}
.balloon-line.btm::before, .balloon-line.btm::after {
  left: 50%;
  margin-left: -12px;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}
.balloon-line.btm::before {
  bottom: -12px;
  border-top: 12px solid #000000;
}
.balloon-line.btm::after {
  bottom: -11px;
  border-top: 12px solid #ffffff;
}
.balloon-line.left::before, .balloon-line.left::after {
  top: 50%;
  margin-top: -12px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.balloon-line.left::before {
  left: -12px;
  border-right: 12px solid #000000;
}
.balloon-line.left::after {
  left: -11px;
  border-right: 12px solid #ffffff;
}
.balloon-line.right::before, .balloon-line.right::after {
  top: 50%;
  margin-top: -12px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.balloon-line.right::before {
  right: -12px;
  border-left: 12px solid #000000;
}
.balloon-line.right::after {
  right: -11px;
  border-left: 12px solid #ffffff;
}

/*----------------------------------------
  Hr
----------------------------------------*/
hr {
  border: none;
  border-top: 1px solid #dadada;
}

/*----------------------------------------
  Iframe
----------------------------------------*/
.frame-wrap-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.frame-wrap-video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.frame-wrap-widget iframe {
  width: 100%;
}

/*----------------------------------------
  Tuning
----------------------------------------*/
.red {
  color: #ba0c2f;
}

.bold {
  font-weight: bold;
}

.no-bold {
  font-weight: normal !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt50 {
  padding-top: 50px !important;
}

/*------------------------------------------------
  Common Style
--------------------------------------------------
Basic
Default Setting
Font Icon @FontAwesome
Header
Content
Intro-Flow
Footer
-------------------------------------------------*/
/*------------------------------------------------
  Basic
-------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 1.4em;
  -webkit-text-size-adjust: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Segoe UI", Meiryo, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
}

#container {
  width: 100%;
  overflow: hidden;
}

/*------------------------------------------------
  Default Setting
-------------------------------------------------*/
@media (min-width: 751px) {
  img {
    max-width: 1000px;
    width: 100%;
    height: auto;
  }

  .wrap-width {
    display: block;
    max-width: 1000px;
    min-width: 320px;
    margin: 0 auto;
    padding: 0;
  }
}
@media (max-width: 750px) {
  img {
    width: 100%;
    height: auto;
  }

  .wrap-width {
    display: block;
    max-width: 100%;
    min-width: 280px;
    margin: 0 auto;
    padding: 0;
  }
}
/*------------------------------------------------
  Font Icon @FontAwesome
-------------------------------------------------*/
.fa.before::before {
  margin-right: 0.8rem;
}

/*------------------------------------------------
  Header
-------------------------------------------------*/
@media (min-width: 751px) {
  /*--------------------------------------*/
  /* .is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    visibility: visible;
    opacity: 1;
    transition: .3s;
  } */

  .is-hide {
    visibility: hidden;
    opacity: 0;
    transition: .3s;
  }

  #header {
    background-color: #ffffff;
    z-index: 99999;
  }
  #header .wrap-width {
    position: relative;
    text-align: right;
  }
  #header #logo a {
    display: block;
    width: 97px;
    height: 97px;
    background: url('../images/../images/logo.png') no-repeat;
    background-size: 97px 97px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    top: 12px;
    left: 10px;
    z-index: 10001;
  }
}
@media all and (min-width: 751px) and (-ms-high-contrast: none) {
  #header #logo a {
    text-align: left;
    text-indent: -99999px;
  }
}
@media (min-width: 751px) {
  #header #head-info {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
  }
  #header #head-info li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    height: 48px;
    padding-top: 13px;
  }
  #header #head-info li a {
    display: block;
    text-align: center;
    border-left: 1px solid #e3e3e2;
    padding: 0 20px;
  }
  #header #head-info li:last-of-type a {
    border-right: 1px solid #e3e3e2;
  }
  #header #head-info li a i:last-of-type {
    margin-left: 8px;
  }
  #header nav {
    display: block;
    width: 100%;
    background-color: #000000;
  }
  #header #gmenu {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    color: #ffffff;
    min-width: 980px;
  }
  #header #gmenu li {
    display: inline-block\9;
    height: 0\9;
  }
  #header #gmenu li a {
    display: block;
    color: #ffffff;
    text-align: center;
    padding: 19px 18px 0;
    height: 80px;
  }
  #header #gmenu li span {
    display: block;
    color: #808080;
    font-size: 1rem;
    font-weight: bold;
  }
  #header #gmenu li:hover,
  #header #gmenu li.cur {
    -moz-transition-property: background-color;
    -o-transition-property: background-color;
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    background-color: #ba0c2f;
    color: #ffffff;
  }
  #header #gmenu li:hover span,
  #header #gmenu li.cur span {
    color: #f4828d;
  }
}
@media (min-width: 751px) and (min-width: 751px) and (max-width: 900px) {
  #header #header-info a {
    padding: 0 15px;
  }
  #header #gmenu {
    @inclucde justify-content(space-between);
    min-width: 0;
  }
  #header #gmenu li a {
    font-size: 1.3rem;
    padding: 19px 12px 0;
  }
  #header #gmenu li span {
    font-size: 1rem;
  }
  #header #gmenu .course a {
    line-height: 1.5;
  }
  #header #gmenu .course span {
    display: none;
  }
}
@media (min-width: 751px) {
  /*--------------------------------------*/
}
/*--------------------------------------*/
@media (max-width: 750px) {
  /*--------------------------------------*/
  nav {
    display: block;
    position: relative;
    width: 100%;
    background-color: transparent;
  }

  .luxbar-mytheme .luxbar-menu,
  .luxbar-mytheme .luxbar-mytheme .dropdown ul {
    background-color: transparent;
    color: #ffffff;
  }
  .luxbar-mytheme .luxbar-header {
    -webkit-align-items: normal;
    align-items: normal;
    height: 60px;
    position: relative;
    width: auto;
  }
  .luxbar-mytheme .luxbar-hamburger {
    -moz-border-radius: 0 0 0 2px;
    -webkit-border-radius: 0;
    border-radius: 0 0 0 2px;
    padding: 30px 20px;
    position: relative;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .luxbar-mytheme .luxbar-hamburger span,
  .luxbar-mytheme .luxbar-hamburger span::before,
  .luxbar-mytheme .luxbar-hamburger span::after {
    background-color: #fff;
  }
  .luxbar-mytheme .luxbar-hamburger span::before {
    margin-top: -9px;
  }
  .luxbar-mytheme .luxbar-hamburger span::after {
    margin-top: 9px;
  }
  .luxbar-mytheme li a {
    display: none;
  }

  .luxbar-fixed {
    z-index: 20000;
  }

  .luxbar-checkbox:checked ~ .luxbar-menu.luxbar-mytheme {
    background: url(../images/bg-logo.png) no-repeat left -18px top -10px;
    background-size: 65% auto;
    background-color: #ba0c2f;
  }
  .luxbar-checkbox:checked ~ .luxbar-menu.luxbar-mytheme .luxbar-hamburger {
    background-color: #ba0c2f;
  }
  .luxbar-checkbox:checked ~ .luxbar-menu.luxbar-mytheme .luxbar-header,
  .luxbar-checkbox:checked ~ .luxbar-menu.luxbar-mytheme .luxbar-navigation {
    -js-display: flex;
  }
  .luxbar-checkbox:checked ~ .luxbar-menu.luxbar-mytheme .luxbar-navigation {
    margin-left: 15%;
  }
  .luxbar-checkbox:checked ~ .luxbar-menu.luxbar-mytheme .luxbar-header {
    margin-bottom: 16px;
  }
  .luxbar-checkbox:checked ~ .luxbar-menu.luxbar-mytheme .luxbar-navigation li {
    height: 60px;
  }
  .luxbar-checkbox:checked ~ .luxbar-menu.luxbar-mytheme .luxbar-navigation li a {
    display: block;
    position: relative;
    padding: 8px 24px 8px;
    text-align: right;
    color: #ffffff;
    border-bottom: 1px solid #f01340;
  }
  .luxbar-checkbox:checked ~ .luxbar-menu.luxbar-mytheme .luxbar-navigation li a::before {
    position: absolute;
    display: block;
    font-family: fontAwesome;
    content: '\f105';
    left: 0;
    top: 50%;
    margin-top: -2.1rem;
    font-size: 2.6rem;
    color: #f1224b;
  }
  .luxbar-checkbox:checked ~ .luxbar-menu.luxbar-mytheme .luxbar-navigation li a span {
    display: block;
    font-size: 1.2rem;
    color: #000000;
  }
  .luxbar-checkbox:checked ~ .luxbar-menu.luxbar-mytheme .luxbar-navigation li:last-of-type a {
    border-bottom: none;
  }

  /*--------------------------------------*/
}
/*--------------------------------------*/
/*------------------------------------------------
  Content
-------------------------------------------------*/
@media (min-width: 751px) {
  #main {
    margin-top: 128px;
  }
}

/*--------------------------------------*/
/*------------------------------------------------
  Footer
-------------------------------------------------*/
@media (min-width: 751px) {
  /*--------------------------------------*/
  #footer {
    width: 100%;
    display: block;
  }
  #footer .fixed-contact {
    display: none;
    visibility: hidden;
  }
  #footer .contact {
    background-color: #ba0c2f;
    color: #ffffff;
  }
  #footer .contact p {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    position: relative;
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    padding-top: 5px;
  }
  #footer .contact p span {
    display: block;
    font-size: 1.3rem;
    font-weight: normal;
  }
  #footer .contact .tel p::before,
  #footer .contact .mail p::before {
    position: absolute;
    display: block;
    font-family: fontAwesome;
    top: 50%;
    font-size: 48px;
    font-weight: 400;
  }
  #footer .contact .tel p::before {
    -moz-transform: rotate(16deg);
    -ms-transform: rotate(16deg);
    -webkit-transform: rotate(16deg);
    transform: rotate(16deg);
    content: '\f095';
    left: -54px;
    margin-top: -36px;
  }
  #footer .contact .mail p::before {
    content: '\f003';
    left: -70px;
    margin-top: -36px;
  }
  #footer .contact .flexible {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #footer .contact a {
    -webkit-flex: 1;
    flex: 1;
    display: inline-block;
    /* non-flexbox browsers */
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
    min-width: 50%;
    margin: 20px 0;
  }
  #footer .contact a:hover {
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
  }
  #footer .contact .tel {
    border-right: 1px solid #ea0f3b;
    padding-left: 30px;
  }
  #footer .contact .tel .tel_txt {
    font-size: 2.4rem;
    font-weight: bold;
  }
  #footer .contact .mail {
    padding-left: 60px;
  }
  #footer .footer-vidual {
    background-color: #4b4b4a;
    background: url("../images/bg-footer.jpg") no-repeat center top;
    background-size: cover;
    padding: 1px 0;
  }
  #footer .ft-logo a {
    display: block;
    width: 80px;
    height: 80px;
    background: url('../images/../images/logo-footer.png') no-repeat;
    background-size: 80px 80px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    margin: 40px auto;
  }
}
@media all and (min-width: 751px) and (-ms-high-contrast: none) {
  #footer .ft-logo a {
    text-align: left;
    text-indent: -99999px;
  }
}
@media (min-width: 751px) {
  #footer .sitemap {
    width: 100%;
    padding: 0 20px;
  }
}
@media (min-width: 751px) and (min-width: 751px) and (max-width: 900px) {
  #footer .sitemap {
    padding: 0 30px;
  }
}
@media (min-width: 751px) {
  #footer .sitemap.flexible {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    text-align: center;
    margin: 50px auto;
  }
  #footer .sitemap.flexible .block {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    display: inline-block;
    /* non-flexbox browsers */
    text-align: left;
    font-size: 1.3rem;
    margin-left: .8em;
  }
  #footer .sitemap.flexible .block:first-of-type {
    margin-left: 0;
  }
  #footer .sitemap p {
    margin-bottom: 20px;
  }
  #footer .sitemap a {
    color: #ffffff;
  }
  #footer .sitemap li {
    margin-bottom: 6px;
  }
  #footer .sitemap li a {
    color: #8b8d8e;
  }
  #footer .sitemap .single-link {
    margin-bottom: 10px;
  }
  #footer .sitemap ul + .single-link {
    margin-top: 30px;
  }
  #footer .fnavi {
    display: block;
    padding: 0 20px;
    background-color: #000000;
    color: #ffffff;
    font-size: 1.3rem;
  }
  #footer .fnavi a {
    color: #ffffff;
    font-size: 1.3rem;
  }
  #footer .fnavi .flexible {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
  }
  #footer .fnavi .flexible .block {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
    display: inline-block;
    /* non-flexbox browsers */
    font-size: 1.3rem;
    margin-left: .8em;
    height: 96px;
  }
  #footer .fnavi .sns {
    text-align: left;
    padding-top: 28px;
  }
  #footer .fnavi .sns li {
    display: inline-block;
    margin-right: 24px;
  }
  #footer .fnavi .sns li i {
    font-size: 32px;
  }
  #footer .fnavi .sns li:last-of-type {
    margin-right: 0;
  }
  #footer .fnavi .copyright {
    text-align: left;
    padding-top: 36px;
  }
  #footer .fnavi .copyright small {
    font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
    color: #8b8d8e;
  }
  #footer .fnavi .links {
    text-align: right;
    padding-top: 36px;
  }
  #footer .fnavi .links li {
    display: inline-block;
    margin-right: 24px;
  }
  #footer .fnavi .links li:last-of-type {
    margin-right: 0;
  }
  #footer .official-logo {
    margin: 40px auto;
    text-align: center;
  }
  #footer .official-logo ul {
    display: inline-block;
  }
  #footer .official-logo li {
    display: table-cell;
    vertical-align: middle;
    padding-right: 50px;
  }
  #footer .official-logo li:last-of-type {
    padding-right: 0;
  }
  #footer #store-logo {
    display: block;
    width: 212.5px;
    height: 25px;
    background: url('../images/../images/bstore-logo-yoko.png') no-repeat;
    background-size: 212.5px 25px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}
@media all and (min-width: 751px) and (-ms-high-contrast: none) {
  #footer #store-logo {
    text-align: left;
    text-indent: -99999px;
  }
}
@media (min-width: 751px) {
  #footer #bravo-logo {
    display: block;
    width: 75px;
    height: 74px;
    background: url('../images/../images/logo-bravo.png') no-repeat;
    background-size: 75px 74px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}
@media all and (min-width: 751px) and (-ms-high-contrast: none) {
  #footer #bravo-logo {
    text-align: left;
    text-indent: -99999px;
  }
}

/*--------------------------------------*/
@media (max-width: 750px) {
  /*--------------------------------------*/
  #footer {
    width: 100%;
    overflow: hidden;
  }
  #footer .contact {
    width: 100%;
    height: 72px;
    background-color: #ba0c2f;
    color: #ffffff;
    border-top: none;
  }
  #footer .contact .flexible {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #footer .contact p {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    position: relative;
    font-size: 1.4rem;
    font-weight: bold;
  }
  #footer .contact p span {
    display: block;
    font-size: 1.1rem;
    font-weight: normal;
    margin-left: 5px;
  }
  #footer .contact .tel p::before,
  #footer .contact .mail p::before {
    position: absolute;
    display: block;
    font-family: fontAwesome;
    top: 50%;
    font-weight: 400;
  }
  #footer .contact .tel p::before {
    -moz-transform: rotate(16deg);
    -ms-transform: rotate(16deg);
    -webkit-transform: rotate(16deg);
    transform: rotate(16deg);
    font-size: 30px;
    content: '\f095';
    left: -26px;
    top: -4px;
  }
  #footer .contact .mail p::before {
    font-size: 24px;
    content: '\f003';
    left: -38px;
    top: -9px;
  }
  #footer .contact a {
    display: inline-block;
    /* non-flexbox browsers */
    width: 50%;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
  }
  #footer .contact .tel {
    border-right: 1px solid #ea0f3b;
    padding-top: 18px;
    padding-left: 30px;
    padding-right: 5px;
  }
  #footer .contact .tel .tel_txt {
    font-size: 1.4rem;
    font-weight: bold;
    margin-left: 0px;
  }
  #footer .contact .mail {
    padding-top: 26px;
    padding-left: 36px;
  }

  #footer .footer-vidual {
    background-color: #4b4b4a;
    background: url("../images/bg-footer.jpg") no-repeat left 28% bottom;
    background-size: cover;
    padding: 1px 0;
  }
  #footer .ft-logo a {
    display: block;
    width: 66.66667px;
    height: 66.66667px;
    background: url('../images/../images/logo-footer.png') no-repeat;
    background-size: 66.66667px 66.66667px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    margin: 30px auto 40px;
  }
}
@media all and (max-width: 750px) and (-ms-high-contrast: none) {
  #footer .ft-logo a {
    text-align: left;
    text-indent: -99999px;
  }
}
@media (max-width: 750px) {
  #footer .sitemap {
    width: 100%;
  }
  #footer .sitemap .block {
    min-width: 300px;
    margin: 0 auto 30px;
    padding: 0 20px;
  }
  #footer .sitemap p {
    margin-bottom: 16px;
    text-align: center;
    font-size: 1.3rem;
  }
  #footer .sitemap p a {
    color: #ffffff;
  }
  #footer .sitemap ul {
    text-align: center;
    font-size: 1.2rem;
  }
  #footer .sitemap li {
    display: inline-block;
    text-align: center;
    margin-bottom: 8px;
  }
  #footer .sitemap li a {
    color: #8b8d8e;
    padding: 0 1.2rem;
    border-right: 1px solid #333333;
  }
  #footer .sitemap li:first-of-type a {
    padding-left: 0;
  }
  #footer .sitemap li:last-of-type a {
    padding-right: 0;
    border-right: none;
  }
  #footer .sitemap .single-link {
    display: none;
  }
  #footer .fnavi {
    display: block;
    background-color: #000000;
    color: #ffffff;
    font-size: 1.3rem;
  }
  #footer .fnavi a {
    color: #ffffff;
    font-size: 1.3rem;
  }
  #footer .fnavi .block {
    width: 100%;
    text-align: center;
  }
  #footer .fnavi .flexible {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  #footer .fnavi .flexible .links {
    order: 1;
  }
  #footer .fnavi .flexible .sns {
    order: 2;
  }
  #footer .fnavi .flexible .copyright {
    order: 3;
  }
  #footer .fnavi .sns {
    display: block;
    padding-top: 40px;
  }
  #footer .fnavi .sns li {
    display: inline-block;
    text-align: center;
    margin-right: 32px;
  }
  #footer .fnavi .sns li i {
    font-size: 32px;
  }
  #footer .fnavi .sns li:last-of-type {
    margin-right: 0;
  }
  #footer .fnavi .copyright {
    text-align: center;
    padding: 30px 16px 24px;
  }
  #footer .fnavi .copyright small {
    font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
    color: #8b8d8e;
  }
  #footer .fnavi .links {
    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-content: space-between;
    align-content: space-between;
    -js-display: flex;
    margin: 0 auto;
    padding: 0;
  }
  #footer .fnavi .links li {
    display: inline-block;
    padding: 12px 0;
    text-align: center;
    width: 50%;
  }
  #footer .fnavi .links li:nth-child(odd) {
    border-right: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
  }
  #footer .fnavi .links li:nth-child(even) {
    border-bottom: 1px solid #1a1a1a;
  }
  #footer .official-logo {
    margin: 30px auto 30px;
  }
  #footer .official-logo li {
    display: block;
    margin-bottom: 20px;
  }
  #footer .official-logo li a {
    display: block;
    margin: 0 auto;
  }
  #footer #store-logo {
    display: block;
    width: 170px;
    height: 20px;
    background: url('../images/../images/bstore-logo-yoko.png') no-repeat;
    background-size: 170px 20px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}
@media all and (max-width: 750px) and (-ms-high-contrast: none) {
  #footer #store-logo {
    text-align: left;
    text-indent: -99999px;
  }
}
@media (max-width: 750px) {
  #footer #bravo-logo {
    display: block;
    width: 50px;
    height: 49.33333px;
    background: url('../images/../images/logo-bravo.png') no-repeat;
    background-size: 50px 49.33333px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}
@media all and (max-width: 750px) and (-ms-high-contrast: none) {
  #footer #bravo-logo {
    text-align: left;
    text-indent: -99999px;
  }
}
/*--------------------------------------*/
/*------------------------------------------------
  Pagetop
-------------------------------------------------*/
#pagetop {
  width: 80px;
  height: 80px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  position: fixed;
  bottom: 20px;
  right: 40px;
  z-index: 9999;
  cursor: pointer;
  text-align: center;
  color: #ffffff;
  font-size: 0.8em;
}
#pagetop i {
  display: block;
  font-size: 4em;
  margin: 2px auto -5px;
}
#pagetop:hover {
  background-color: black;
  color: #f60d3c;
}
@media (max-width: 750px) {
  #pagetop {
    display: none !important;
  }
}

/*----------------------------------------
  course - LMT認定コース
----------------------------------------*/
#main.course {
  /* course-index
  ------------------------------ */
  /* course-functional
  ------------------------------ */
  /* course-trainer
  ------------------------------ */
}
#main.course .sub-header {
  background-image: url("../images/sub_header/sh-course.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #ffffff;
  padding-top: 60px;
}
#main.course .sub-header p {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 30px;
}
#main.course .sub-header h2 span {
  display: block;
  font-size: 4rem;
}
@media (max-width: 750px) {
  #main.course .sub-header {
    background-position: left -130px top;
    padding-top: 90px;
  }
  #main.course .sub-header p {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  #main.course .sub-header h2 {
    font-size: 8vw;
  }
  #main.course .sub-header h2 span {
    font-size: 2.6rem;
    margin-top: 3px;
  }
}
#main.course.index {
  /* contents ---------------- */
}
#main.course.index #sub-main {
  background-image: url("../images/sub/bg-lmt.jpg");
  background-repeat: no-repeat;
  background-position: center bottom 110px;
}
#main.course.index #sub-main h3 {
  text-align: center;
  font-size: 2.8rem;
}
#main.course.index #sub-main .txt-box {
  font-size: 1.5rem;
}
@media (max-width: 750px) {
  #main.course.index #sub-main {
    background-position: center bottom 90px;
    background-size: 130%;
    padding-bottom: 0;
  }
  #main.course.index #sub-main h3 {
    font-size: 1.8rem;
  }
  #main.course.index .txt-box {
    font-size: 1.3rem;
  }
}
#main.course.index .lmt-guideline {
  display: block;
  margin: 40px auto;
  border: 2px solid #000000;
}
#main.course.index .lmt-guideline dt,
#main.course.index .lmt-guideline dd {
  display: block;
  width: 100%;
  padding: 16px 8px;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
}
@media (max-width: 750px) {
  #main.course.index .lmt-guideline dt,
  #main.course.index .lmt-guideline dd {
    font-weight: normal;
    font-size: 1.4rem;
  }
}
#main.course.index .lmt-guideline dt {
  background-color: #000000;
  color: #ffffff;
}
#main.course.index .lmt-guideline dd {
  border-top: 1px solid #ffffff;
}
#main.course.index .lmt-guideline dd:nth-of-type(1) {
  border-top: none;
  background-color: #ffffff;
}
#main.course.index .lmt-guideline dd:nth-of-type(2) {
  background-color: #f4f4f4;
}
#main.course.index .lmt-guideline dd:nth-of-type(3) {
  background-color: #e7e7e7;
}
#main.course.index .lmt-guideline dd:nth-of-type(4) {
  background-color: #dbdbdb;
}
#main.course.index .img {
  width: 90%;
  margin: 0 auto;
  max-width: 702px;
  height: auto;
}
#main.course.functional {
  /* contents ---------------- */
  /* rewrite -------- */
}
#main.course.functional #sub-main h3 {
  text-align: center;
  font-size: 2.6rem;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 2px solid #000000;
}
#main.course.functional #sub-main h3 + .txt-box {
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  #main.course.functional #sub-main {
    background-position: center bottom 90px;
    background-size: 130%;
    padding-bottom: 0;
  }
  #main.course.functional #sub-main h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  #main.course.functional .txt-box {
    font-size: 1.3rem;
  }
}
@media (min-width: 751px) {
  #main.course.functional .hold-lead {
    zoom: 1;
    margin-bottom: 60px;
  }
  #main.course.functional .hold-lead::before, #main.course.functional .hold-lead::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #main.course.functional .hold-lead::after {
    clear: both;
  }
  #main.course.functional .hold-lead .img {
    display: block;
    width: 25%;
    float: left;
  }
  #main.course.functional .hold-lead .conts {
    display: block;
    float: right;
    width: 75%;
    padding-left: 32px;
  }
  #main.course.functional .hold-lead h4 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  #main.course.functional .hold-lead .list-caution {
    margin-top: 16px;
  }
  #main.course.functional .hold-lead .contact {
    margin-top: 24px;
  }
  #main.course.functional .hold-lead .contact .btn {
    width: 200px;
    margin-right: 20px;
    font-size: 1.6rem;
  }
}
@media (max-width: 750px) {
  #main.course.functional .hold-lead {
    margin-bottom: 60px;
    position: relative;
  }
  #main.course.functional .hold-lead .img {
    display: block;
    width: 40%;
    height: 140px;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
  }
  #main.course.functional .hold-lead .conts {
    display: block;
  }
  #main.course.functional .hold-lead h4 {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    padding-left: 45%;
    min-height: 140px;
    margin-bottom: 20px;
  }
  #main.course.functional .hold-lead .list-caution {
    margin-top: 16px;
  }
  #main.course.functional .hold-lead .contact {
    margin-top: 32px;
  }
  #main.course.functional .hold-lead .contact .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
#main.course.functional .article-type1 .conts .img {
  max-width: 960px;
}
#main.course.trainer {
  background-color: #dadada;
}
#main.course.trainer #sub-main h3 {
  text-align: center;
  font-size: 2.6rem;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
#main.course.trainer #sub-main h3 + .txt-box {
  margin-bottom: 64px;
  text-align: center;
}
#main.course.trainer #sub-main .tabs-fnavi {
  margin-top: 32px;
}
@media (max-width: 750px) {
  #main.course.trainer #sub-main {
    padding-bottom: 0;
  }
  #main.course.trainer #sub-main h3 {
    font-size: 2.4rem;
    padding-bottom: 0;
  }
  #main.course.trainer #sub-main h3 + .txt-box {
    margin-bottom: 40px;
  }
  #main.course.trainer #sub-main .tabs-fnavi {
    margin-top: 16px;
  }
}
#main.course.trainer .trainer-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;
  -js-display: flex;
}
#main.course.trainer .trainer-list li {
  zoom: 1;
  border: 1px solid #000000;
  max-width: 48%;
  margin-left: 20px;
  margin-bottom: 40px;
  background-color: #ffffff;
}
#main.course.trainer .trainer-list li::before, #main.course.trainer .trainer-list li::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}
#main.course.trainer .trainer-list li::after {
  clear: both;
}
#main.course.trainer .trainer-list li:nth-child(odd) {
  margin-left: 0;
}
#main.course.trainer .trainer-list .img {
  display: block;
  float: left;
  width: 35%;
  padding: 16px;
}
#main.course.trainer .trainer-list .prof {
  display: block;
  float: right;
  width: 65%;
  padding: 12px 16px 20px 0;
}
#main.course.trainer .trainer-list .name {
  display: block;
  font-size: 2rem;
  margin-bottom: 16px;
}
#main.course.trainer .trainer-list .home + .url,
#main.course.trainer .trainer-list .name + .url {
  display: block;
  margin-top: 12px;
}
#main.course.trainer .trainer-list .home {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
#main.course.trainer .trainer-list .home span {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 2px 0;
  background-color: #dadada;
  width: 36px;
  text-align: center;
  margin-right: 8px;
  font-size: 1.2rem;
}
#main.course.trainer .trainer-list .intro {
  margin: 12px 0 16px;
}
#main.course.trainer .trainer-list .url a {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  padding-left: 1.8rem;
  color: #ba0c2f;
  margin-top: 4px;
}
#main.course.trainer .trainer-list .url a::before {
  position: absolute;
  display: block;
  font-family: fontAwesome;
  left: 0;
  content: '\f14c';
}
@media (max-width: 750px) {
  #main.course.trainer .trainer-list {
    padding: 0;
    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;
    -js-display: flex;
  }
  #main.course.trainer .trainer-list li {
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%;
    margin: 0 0 16px;
  }
  #main.course.trainer .trainer-list .img {
    width: 50%;
    padding: 12px;
  }
  #main.course.trainer .trainer-list .prof {
    width: auto;
    float: none;
    padding: 12px 16px 16px;
  }
  #main.course.trainer .trainer-list .name,
  #main.course.trainer .trainer-list .home {
    display: block;
    float: right;
    width: 50%;
  }
  #main.course.trainer .trainer-list .name {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  #main.course.trainer .trainer-list .home span {
    display: block;
    margin-bottom: 8px;
  }
  #main.course.trainer .trainer-list .intro {
    clear: both;
    width: 100%;
    margin: 16px 0 12px;
  }
}

/*----------------------------------------
  about - ViPRとは
----------------------------------------*/
#main.about {
  /* -----------------------------
    誕生秘話
  ------------------------------ */
  /* -----------------------------
    ブランドの目指すもの
  ------------------------------ */
  /* -----------------------------
    導入施設一覧
  ------------------------------ */
  /* -----------------------------
    メディア情報
  ------------------------------ */
}
#main.about .sub-header {
  background-image: url("../images/sub_header/sh-about.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #ffffff;
}
@media (max-width: 750px) {
  #main.about .sub-header {
    background-position: center top;
  }
}
@media (min-width: 751px) {
  #main.about .links {
    zoom: 1;
  }
  #main.about .links::before, #main.about .links::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #main.about .links::after {
    clear: both;
  }
  #main.about .links a {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin-bottom: 20px;
    width: 48%;
  }
  #main.about .links a:nth-child(2) {
    display: block;
    float: right;
  }
}
@media (max-width: 750px) {
  #main.about .links a {
    display: block;
    margin-bottom: 20px;
    width: 100%;
  }
}
@media (min-width: 751px) {
  #main.about .side-fixed {
    position: fixed;
    top: 168px;
    max-width: 300px;
  }
}
@media (max-width: 750px) {
  #main.about .side-conts {
    margin-bottom: 0;
    padding: 0 16px 40px;
  }
  #main.about h3 {
    margin: 40px auto 32px;
    text-align: center;
  }
  #main.about h3 + p {
    text-align: center;
    margin-bottom: 32px;
  }
  #main.about .tabs-fnavi {
    margin-top: 0;
  }
}
#main.about.birth h3 {
  margin-bottom: 40px;
}
#main.about.birth .history-img img {
  max-width: 633px;
  margin: 64px auto;
  display: block;
}
#main.about.birth .michol-prof {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 24px;
  background-color: #dadada;
  padding: 24px 16px 24px 24px;
}
#main.about.birth .michol-prof .left {
  width: 30%;
}
#main.about.birth .michol-prof .right {
  width: 70%;
  padding-left: 8px;
}
#main.about.birth .michol-prof .name {
  font-weight: bold;
  font-size: 1.8rem;
}
#main.about.birth .michol-prof .name span {
  display: block;
  margin-bottom: 4px;
  margin-top: 8px;
  font-size: 1.4rem;
  color: #ba0c2f;
}
#main.about.birth .article-type1:last-of-type {
  margin-bottom: 0;
}
#main.about.birth .article-type1 p {
  margin-bottom: 16px;
}
#main.about.birth .article-type1 .inner-conts {
  margin-top: 48px;
}
#main.about.birth .article-type1 .inner-conts h4, #main.about.birth .article-type1 .inner-conts h5, #main.about.birth .article-type1 .inner-conts h6 {
  border: none;
  padding-bottom: 16px;
  border-bottom: 3px dotted #c1c1c1;
  margin-bottom: 12px;
}
@media (max-width: 750px) {
  #main.about.birth h3 {
    margin-bottom: 24px;
  }
  #main.about.birth .conts {
    padding: 0;
  }
  #main.about.birth .history-img img {
    max-width: 100%;
    margin: 32px auto;
  }
  #main.about.birth .michol-prof {
    background-color: #dadada;
    padding: 24px 24px 16px;
  }
  #main.about.birth .michol-prof .left {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  #main.about.birth .michol-prof .left img {
    width: auto;
    max-height: 200px;
  }
  #main.about.birth .michol-prof .right {
    width: 100%;
    padding-left: 0;
    margin-top: 26px;
  }
  #main.about.birth .michol-prof .name {
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
  }
  #main.about.birth .michol-prof .name span {
    display: block;
    margin-bottom: 4px;
    margin-top: 8px;
    font-size: 1.4rem;
    color: #ba0c2f;
  }
  #main.about.birth .article-type1 p {
    margin-bottom: 16px;
  }
  #main.about.birth .article-type1 .inner-conts {
    margin-top: 48px;
  }
  #main.about.birth .article-type1 .inner-conts h4, #main.about.birth .article-type1 .inner-conts h5, #main.about.birth .article-type1 .inner-conts h6 {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
#main.about.aim #sub-main {
  padding-bottom: 0;
}
#main.about.aim h3 {
  margin-bottom: 48px;
}
#main.about.aim .side-conts {
  padding-bottom: 0;
}
#main.about.aim .aim-lead {
  margin-bottom: 64px;
}
#main.about.aim .aim-lead h4 {
  padding: 12px 16px;
  border: 1px solid #000000;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 24px;
}
#main.about.aim .aim-lead .ety-vipr {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 24px;
}
#main.about.aim .aim-lead .ety-vipr li {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  width: 30%;
  padding: 24px 8px 28px;
  text-align: center;
  background-color: #ba0c2f;
  color: #ffffff;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
#main.about.aim .aim-lead .ety-vipr li:not(:last-of-type)::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: 50%;
  margin-top: -12px;
  right: -16px;
  border-left: 16px solid #ba0c2f;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}
#main.about.aim .aim-lead .ety-vipr p {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}
#main.about.aim .aim-lead .ety-vipr .em {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 16px;
}
#main.about.aim .list-dot.points {
  display: block;
  margin-bottom: 64px;
  margin-left: 1rem;
}
#main.about.aim .list-dot.points li:not(.caption) {
  text-indent: -2.4rem;
  margin-left: 2rem;
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: bold;
}
#main.about.aim .list-dot.points li::before {
  display: inline;
  content: "●";
  color: #ba0c2f;
  margin-right: 8px;
}
#main.about.aim .list-dot.points li.caption {
  margin-left: 2rem;
  text-indent: 0;
  margin-top: -0.5rem;
}
#main.about.aim .list-dot.points li.caption::before {
  display: none;
}
#main.about.aim .article-type1 img {
  display: block;
  max-width: 90%;
  margin: 0 auto;
}
#main.about.aim .article-type1 .img-4q {
  max-width: 621px;
  margin-bottom: 64px;
}
@media (max-width: 750px) {
  #main.about.aim h3 {
    margin-bottom: 24px;
  }
  #main.about.aim .conts {
    padding: 0;
  }
  #main.about.aim .aim-lead {
    margin-bottom: 32px;
  }
  #main.about.aim .aim-lead .ety-vipr {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  #main.about.aim .aim-lead .ety-vipr li {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    padding: 16px 20px 16px;
    text-align: center;
    background-color: #ba0c2f;
    color: #ffffff;
    display: block;
    position: relative;
    margin-bottom: 16px;
  }
  #main.about.aim .aim-lead .ety-vipr li:not(:last-of-type)::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 50%;
    margin-left: -12px;
    top: 100%;
    margin-top: -4px;
    border-top: 16px solid #ba0c2f;
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
  }
  #main.about.aim .aim-lead .ety-vipr p {
    display: block;
  }
  #main.about.aim .aim-lead .ety-vipr .em {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  #main.about.aim .list-dot.points {
    margin-bottom: 40px;
  }
  #main.about.aim .article-type1 .img-4q {
    max-width: 100%;
    margin-bottom: 32px;
  }
}
#main.about.results .results-list {
  zoom: 1;
  margin-bottom: 40px;
}
#main.about.results .results-list::before, #main.about.results .results-list::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}
#main.about.results .results-list::after {
  clear: both;
}
#main.about.results .results-list:last-of-type {
  margin-bottom: 72px;
}
#main.about.results h4 {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #000000;
  display: block;
  height: 72px;
  background: url("../images/sub/results-bg-1.png") no-repeat center top;
  background-color: #000000;
  background-size: cover;
  text-align: center;
  padding-top: 26px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 24px;
}
#main.about.results h4 + ul {
  display: block;
  padding: 0 10px;
}
#main.about.media #sub-main {
  padding-bottom: 0;
}
#main.about.media .side-conts {
  padding-bottom: 0;
}
#main.about.media h3 {
  padding-bottom: 24px;
  border-bottom: 2px solid #000000;
  margin-bottom: 0;
}
#main.about.media .article-tnavi {
  border-bottom: 3px dotted #e3e3e2;
  padding: 16px 4px;
  margin-bottom: 32px;
}
#main.about.media .article-tnavi a {
  display: block;
  position: relative;
}
#main.about.media .article-tnavi a::after {
  position: absolute;
  display: block;
  font-family: fontAwesome;
  content: '\f0c9';
  right: 0;
  top: 50%;
  margin-top: -1.7rem;
  font-size: 2rem;
}
#main.about.media .article-list.media .title {
  padding-bottom: 0;
  border-bottom: none;
  font-size: 20px;
}
#main.about.media .article-list.media .conts-ex {
  padding: 12px 16px 8px;
  background-color: #f4f4f4;
}
#main.about.media .article-ex .article-info {
  margin: 16px 0 0;
}
#main.about.media .article-ex .article-info .date {
  width: 100%;
  color: #8b8d8e;
  text-align: right;
  font-weight: normal;
}
#main.about.media h3 + #article-main {
  margin-top: 32px;
}
#main.about.media .article-paging {
  padding: 24px 0;
  border-top: 2px solid #000000;
  background-color: transparent;
  color: #000000;
}
#main.about.media .article-paging a {
  color: #000000;
  font-weight: bold;
}
#main.about.media .article-paging a:hover {
  color: #ba0c2f;
}
@media (max-width: 750px) {
  #main.about.media h3 {
    margin-top: 24px;
    padding-bottom: 16px;
  }
  #main.about.media .article-list.media,
  #main.about.media .article-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  #main.about.media .article-tnavi {
    margin-bottom: 0;
  }
  #main.about.media .article-list.media .title {
    font-size: 18px;
  }
  #main.about.media .article-list.media .conts-ex {
    padding: 16px 16px 8px;
    background-color: #f4f4f4;
  }
  #main.about.media .article-ex .article-info {
    margin: 16px 0;
  }
}

/*----------------------------------------
  benefits - 効果と強み
----------------------------------------*/
#main.benefits {
  /* LMTとは
  ------------------------------ */
  /* クライアントのニーズ
  ------------------------------ */
  /* 安全な樹脂製
  ------------------------------ */
}
#main.benefits .sub-header {
  background-image: url("../images/sub_header/sh-benefits.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #ffffff;
}
@media (max-width: 750px) {
  #main.benefits .sub-header {
    background-position: left -150px top;
  }
  #main.benefits .sub-header p {
    font-size: 1.2rem;
  }
}
#main.benefits #sub-main section:not(:first-of-type) {
  margin-top: 96px;
}
#main.benefits #sub-main h3 {
  font-size: 2.4rem;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 2px solid #000000;
  text-align: center;
}
#main.benefits #sub-main h3 + .txt-box {
  margin-bottom: 60px;
}
@media (max-width: 750px) {
  #main.benefits #sub-main section:not(:first-of-type) {
    margin-top: 40px;
  }
  #main.benefits #sub-main h3 {
    font-size: 1.8rem;
    padding-bottom: 16px;
    margin-bottom: 16px;
    text-align: left;
  }
  #main.benefits #sub-main h3 + .txt-box {
    margin-bottom: 40px;
  }
}
@media (min-width: 751px) {
  #main.benefits.lmt .img {
    height: 240px;
    overflow: hidden;
    margin-bottom: 32px;
    width: 40%;
  }
  #main.benefits.lmt .img img {
    height: 100%;
    width: auto;
    margin-left: -50px;
  }
  #main.benefits.lmt .conts {
    zoom: 1;
  }
  #main.benefits.lmt .conts::before, #main.benefits.lmt .conts::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #main.benefits.lmt .conts::after {
    clear: both;
  }
  #main.benefits.lmt .article-type2 .conts {
    width: 60%;
  }
  #main.benefits.lmt .article-type2 .conts-plus {
    clear: both;
    display: block;
  }
  #main.benefits.lmt .article-type2 .conts-plus p {
    display: block;
    margin-bottom: 16px;
  }
  #main.benefits.lmt .article-type2 .conts-plus .txt {
    float: left;
    width: 70%;
    padding-right: 24px;
  }
  #main.benefits.lmt .article-type2 .conts-plus .img-right {
    display: block;
    float: right;
    width: 30%;
    margin-top: -40px;
  }
  #main.benefits.lmt .lmt-img {
    max-width: 952px;
    margin: 0 auto 64px;
  }
}
@media (max-width: 750px) {
  #main.benefits.lmt #sub-main {
    padding-bottom: 0;
  }
  #main.benefits.lmt .conts {
    padding-bottom: 16px;
  }
  #main.benefits.lmt .article-type2 .conts-plus p {
    display: block;
    margin-bottom: 16px;
  }
  #main.benefits.lmt .lmt-img {
    max-width: 952px;
    margin: 0 auto 64px;
  }
}
#main.benefits.needs {
  background-image: url("../images/sub/bg-bf-needs.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 800px auto;
}
#main.benefits.needs .article-type2 h4 span {
  width: 50px;
}
#main.benefits.needs .conts ul + p {
  margin-top: 16px;
}
#main.benefits.needs .benefit-point {
  text-align: center;
  max-width: 1000px;
  margin: 180px auto 120px;
}
#main.benefits.needs .benefit-point .label {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  width: 160px;
  margin: 0 auto;
  padding: 8px 12px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #000000;
}
#main.benefits.needs .benefit-point .lead-txt {
  margin-top: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 30px 0;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  #main.benefits.needs {
    background-position: center bottom 100px;
    background-size: 400px auto;
  }
  #main.benefits.needs #sub-main {
    padding-bottom: 0;
  }
  #main.benefits.needs .conts {
    padding-top: 16px;
    padding-bottom: 0;
  }
  #main.benefits.needs .conts p.em {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
  #main.benefits.needs .conts ul + p {
    margin-top: 16px;
  }
  #main.benefits.needs .benefit-point {
    text-align: center;
    max-width: 90%;
    margin: 54px auto 54px;
    padding-bottom: 20px;
  }
  #main.benefits.needs .benefit-point .label {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    width: 160px;
    margin: 0 auto;
    padding: 8px 12px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #000000;
  }
  #main.benefits.needs .benefit-point .lead-txt {
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    padding: 30px 24px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
  }
}
#main.benefits.safety {
  /* OK/NGリスト ----------- */
  /* 返品交換 ----------- */
}
#main.benefits.safety .article-type2 h4 span {
  width: 50px;
}
#main.benefits.safety .conts ul + p {
  margin-top: 16px;
}
#main.benefits.safety .tool-img {
  zoom: 1;
  margin-bottom: 72px;
}
#main.benefits.safety .tool-img::before, #main.benefits.safety .tool-img::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}
#main.benefits.safety .tool-img::after {
  clear: both;
}
#main.benefits.safety .tool-img .img1 {
  float: left;
  width: 50%;
}
#main.benefits.safety .tool-img .img2 {
  float: right;
  text-align: center;
  width: 50%;
  margin-top: -70px;
}
#main.benefits.safety .tool-img .img2 img {
  max-width: 400px;
}
@media (max-width: 750px) {
  #main.benefits.safety #sub-main {
    padding-bottom: 0;
  }
  #main.benefits.safety .tool-img {
    zoom: 1;
    margin-bottom: 30px;
  }
  #main.benefits.safety .tool-img::before, #main.benefits.safety .tool-img::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #main.benefits.safety .tool-img::after {
    clear: both;
  }
  #main.benefits.safety .tool-img .img1 {
    float: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  #main.benefits.safety .tool-img .img2 {
    float: none;
    width: 90%;
    max-width: 400px;
    margin: 30px auto;
  }
}
@media (min-width: 751px) {
  #main.benefits.safety .ok-ng-list {
    zoom: 1;
    margin: 40px 0;
  }
  #main.benefits.safety .ok-ng-list::before, #main.benefits.safety .ok-ng-list::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #main.benefits.safety .ok-ng-list::after {
    clear: both;
  }
  #main.benefits.safety .ok-ng-list .title {
    font-size: 4rem;
    font-weight: bold;
  }
  #main.benefits.safety .ok-ng-list .title p,
  #main.benefits.safety .ok-ng-list .title span {
    display: inline-block;
    *display: inline;
    *zoom: 1;
  }
  #main.benefits.safety .ok-ng-list .title i {
    margin-right: 16px;
    line-height: 1;
  }
  #main.benefits.safety .ok-ng-list .title span {
    font-size: 2rem;
  }
  #main.benefits.safety .nglist i {
    color: #ba0c2f;
    font-size: 6rem;
  }
  #main.benefits.safety .oklist i {
    color: #009688;
  }
  #main.benefits.safety .nglist {
    display: block;
    float: left;
    width: 50%;
    padding: 0 24px;
    border-left: 4px dotted #dadada;
    border-right: 4px dotted #dadada;
  }
  #main.benefits.safety .oklist {
    float: right;
    width: 50%;
    padding-left: 10px;
    padding: 0 24px;
    border-right: 4px dotted #dadada;
  }
  #main.benefits.safety .list-dot li {
    margin-bottom: 10px;
  }
}
@media (max-width: 750px) {
  #main.benefits.safety .ok-ng-list {
    zoom: 1;
    margin: 30px 0;
  }
  #main.benefits.safety .ok-ng-list::before, #main.benefits.safety .ok-ng-list::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #main.benefits.safety .ok-ng-list::after {
    clear: both;
  }
  #main.benefits.safety .ok-ng-list .title {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    font-weight: bold;
    color: #ffffff;
    padding: 10px 12px;
  }
  #main.benefits.safety .ok-ng-list .title p,
  #main.benefits.safety .ok-ng-list .title span {
    display: inline-block;
    *display: inline;
    *zoom: 1;
  }
  #main.benefits.safety .ok-ng-list .title p {
    margin-bottom: 0;
  }
  #main.benefits.safety .ok-ng-list .title i {
    margin-right: 8px;
    font-size: 2rem;
    line-height: 1;
  }
  #main.benefits.safety .nglist .title {
    background-color: #ba0c2f;
  }
  #main.benefits.safety .oklist .title {
    background-color: #009688;
  }
  #main.benefits.safety .list-dot {
    padding: 20px 5px;
  }
  #main.benefits.safety .list-dot li {
    margin-bottom: 8px;
  }
}
#main.benefits.safety .returned-info {
  margin-top: 40px;
}
#main.benefits.safety .returned-info .caution {
  position: relative;
  border: none;
  font-weight: bold;
  font-size: 1.8rem;
  color: #ba0c2f;
  padding-left: 4rem;
}
#main.benefits.safety .returned-info .caution::before {
  position: absolute;
  display: block;
  font-family: fontAwesome;
  content: '\f06a';
  left: 0;
  top: 50%;
  margin-top: -25px;
  font-size: 3.4rem;
}
#main.benefits.safety .returned-info dl.doc {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #e3e3e2;
  padding: 20px;
  margin-bottom: 20px;
}
#main.benefits.safety .returned-info dl.doc dt:not(:first-of-type) {
  margin-top: 20px;
}
@media (max-width: 750px) {
  #main.benefits.safety .returned-info .caution {
    font-size: 1.5rem;
    padding-left: 3.7rem;
  }
  #main.benefits.safety .returned-info .caution::before {
    margin-top: -22px;
    font-size: 3rem;
  }
}

/*----------------------------------------
  casestudies - 導入プラン
----------------------------------------*/
#main.casestudies {
  /* パーソナルトレーニング
  ------------------------------ */
  /* スポーツチーム
  ------------------------------ */
  /* フィットネスクラブ
  ------------------------------ */
  /* リハビリテーション
  ------------------------------ */
  /* その他
  ------------------------------ */
}
#main.casestudies .sub-header {
  background-image: url("../images/sub_header/sh-casestudies.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #000000;
}
#main.casestudies h3 {
  background: repeating-linear-gradient(-45deg, #000000, #000000 3px, #1a1a1a 3px, #1a1a1a 6px);
  padding: 28px 16px;
  text-align: center;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: bold;
}
#main.casestudies h3 + .leadtxt {
  font-size: 1.5rem;
  text-align: center;
  margin: 48px auto 0;
}
#main.casestudies .cs-voice {
  margin-top: 88px;
}
#main.casestudies .cs-voice h4 {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  position: relative;
  background-color: #000000;
  font-weight: bold;
  color: #ffffff;
  padding: 16px 16px 16px 54px;
  margin-bottom: 24px;
}
#main.casestudies .cs-voice h4::before {
  position: absolute;
  display: block;
  font-family: fontAwesome;
  content: '\f086';
  left: 16px;
  top: 10px;
  font-size: 2rem;
}
#main.casestudies .cs-voice .voice-list {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -moz-column-gap: 30px;
  -webkit-column-gap: 30px;
  column-gap: 30px;
}
#main.casestudies .cs-voice .voice-list li {
  background-image: linear-gradient(135deg, #c1c1c1 10px, rgba(0, 0, 0, 0) 0%);
  background-color: #f4f4f4;
  display: block;
  padding: 24px;
  margin-bottom: 24px;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
#main.casestudies .cs-flow {
  margin-top: 72px;
}
#main.casestudies .cs-flow h4 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
#main.casestudies .cs-flow .vipr-flow .txt {
  height: 150px;
}
#main.casestudies .cs-flow .vipr-flow .link:nth-last-of-type(2) {
  bottom: 53px;
}
#main.casestudies .cs-flow .list-caution {
  margin-top: 24px;
  font-size: 1.3rem;
}
@media (max-width: 750px) {
  #main.casestudies .sub-header {
    background-position: right 5% top;
    padding-top: 84px;
  }
  #main.casestudies .sub-header h2 {
    font-size: 4rem;
    margin-bottom: 4px;
  }
  #main.casestudies .sub-header p {
    font-size: 1.2rem;
  }
  #main.casestudies .tabs {
    margin-bottom: 0;
  }
  #main.casestudies h3 {
    padding: 24px 8px;
    font-size: 1.6rem;
  }
  #main.casestudies #sub-main {
    padding-top: 0;
    padding-bottom: 0;
  }
  #main.casestudies h3 + #sub-main {
    padding-top: 32px;
  }
  #main.casestudies h3 + .leadtxt {
    font-size: 1.4rem;
    margin: 32px 24px;
  }
  #main.casestudies .cs-voice {
    margin-top: 32px;
  }
  #main.casestudies .cs-voice .voice-list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  #main.casestudies .cs-voice .voice-list li {
    padding: 16px 16px 16px 24px;
  }
  #main.casestudies .cs-flow {
    margin-top: 40px;
  }
  #main.casestudies .cs-flow h4 {
    margin-bottom: 32px;
  }
  #main.casestudies .cs-flow .vipr-flow .txt {
    height: auto;
  }
  #main.casestudies .cs-flow .vipr-flow .link:nth-last-of-type(2) {
    margin-bottom: 0;
  }
  #main.casestudies .cs-flow .list-caution {
    margin-top: 0;
  }
  #main.casestudies .cs-flow .list-caution li {
    margin-bottom: 10px;
  }
}
#main.casestudies.personal .article-type3 .left,
#main.casestudies.personal .article-type3 .right {
  margin-top: 16px;
}
#main.casestudies.personal .article-type3 .mcap {
  width: 96%;
  margin: 0 auto;
  margin-bottom: 16px;
  font-weight: bold;
}
#main.casestudies.personal .article-type3 .mcap i {
  color: #ba0c2f;
  font-size: 1.6rem;
}
#main.casestudies.personal .article-type3 .frame-wrap-video {
  width: 96%;
  margin: 0 auto;
}
@media (max-width: 750px) {
  #main.casestudies.personal .article-type3 {
    margin-bottom: 64px;
  }
  #main.casestudies.personal .article-type3 .right {
    margin-top: 32px;
  }
}
#main.casestudies.sports .team-example {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -js-display: flex;
  max-width: 960px;
  background: url("../images/sub/cs-teamex-bg.jpg") no-repeat center top;
  background-size: cover;
  margin: 0 auto 72px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
#main.casestudies.sports .team-example .titles {
  display: block;
  position: relative;
  width: 24%;
  order: 2;
  padding: 32px 8px;
}
#main.casestudies.sports .team-example .titles h4 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
#main.casestudies.sports .team-example .titles .tool {
  position: absolute;
  bottom: 40px;
  padding: 0 12px;
}
#main.casestudies.sports .team-example .list1, #main.casestudies.sports .team-example .list2 {
  width: 38%;
  padding: 32px 24px 24px;
}
#main.casestudies.sports .team-example .list1 dt, #main.casestudies.sports .team-example .list2 dt {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: 4px 8px;
  background-color: #000000;
  color: #ffffff;
  font-weight: bold;
}
#main.casestudies.sports .team-example .list1 dd, #main.casestudies.sports .team-example .list2 dd {
  padding: 12px 8px;
}
#main.casestudies.sports .team-example .list1 {
  order: 1;
}
#main.casestudies.sports .team-example .list2 {
  order: 3;
}
#main.casestudies.sports .clearfix {
  zoom: 1;
}
#main.casestudies.sports .clearfix::before, #main.casestudies.sports .clearfix::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}
#main.casestudies.sports .clearfix::after {
  clear: both;
}
#main.casestudies.sports .conts-plus {
  zoom: 1;
  clear: both;
  display: block;
  margin-top: 40px;
}
#main.casestudies.sports .conts-plus::before, #main.casestudies.sports .conts-plus::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}
#main.casestudies.sports .conts-plus::after {
  clear: both;
}
#main.casestudies.sports .conts-plus .em {
  display: block;
  font-weight: bold;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 3px dotted #c1c1c1;
}
#main.casestudies.sports .conts-plus .img {
  float: left;
  width: 20%;
  padding-right: 32px;
}
#main.casestudies.sports .conts-plus .comment {
  width: 80%;
  float: right;
}
#main.casestudies.sports .conts-plus .comment p {
  margin-bottom: 8px;
}
@media (max-width: 750px) {
  #main.casestudies.sports .team-example {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  #main.casestudies.sports .team-example .titles {
    width: 100%;
    order: 1;
    padding: 24px 0 8px;
  }
  #main.casestudies.sports .team-example .titles h4 {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
  #main.casestudies.sports .team-example .list1 {
    width: 100%;
    order: 2;
    padding: 16px 16px;
  }
  #main.casestudies.sports .team-example .list2 {
    width: 100%;
    order: 3;
    padding: 0 12px 16px;
  }
  #main.casestudies.sports .conts-plus {
    margin-top: 16px;
  }
  #main.casestudies.sports .conts-plus .img {
    width: 40%;
    padding-right: 16px;
  }
  #main.casestudies.sports .conts-plus .comment {
    float: none;
    width: 100%;
  }
}
@media (min-width: 751px) {
  #main.casestudies.fitness .vipr-flow .step2 .title {
    height: 42px;
  }
}
#main.casestudies.fitness h4 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
}
#main.casestudies.fitness .intro-sample {
  margin-bottom: 88px;
}
#main.casestudies.fitness .intro-sample ul {
  zoom: 1;
  display: table;
}
#main.casestudies.fitness .intro-sample ul::before, #main.casestudies.fitness .intro-sample ul::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}
#main.casestudies.fitness .intro-sample ul::after {
  clear: both;
}
#main.casestudies.fitness .intro-sample ul li {
  display: table-cell;
}
#main.casestudies.fitness .intro-sample ul .thead {
  width: 10%;
  min-width: 96px;
  font-weight: bold;
  color: #ffffff;
}
#main.casestudies.fitness .intro-sample ul .thead .item1 {
  background-color: #c1c1c1;
}
#main.casestudies.fitness .intro-sample ul .thead .item2 {
  background-color: #ba0c2f;
}
#main.casestudies.fitness .intro-sample ul .thead .item3 {
  background-color: #000000;
}
#main.casestudies.fitness .intro-sample ul .thead div {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 20px;
  overflow: hidden;
}
#main.casestudies.fitness .intro-sample ul .thead .item1 {
  padding: 12px 12px;
}
#main.casestudies.fitness .intro-sample ul .thead .item2 {
  padding: 40px 8px 0;
  height: 128px;
}
#main.casestudies.fitness .intro-sample ul .thead .item3 {
  padding: 72px 12px 0;
  height: 180px;
}
@media (min-width: 751px) and (max-width: 900px) {
  #main.casestudies.fitness .intro-sample ul .thead .item3 {
    height: 220px;
    padding-top: 96px;
  }
}
#main.casestudies.fitness .intro-sample ul .tbody {
  width: 30%;
}
#main.casestudies.fitness .intro-sample ul .tbody div {
  margin-left: 20px;
  margin-bottom: 20px;
  vertical-align: middle;
  overflow: hidden;
}
#main.casestudies.fitness .intro-sample ul .class {
  padding: 12px 8px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
#main.casestudies.fitness .intro-sample ul .personal .class {
  background-color: #8b8d8e;
}
#main.casestudies.fitness .intro-sample ul .small .class {
  background-color: #4b4b4a;
}
#main.casestudies.fitness .intro-sample ul .large .class {
  background-color: #000000;
}
#main.casestudies.fitness .intro-sample ul .tool-num {
  border: 1px solid #000000;
  padding: 24px 8px 0;
  text-align: center;
  font-size: 1.2rem;
  height: 128px;
}
#main.casestudies.fitness .intro-sample ul .tool-num span {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 8px;
}
#main.casestudies.fitness .intro-sample ul .fyi {
  display: table;
  border: 1px solid #000000;
  text-align: left;
  padding: 12px 20px;
  height: 180px;
}
@media (min-width: 751px) and (max-width: 900px) {
  #main.casestudies.fitness .intro-sample ul .fyi {
    height: 220px;
    padding: 12px 16px;
  }
}
#main.casestudies.fitness .intro-sample ul .fyi p {
  display: table-cell;
  vertical-align: middle;
}
#main.casestudies.fitness .intro-sample ul .fyi a {
  font-weight: bold;
  margin-top: 16px;
}
#main.casestudies.fitness .overseas-ex {
  margin: 48px 0 88px;
}
#main.casestudies.fitness .overseas-ex .left, #main.casestudies.fitness .overseas-ex .right {
  width: 48%;
}
#main.casestudies.fitness .overseas-ex .subtit {
  margin-bottom: 16px;
}
#main.casestudies.fitness .overseas-ex .subtit p {
  padding-left: 0;
  padding-bottom: 16px;
  border-bottom: 3px dotted #c1c1c1;
}
#main.casestudies.fitness .overseas-ex .frame-wrap-video {
  margin-top: 40px;
}
#main.casestudies.fitness .overseas-ex .img {
  margin: 0;
}
#main.casestudies.fitness .goldgym {
  margin-bottom: 88px;
}
#main.casestudies.fitness .goldgym h5 {
  margin-bottom: 40px;
}
#main.casestudies.fitness .goldgym .cs-voice {
  margin-top: 0;
  padding-left: 40px;
}
#main.casestudies.fitness .goldgym .cs-voice .voice-list {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
}
#main.casestudies.fitness .goldgym .cs-voice p {
  margin-bottom: 0;
}
@media (max-width: 750px) {
  #main.casestudies.fitness h4 {
    font-size: 1.8rem;
    margin-bottom: 32px;
    line-height: 1.5;
  }
  #main.casestudies.fitness .intro-sample {
    margin-bottom: 40px;
  }
  #main.casestudies.fitness .intro-sample ul {
    zoom: 1;
    display: table;
    width: 100%;
  }
  #main.casestudies.fitness .intro-sample ul::before, #main.casestudies.fitness .intro-sample ul::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #main.casestudies.fitness .intro-sample ul::after {
    clear: both;
  }
  #main.casestudies.fitness .intro-sample ul .thead {
    display: none;
  }
  #main.casestudies.fitness .intro-sample ul .tbody {
    display: block;
    width: 100%;
    margin-bottom: 24px;
  }
  #main.casestudies.fitness .intro-sample ul .tbody div {
    margin-left: 0;
    margin-bottom: 0;
    height: auto;
    padding: 12px 16px 16px;
  }
  #main.casestudies.fitness .intro-sample ul .class {
    border: 1px solid #000000;
    border-bottom: none;
  }
  #main.casestudies.fitness .intro-sample ul .tool-num {
    border: 1px solid #000000;
    border-bottom: none;
    height: auto;
  }
  #main.casestudies.fitness .intro-sample ul .tool-num span {
    font-size: 1.8rem;
  }
  #main.casestudies.fitness .intro-sample ul .tool-num::before {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    display: block;
    background-color: #ba0c2f;
    color: #ffffff;
    content: attr(label);
    font-size: 1.2rem;
    padding: 4px 8px;
    margin: 4px auto 12px;
  }
  #main.casestudies.fitness .intro-sample ul .fyi {
    border-top: 3px dotted #c1c1c1;
  }
  #main.casestudies.fitness .overseas-ex {
    margin: 0 0 64px;
  }
  #main.casestudies.fitness .overseas-ex .left, #main.casestudies.fitness .overseas-ex .right {
    width: 100%;
  }
  #main.casestudies.fitness .overseas-ex .frame-wrap-video {
    margin-top: 24px;
  }
  #main.casestudies.fitness .goldgym {
    margin-bottom: 56px;
  }
  #main.casestudies.fitness .goldgym h5 {
    margin-bottom: 24px;
  }
  #main.casestudies.fitness .goldgym .cs-voice {
    padding-left: 0;
  }
  #main.casestudies.fitness .goldgym .cs-voice .subtit {
    margin: 40px 0 24px;
  }
}
#main.casestudies.rehabilli .effects h4 {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
#main.casestudies.rehabilli .effects .lists {
  zoom: 1;
  background-color: #000000;
  color: #ffffff;
  padding-bottom: 32px;
}
#main.casestudies.rehabilli .effects .lists::before, #main.casestudies.rehabilli .effects .lists::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}
#main.casestudies.rehabilli .effects .lists::after {
  clear: both;
}
#main.casestudies.rehabilli .effects .list-dot {
  font-size: 1.6rem;
  padding: 0 32px;
}
#main.casestudies.rehabilli .effects .list-dot li {
  text-indent: -1.9rem;
  margin-bottom: 16px;
}
#main.casestudies.rehabilli .effects .list-dot li::before {
  color: #ffffff;
}
#main.casestudies.rehabilli .effects .list-dot:first-of-type {
  display: block;
  float: left;
  width: 50%;
  padding-left: 6%;
}
#main.casestudies.rehabilli .effects .list-dot:last-of-type {
  display: block;
  float: right;
  width: 50%;
  padding-left: 0;
}
@media (min-width: 751px) {
  #main.casestudies.rehabilli .cs-voice .voice-list {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
#main.casestudies.rehabilli .cs-voice h4 {
  background-color: transparent;
  color: #000000;
  padding: 16px 8px 16px 32px;
  margin: 0 auto;
}
#main.casestudies.rehabilli .cs-voice h4::before {
  left: 0;
}
@media (max-width: 750px) {
  #main.casestudies.rehabilli .effects h4 {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 32px;
  }
  #main.casestudies.rehabilli .effects .lists {
    zoom: 1;
    background-color: #000000;
    color: #ffffff;
    padding: 16px 0;
  }
  #main.casestudies.rehabilli .effects .lists::before, #main.casestudies.rehabilli .effects .lists::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #main.casestudies.rehabilli .effects .lists::after {
    clear: both;
  }
  #main.casestudies.rehabilli .effects .list-dot {
    font-size: 1.3rem;
  }
  #main.casestudies.rehabilli .effects .list-dot li {
    margin-bottom: 8px;
  }
  #main.casestudies.rehabilli .effects .list-dot:first-of-type, #main.casestudies.rehabilli .effects .list-dot:last-of-type {
    float: none;
    width: 100%;
    padding: 0 16px 0 24px;
  }
  #main.casestudies.rehabilli .cs-voice h4 {
    margin-bottom: 8px;
  }
}

/*----------------------------------------
  blog - ブログ
----------------------------------------*/
#main.blog {
  background-color: #ffffff;
  /* blog-tnavi ------------- */
}
#main.blog .sub-header {
  background-color: #ffffff;
  background-image: url("../images/sub_header/sh-blog.jpg");
  background-repeat: no-repeat;
  background-position: right -100px top;
  background-size: cover;
  padding: 0 24px;
  padding-top: 152px;
  position: relative;
  max-width: 1000px;
  text-align: left;
  margin: 0 auto;
}
#main.blog .sub-header p {
  display: block;
  margin: 8px;
}
@media (max-width: 750px) {
  #main.blog .sub-header {
    background-position: right 30% top;
    padding: 0;
    text-align: center;
  }
  #main.blog .sub-header .mask-white {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    padding-top: 122px;
  }
}
#main.blog .wrap-width {
  zoom: 1;
  padding: 0 24px;
}
#main.blog .wrap-width::before, #main.blog .wrap-width::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}
#main.blog .wrap-width::after {
  clear: both;
}
#main.blog .blog-tnavi {
  zoom: 1;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 16px 0;
}
#main.blog .blog-tnavi::before, #main.blog .blog-tnavi::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}
#main.blog .blog-tnavi::after {
  clear: both;
}
#main.blog .blog-tnavi .sns {
  display: block;
  width: 50%;
  float: left;
}
#main.blog .blog-tnavi .sns li {
  display: inline-block;
  margin-right: 24px;
}
#main.blog .blog-tnavi .sns li:last-of-type {
  margin-right: 0;
}
#main.blog .blog-tnavi .sns li i {
  font-size: 32px;
}
#main.blog .blog-tnavi .tmenu {
  display: block;
  width: 50%;
  float: right;
  text-align: right;
}
#main.blog .blog-tnavi .tmenu li {
  display: inline-block;
  padding-top: 4px;
  margin-right: 32px;
}
#main.blog .blog-tnavi .tmenu li:last-of-type {
  margin-right: 0;
}
#main.blog .blog-tnavi .tmenu li a {
  position: relative;
  padding-left: 2.2rem;
}
#main.blog .blog-tnavi .tmenu li a::before {
  position: absolute;
  display: block;
  font-family: fontAwesome;
  left: 0;
  top: -6px;
  content: '\f105';
  font-size: 2rem;
}
@media (min-width: 751px) and (max-width: 900px) {
  #main.blog {
    /* blog-tnavi ------------- */
  }
  #main.blog .wrap-width {
    padding: 0;
  }
  #main.blog .blog-tnavi .sns {
    padding-left: 24px;
  }
  #main.blog .blog-tnavi .tmenu {
    padding-right: 16px;
  }
}
@media (max-width: 750px) {
  #main.blog {
    /* blog-tnavi ------------- */
  }
  #main.blog .wrap-width {
    padding: 0 16px;
  }
  #main.blog .blog-tnavi {
    padding: 0;
  }
  #main.blog .blog-tnavi .wrap-width {
    padding: 0;
  }
  #main.blog .blog-tnavi .sns {
    display: none;
  }
  #main.blog .blog-tnavi .tmenu {
    zoom: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: colmun;
    flex-direction: colmun;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -js-display: flex;
    width: 100%;
  }
  #main.blog .blog-tnavi .tmenu::before, #main.blog .blog-tnavi .tmenu::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #main.blog .blog-tnavi .tmenu::after {
    clear: both;
  }
  #main.blog .blog-tnavi .tmenu li {
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    margin-right: 0;
    padding: 12px 0;
    text-align: center;
  }
  #main.blog .blog-tnavi .tmenu li:first-of-type {
    border-right: 1px solid #000000;
  }
  #main.blog .blog-tnavi .tmenu li a {
    padding-left: 0;
  }
  #main.blog .blog-tnavi .tmenu li a span {
    display: none;
  }
  #main.blog .blog-tnavi .tmenu li a::before {
    display: none;
  }
}

/*----------------------------------------
  items
------------------------------------------
testimonials
support
faq
privacypolicy
uc
----------------------------------------*/
/*----------------------------------------
  testimonials - ご利用者の声
----------------------------------------*/
#main.tm {
  background-color: #dadada;
}
#main.tm .sub-header {
  background-image: url("../images/sub_header/sh-tm.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #000000;
}
#main.tm .tm-list .tm-switch-on {
  cursor: pointer;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 16px;
  text-align: right;
  width: 100%;
  font-size: 1.3rem;
}
@media (max-width: 750px) {
  #main.tm .sub-header {
    background-position: center top;
    padding-top: 84px;
  }
  #main.tm .sub-header h2 {
    font-size: 4rem;
    margin-bottom: 4px;
  }
  #main.tm .sub-header p {
    font-size: 1.2rem;
  }
}
#main.tm .tm-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;
  -js-display: flex;
}
#main.tm .tm-list li {
  /* -webkit-flex: 1 0 48%;
  flex: 1 0 48%; */
  display: block;
  position: relative;
  /* max-width: 480px; */
  margin-bottom: 40px;
}
#main.tm .tm-list li:nth-child(odd) {
  margin-left: 0;
}
#main.tm .tm-list .disp {
  zoom: 1;
  position: relative;
  display: table;
  width: 100%;
  border: 1px solid #000000;
  border-bottom: none;
  background-color: #ffffff;
}
#main.tm .tm-list .disp::before, #main.tm .tm-list .disp::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}
#main.tm .tm-list .disp::after {
  clear: both;
}
#main.tm .tm-list .img,
#main.tm .tm-list .prof {
  display: table-cell;
}
#main.tm .tm-list .img {
  width: 180px;
  height: 100%;
  text-align: center;
  vertical-align: top;
  overflow: hidden;
}
#main.tm .tm-list .prof {
  padding: 16px 16px 0 20px;
  width: auto;
}
#main.tm .tm-list .title {
  display: block;
  margin-bottom: 16px;
}
#main.tm .tm-list .name {
  display: block;
  font-size: 2.4rem;
}
#main.tm .tm-list .name span {
  font-size: 1.4rem;
  padding-left: 1rem;
}
#main.tm .tm-list .tm-switch,
#main.tm .tm-list .tm-switch-on {
  cursor: pointer;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 16px;
  text-align: right;
  width: 100%;
  font-size: 1.3rem;
}
#main.tm .tm-list .tm-switch {
  z-index: 199;
  color: #ffffff;
  background-color: #000000;
  display: none;
}
#main.tm .tm-list .tm-switch::before {
  font-family: fontAwesome;
  content: '\f204';
  margin-right: 1rem;
}
#main.tm .tm-list .tm-switch-on {
  z-index: 200;
  display: block;
  color: #ffffff;
  background-color: #ba0c2f;
}
#main.tm .tm-list .tm-switch-on::before {
  font-family: fontAwesome;
  content: '\f205';
  margin-right: 1rem;
}
#main.tm .tm-list .open-conts {
  display: block;
  border: 1px solid #000000;
  border-top: none;
  background-color: #ffffff;
}
#main.tm .tm-list .open-conts .comment {
  padding: 16px;
}
#main.tm .tm-list .open-conts .comment p {
  margin-top: 12px;
}
#main.tm .tm-list .open-conts .comment p:first-of-type {
  margin-top: 0;
}
#main.tm .tm-list .open-conts .comment .em {
  font-size: 1.6rem;
  font-weight: bold;
}
#main.tm .tm-list .open-conts .career {
  zoom: 1;
  display: block;
  background-color: #e3e3e2;
  padding: 12px;
  font-size: 1.3rem;
}
#main.tm .tm-list .open-conts .career::before, #main.tm .tm-list .open-conts .career::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}
#main.tm .tm-list .open-conts .career::after {
  clear: both;
}
#main.tm .tm-list .open-conts .career dt {
  display: block;
  float: left;
  font-weight: bold;
}
#main.tm .tm-list .open-conts .career dd {
  padding-left: 48px;
  margin-bottom: 16px;
}
#main.tm .tm-list .open-conts .career dd:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 751px) and (max-width: 900px) {
  #main.tm .tm-list li {
    /* -webkit-flex: 0 0 47%;
    flex: 0 0 47%;
    margin-left: 30px; */
  }
  #main.tm .tm-list .prof {
    position: static;
    padding: 12px 12px 0 16px;
    height: 176px;
  }
  #main.tm .tm-list .img {
    width: 140px;
    margin-bottom: 1px;
  }
  #main.tm .tm-list .title {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  #main.tm .tm-list .name {
    font-size: 2rem;
  }
}
@media (max-width: 750px) {
  #main.tm .tm-list {
    margin-top: 16px;
  }
  #main.tm .tm-list li {
    margin: 0 0 24px;
    min-width: 100%;
  }
  #main.tm .tm-list li:nth-child(odd) {
    margin-left: 0;
  }
  #main.tm .tm-list li:last-of-type {
    margin-bottom: 0;
  }
  #main.tm .tm-list .disp {
    position: relative;
  }
  #main.tm .tm-list .prof {
    position: static;
    padding: 10px 8px 0 12px;
    height: 176px;
  }
  #main.tm .tm-list .img {
    width: 136px;
    margin-bottom: 1px;
  }
  #main.tm .tm-list .title {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  #main.tm .tm-list .name {
    font-size: 1.8rem;
  }
  #main.tm .tm-list .name span {
    padding-left: 8px;
  }
  #main.tm .tm-list .open-conts {
    position: static;
  }
}

/*----------------------------------------
  support - 導入後のサポート
----------------------------------------*/
#main.support {
  background-color: #dadada;
  /* contents ---------------- */
}
#main.support .sub-header {
  background-image: url("../images/sub_header/sh-support.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #ffffff;
}
@media (max-width: 750px) {
  #main.support .sub-header {
    background-position: left -290px top;
  }
}
@media (min-width: 751px) {
  #main.support #sub-main {
    padding-top: 0;
  }
  #main.support .support-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;
  }
  #main.support .support-list li {
    -webkit-flex: 0 1 28%;
    flex: 0 1 28%;
    margin: 2%;
    display: block;
    position: relative;
    margin-top: 40px;
    background-color: #ffffff;
    padding: 30px 20px;
  }
  #main.support .support-list a {
    color: #ba0c2f;
  }
  #main.support .support-list i {
    display: block;
    text-align: center;
  }
  #main.support .support-list i::before {
    font-size: 8rem;
    display: block;
    margin: 0 auto;
  }
  #main.support .support-list h3 {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin: 30px auto;
  }
  #main.support .support-list p:not(.link):not(.img) {
    display: block;
    margin-bottom: 8px;
  }
  #main.support .support-list .catchp {
    color: #ba0c2f;
    font-weight: bold;
    text-align: center;
    padding: 8px 0;
    font-size: 1.6rem;
  }
  #main.support .support-list .img {
    display: block;
    width: 80%;
    margin: 40px auto 10px;
  }
  #main.support .support-list .link {
    display: block;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 0 20px;
  }
  #main.support .support-list .link a {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #ba0c2f;
    display: block;
    padding: 12px 8px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
  }
}
@media (min-width: 751px) and (max-width: 900px) {
  #main.support .support-list li {
    -webkit-flex: 0 1 46%;
    flex: 0 1 46%;
    margin: 2%;
    display: block;
    position: relative;
    margin-top: 40px;
    background-color: #ffffff;
    padding: 30px 20px;
    min-height: 520px;
  }
}
@media (max-width: 750px) {
  #main.support #sub-main {
    padding-top: 0;
  }
  #main.support .support-list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: colmun;
    flex-direction: colmun;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -js-display: flex;
  }
  #main.support .support-list li {
    margin: 20px 20px 0;
    background-color: #ffffff;
    padding: 30px 20px;
  }
  #main.support .support-list a {
    color: #ba0c2f;
  }
  #main.support .support-list i {
    display: block;
    text-align: center;
  }
  #main.support .support-list i::before {
    font-size: 6rem;
    display: block;
    margin: 0 auto;
  }
  #main.support .support-list h3 {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin: 20px auto;
  }
  #main.support .support-list p:not(.link):not(.img) {
    margin-bottom: 8px;
  }
  #main.support .support-list .catchp {
    color: #ba0c2f;
    font-weight: bold;
    text-align: center;
    padding: 8px 0;
  }
  #main.support .support-list .img {
    display: block;
    width: 90%;
    margin: 30px auto 10px;
  }
  #main.support .support-list .link {
    display: block;
    width: 100%;
    margin-top: 30px;
  }
  #main.support .support-list .link a {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #ba0c2f;
    display: block;
    padding: 12px 8px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
  }
}

/*----------------------------------------
  faq - よくあるご質問
----------------------------------------*/
#main.faq {
  /* contents ---------------- */
}
#main.faq #sub-main {
  margin-bottom: 72px;
}
#main.faq .tabs {
  background-color: #141414;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -js-display: flex;
}
#main.faq .tabs span {
  display: inline !important;
}
#main.faq .tabs .wrap-width {
  width: 100%;
}
#main.faq .tabs li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  width: auto;
}
#main.faq .tabs li a {
  border-color: #333333;
  color: #8b8d8e;
}
#main.faq .tabs .cur a {
  color: #ffffff;
}
#main.faq .tabs .cur::after {
  border-top-color: #1a1a1a;
}
#main.faq .tab-conts h3 {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
#main.faq .tab-conts .question {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  display: block;
  position: relative;
  background-color: #ba0c2f;
  color: #ffffff;
  font-weight: bold;
  padding: 12px 16px;
  padding-left: 48px;
}
#main.faq .tab-conts .question::before {
  position: absolute;
  display: block;
  content: 'Q. ';
  left: 16px;
  top: 13px;
  color: #ffffff;
}
#main.faq .tab-conts .answer {
  position: relative;
  padding: 16px 20px 40px;
  padding-left: 48px;
}
#main.faq .tab-conts .answer::before {
  position: absolute;
  display: block;
  content: 'A. ';
  left: 16px;
  top: 17px;
  font-weight: bold;
  color: #ba0c2f;
}
#main.faq .tab-conts .answer p {
  margin-bottom: 8px;
}
#main.faq .tab-conts .answer .answer-txt {
  display: block;
  margin-bottom: 20px;
}
#main.faq .tab-conts .answer a {
  display: inline-block;
  position: relative;
}
@media (max-width: 750px) {
  #main.faq {
    /* contents ---------------- */
  }
  #main.faq #sub-main {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #main.faq .tabs {
    margin-bottom: 0;
    border-bottom: 1px solid #000000;
  }
  #main.faq .tabs span {
    display: none !important;
  }
  #main.faq .tabs ul li {
    border: none;
    border-right: 1px solid #000000;
    border-top: 1px solid #000000;
  }
  #main.faq .tabs ul li:last-of-type {
    border-right: none;
  }
  #main.faq .tabs ul .cur {
    background-color: #000000;
  }
  #main.faq .tab-conts h3 {
    margin: 10px auto 30px;
  }
  #main.faq .tab-conts .question {
    padding: 12px 16px;
    padding-left: 48px;
  }
  #main.faq .tab-conts .answer {
    padding: 12px 12px 32px;
    padding-left: 16px;
  }
  #main.faq .tab-conts .answer::before {
    top: 13px;
  }
  #main.faq .tab-conts .answer .answer-txt {
    padding-left: 32px;
  }
}

/*----------------------------------------
  privacypolicy 
----------------------------------------*/
#main.privacypolicy #sub-main {
  margin-bottom: 72px;
}
@media (max-width: 750px) {
  #main.privacypolicy #sub-main {
    margin-bottom: 0;
  }
}

/*----------------------------------------
  News 
----------------------------------------*/
#main.news #sub-main {
  padding-top: 48px;
}
#main.news .article-tnavi {
  border-top: 2px solid #000000;
  border-bottom: 3px dotted #e3e3e2;
  padding: 16px 4px;
  margin-bottom: 32px;
}
#main.news .article-tnavi a {
  display: block;
  position: relative;
}
#main.news .article-tnavi a::after {
  position: absolute;
  display: block;
  font-family: fontAwesome;
  content: '\f0c9';
  right: 0;
  top: 50%;
  margin-top: -1.7rem;
  font-size: 2rem;
}
@media (max-width: 750px) {
  #main.news #sub-main {
    padding: 16px 0 0;
  }
  #main.news #sub-main .wrap-width {
    padding: 0;
  }
  #main.news .article-tnavi {
    border-top: none;
    border-bottom: 3px dotted #e3e3e2;
    padding: 0 16px 16px;
    margin-bottom: 0;
  }
}
#main.news .article-list .article-ex .article-info {
  margin-bottom: 16px;
}
#main.news .article-list .article-ex .article-info .date {
  color: #4b4b4a;
  font-size: 1.6rem;
}
#main.news .article-list .article-ex .article-info .cate {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: 2px 12px;
  background-color: #000000;
  color: #ffffff;
  font-size: 1.2rem;
}
@media (max-width: 750px) {
  #main.news .article-list h4 {
    margin-top: 8px;
  }
  #main.news .article-list .article-ex .article-info .date {
    font-size: 1.4rem;
    padding-top: 2px;
  }
  #main.news .article-list .article-ex .conts-ex {
    margin-bottom: 0;
  }
}
#main.news .article-paging {
  padding: 24px 0;
  border-top: 2px solid #000000;
  background-color: transparent;
  color: #000000;
}
#main.news .article-paging a {
  color: #000000;
  font-weight: bold;
}
#main.news .article-paging a:hover {
  color: #ba0c2f;
}
@media (max-width: 750px) {
  #main.news .article-paging {
    padding: 24px 16px;
  }
}
#main.news #article-side {
  margin-bottom: 40px;
}
#main.news #article-side section:last-of-type {
  margin-bottom: 0;
}
#main.news #article-side .fb-widget a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px 20px;
  background-color: #425f9b;
  color: white;
}
#main.news #article-side .fb-widget a i {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -0.7rem;
}

/*----------------------------------------
  404 - NotFound
----------------------------------------*/
.err404 {
  background-color: #e3e3e2;
  text-align: center;
}
@media (min-width: 751px) {
  .err404 {
    padding: 96px 0 72px;
  }
  .err404.inc {
    background-color: inherit;
    padding: 72px 0 72px;
  }
  .err404 h2 {
    font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
    font-size: 3vw;
    font-weight: 900;
    margin-bottom: 40px;
  }
  .err404 .links {
    zoom: 1;
    max-width: 480px;
    margin: 32px auto 0;
  }
  .err404 .links::before, .err404 .links::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  .err404 .links::after {
    clear: both;
  }
  .err404 .links a {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin-bottom: 20px;
    width: 45%;
  }
  .err404 .links a:nth-child(2) {
    display: block;
    float: right;
  }
}
@media (max-width: 750px) {
  .err404 {
    padding: 88px 0 30px;
  }
  .err404.inc {
    padding-top: 60px;
  }
  .err404 h2 {
    font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
    font-size: 8vw;
    font-weight: 900;
    margin-bottom: 40px;
  }
  .err404 .links {
    max-width: 90%;
    margin: 32px auto 0;
  }
  .err404 .links a {
    display: block;
    margin-bottom: 20px;
    width: 100%;
  }
}

/*----------------------------------------
  uc - 工事中ページ
----------------------------------------*/
.uc {
  background-color: #e3e3e2;
  text-align: center;
  padding: 96px 0 72px;
}
.uc.inc {
  background-color: inherit;
  padding: 72px 0 72px;
}
@media (max-width: 750px) {
  .uc {
    padding: 120px 0 30px;
  }
  .uc.inc {
    padding-top: 60px;
  }
}

/*----------------------------------------
  Wordpress スタイル
----------------------------------------*/
.current-cat,
.current-cat a {
  color: #ba0c2f;
}

.current-cat::before {
  content: "> ";
}

.article-conts {
  padding-bottom: 48px;
  font-size: 1.5rem;
}
.article-conts h1, .article-conts h2, .article-conts h3, .article-conts h4, .article-conts h5, .article-conts h6 {
  font-weight: bold;
  margin: 16px 0;
  text-align: left;
}
.article-conts p + h1, .article-conts p + h2, .article-conts p + h3, .article-conts p + h4, .article-conts p + h5, .article-conts p + h6 {
  margin-top: 32px;
}
.article-conts p {
  margin-top: 16px;
}
.article-conts p:first-of-type {
  margin-top: 0;
}
.article-conts a {
  color: #ba0c2f !important;
}
.article-conts a:not(.btn):hover {
  text-decoration: underline;
}
.article-conts a.btn {
  color: #ffffff !important;
  margin: 24px 0 32px;
}
.article-conts img {
  width: auto;
  max-width: 100%;
  margin: 16px 0;
}
.article-conts ul, .article-conts ol, .article-conts dl {
  display: block;
  margin: 16px 16px 32px;
  margin-left: 24px;
}
.article-conts ul li {
  list-style: disc;
  margin-bottom: 4px;
}
.article-conts ol li {
  list-style: decimal;
  margin-bottom: 24px;
}
.article-conts hr {
  border-color: #c1c1c1;
  margin: 16px 0 20px;
}
.article-conts i, .article-conts em {
  font-style: italic;
}
.article-conts strong {
  font-weight: bold;
}
.article-conts table {
  margin: 40px 0 48px;
  width: 100%;
}
.article-conts table th, .article-conts table td {
  border: 1px solid #4b4b4a;
  padding: 12px;
  vertical-align: middle;
}

@media (max-width: 750px) {
  .article-conts {
    padding-bottom: 32px;
  }
  .article-conts h1, .article-conts h2, .article-conts h3, .article-conts h4, .article-conts h5, .article-conts h6 {
    font-weight: bold;
    margin: 16px 0;
  }
  .article-conts p + h1, .article-conts p + h2, .article-conts p + h3, .article-conts p + h4, .article-conts p + h5, .article-conts p + h6 {
    margin-top: 32px;
  }
  .article-conts p {
    margin-top: 16px;
  }
  .article-conts p:first-of-type {
    margin-top: 0;
  }
  .article-conts hr {
    border-color: #8b8d8e;
    margin: 16px 0;
  }
  .article-conts table {
    margin: 24px 0 32px;
    width: 100%;
  }
}
/*----------------------------------------
  Subpage Style
------------------------------------------
header
tabmenu
コンテンツタブ切替 for tablist.js
footer 受講予約リンク
Article-design
----------------------------------------*/
/*----------------------------------------
  common style
----------------------------------------*/
.sub-header {
  width: 100%;
  height: 200px;
  background-color: #4b4b4a;
  text-align: center;
  padding-top: 64px;
}
.sub-header h2 {
  display: block;
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: 6rem;
  line-height: 1.2;
}

.sub-header.simple {
  background-color: #ba0c2f;
  text-align: left;
  padding-top: 0;
  color: #ffffff;
  min-height: 200px;
}
.sub-header.simple .wrap-width {
  height: 100%;
  background: url("../images/sub_header/sh-viprtool.png") no-repeat right 10px top;
}
.sub-header.simple h2 {
  padding-top: 80px;
  font-weight: 700;
  font-size: 5rem;
  margin-bottom: 5px;
}

.sub-header.wide {
  height: 300px;
  padding-top: 72px;
}

@media (max-width: 750px) {
  .sub-header {
    height: 184px;
    padding-top: 80px;
  }
  .sub-header h2 {
    font-size: 5rem;
  }

  .sub-header.simple {
    min-height: 184px;
    padding-top: 0;
  }
  .sub-header.simple .wrap-width {
    height: 100%;
    background: url("../images/sub_header/sh-viprtool.png") no-repeat right -40px bottom -40px;
    background-size: contain;
    padding: 0 20px;
  }
  .sub-header.simple h2 {
    padding-top: 96px;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 5px;
  }

  .sub-header.wide {
    height: 240px;
    padding-top: 80px;
  }
}
#sub-main {
  padding: 54px 0;
}
#sub-main h3 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 40px;
}
#sub-main .txt-box p {
  margin-bottom: 12px;
}

@media (min-width: 751px) and (max-width: 900px) {
  #sub-main {
    padding: 54px 24px;
  }
}
@media (max-width: 750px) {
  #sub-main {
    padding: 16px 0 32px;
  }
  #sub-main h3 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 16px;
    padding: 0;
  }
  #sub-main .wrap-width {
    padding: 0 20px;
  }
}
.tabs {
  display: block;
  width: 100%;
  background-color: #ba0c2f;
}
@media (min-width: 751px) {
  .tabs ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: strech;
    align-items: strech;
    -js-display: flex;
    padding: 20px 0;
  }
  .tabs li {
    -webkit-flex: auto;
    flex: auto;
    display: block;
    position: relative;
    text-align: center;
  }
  .tabs li a {
    display: block;
    padding: 0 20px;
    color: #f4828d;
    border-right: 1px solid #f01340;
  }
  .tabs li:first-of-type a {
    border-left: 1px solid #f01340;
  }
  .tabs li:hover a {
    color: #ffffff;
  }
  .tabs .cur a {
    color: #ffffff;
  }
  .tabs .cur::after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 50%;
    margin-left: -12px;
    bottom: -30px;
    border-top: 12px solid #ba0c2f;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
  }
}
@media (max-width: 750px) {
  .tabs {
    margin-bottom: 16px;
    /* 奇数メニュー
    --------------------- */
  }
  .tabs ul {
    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-content: space-between;
    align-content: space-between;
    -js-display: flex;
  }
  .tabs li {
    display: block;
    text-align: center;
    width: 50%;
  }
  .tabs li:nth-child(odd) {
    border-right: 1px solid #f01340;
    border-bottom: 1px solid #f01340;
  }
  .tabs li:nth-child(even) {
    border-bottom: 1px solid #f01340;
  }
  .tabs li:nth-last-of-type(1), .tabs li:nth-last-of-type(2) {
    border-bottom: none;
  }
  .tabs li a {
    display: block;
    color: #f4828d;
    font-size: 1.3rem;
    padding: 12px 0 13px;
  }
  .tabs .cur {
    background-color: #e00e39;
  }
  .tabs .cur a {
    color: #ffffff;
  }
  .tabs.odd li:first-of-type {
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .tabs.odd li:nth-child(odd) {
    border-bottom: 1px solid #f01340;
    border-right: none;
  }
  .tabs.odd li:nth-child(even) {
    border-right: 1px solid #f01340;
    border-bottom: 1px solid #f01340;
  }
  .tabs.odd li:nth-last-of-type(1), .tabs.odd li:nth-last-of-type(2) {
    border-bottom: none;
  }
}

.tabs-fnavi {
  display: block;
  width: 100%;
  background-color: #ffffff;
  margin: 72px auto 16px;
}
@media (min-width: 751px) {
  .tabs-fnavi {
    max-width: 1000px;
  }
  .tabs-fnavi ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: strech;
    align-items: strech;
    -js-display: flex;
    border: 1px solid #000000;
  }
  .tabs-fnavi li {
    -webkit-flex: auto;
    flex: auto;
    display: block;
    text-align: center;
    border-right: 1px solid #000000;
  }
  .tabs-fnavi li:last-of-type {
    border-right: none;
  }
  .tabs-fnavi li a {
    display: block;
    padding: 16px 12px;
    color: #000000;
  }
  .tabs-fnavi li:not(.cur):hover {
    background-color: #ba0c2f;
  }
  .tabs-fnavi li:not(.cur):hover a {
    color: #ffffff;
  }
  .tabs-fnavi .cur {
    background-color: #ba0c2f;
  }
  .tabs-fnavi .cur a {
    color: #ffffff;
  }
}
@media (max-width: 750px) {
  .tabs-fnavi {
    margin: 16px auto 0;
    /* 奇数メニュー
    --------------------- */
  }
  .tabs-fnavi ul {
    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-content: space-between;
    align-content: space-between;
    -js-display: flex;
  }
  .tabs-fnavi li {
    -webkit-flex: auto;
    flex: auto;
    display: block;
    text-align: center;
    min-width: 50%;
  }
  .tabs-fnavi li:nth-child(odd) {
    border-bottom: 1px solid #000000;
  }
  .tabs-fnavi li:nth-child(even) {
    border-left: 1px solid #000000;
    border-bottom: 1px solid #000000;
  }
  .tabs-fnavi li:nth-of-type(1), .tabs-fnavi li:nth-of-type(2) {
    border-top: 1px solid #000000;
  }
  .tabs-fnavi li a {
    display: block;
    color: #000000;
    padding: 12px 0 13px;
    font-size: 1.3rem;
  }
  .tabs-fnavi .cur {
    background-color: #ba0c2f;
  }
  .tabs-fnavi .cur a {
    color: #ffffff;
  }
  .tabs-fnavi.odd li:first-of-type {
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .tabs-fnavi.odd li:nth-of-type(2) {
    border-top: none;
  }
  .tabs-fnavi.odd li:nth-child(odd) {
    border-bottom: 1px solid #000000;
  }
  .tabs-fnavi.odd li:nth-child(even) {
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    border-left: none;
  }
  .tabs-fnavi.odd li:nth-last-of-type(1), .tabs-fnavi.odd li:nth-last-of-type(2) {
    border-bottom: none;
  }
}

.tabs-container div {
  display: none;
}

.tabs-container div.is-active {
  display: block;
}
.tabs-container div.is-active div {
  display: block;
}

.ft-course-lead {
  background-color: #000000;
  text-align: center;
  color: #ffffff;
  padding: 32px 0;
}
.ft-course-lead a {
  display: block;
  color: #ffffff;
  max-width: 720px;
  height: 54px;
  padding-top: 15px;
  background: url("../images/bg-footer-lead.png") no-repeat center top;
  background-size: cover;
  margin: 0 auto 16px;
  border: 1px solid #8b8d8e;
}
.ft-course-lead a:hover {
  border: 1px solid #dadada;
}
.ft-course-lead a + p {
  font-size: 1.3rem;
}

@media (max-width: 750px) {
  .ft-course-lead {
    padding: 24px 0;
  }
  .ft-course-lead a {
    font-size: 1.3rem;
    max-width: 100%;
    width: 90%;
    height: 64px;
    padding: 12px 0;
  }
  .ft-course-lead a + p {
    font-size: 1.2rem;
    padding: 0 20px;
  }
}
/*----------------------------------------
  common layout
----------------------------------------*/
@media (min-width: 751px) {
  #sub-main.type-sidemenu {
    zoom: 1;
  }
  #sub-main.type-sidemenu::before, #sub-main.type-sidemenu::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #sub-main.type-sidemenu::after {
    clear: both;
  }
  #sub-main.type-sidemenu .side {
    display: block;
    float: left;
    width: 30%;
    padding-right: 40px;
  }
  #sub-main.type-sidemenu .side-menu {
    display: block;
  }
  #sub-main.type-sidemenu .side-menu li {
    display: block;
    position: relative;
    width: 96%;
    background-color: #000000;
    margin-bottom: 1px;
  }
  #sub-main.type-sidemenu .side-menu li a {
    display: block;
    padding: 16px 40px 16px 20px;
    font-weight: bold;
    color: #8b8d8e;
  }
  #sub-main.type-sidemenu .side-menu li::after {
    position: absolute;
    display: block;
    font-family: fontAwesome;
    content: "\f105";
    right: 20px;
    top: 50%;
    margin-top: -2.1rem;
    font-size: 2.6rem;
    color: #ffffff;
  }
  #sub-main.type-sidemenu .side-menu li:hover, #sub-main.type-sidemenu .side-menu li.cur {
    background-color: #ba0c2f;
  }
  #sub-main.type-sidemenu .side-menu li:hover a, #sub-main.type-sidemenu .side-menu li.cur a {
    color: #ffffff;
  }
  #sub-main.type-sidemenu .side-menu li.cur {
    width: 100%;
  }
  #sub-main.type-sidemenu .side-menu li.cur::after {
    content: "\f058";
    margin-top: -16px;
    font-size: 2rem;
  }
  #sub-main.type-sidemenu .side-conts {
    display: block;
    float: right;
    width: 70%;
    padding-bottom: 40px;
  }
  #sub-main.type-sidemenu .side-conts h3 {
    text-align: center;
    margin-bottom: 24px;
  }
  #sub-main.type-sidemenu .side-conts h3 + p {
    display: block;
    text-align: center;
    margin-bottom: 36px;
  }
}
@media (max-width: 750px) {
  #sub-main.type-sidemenu {
    padding-top: 0;
    padding-bottom: 0;
  }
  #sub-main.type-sidemenu .wrap-width {
    padding: 0;
  }
  #sub-main.type-sidemenu .conts {
    padding: 32px 20px 16px;
  }
  #sub-main.type-sidemenu .side {
    display: block;
  }
  #sub-main.type-sidemenu .side-menu {
    display: block;
    width: 100%;
    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-content: space-between;
    align-content: space-between;
    -js-display: flex;
  }
  #sub-main.type-sidemenu .side-menu li {
    display: block;
    text-align: center;
    width: 50%;
    background-color: #000000;
  }
  #sub-main.type-sidemenu .side-menu li:nth-child(odd) {
    border-right: 1px solid #2d2d2d;
    border-bottom: 1px solid #2d2d2d;
  }
  #sub-main.type-sidemenu .side-menu li:nth-child(even) {
    border-bottom: 1px solid #2d2d2d;
  }
  #sub-main.type-sidemenu .side-menu li:nth-last-of-type(1), #sub-main.type-sidemenu .side-menu li:nth-last-of-type(2) {
    border-bottom: none;
  }
  #sub-main.type-sidemenu .side-menu li a {
    display: block;
    padding: 16px 0;
    color: #8b8d8e;
  }
  #sub-main.type-sidemenu .side-menu li:hover, #sub-main.type-sidemenu .side-menu li.cur {
    background-color: #ba0c2f;
  }
  #sub-main.type-sidemenu .side-menu li:hover a, #sub-main.type-sidemenu .side-menu li.cur a {
    color: #ffffff;
  }
  #sub-main.type-sidemenu .side-conts {
    display: block;
  }
  #sub-main.type-sidemenu .side-conts h3 {
    text-align: center;
    margin-bottom: 24px;
  }
  #sub-main.type-sidemenu .side-conts h3 + p {
    display: block;
    text-align: center;
    margin-bottom: 36px;
  }
}

.article-type1 {
  margin-bottom: 60px;
  /* SP-rewrite
  --------------------- */
}
.article-type1 h3,
.article-type1 h4,
.article-type1 h5 {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  display: table;
  width: 100%;
  border: 1px solid #000000;
  font-weight: bold;
  margin-bottom: 24px;
}
.article-type1 h3 span,
.article-type1 h3 p,
.article-type1 h4 span,
.article-type1 h4 p,
.article-type1 h5 span,
.article-type1 h5 p {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  padding: 12px 12px;
}
.article-type1 h3 span,
.article-type1 h4 span,
.article-type1 h5 span {
  width: 72px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}
.article-type1 h3 p,
.article-type1 h4 p,
.article-type1 h5 p {
  padding: 12px 12px;
  text-align: left;
}
.article-type1 .conts {
  padding: 0 4px;
}
.article-type1 .conts a:not(.btn) {
  color: #ba0c2f;
}
.article-type1 .conts a:not(.btn):hover {
  text-decoration: underline;
}
.article-type1 .conts p {
  margin-bottom: 16px;
}
.article-type1 .conts p.em {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 24px;
}
.article-type1 .conts .img {
  margin: 40px auto;
}
.article-type1 .conts .btn {
  margin-top: 16px;
  min-width: 200px;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (max-width: 750px) {
  .article-type1 {
    margin-bottom: 32px;
  }
  .article-type1 h3 p, .article-type1 h4 p, .article-type1 h5 p {
    line-height: 1.5;
  }
  .article-type1 .conts {
    padding: 0;
  }
  .article-type1 .conts .img {
    margin: 24px auto;
  }
  .article-type1 .conts .btn {
    width: 100%;
    margin: 0 auto;
  }
}

.article-type2 {
  zoom: 1;
  margin-bottom: 60px;
  /* SP-rewrite
  --------------------- */
}
.article-type2::before, .article-type2::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}
.article-type2::after {
  clear: both;
}
.article-type2 h3,
.article-type2 h4,
.article-type2 h5 {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  display: table;
  width: 100%;
  border: 1px solid #000000;
  font-weight: bold;
  margin-bottom: 24px;
}
.article-type2 h3 span,
.article-type2 h3 p,
.article-type2 h4 span,
.article-type2 h4 p,
.article-type2 h5 span,
.article-type2 h5 p {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  padding: 12px 12px;
}
.article-type2 h3 span,
.article-type2 h4 span,
.article-type2 h5 span {
  width: 72px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}
.article-type2 h3 p,
.article-type2 h4 p,
.article-type2 h5 p {
  padding: 12px 12px;
  text-align: left;
}
.article-type2 .img {
  display: block;
  width: 45%;
  float: left;
}
.article-type2 .conts {
  display: block;
  width: 55%;
  float: right;
  padding-left: 32px;
}
.article-type2 .conts a:not(.btn) {
  color: #ba0c2f;
}
.article-type2 .conts a:not(.btn):hover {
  text-decoration: underline;
}
.article-type2 .conts p {
  margin-bottom: 16px;
}
.article-type2 .conts p.em {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 24px;
}
.article-type2 .conts .btn {
  margin-top: 16px;
}
.article-type2 .conts .btn:not(.no-arr):not(.pdf) {
  min-width: 200px;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (max-width: 750px) {
  .article-type2 {
    margin-bottom: 32px;
  }
  .article-type2 h3 p, .article-type2 h4 p, .article-type2 h5 p {
    line-height: 1.5;
  }
  .article-type2 .conts,
  .article-type2 .img {
    float: none;
  }
  .article-type2 .img {
    width: 100%;
  }
  .article-type2 .img img {
    width: 100%;
  }
  .article-type2 .conts {
    width: 100%;
    padding: 24px 0;
  }
  .article-type2 .conts .btn {
    display: block;
    width: 100%;
  }
}

.article-type3 {
  zoom: 1;
  margin-bottom: 60px;
  /* SP-rewrite
  --------------------- */
}
.article-type3::before, .article-type3::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}
.article-type3::after {
  clear: both;
}
.article-type3 h3,
.article-type3 h4,
.article-type3 h5 {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  display: table;
  width: 100%;
  border: 1px solid #000000;
  font-weight: bold;
  margin-bottom: 24px;
}
.article-type3 h3 span,
.article-type3 h3 p,
.article-type3 h4 span,
.article-type3 h4 p,
.article-type3 h5 span,
.article-type3 h5 p {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  padding: 12px 12px;
}
.article-type3 h3 span,
.article-type3 h4 span,
.article-type3 h5 span {
  width: 72px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}
.article-type3 h3 p,
.article-type3 h4 p,
.article-type3 h5 p {
  padding: 12px 12px;
  text-align: left;
}
.article-type3 .subtit {
  display: table;
  width: 100%;
  font-weight: bold;
  margin-bottom: 24px;
}
.article-type3 .subtit span,
.article-type3 .subtit p {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  padding: 0 8px;
}
.article-type3 .subtit span {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  width: 36px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  font-size: 1.3rem;
}
.article-type3 .subtit p {
  padding: 4px 12px;
  text-align: left;
}
.article-type3 p {
  margin-bottom: 30px;
}
.article-type3 .img + p {
  margin-top: 24px;
}
.article-type3 .left {
  display: block;
  width: 50%;
  float: left;
  padding-right: 16px;
}
.article-type3 .right {
  display: block;
  width: 50%;
  float: right;
  padding-left: 16px;
}
@media (max-width: 750px) {
  .article-type3 {
    margin-bottom: 32px;
  }
  .article-type3 .subtit {
    margin-bottom: 12px;
  }
  .article-type3 p {
    margin-bottom: 16px;
  }
  .article-type3 .left,
  .article-type3 .right {
    float: none;
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .article-type3 .right {
    margin-top: 40px;
  }
}

/*----------------------------------------
  Article-design
----------------------------------------*/
@media (min-width: 751px) {
  #article-main {
    display: block;
    float: left;
    width: 70%;
    padding-right: 40px;
    margin-bottom: 64px;
  }
  #article-main.no-side {
    float: none;
    width: 100%;
    padding-right: 0;
  }
  #article-main .article-info {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -js-display: flex;
    margin-bottom: 24px;
  }
  #article-main .article-info li {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    color: #8b8d8e;
    margin-bottom: 16px;
  }
  #article-main .article-info .date {
    font-size: 1.6rem;
    font-weight: bold;
  }
  #article-main .article-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: left;
  }
  #article-main .share ul {
    padding: 16px 12px;
    background-color: #e3e3e2;
    color: #8b8d8e;
    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;
    -js-display: flex;
  }
  #article-main .share li {
    padding-left: 16px;
  }
  #article-main .share li:not(.label) {
    color: #000000;
  }
  #article-main .share li:first-of-type {
    padding-left: 0;
  }
  #article-main .share-plugin {
    zoom: 1;
    padding: 16px 12px 12px;
    background-color: #e3e3e2;
    color: #8b8d8e;
    text-align: center;
  }
  #article-main .share-plugin::before, #article-main .share-plugin::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #article-main .share-plugin::after {
    clear: both;
  }
  #article-main .article-paging {
    padding: 16px 16px;
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -js-display: flex;
  }
  #article-main .article-paging div {
    position: relative;
  }
  #article-main .article-paging div a {
    display: block;
    color: #ffffff;
  }
  #article-main .article-paging div a:hover {
    color: #ea0f3b;
  }
  #article-main .article-paging div a::before,
  #article-main .article-paging div a::after {
    position: absolute;
    display: block;
    font-family: fontAwesome;
    top: 50%;
    margin-top: -2.1rem;
    font-size: 2.6rem;
  }
  #article-main .article-paging .first,
  #article-main .article-paging .end {
    width: 5%;
  }
  #article-main .article-paging .new,
  #article-main .article-paging .old {
    width: 20%;
  }
  #article-main .article-paging .first a::before {
    content: '\f100';
    left: 0;
  }
  #article-main .article-paging .end a::after {
    content: '\f101';
    right: 0;
  }
  #article-main .article-paging .new {
    padding-left: 24px;
  }
  #article-main .article-paging .new a::before {
    content: '\f104';
    left: 0;
  }
  #article-main .article-paging .page-of {
    color: #8b8d8e;
    flex-grow: 2;
    text-align: center;
  }
  #article-main .article-paging .old {
    text-align: right;
    padding-right: 24px;
  }
  #article-main .article-paging .old a::after {
    content: '\f105';
    right: 0;
  }
  #article-main .article-none .title {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
  }
  #article-main .article-none .links {
    width: 100%;
    text-align: center;
  }
  #article-main .article-none .links .btn {
    width: 40%;
    padding: 12px 16px;
  }
  #article-main .article-none .links .btn:first-of-type {
    margin-right: 16px;
  }
  #article-main .article-list h4 {
    font-weight: bold;
    font-size: 1.8rem;
    padding-bottom: 16px;
    border-bottom: 2px solid #000000;
    margin-bottom: 24px;
  }
  #article-main .article-list h4 span {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    color: #8b8d8e;
    font-weight: bold;
    font-size: 1.4rem;
    padding-left: 16px;
  }
  #article-main .article-list .top-ul {
    display: block;
  }
  #article-main .article-list .top-ul li {
    display: table;
    zoom: 1;
    width: 100%;
    padding: 0 4px;
    padding-bottom: 24px;
    border-bottom: 3px dotted #c1c1c1;
    margin-bottom: 24px;
  }
  #article-main .article-list .top-ul li::before, #article-main .article-list .top-ul li::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #article-main .article-list .top-ul li::after {
    clear: both;
  }
  #article-main .article-list .top-ul li:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
  }
  #article-main .article-list .top-ul li ul, #article-main .article-list .top-ul li ol, #article-main .article-list .top-ul li dl {
    margin: 16px 0 24px;
    border: none;
  }
  #article-main .article-list .top-ul li ul li, #article-main .article-list .top-ul li ol li, #article-main .article-list .top-ul li dl li {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }
  #article-main .article-list .top-ul li ul li {
    list-style: disc;
    text-indent: -1.2rem;
    margin-left: 1rem;
  }
  #article-main .article-list .top-ul li ol li {
    list-style: decimal;
    text-indent: -1.2rem;
    margin-left: 1rem;
  }
  #article-main .article-list .top-ul li .thumb {
    display: table-cell;
    width: 160px;
    height: 160px;
    position: relative;
    overflow: hidden;
  }
  #article-main .article-list .top-ul li .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
  }
  #article-main .article-list .top-ul li .thumb + .article-ex {
    padding-left: 24px;
  }
  #article-main .article-list .top-ul li .article-ex {
    display: table-cell;
  }
  #article-main .article-list .top-ul li .article-ex a {
    display: block;
  }
  #article-main .article-list .top-ul li .article-ex .title {
    font-weight: bold;
    font-size: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #article-main .article-list .top-ul li .article-ex .conts-ex {
    display: block;
    margin: 16px 0;
  }
  #article-main .article-list .top-ul li .article-ex .article-info {
    margin-bottom: 12px;
  }
  #article-main .article-list .top-ul li .article-ex .article-info p {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    color: #8b8d8e;
    font-size: 1.3rem;
  }
  #article-main .article-list .top-ul li .article-ex .article-info .cate {
    margin-left: 12px;
  }
  #article-main .article-list .top-ul li .article-ex .article-info .cate.term a {
    display: inline;
  }
  #article-main .recommends {
    margin-top: 64px;
  }
}
@media (max-width: 750px) {
  .blog #sub-main {
    padding-bottom: 0;
  }
  .blog #sub-main .wrap-width {
    padding: 0;
  }

  #article-main {
    display: block;
  }
  #article-main .article-wrap {
    padding: 16px 16px 0;
  }
  #article-main .article-info {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -js-display: flex;
  }
  #article-main .article-info li {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    color: #8b8d8e;
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 1.3rem;
  }
  #article-main .article-info .cate {
    font-weight: normal;
  }
  #article-main .article-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 24px;
  }
  #article-main .share ul {
    padding: 16px 12px;
    background-color: #e3e3e2;
    color: #8b8d8e;
    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;
    -js-display: flex;
  }
  #article-main .share li {
    padding-left: 12px;
  }
  #article-main .share li:not(.label) {
    color: #000000;
  }
  #article-main .share li:first-of-type {
    padding-left: 0;
  }
  #article-main .share-plugin {
    zoom: 1;
    padding: 16px 12px 12px;
    background-color: #e3e3e2;
    color: #8b8d8e;
    text-align: center;
  }
  #article-main .share-plugin::before, #article-main .share-plugin::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #article-main .share-plugin::after {
    clear: both;
  }
  #article-main .article-paging {
    padding: 16px 16px;
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    font-size: 1.3rem;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -js-display: flex;
  }
  #article-main .article-paging div {
    position: relative;
  }
  #article-main .article-paging div a {
    display: block;
    color: #ffffff;
  }
  #article-main .article-paging div a:hover {
    color: #ea0f3b;
  }
  #article-main .article-paging div a::before,
  #article-main .article-paging div a::after {
    position: absolute;
    display: block;
    font-family: fontAwesome;
    top: 50%;
    margin-top: -2.1rem;
    font-size: 2.6rem;
  }
  #article-main .article-paging .first,
  #article-main .article-paging .end {
    width: 10%;
  }
  #article-main .article-paging .new,
  #article-main .article-paging .old {
    width: 22%;
  }
  #article-main .article-paging .first a::before {
    content: '\f100';
    left: 0;
  }
  #article-main .article-paging .end a::after {
    content: '\f101';
    right: 0;
  }
  #article-main .article-paging .new {
    padding-left: 16px;
  }
  #article-main .article-paging .new a::before {
    content: '\f104';
    left: 0;
  }
  #article-main .article-paging .page-of {
    color: #8b8d8e;
    flex-grow: 2;
    text-align: center;
  }
  #article-main .article-paging .old {
    text-align: right;
    padding-right: 16px;
  }
  #article-main .article-paging .old a::after {
    content: '\f105';
    right: 0;
  }
  #article-main .article-none {
    padding-top: 8px;
    padding-bottom: 40px;
  }
  #article-main .article-none .title {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
  }
  #article-main .article-none .links {
    width: 100%;
    text-align: center;
  }
  #article-main .article-none .links .btn {
    width: 45%;
    padding: 12px 16px;
  }
  #article-main .article-none .links .btn:first-of-type {
    margin-right: 16px;
  }
  #article-main .article-list {
    margin-top: 12px;
  }
  #article-main .article-list {
    padding: 0 16px;
  }
  #article-main .article-list h4 {
    font-weight: bold;
    font-size: 1.6rem;
    padding-bottom: 12px;
    border-bottom: 2px solid #000000;
    margin-bottom: 24px;
  }
  #article-main .article-list h4 span {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    color: #8b8d8e;
    font-weight: bold;
    font-size: 1.2rem;
    padding-left: 12px;
  }
  #article-main .article-list .top-ul {
    display: block;
  }
  #article-main .article-list .top-ul li {
    zoom: 1;
    display: block;
    border-bottom: 3px dotted #c1c1c1;
    margin-bottom: 24px;
  }
  #article-main .article-list .top-ul li::before, #article-main .article-list .top-ul li::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #article-main .article-list .top-ul li::after {
    clear: both;
  }
  #article-main .article-list .top-ul li:last-of-type {
    border-bottom: none;
    margin-bottom: 32px;
  }
  #article-main .article-list .top-ul li ul, #article-main .article-list .top-ul li ol, #article-main .article-list .top-ul li dl {
    margin: 16px 0 24px;
    border: none;
  }
  #article-main .article-list .top-ul li ul li, #article-main .article-list .top-ul li ol li, #article-main .article-list .top-ul li dl li {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }
  #article-main .article-list .top-ul li ul li {
    list-style: disc;
    text-indent: -1.2rem;
    margin-left: 1rem;
  }
  #article-main .article-list .top-ul li ol li {
    list-style: decimal;
    text-indent: -1.2rem;
    margin-left: 1rem;
  }
  #article-main .article-list .top-ul li .thumb {
    display: block;
    width: 100%;
    height: 120px;
    overflow: hidden;
    margin-bottom: 16px;
  }
  #article-main .article-list .top-ul li .article-ex a {
    display: block;
    padding-bottom: 16px;
  }
  #article-main .article-list .top-ul li .article-ex .title {
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #article-main .article-list .top-ul li .article-ex .conts-ex {
    display: block;
    margin: 16px 0;
  }
  #article-main .article-list .top-ul li .article-ex .article-info {
    margin-bottom: 12px;
  }
  #article-main .article-list .top-ul li .article-ex .article-info p {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    color: #8b8d8e;
    font-size: 1.2rem;
  }
  #article-main .article-list .top-ul li .article-ex .article-info .cate {
    margin-left: 12px;
  }
  #article-main .article-list .top-ul li .article-ex .article-info .cate.term a {
    display: inline;
  }
  #article-main .recommends {
    margin-top: 40px;
  }
}
@media (min-width: 751px) {
  #article-side {
    display: block;
    float: right;
    width: 30%;
  }
  #article-side section {
    margin-bottom: 48px;
  }
  #article-side h4 {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #e3e3e2;
    padding: 8px 16px;
    font-weight: bold;
  }
  #article-side h4 span {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    color: #8b8d8e;
    padding-left: 10px;
    font-size: 1.2rem;
  }
  #article-side .title-list {
    margin-top: 8px;
  }
  #article-side .title-list li {
    display: block;
    padding: 16px 8px;
    border-bottom: 3px dotted #c1c1c1;
  }
  #article-side .title-list li:last-of-type {
    border-bottom: none;
  }
  #article-side .title-list li p:first-of-type {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #8b8d8e;
  }
  #article-side .title-list .cate {
    display: inline;
    padding-left: 8px;
    color: #555555;
  }
  #article-side .title-list .cate a {
    font-size: 12px;
    color: #888888;
  }
  #article-side .cate-list {
    margin-top: 16px;
  }
  #article-side .cate-list li {
    list-style-type: none;
    text-indent: -1.9rem;
    margin-left: 3rem;
    line-height: 1.6;
    padding-right: 16px;
    margin-bottom: 8px;
  }
  #article-side .cate-list li:last-of-type {
    margin-bottom: 0;
  }
  #article-side .cate-list li::before {
    display: inline;
    content: "-　";
  }
  #article-side .cate-list ul {
    display: block;
    margin: 8px 0 12px;
  }
  #article-side .cate-list + ul {
    margin-top: 8px;
  }
  #article-side .cate-list.child-list {
    margin-left: 2rem;
  }
  #article-side .cate-list.child-list .catetop {
    margin-left: 1rem;
  }
  #article-side #author .logos {
    display: table;
  }
  #article-side #author .logos li {
    display: table-cell;
    width: 50%;
    text-align: center;
    padding: 10% 15%;
  }
  #article-side #author .logos li:first-of-type {
    padding-right: 5%;
  }
  #article-side #author .logos li:last-of-type {
    padding-left: 5%;
  }
  #article-side #author a {
    display: block;
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #000000;
    margin-bottom: 16px;
    font-weight: bold;
  }
}
@media (max-width: 750px) {
  #article-side {
    display: block;
  }
  #article-side section {
    margin-bottom: 24px;
  }
  #article-side h4 {
    background-color: #e3e3e2;
    padding: 8px 16px;
    font-weight: bold;
  }
  #article-side h4 span {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    color: #8b8d8e;
    padding-left: 10px;
    font-size: 1.2rem;
  }
  #article-side .title-list li {
    display: block;
    padding: 16px;
    border-bottom: 3px dotted #c1c1c1;
  }
  #article-side .title-list li:last-of-type {
    border-bottom: none;
  }
  #article-side .title-list li p:first-of-type {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #8b8d8e;
  }
  #article-side .title-list li p:first-of-type .cate {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    padding-left: 8px;
  }
  #article-side .cate-list {
    margin-top: 16px;
    padding: 0 8px;
  }
  #article-side .cate-list li {
    list-style-type: none;
    text-indent: -1.9rem;
    margin-left: 3rem;
    line-height: 1.6;
    padding-right: 16px;
    margin-bottom: 8px;
  }
  #article-side .cate-list li:last-of-type {
    margin-bottom: 0;
  }
  #article-side .cate-list li::before {
    display: inline;
    content: "-　";
  }
  #article-side .cate-list ul {
    display: block;
    margin: 8px 0 12px;
  }
  #article-side .cate-list + ul {
    margin-top: 8px;
  }
  #article-side .cate-list.child-list {
    margin-left: 2rem;
  }
  #article-side .cate-list.child-list .catetop {
    margin-left: 1rem;
  }
  #article-side #author {
    display: none;
  }
}


/*------------------------------------------------
  tabs-head
-------------------------------------------------*/
.tabs-head {
    display: block;
    width: 100%;
    background-color: #2D2D2D;
}
.tabs-head ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: strech;
  align-items: strech;
  -js-display: flex;
}
.tabs-head li {
  -webkit-flex: auto;
  flex: auto;
  display: block;
  position: relative;
  text-align: center;
}
.tabs-head li a {
  display: block;
  padding: 20px;
  color: #DADADA;
  border-right: 1px solid #555555;
}
.tabs-head li:first-of-type a {
  border-left: 1px solid #555555;
}
.tabs-head .cur a {
    color: #ffffff;
    background-color: #404040;
    font-weight: bold;
}

@media (max-width: 750px) {
  .tabs-head li a {
    display: block;
    padding: 12px 0 13px;
    color: #DADADA;
    border-right: 1px solid #555555;
  }

}