@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 .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;
  }
}

@media (max-width: 750px) {
  .footer-contact {
    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;
    width: 100%;
    height: 72px;
    background-color: #ba0c2f;
    color: #ffffff;
    border-top: none;
  }
  .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 .mail {
    padding-top: 26px;
    padding-left: 36px;
  }

  /*--------------------------------------*/
}
/*--------------------------------------*/
/*------------------------------------------------
  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;
  }
}

/*----------------------------------------
  Index Style
------------------------------------------
PC
SP
COMMON
----------------------------------------*/
/*----------------------------------------
  Index PC
----------------------------------------*/
@media (min-width: 751px) {
  /*--------------------------------------*/
  #top-vidual {
    background-color: #000000;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  #top-vidual .wrap-width {
    display: table-cell;
    height: 600px;
    vertical-align: middle;
    text-align: center;
  }
  #top-vidual .slide1,
  #top-vidual .slide2,
  #top-vidual .slide3 {
    display: table;
  }

  #top-vidual .slide1 {
    background: url("../images/index/top-slide1.jpg") no-repeat center top;
    background-size: cover;
    background-color: #000000;
  }
  #top-vidual .slide1 h2 {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 6.6rem;
    font-size: 6vw;
    text-align: center;
    margin: 0 auto 64px;
    padding-bottom: 8px;
    border-bottom: 6px solid #ffffff;
  }
  #top-vidual .slide1 .btns {
    text-align: center;
  }
  #top-vidual .slide1 .btns li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin-right: 24px;
  }
  #top-vidual .slide1 .btns li:last-of-type {
    margin-right: 0;
  }
  #top-vidual .slide1 .btns .btn {
    width: 300px;
    height: 80px;
    padding-top: 24px;
    font-size: 1.8rem;
  }

  #top-vidual .slide2 {
    background: url("../images/index/top-slide2.png") no-repeat center top;
    background-size: cover;
    background-color: #000000;
  }
  #top-vidual .slide2 h2 {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    font-weight: 700;
    color: #ffffff;
    font-size: 4rem;
    font-size: 4vw;
    text-align: center;
    margin: 0 auto 50px;
    padding-bottom: 8px;
  }
  #top-vidual .slide2 .btns {
    text-align: center;
  }
  #top-vidual .slide2 .btns li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin-right: 24px;
  }
  #top-vidual .slide2 .btns li:last-of-type {
    margin-right: 0;
  }
  #top-vidual .slide2 .btns .btn {
    width: 300px;
    height: 80px;
    padding-top: 24px;
    font-size: 1.8rem;
  }
  #top-vidual .slide2 .btns li:first-of-type .btn {
    background-color: #D4005D;
  }
  #top-vidual .slide2 .btns li:first-of-type .btn:hover {
    background-color: #ee005d;
  }

  .swiper-container {
    background-color: #000000;
    width: 100%;
    height: 600px;
  }

  .swiper-slide {
    background-color: #000000;
    width: 100%;
    height: 600px;
  }

  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 50px;
  }

  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: .5;
    margin: 0 6px !important;
  }

  .swiper-pagination-bullet-active {
    background-color: #ba0c2f;
    opacity: 1;
  }

  .caution-scam {
    display: block;
    width: 100%;
    background-color: #000000;
    padding: 30px 0;
    text-align: center;
  }
  .caution-scam .wrap-width {
    zoom: 1;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    text-align: left;
  }
  .caution-scam .wrap-width::before, .caution-scam .wrap-width::after {
    content: "";
    display: block;
    height: 0;
  }
  .caution-scam .wrap-width::after {
    clear: both;
  }
  .caution-scam i {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    color: #fff600;
    font-size: 40px;
    width: 56px;
    vertical-align: top;
  }
  .caution-scam p {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    color: #ffffff;
    font-size: 1.3rem;
  }

  .index section {
    font-size: 1.5rem;
  }
  .index section .wrap-width {
    padding: 64px 0 64px;
  }
  .index section h2 {
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 54px;
  }
  .index section .block.col-half {
    zoom: 1;
  }
  .index section .block.col-half::before, .index section .block.col-half::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  .index section .block.col-half::after {
    clear: both;
  }
  .index section .block.col-half .col1,
  .index section .block.col-half .col2 {
    display: block;
    width: 50%;
  }
  .index section .block.col-half .col1 {
    float: left;
    padding-right: 20px;
  }
  .index section .block.col-half .col2 {
    float: right;
    padding-left: 20px;
  }

/* ポリシー変更 */
  #index-policychange {
    background: repeating-linear-gradient(-45deg, #000000, #000000 3px, #1a1a1a 3px, #1a1a1a 6px);
    color: #fff;
  }

  #index-policychange .wrap-width {
    position: relative;
    padding: 64px 0 72px;
  }

  #index-policychange .wrap-width .video-btn{
    content: "";
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 64px;
    cursor: pointer;
  }

  #index-movie {
    background: url("../images/bg-top1.png") no-repeat center top;
    background-size: auto 100%;
    background-color: #f4f4f4;
  }
  #index-movie .wrap-width {
    padding: 72px 0 80px;
  }
  #index-movie h2 {
    margin-bottom: 48px;
  }
  #index-movie p {
    margin-bottom: 32px;
  }
  #index-movie .btn {
    width: 98%;
    font-size: 1.8rem;
    padding-left: 24px;
    padding-right: 64px;
  }

  #index-lmt {
    background: url("../images/bg-top2.png") no-repeat center bottom;
    background-color: #ffffff;
    font-size: 1.6rem;
  }
  #index-lmt .balloon {
    text-align: center;
    padding-top: 20px;
    font-size: 1.8rem;
  }
  #index-lmt .marking {
    width: 100%;
    text-align: center;
    background-color: #f4f4f4;
    margin: 20px auto;
    padding: 16px;
    font-size: 1.6rem;
  }
  #index-lmt h3 {
    font-weight: bold;
    font-size: 1.8rem;
  }
  #index-lmt .points {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    max-width: 1000px;
    margin: 20px auto;
    /* num ----------- */
  }
  #index-lmt .points li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    -webkit-flex: auto;
    flex: auto;
    min-width: 30%;
    margin-left: 3rem;
    border: 1px solid #000000;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 24px 8px 28px;
    text-align: center;
  }
  #index-lmt .points li:first-of-type {
    margin-left: 0;
  }
  #index-lmt .points span {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    background-color: #000000;
    color: #ffffff;
    line-height: 32px;
    display: block;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  #index-lmt .lmt-graph {
    margin: 80px auto 36px;
    text-align: center;
  }
  #index-lmt .lmt-graph img {
    max-width: 952px;
  }

  #index-cs {
    background-color: #f4f4f4;
  }
  #index-cs .caselist {
    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: 1000px;
    margin: 20px auto;
  }
  #index-cs .caselist li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    display: table;
    width: calc(100% / 5);
    max-width: 180px;
    min-width: 18%;
    margin-left: 1%;
    border: 1px solid #f4f4f4;
    box-sizing: border-box;
    background-color: #4b4b4a;
  }
  #index-cs .caselist li:first-of-type {
    margin-left: 0;
  }
  #index-cs .caselist li a {
    display: table-cell;
    height: 180px;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
  }
  #index-cs .caselist li a:hover {
    -moz-transition-property: background-color;
    -o-transition-property: background-color;
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background-color: rgba(246, 13, 60, 0.6);
  }
  #index-cs .caselist .c1 {
    background: url("../images/index/plan-bnr1.png") no-repeat center center;
  }
  #index-cs .caselist .c2 {
    background: url("../images/index/plan-bnr2.png") no-repeat center center;
  }
  #index-cs .caselist .c3 {
    background: url("../images/index/plan-bnr3.png") no-repeat center center;
  }
  #index-cs .caselist .c4 {
    background: url("../images/index/plan-bnr4.png") no-repeat center center;
  }
  #index-cs .caselist .c5 {
    background: url("../images/index/plan-bnr5.png") no-repeat center center;
  }

  #index-flow {
    background: url("../images/bg-top3.png") no-repeat left 35% top -64px;
    background-size: auto 100%;
    background-color: #ffffff;
  }
  #index-flow .course-graph {
    margin: 30px 0 64px;
  }
  #index-flow .course-graph .wrap-width {
    padding: 32px 20px 0;
  }
  #index-flow .course-graph .balloon {
    width: 100%;
    margin-top: 32px;
    font-size: 1.4rem;
    text-align: center;
  }
  #index-flow .bnrs {
    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: center;
    align-items: center;
    -js-display: flex;
    max-width: 1000px;
  }
  #index-flow .bnrs a {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    -webkit-flex: 0 1 30%;
    flex: 0 1 30%;
    max-width: 300px;
    height: 96px;
    border: 1px solid #000000;
    color: #ffffff;
    font-size: 1.6rem;
    padding: 20px 20px 0;
  }
  #index-flow .bnrs a span {
    display: block;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: -3px;
  }
  #index-flow .bnrs a.exc {
    background: #666666 url("../images/bg-bnr-exc1.jpg") no-repeat top 10% center;
    background-size: cover;
  }
  #index-flow .bnrs a.tm {
    background: #666666 url("../images/bg-bnr-tm1.jpg") no-repeat top 30% right -46px;
    background-size: cover;
  }
  #index-flow .bnrs a.tnr {
    background: #666666 url("../images/bg-bnr-tnr1.jpg") no-repeat top 10% right;
    background-size: cover;
  }

/* ViPRフロー */
  .vipr-wrap-width.block {
    padding: 64px 20px 0px;
  }

/* ViPR */
  #index-tool {
    background-color: #F4F4F4;
  }
  #index-tool .wrap-width {
    padding: 64px 16px;
  }
  #index-tool .btm {
    background-color: #fff;
    padding: 16px 0;
    text-align: center;
  }
  #index-tool .kg-list {
    margin: 40px auto 60px;
    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;
  }
  #index-tool .kg-list li {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-left: 5px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    padding: 12px 12px;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
  }
  #index-tool .kg-list li:first-of-type {
    margin-left: 0;
  }
  #index-tool .kg-list .kg2 {
    background-color: #00a19c;
  }
  #index-tool .kg-list .kg4 {
    background-color: #5c1a82;
  }
  #index-tool .kg-list .kg6 {
    background-color: #b4041c;
  }
  #index-tool .kg-list .kg8 {
    background-color: #0977cc;
  }
  #index-tool .kg-list .kg10 {
    background-color: #292929;
  }
  #index-tool .kg-list .kg12 {
    background-color: #1d7911;
  }
  #index-tool .kg-list .kg16 {
    background-color: #454545;
  }
  #index-tool .kg-list .kg20 {
    background-color: #000000;
  }
  #index-tool .index-tool-block {
    display: -webkit-flex;
    display: flex;
  }
  #index-tool .index-tool-block .img {
    width: 50%;
  }
  #index-tool .index-tool-block .img img {
    max-width: 450px;
  }
  #index-tool .index-tool-block .txtbox {
    width: 50%;
  }
  #index-tool .index-tool-block .txtbox p {
    margin-bottom: 40px;
  }
  #index-tool .index-tool-block .txtbox p:nth-child(2) {
    font-weight: bold;
    margin-bottom: 72px;
  }
  #index-tool .index-tool-block .txtbox a.txtinfo {
    color: #B4041C;
    text-decoration: underline;
    margin-bottom: 48px;
    display: inline-block;
  }
  #index-tool .index-tool-block .txtbox .link a {
    width: 100%;
  }

/* LMT動画 */
  #index-lmtmovie {
    background-color: #2B2B2B;
    color: #fff;
  }
  #index-lmtmovie .wrap-width {
    padding: 64px 16px;
  }
  #index-lmtmovie .tit-info {
    text-align: center;
    margin-bottom: 48px;
  }
  #index-lmtmovie .lmtmovie-box ul {
    display: flex;
    width: 100%;
  }
  #index-lmtmovie .lmtmovie-box ul li {
    width: 50%;
    padding: 24px;
  }
  #index-lmtmovie .lmtmovie-box ul li p.youtube-tit {
    margin-bottom: 8px;
    font-size: 2.0rem;
  }
  #index-lmtmovie .lmtmovie-box ul li p.youtube-tit i {
    color: #BA0C2F;
    margin-right: 8px;
  }
  #index-lmtmovie .lmtmovie-box ul li p:last-child {
    font-size: 1.6rem;
    margin-top: 24px;
  }
  #index-lmtmovie .link {
    text-align: center;
    margin-top: 40px;
  }
  #index-lmtmovie .link a {
    margin: 0 auto;
    width: 50%;
    text-align: left;
  }

/*ご利用者の声 */
#index-voice .wrap-width {
  padding: 64px 16px;
}
#index-voice .tm-list,
#index-voice .voice-list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  margin-bottom: 32px;
}
#index-voice .tm-list li,
#index-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;
}
#index-voice .tm-list li .disp {
  display: flex;
}
#index-voice .tm-list li .disp .prof{
  width: 65%;
}
#index-voice .tm-list li .disp .img {
  width: 35%;
}
#index-voice .tm-list li .disp .prof .title {
  margin-bottom: 24px;
}
#index-voice .tm-list li .disp .prof .name {
  font-size: 2.0rem;
}
#index-voice .tm-list li .disp .img img,
#index-voice .voice-list li .disp .img img {
  max-height: 192px;
  max-width: 180px; 
}
#index-voice .tm-list li .open-conts {
  margin-top: 40px;
}
#index-voice .tm-list li .open-conts .career dd {
  margin-bottom: 8px;
}
#index-voice .tm-list li .open-conts .comment {
  margin-top: 24px;
}
#index-voice .link {
  text-align: center;
  margin-top: 40px;
}
#index-voice .link a {
  margin: 0 auto;
  width: 50%;
  text-align: left;
}

/* NEWS */
  #index-news {
    background-color: #e3e3e2;
  }
  #index-news h2 {
    text-align: left;
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
  #index-news .topnews h2 {
    padding-bottom: 24px;
    border-bottom: 2px solid #000000;
  }
  #index-news .fb-widget h2 {
    position: relative;
  }
  #index-news .fb-widget h2 i {
    position: absolute;
    right: 0;
    top: 2px;
  }
  #index-news .col1 {
    padding-left: 20px;
  }
  #index-news .col2 {
    padding-right: 20px;
  }
  #index-news .frame-wrap-widget {
    width: 100%;
  }
  #index-news .topnews .article-list .news-ex {
    zoom: 1;
    display: block;
    padding: 0 4px;
    padding-bottom: 16px;
    border-bottom: 3px dotted #cacac8;
    margin-bottom: 32px;
  }
  #index-news .topnews .article-list .news-ex::before, #index-news .topnews .article-list .news-ex::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #index-news .topnews .article-list .news-ex::after {
    clear: both;
  }
  #index-news .topnews .article-list .news-ex:last-of-type {
    border-bottom: none;
    margin-bottom: 16px;
  }
  #index-news .topnews .article-list p {
    margin-left: 122px;
    margin-bottom: 12px;
  }
  #index-news .topnews .article-list .date {
    float: left;
    width: 122px;
    font-size: 1.8rem;
    margin-left: 0;
  }
  #index-news .topnews .article-list .cate {
    margin-bottom: 16px;
  }
  #index-news .topnews .article-list .cate span {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 3px 16px 4px;
    font-size: 1.2rem;
  }
  #index-news .topnews .article-list .title {
    font-size: 2rem;
    font-weight: bold;
  }
  #index-news .topnews .article-list .except {
    color: #4b4b4a;
    font-size: 1.3rem;
  }
  #index-news .topnews .article-list a {
    display: block;
    clear: both;
  }
  #index-news .topnews .article-list a:hover .title, #index-news .topnews .article-list a:hover .except {
    color: #ba0c2f;
  }
  #index-news .topnews .more {
    display: block;
    position: relative;
    height: 72px;
    border-top: 2px solid #000000;
    padding-top: 22px;
    padding-left: 24px;
  }
  #index-news .topnews .more::before {
    position: absolute;
    display: block;
    font-size: 2rem;
    font-family: fontAwesome;
    content: '\f105';
    left: 2px;
    top: 50%;
    margin-top: -1.8rem;
  }

  /*--------------------------------------*/
}
/*--------------------------------------*/
@media (min-width: 751px) and (max-width: 900px) {
  #top-vidual .slide1 h2 {
    font-size: 4.8rem;
    min-width: 750px;
  }
}
/*----------------------------------------
  Index SP
----------------------------------------*/
@media (max-width: 750px) {
  /*--------------------------------------*/
  #top-vidual {
    background-color: #000000;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  #top-vidual .wrap-width {
    display: table-cell;
    height: 540px;
    vertical-align: middle;
    text-align: center;
  }
  #top-vidual .slide1,
  #top-vidual .slide2,
  #top-vidual .slide3 {
    display: table;
  }
  #top-vidual .slide1 {
    background: url("../images/index/top-slide1-sp.jpg") no-repeat right 30% top;
    background-size: cover;
    background-color: #000000;
  }
  #top-vidual .slide1 h2 {
    font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 5.6rem;
    font-size: 14vw;
    text-align: center;
    min-width: 320px;
    width: 100%;
    margin: 20px auto 18px;
    padding-bottom: 8px;
    border-bottom: none;
    line-height: 1.4;
  }
  #top-vidual .slide1 .btns {
    text-align: center;
  }
  #top-vidual .slide1 .btns li {
    display: block;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 16px;
  }
  #top-vidual .slide1 .btns li:last-child {
    margin-bottom: 0;
  }
  #top-vidual .slide1 .btns .btn {
    width: 100%;
    height: 56px;
    padding-top: 15px;
    font-size: 1.6rem;
  }
  #top-vidual .slide2 {
    background: url("../images/index/top-slide2-sp.png") no-repeat center bottom;
    background-size: cover;
    background-color: #000000;
    background-position: 10% 0;
  }
  #top-vidual .slide2 h2 {
    font-weight: 700;
    color: #ffffff;
    font-size: 4.4rem;
    font-size: 10vw;
    text-align: center;
    min-width: 320px;
    width: 100%;
    margin: 0 auto 36px;
    border-bottom: none;
    padding: 0 24px;
    line-height: 1.3;
  }
  #top-vidual .slide2 h2 .smaller {
    display: block;
    margin-top: 2rem;
    font-size: 2.6rem;
    font-size: 6vw;
    line-height: 1.4;
  }
  #top-vidual .slide2 .btns {
    text-align: center;
  }
  #top-vidual .slide2 .btns li {
    display: block;
    width: 80%;
    margin: 0 auto 16px;
  }
  #top-vidual .slide2 .btns li:last-child {
    margin-bottom: 0;
  }
  #top-vidual .slide2 .btns .btn {
    width: 100%;
    height: 56px;
    padding-top: 15px;
    font-size: 1.6rem;
  }
  #top-vidual .slide2 .btns li:first-of-type .btn {
    background-color: #D4005D;
  }

  .swiper-container,
  .swiper-slide {
    background-color: #000000;
    width: 100%;
    height: 540px;
  }

  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 25px;
  }

  .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    opacity: .5;
    margin: 0 12px !important;
  }

  .swiper-pagination-bullet-active {
    background-color: #ba0c2f;
    opacity: 1;
  }

  .caution-scam {
    display: block;
    width: 100%;
    background-color: #000000;
    padding: 16px 24px 24px;
    text-align: center;
  }
  .caution-scam i {
    display: block;
    margin: 0 auto;
    color: #fff600;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .caution-scam p {
    color: #ffffff;
    font-size: 1.2rem;
  }

  .index section {
    font-size: 1.4rem;
  }
  .index section .wrap-width {
    padding: 24px 20px 32px;
  }
  .index section h2 {
    font-size: 4.8vw;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
  }

/* ポリシー変更 */
  #index-policychange {
    background: repeating-linear-gradient(-45deg, #000000, #000000 3px, #1a1a1a 3px, #1a1a1a 6px);
    color: #fff;
  }

  #index-policychange .wrap-width {
    padding: 40px 0 40px;
    margin: 0 20px;
    position: relative;
  }

  #index-policychange .wrap-width .video-btn{
    content: "";
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    bottom: 32px;
    cursor: pointer;
  }

  #index-movie {
    background: url("../images/bg-top1.png") no-repeat center bottom 15px;
    background-size: 180% auto;
    background-color: #f4f4f4;
  }
  #index-movie .frame-wrap-video {
    margin-bottom: 20px;
  }
  #index-movie p {
    margin-bottom: 36px;
  }
  #index-movie .btn {
    width: 100%;
  }

  #index-lmt {
    background: url("../images/bg-top2.png") no-repeat center bottom 6px;
    background-size: 170% auto;
    background-color: #ffffff;
  }
  #index-lmt .balloon {
    text-align: center;
    padding-top: 20px;
    margin-bottom: 30px;
  }
  #index-lmt .marking {
    width: 100%;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0 auto;
    padding: 16px;
  }
  #index-lmt h3 {
    font-weight: bold;
    font-size: 1.8rem;
  }
  #index-lmt .points {
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.6);
  }
  #index-lmt .points li {
    display: block;
    position: relative;
    border-bottom: 3px dotted #e3e3e2;
    padding: 8px 0 10px;
    padding-left: 36px;
  }
  #index-lmt .points li:last-of-type {
    border-bottom: none;
  }
  #index-lmt .points span {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    background-color: #000000;
    color: #ffffff;
    line-height: 20px;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    left: 0;
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    padding-left: 6px;
  }
  #index-lmt .lmt-graph {
    margin: 48px auto 0;
    text-align: center;
  }
  #index-lmt .lmt-graph img {
    max-width: 670px;
  }

  #index-cs {
    background-color: #000000;
  }
  #index-cs h2 {
    color: #ffffff;
  }
  #index-cs .caselist {
    margin: 24px auto 12px;
  }
  #index-cs .caselist li {
    display: block;
    border: 1px solid #f4f4f4;
    background-color: #4b4b4a;
    margin-bottom: 16px;
    background-size: auto 100%;
  }
  #index-cs .caselist li:last-of-type {
    margin-bottom: 0;
  }
  #index-cs .caselist li a {
    display: block;
    height: 60px;
    width: 100%;
    text-align: center;
    padding-top: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffffff;
  }
  #index-cs .caselist li a:hover {
    background-color: rgba(246, 13, 60, 0.6);
  }
  #index-cs .caselist .c1 {
    background: url("../images/index/plan-bnr1-sp.png") no-repeat center center;
    background-size: 100% auto;
  }
  #index-cs .caselist .c2 {
    background: url("../images/index/plan-bnr2-sp.png") no-repeat center center;
    background-size: 100% auto;
  }
  #index-cs .caselist .c3 {
    background: url("../images/index/plan-bnr3-sp.png") no-repeat center center;
    background-size: 100% auto;
  }
  #index-cs .caselist .c4 {
    background: url("../images/index/plan-bnr4-sp.png") no-repeat center center;
    background-size: 100% auto;
  }
  #index-cs .caselist .c5 {
    background: url("../images/index/plan-bnr5-sp.png") no-repeat center center;
    background-size: 100% auto;
  }

  #index-flow {
    background: url("../images/bg-top3.png") no-repeat left 35% top -10px;
    background-size: contain;
    background-color: #ffffff;
  }
  #index-flow .course-graph .wrap-width {
    padding-top: 0px;
    padding-bottom: 32px;
  }
  #index-flow .course-graph .balloon {
    width: 100%;
    margin-top: 32px;
  }
  #index-flow .bnrs a {
    display: block;
    position: relative;
    width: 100%;
    height: 60px;
    margin-bottom: 16px;
    border: 1px solid #000000;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.6rem;
    padding: 16px 20px;
  }
  #index-flow .bnrs a::after {
    position: absolute;
    display: block;
    font-family: fontAwesome;
    content: '\f105';
    right: 18px;
    top: 50%;
    margin-top: -2.1rem;
    font-weight: normal;
    font-size: 2.6rem;
    color: #ffffff;
  }
  #index-flow .bnrs a.exc {
    background: #666666 url("../images/bg-bnr-exc1.jpg") no-repeat top 10% center;
    background-size: 100% auto;
  }
  #index-flow .bnrs a.tm {
    background: #666666 url("../images/bg-bnr-tm1.jpg") no-repeat top 30% right -50px;
    background-size: 100% auto;
  }
  #index-flow .bnrs a.tnr {
    background: #666666 url("../images/bg-bnr-tnr1.jpg") no-repeat top 20% right;
    background-size: 100% auto;
  }

/* ViPRフロー */
  .vipr-wrap-width.block {
    padding: 24px 20px 0px;
  }

/* ViPR */
  #index-tool {
    background-color: #F4F4F4;
  }
  #index-tool .btm {
    background-color: #fff;
    padding: 16px 0;
    text-align: center;
  }
  #index-tool .kg-list {
    zoom: 1;
    display: table;
    margin: 32px auto 40px;
    text-align: center;
  }
  #index-tool .kg-list ::before,
  #index-tool .kg-list ::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  } 
  #index-tool .kg-list li {
    display: table-cell;
    float: left;
    min-width: 64px;
    margin-left: 8px;
    margin-bottom: 8px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    padding: 10px 4px;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.5rem;
  }
  #index-tool .kg-list li:first-of-type {
    margin-left: 0;
  }
  #index-tool .kg-list .kg2 {
    background-color: #00a19c;
  }
  #index-tool .kg-list .kg4 {
    background-color: #5c1a82;
  }
  #index-tool .kg-list .kg6 {
    background-color: #b4041c;
  }
  #index-tool .kg-list .kg8 {
    background-color: #0977cc;
  }
  #index-tool .kg-list .kg10 {
    background-color: #292929;
  }
  #index-tool .kg-list .kg12 {
    background-color: #1d7911;
  }
  #index-tool .kg-list .kg16 {
    background-color: #454545;
  }
  #index-tool .kg-list .kg20 {
    background-color: #000000;
  }
  #index-tool .kg-list li.kg10 {
    margin-left: 0;
    clear: both;
  }
  #index-tool .index-tool-block .img {
    max-width: 300px;
    margin: 0 auto 40px;
  }
  #index-tool .index-tool-block .txtbox {
    width: 100%;
  }
  #index-tool .index-tool-block .txtbox p {
    margin-bottom: 24px;
  }
  #index-tool .index-tool-block .txtbox p:nth-child(2) {
    font-weight: bold;
    margin-bottom: 24px;
  }
  #index-tool .index-tool-block .txtbox a.txtinfo {
    color: #B4041C;
    text-decoration: underline;
    margin-bottom: 40px;
    display: inline-block;
  }
  #index-tool .index-tool-block .txtbox .link a {
    width: 100%;
  }


/* LMT動画 */
  #index-lmtmovie {
    background-color: #2B2B2B;
    color: #fff;
  }
  #index-lmtmovie .tit-info {
    text-align: center;
    margin-bottom: 32px;
  }
  #index-lmtmovie .lmtmovie-box ul {
    width: 100%;
  }
  #index-lmtmovie .lmtmovie-box ul li {
    width: 100%;
    margin-bottom: 24px;
  }
  #index-lmtmovie .lmtmovie-box ul li p.youtube-tit {
    margin-bottom: 8px;
    font-size: 2.0rem;
  }
  #index-lmtmovie .lmtmovie-box ul li p.youtube-tit i {
    color: #BA0C2F;
    margin-right: 8px;
  }
  #index-lmtmovie .lmtmovie-box ul li p:last-child {
    font-size: 1.6rem;
    margin-top: 24px;
  }
  #index-lmtmovie .link {
    text-align: center;
    margin-top: 40px;
  }
  #index-lmtmovie .link a {
    margin: 0 auto;
    width: 100%;
    text-align: left;
  }

/*ご利用者の声 */
  #index-voice .tm-list,
  #index-voice .voice-list {
  }
  #index-voice .tm-list li,
  #index-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;
  }
  #index-voice .tm-list li .disp {
    display: flex;
  }
  #index-voice .tm-list li .disp .prof{
    width: 65%;
  }
  #index-voice .tm-list li .disp .img {
    width: 35%;
  }
  #index-voice .tm-list li .disp .prof .title {
    margin-bottom: 24px;
  }
  #index-voice .tm-list li .disp .prof .name {
    font-size: 2.0rem;
  }
  #index-voice .tm-list li .disp .img img,
  #index-voice .voice-list li .disp .img img {
    max-height: 192px;
    max-width: 180px; 
  }
  #index-voice .tm-list li .open-conts {
    margin-top: 40px;
  }
  #index-voice .tm-list li .open-conts .career dd {
    margin-bottom: 8px;
  }
  #index-voice .tm-list li .open-conts .comment {
    margin-top: 24px;
  }
  #index-voice .link {
    text-align: center;
    margin-top: 40px;
  }
  #index-voice .link a {
    margin: 0 auto;
    width: 100%;
    text-align: left;
  }

  #index-news {
    background-color: #e3e3e2;
  }
  #index-news .wrap-width {
    padding: 0;
    margin-bottom: 0;
  }
  #index-news .topnews h2 {
    padding-bottom: 12px;
    margin: 0 20px;
    border-bottom: 3px solid #000000;
    margin-bottom: 30px;
    text-align: left;
    font-size: 2rem;
  }
  #index-news .fb-widget h2 {
    position: relative;
    margin-bottom: 0;
    text-align: left;
    font-size: 1.4rem;
    width: 100%;
    height: 54px;
    font-weight: normal;
  }
  #index-news .fb-widget h2 a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 16px 20px;
    background-color: #425f9b;
    color: white;
  }
  #index-news .fb-widget h2 i {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -0.7rem;
  }
  #index-news .topnews {
    padding: 24px 0 0;
  }
  #index-news .topnews h2 {
    margin-bottom: 24px;
  }
  #index-news .topnews .article-list {
    padding: 0 20px;
  }
  #index-news .topnews .article-list .news-ex {
    zoom: 1;
    display: block;
    padding: 0 4px;
    padding-bottom: 24px;
    border-bottom: 3px dotted #cacac8;
    margin-bottom: 24px;
  }
  #index-news .topnews .article-list .news-ex::before, #index-news .topnews .article-list .news-ex::after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
  }
  #index-news .topnews .article-list .news-ex::after {
    clear: both;
  }
  #index-news .topnews .article-list .news-ex:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
  }
  #index-news .topnews .article-list .date {
    float: left;
    width: 122px;
    font-size: 1.8rem;
    margin-left: 0;
  }
  #index-news .topnews .article-list .cate {
    float: right;
    margin-bottom: 16px;
  }
  #index-news .topnews .article-list .cate span {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 3px 16px 4px;
    font-size: 1.2rem;
  }
  #index-news .topnews .article-list .title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 12px;
  }
  #index-news .topnews .article-list .except {
    color: #4b4b4a;
    font-size: 1.3rem;
  }
  #index-news .topnews .article-list a {
    display: block;
    clear: both;
    width: 100%;
    margin-top: 8px;
  }
  #index-news .topnews .more {
    display: block;
    position: relative;
    width: 100%;
    height: 64px;
    padding: 20px 20px;
    background-color: #000000;
    font-size: 1.4rem;
    color: white;
  }
  #index-news .topnews .more::after {
    position: absolute;
    display: block;
    font-family: fontAwesome;
    content: '\f105';
    right: 20px;
    top: 50%;
    margin-top: -2.1rem;
    font-size: 2.6rem;
  }

  /*--------------------------------------*/
}
/*--------------------------------------*/
/*----------------------------------------
  PC / SP 共通
----------------------------------------*/
.fade-up {
  transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -webkit-transition: transform 0.6s;
  -o-transition: transform 0.6s;
}
