@charset "UTF-8";
/*!!!! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします  */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700;900&family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #000000;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  font-size: 16px;
  letter-spacing: 0.03em;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 960px) {
  img {
    border: 0;
    max-width: 100%;
    height: auto;
  }
}

a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover {
  opacity: 0.7;
}
a img {
  border: none;
}

i {
  padding: 0 5px;
}

ul {
  letter-spacing: -1em;
}
ul li {
  letter-spacing: 0;
  list-style: none;
}

.pc {
  display: block;
}
@media only screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.tablet {
  display: none;
}
@media only screen and (max-width: 960px) {
  .tablet {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  .tablet {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 960px) {
  .sp {
    display: block;
  }
}

.ssp {
  display: none;
}
@media only screen and (max-width: 480px) {
  .ssp {
    display: block;
  }
}

/*PC改行加える*/
.br-pc {
  display: inherit;
}
@media only screen and (max-width: 960px) {
  .br-pc {
    display: none;
  }
}

/*PC改行無効*/
.br_sp {
  display: none;
}
@media only screen and (max-width: 960px) {
  .br_sp {
    display: block;
  }
}

.br_ssp {
  display: none;
}
@media only screen and (max-width: 480px) {
  .br_ssp {
    display: block;
  }
}

/************************************

wrapper

************************************/
.wrapper {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.wrapper::after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (max-width: 960px) {
  .wrapper {
    width: 84%;
  }
}

/************************************

.list(flexbox)

************************************/
.list, .container {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list::after, .container::after {
  content: "";
  display: block;
  clear: both;
}
.list article, .container article {
  width: auto;
}

/*ズームイン表示*/
.zoomin {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
}

.mv01 {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}

/*フェードイン表示*/
.fadein {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
}

.fadein:not(:target) {
  opacity: 1\9 ;
  /*IE9対策*/
}

.mv02 {
  opacity: 1;
}

/*移動＋フェードイン表示*/
.fadeup {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
}

.fadeup:not(:target) {
  opacity: 1\9 ;
  /*IE9対策*/
}

.mv07 {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

/*移動＋フェードダウン表示*/
.fadedown {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
  transform: translate(0, -30px);
  -webkit-transform: translate(0, -30px);
}

.fadedown:not(:target) {
  opacity: 1\9 ;
  /*IE9対策*/
}

.mv08 {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

@media print {
  .zoomin, .fadein, .fadeup, .fadedown {
    opacity: 1;
  }
}
/************************************

header

************************************/
header {
  position: fixed;
  z-index: 10;
  background-color: #fff;
  width: 100%;
  height: 80px;
}
@media print {
  header {
    position: relative;
  }
}
@media only screen and (max-width: 960px) {
  header {
    position: relative;
    height: 60px;
  }
}
header .wrapper {
  width: 96%;
  max-width: 96%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 960px) {
  header .wrapper {
    width: 92%;
    max-width: 92%;
    height: 60px;
  }
}
header h1 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  width: 250px;
}
@media only screen and (max-width: 960px) {
  header h1 {
    font-size: 20px;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  header h1 {
    font-size: 18px;
  }
}
header nav {
  width: calc(100% - 250px - 2%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 960px) {
  header nav {
    display: none;
  }
}
header h3 {
  font-weight: normal;
  font-size: 12px;
  width: 100%;
  padding-left: 10%;
  padding-bottom: 3px;
  color: #666;
  text-align: right;
}
header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header ul li {
  margin: 0 15px;
  font-weight: 500;
}
@media only screen and (max-width: 1150px) {
  header ul li {
    margin: 0 8px;
  }
  header ul li:first-child {
    display: none;
  }
}
@media only screen and (max-width: 1060px) {
  header ul li {
    font-size: 14px;
  }
}
header .rusea {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 0 15px;
}
@media only screen and (max-width: 1060px) {
  header .rusea {
    font-size: 14px;
  }
}
header .drone {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 250px;
  width: 190px;
}
@media only screen and (max-width: 1100px) {
  header .drone {
    left: 200px;
    width: 160px;
  }
}
@media only screen and (max-width: 960px) {
  header .drone {
    left: auto;
    right: 60px;
    width: 150px;
  }
}
@media only screen and (max-width: 480px) {
  header .drone {
    right: 45px;
    width: 120px;
  }
}

footer {
  background-color: #f3f3f3;
  padding: 60px 0;
  text-align: center;
}
footer h2 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 21px;
}
footer nav {
  margin: 30px 0;
}
footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer nav ul li {
  border-right: 1px solid #000000;
  line-height: 1.1;
}
@media only screen and (max-width: 960px) {
  footer nav ul li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 480px) {
  footer nav ul li {
    width: 48%;
    margin: 1%;
    border: none;
  }
}
@media only screen and (max-width: 960px) {
  footer nav ul li:first-child {
    display: none;
  }
}
footer nav ul li:last-child {
  border-right: none;
}
@media only screen and (max-width: 480px) {
  footer nav ul li:last-child {
    width: 98%;
  }
}
footer nav ul li a {
  display: block;
  padding: 0 20px;
}
@media only screen and (max-width: 960px) {
  footer nav ul li a {
    padding: 0 12px;
  }
}
@media only screen and (max-width: 480px) {
  footer nav ul li a {
    background-color: #fff;
    padding: 10px;
  }
}
footer nav .sns {
  margin: 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer nav .sns a {
  display: block;
  width: 24px;
  margin: 0 10px;
}
footer .addr {
  font-size: 15px;
  margin: 0 0 30px;
}
@media only screen and (max-width: 960px) {
  footer .addr {
    font-size: 14px;
  }
}
footer .addr h2 {
  font-size: 15px;
}
footer .copyright {
  font-size: 11px;
  letter-spacing: 0.08em;
}
footer .shinsei {
  margin: 20px 0 0;
  font-size: 11px;
  letter-spacing: 0.08em;
}

/************************************

PageUP

************************************/
#pageup {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 5px;
  right: 5px;
  z-index: 10;
  font-size: 8px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#pageup.none {
  display: none;
}
#pageup a {
  width: 50px;
  padding: 36px 0 4px 0;
  position: relative;
  display: block;
  text-decoration: none;
  line-height: 100%;
  color: #555;
}
#pageup a::before {
  position: absolute;
  top: 26px;
  left: 0px;
  right: 0;
  margin: auto;
  border-top: 1px solid #555;
  border-left: 1px solid #555;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

/************************************

main

************************************/
main {
  display: block;
  padding-top: 80px;
}
@media only screen and (max-width: 960px) {
  main {
    padding-top: 0;
  }
}
main section {
  padding-top: 80px;
  margin-top: -80px;
}
@media only screen and (max-width: 960px) {
  main section {
    margin-top: 0;
    padding-top: 0;
  }
}
main .white {
  padding: 80px 0;
  background-color: #fff;
}
main .blue {
  padding: 60px 0;
  background-color: #eaf7ff;
  position: relative;
}
main .blue.back-top {
  margin-top: 9.375vw;
}
main .blue.back-top::before {
  position: absolute;
  width: 100%;
  height: 9.375vw;
  left: 0px;
  background-repeat: none;
  background-size: contain;
  content: "";
  background-image: url("../images/back_top@2x.png");
  background-position: left bottom;
  top: -9.375vw;
}
main .blue.back-bottom {
  margin-bottom: 9.375vw;
}
main .blue.back-bottom::after {
  position: absolute;
  width: 100%;
  height: 9.375vw;
  left: 0px;
  background-repeat: none;
  background-size: contain;
  content: "";
  background-image: url("../images/back_bottom@2x.png");
  background-position: left top;
  bottom: -9.375vw;
}

.midashi1 {
  margin: 0 0 40px;
  text-align: center;
}
.midashi1 .eng {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin: 0 0 15px;
  display: inline-block;
  padding: 0 20px;
  position: relative;
  color: #0059bc;
}
@media only screen and (max-width: 960px) {
  .midashi1 .eng {
    font-size: 16px;
  }
}
.midashi1 .eng::before, .midashi1 .eng::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 80px;
  height: 1px;
  background-color: #0059bc;
  content: "";
}
@media only screen and (max-width: 960px) {
  .midashi1 .eng::before, .midashi1 .eng::after {
    width: 50px;
  }
}
.midashi1 .eng::before {
  left: -80px;
}
@media only screen and (max-width: 960px) {
  .midashi1 .eng::before {
    left: -50px;
  }
}
.midashi1 .eng::after {
  right: -80px;
}
@media only screen and (max-width: 960px) {
  .midashi1 .eng::after {
    right: -50px;
  }
}
.midashi1 h2 {
  font-size: 36px;
  font-weight: 900;
}
@media only screen and (max-width: 960px) {
  .midashi1 h2 {
    font-size: 26px;
  }
}

.youtube-area {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube-area iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.bt {
  margin: 15px 0;
}
.bt a {
  border: 2px solid #0059bc;
  font-size: 15px;
  font-weight: 900;
  font-family: "Lato", sans-serif;
  color: #0059bc;
  display: inline-block;
  padding: 8px 60px;
  position: relative;
  margin: 0 7px 5px 0;
  position: relative;
  z-index: 1;
}
.bt a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  border-top: 2px solid #0059bc;
  border-right: 2px solid #0059bc;
  width: 6px;
  height: 6px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}
.bt a::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #0059bc;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.bt a:hover {
  opacity: 1;
  color: #fff;
}
.bt a:hover::before {
  border-color: #fff;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.bt a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.inpagenavi {
  padding: 50px 0 0;
}
.inpagenavi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.inpagenavi ul li {
  margin: 0 10px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 960px) {
  .inpagenavi ul li {
    margin: 0 1%;
    width: 31.3%;
  }
}
@media only screen and (max-width: 480px) {
  .inpagenavi ul li {
    font-size: 13px;
  }
}
.inpagenavi ul li a {
  display: block;
  padding: 10px 50px 10px 40px;
  border: 1px solid #ccc;
  color: #666;
  background-color: #f2f2f2;
  position: relative;
}
@media only screen and (max-width: 960px) {
  .inpagenavi ul li a {
    padding: 10px 0;
  }
}
@media only screen and (max-width: 480px) {
  .inpagenavi ul li a {
    padding: 10px 5px 20px 5px;
  }
}
.inpagenavi ul li a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #0059bc;
  border-right: 1px solid #0059bc;
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}
@media only screen and (max-width: 480px) {
  .inpagenavi ul li a::before {
    right: 0;
    left: 0;
    margin: auto;
    top: auto;
    bottom: 5px;
  }
}
.inpagenavi ul li a:hover {
  background-color: #0059bc;
  opacity: 1;
  color: #fff;
  border: 1px solid #fff;
}
.inpagenavi ul li a:hover::before {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

/************************************

raf

************************************/
.raf {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.raf img {
  width: 100%;
  height: auto;
}

.raf a:hover {
  opacity: 1;
}

/*!------------------------------------*\
    Base
\*!------------------------------------*/
.drawer-nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  overflow: hidden;
  width: 80vw;
  color: #000000;
  height: 100%;
  background-color: #fff;
}

.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.drawer-open .drawer-overlay {
  display: block;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: -80vw;
  -webkit-transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 80vw;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
  position: fixed;
  z-index: 104;
  top: 7px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 30px;
  padding-top: 14px;
  padding-right: 10px;
  padding-bottom: 30px;
  padding-left: 10ox;
  background-color: transparent;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #000000;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  left: 0;
  content: " ";
}

.drawer-hamburger-icon:after {
  top: 10px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/
/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/
.drawer-menu {
  padding: 8%;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .drawer-menu {
    padding-top: 80px;
  }
}

.drawer-menu .drone {
  position: absolute;
  top: 0;
  left: auto;
  right: 60px;
  width: 150px;
}
@media only screen and (max-width: 480px) {
  .drawer-menu .drone {
    right: 45px;
    width: 120px;
  }
}

.drawer-menu h2 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  margin: 0 0 30px;
}

.drawer-menu .basic li {
  margin: 0 0 0px;
  font-size: 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
  position: relative;
}
.drawer-menu .basic li a {
  display: block;
  padding: 10px 0;
}
.drawer-menu .basic li a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  border-top: 2px solid #0059bc;
  border-right: 2px solid #0059bc;
  width: 7px;
  height: 7px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

.drawer-menu .rusea {
  margin: 15px 0;
}
.drawer-menu .rusea a {
  background-color: #eaf7ff;
  display: block;
  border-radius: 3px;
  padding: 10px;
  text-align: center;
}

.drawer-menu ul.icon {
  width: 100%;
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px 0;
}
.drawer-menu ul.icon li {
  width: 50px;
  padding: 10px;
  border-bottom: none;
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
#top #top_first {
  width: 100%;
  height: calc(100vh - 80px);
  margin-top: 0;
  padding-top: 0;
}
@media screen and (max-width: 960px) and (orientation: landscape) {
  #top #top_first {
    /* 横向きの場合のスタイル */
  }
}
@media screen and (max-width: 960px) and (orientation: portrait) {
  #top #top_first {
    /* 縦向きの場合のスタイル */
    height: 100vw;
  }
}
@media only screen and (max-width: 480px) {
  #top #top_first {
    height: 100vw;
  }
}
#top #top_first .youtube-area-first {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#top #top_first .youtube-area-first iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-width: 1920px;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#top #top_policy p {
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.8;
}
#top #top_policy .movie {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
#top #top_service .container {
  max-width: 1600px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 960px) {
  #top #top_service .container {
    width: 84%;
  }
}
#top #top_service .movie {
  width: 65%;
}
@media only screen and (max-width: 960px) {
  #top #top_service .movie {
    width: 100%;
  }
}
#top #top_service .text {
  width: 25%;
  margin: 0 5% 0;
}
@media only screen and (max-width: 960px) {
  #top #top_service .text {
    width: 100%;
    margin: 24px 0 0;
  }
}
#top #top_service .text p {
  line-height: 1.8;
}
@media only screen and (max-width: 960px) {
  #top #top_service .text .bt {
    text-align: center;
  }
}
#top #top_service .service_slide {
  margin: 70px 0 0;
}
#top #top_course .wrapper {
  max-width: 720px;
}
#top #top_course p {
  line-height: 2;
}
#top #top_course .calendar {
  margin: 40px 0;
}
#top #top_course .bt {
  text-align: center;
}
#top #top_course .line {
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  padding: 4%;
  margin: 40px 0 0;
}
@media only screen and (max-width: 960px) {
  #top #top_course .line {
    padding: 6%;
  }
}
#top #top_course .line h4 {
  font-size: 20px;
}
#top #top_course .line p {
  margin: 7px 0 15px;
  line-height: 1.5;
}
@media only screen and (max-width: 480px) {
  #top #top_course .line p {
    text-align: left;
  }
}
#top #top_course .line .line_bt img {
  height: 50px;
}
#top #top_about .wrapper {
  max-width: 900px;
}
#top #top_about dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding: 15px;
}
#top #top_about dl dt {
  width: 25%;
}
@media only screen and (max-width: 480px) {
  #top #top_about dl dt {
    width: 100%;
    margin: 0 0 15px;
  }
}
#top #top_about dl dt h3 {
  padding: 3px 0 3px 15px;
  font-weight: 700;
  border-left: 5px solid #0059bc;
  font-size: 16px;
  line-height: 1.3;
}
#top #top_about dl dd {
  width: 70%;
  font-size: 14px;
}
@media only screen and (max-width: 480px) {
  #top #top_about dl dd {
    width: 100%;
  }
}
#top #top_about dl dd img {
  margin-bottom: 5px;
}
#top #top_about dl dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#top #top_about dl dd ul li {
  width: 46%;
  margin: 0 4% 10px 0;
}
@media only screen and (max-width: 480px) {
  #top #top_about dl dd ul li {
    width: 100%;
    margin: 0 0 10px;
  }
}
#top #top_about dl dd ul li img {
  max-height: 50px;
}
#top #top_about dl dd ul li .link {
  display: block;
  font-size: 12px;
  padding: 5px 0 5px 12px;
  position: relative;
}
#top #top_about dl dd ul li .link::before {
  position: absolute;
  top: 15px;
  left: 0px;
  border-top: 1px solid #0059bc;
  border-right: 1px solid #0059bc;
  width: 5px;
  height: 5px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}
#top #top_about dl dd ul li .link a {
  color: #0059bc;
  text-decoration: underline;
}
#top #top_about .facebook {
  max-width: 500px;
  margin: 50px auto 0;
}
#top #top_about .facebook .facebook-wrapper {
  max-width: 500px;
  /* Facebook Page Plugin の最大幅 */
  margin: 0 auto;
}
#top #top_about .facebook .facebook-wrapper > .fb-page {
  width: 100%;
}
#top #top_about .facebook .facebook-wrapper > .fb-page > span,
#top #top_about .facebook .facebook-wrapper iframe {
  width: 100% !important;
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
#service #lead .movie {
  margin: 0 0 60px;
}
@media only screen and (max-width: 960px) {
  #service #lead .movie {
    margin: 0 0 40px;
  }
}
#service #lead p {
  line-height: 2;
  max-width: 720px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 960px) {
  #service #lead p {
    line-height: 1.7;
    margin: 0 auto 30px;
  }
}
#service #lead .container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#service #lead .container article {
  background-color: #eaf7ff;
  width: 31%;
  padding: 3% 2%;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  #service #lead .container article {
    width: 80%;
    margin: 0 auto 10px;
    padding: 3% 5%;
  }
}
#service #lead .container p {
  font-size: 14px;
  line-height: 1.4;
  margin: 10px 0 0;
}
#service #naiyo article {
  margin: 0 auto 90px;
}
@media only screen and (max-width: 960px) {
  #service #naiyo article {
    margin: 0 auto 70px;
  }
}
#service #naiyo .text h3 {
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 900;
}
@media only screen and (max-width: 960px) {
  #service #naiyo .text h3 {
    font-size: 22px;
  }
}
#service #naiyo .text h3 .no {
  display: block;
  position: absolute;
  top: -50px;
  left: -30px;
  z-index: -1;
  font-family: "Lato", sans-serif;
  font-size: 80px;
  color: #fff;
}
@media only screen and (max-width: 960px) {
  #service #naiyo .text h3 .no {
    font-size: 60px;
    top: -40px;
    left: -15px;
  }
}
#service #naiyo .text h4 {
  margin: 1rem 0;
}
#service #naiyo .text p {
  line-height: 1.8;
}
#service #naiyo .text p a {
  color: #0059bc;
  text-decoration: underline;
}
#service #naiyo .text ol {
  margin: 5px 0 0 20px;
}
#service #naiyo .text ol li {
  margin: 0 0 10px;
}
#service #naiyo #naiyo1 .text {
  max-width: 720px;
  margin: 0 auto 40px;
}
#service #naiyo #naiyo1 .text .midashi {
  text-align: center;
}
@media only screen and (max-width: 480px) {
  #service #naiyo #naiyo1 .text .midashi {
    text-align: left;
  }
}
#service #naiyo #naiyo1 .text .midashi h3 {
  display: inline-block;
}
@media only screen and (max-width: 480px) {
  #service #naiyo #naiyo1 .text .midashi h3 {
    display: block;
  }
}
#service #naiyo #naiyo1 .image {
  background-color: #fff;
  padding: 30px;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  #service #naiyo #naiyo1 .image {
    padding: 0;
  }
}
#service #naiyo #naiyo1 .image img {
  max-width: 720px;
  width: 100%;
}
#service #naiyo .two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1600px;
}
#service #naiyo .two .text {
  width: 45%;
  padding: 30px 5% 0 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (max-width: 480px) {
  #service #naiyo .two .text {
    width: 100%;
    padding: 30px 8% 0;
  }
}
#service #naiyo .two .image {
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media only screen and (max-width: 480px) {
  #service #naiyo .two .image {
    width: 100%;
    padding-top: 75%;
    height: 0;
  }
}
#service #naiyo .two.img_r .text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 30px 0 0 5%;
}
@media only screen and (max-width: 480px) {
  #service #naiyo .two.img_r .text {
    padding: 30px 8% 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#service #naiyo .two.img_r .image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (max-width: 480px) {
  #service #naiyo .two.img_r .image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#service #naiyo #naiyo2 .image {
  background-image: url("../images/service/naiyo2.jpg");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  #service #naiyo #naiyo2 .image {
    background-image: url("../images/service/naiyo2@2x.jpg");
  }
}
@media only screen and (max-width: 480px) {
  #service #naiyo #naiyo2 .image {
    background-image: url("../images/service/naiyo2-sp@2x.jpg");
  }
}
#service #naiyo #naiyo3 .image {
  background-image: url("../images/service/naiyo3@2x.jpg");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  #service #naiyo #naiyo3 .image {
    background-image: url("../images/service/naiyo3@2x.jpg");
  }
}
@media only screen and (max-width: 480px) {
  #service #naiyo #naiyo3 .image {
    background-image: url("../images/service/naiyo3-sp@2x.jpg");
  }
}
#service #naiyo #naiyo4 {
  margin-bottom: 0;
}
#service #naiyo #naiyo4 .image {
  background-image: url("../images/service/naiyo4.jpg");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  #service #naiyo #naiyo4 .image {
    background-image: url("../images/service/naiyo4@2x.jpg");
  }
}
@media only screen and (max-width: 480px) {
  #service #naiyo #naiyo4 .image {
    background-image: url("../images/service/naiyo4-sp@2x.jpg");
  }
}
#service #point article {
  width: 46%;
  margin: 0 2%;
}
@media only screen and (max-width: 480px) {
  #service #point article {
    width: 100%;
    margin: 0 0 40px;
  }
  #service #point article:last-child {
    margin-bottom: 0;
  }
}
#service #point .midashi {
  margin: 25px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#service #point .point_icon {
  background-color: #eaf7ff;
  width: 80px;
  text-align: center;
  padding: 5px 0;
  color: #0059bc;
  font-family: "Lato", sans-serif;
}
@media only screen and (max-width: 960px) {
  #service #point .point_icon {
    width: 60px;
  }
}
#service #point .point_icon .eng {
  font-size: 12px;
  border-bottom: 2px solid #0059bc;
  margin: 0 0;
  display: inline-block;
}
@media only screen and (max-width: 960px) {
  #service #point .point_icon .eng {
    font-size: 11px;
  }
}
#service #point .point_icon .no {
  font-size: 40px;
  line-height: 1;
}
@media only screen and (max-width: 960px) {
  #service #point .point_icon .no {
    font-size: 30px;
  }
}
#service #point h3 {
  width: calc(100% - 80px - 15px);
  margin-left: 15px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
}
@media only screen and (max-width: 960px) {
  #service #point h3 {
    font-size: 20px;
    width: calc(100% - 60px - 7px);
    margin-left: 7px;
  }
}
#service #point p {
  line-height: 1.8;
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
#report #lead .white {
  padding-bottom: 30px;
}
@media only screen and (max-width: 960px) {
  #report #lead .white {
    padding-bottom: 0px;
  }
}
#report #report_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 50px;
}
#report #report_main {
  width: 70%;
}
@media only screen and (max-width: 960px) {
  #report #report_main {
    width: 100%;
  }
}
#report #report_sub {
  width: 25%;
  margin: 0 0 0 5%;
}
@media only screen and (max-width: 960px) {
  #report #report_sub {
    width: 100%;
    margin: 40px 0 0;
  }
}
@media only screen and (max-width: 960px) {
  #report #report_sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#report #report_sub article {
  margin: 0 0 40px;
}
@media only screen and (max-width: 960px) {
  #report #report_sub article {
    width: 29.3%;
    margin: 0 2%;
  }
}
@media only screen and (max-width: 480px) {
  #report #report_sub article {
    width: 46%;
  }
  #report #report_sub article.monthly {
    width: 96%;
  }
}
@media only screen and (max-width: 480px) {
  #report #report_sub article .monthly_waku {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#report #report_sub article .waku {
  margin: 0 0 24px;
}
@media only screen and (max-width: 480px) {
  #report #report_sub article .waku {
    width: 46%;
    margin: 0 4% 0 0;
  }
}
#report #report_sub h3 {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  margin: 0 0 15px;
  color: #0059bc;
  font-size: 24px;
}
@media only screen and (max-width: 960px) {
  #report #report_sub h3 {
    font-size: 20px;
  }
}
#report #report_sub h4 {
  margin: 0 0 0.7em;
}
#report #report_sub ul li {
  padding-left: 18px;
  position: relative;
  margin: 0 0 7px;
  font-size: 15px;
  line-height: 1.4;
}
#report #report_sub ul li::before {
  position: absolute;
  top: 12px;
  left: 0px;
  border-top: 1px solid #0059bc;
  border-right: 1px solid #0059bc;
  width: 5px;
  height: 5px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}
#report #report_main {
  /************************************

  nav_single

  ************************************/
}
#report #report_main .cat_t {
  background-color: #eaf7ff;
  padding: 15px;
  margin: 0 0 40px;
}
#report #report_main .cat_t h2 {
  font-size: 24px;
}
@media only screen and (max-width: 960px) {
  #report #report_main .cat_t h2 {
    font-size: 20px;
  }
}
#report #report_main .archive_list {
  border-top: 1px solid #ccc;
}
#report #report_main .archive_list article {
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 0;
}
#report #report_main .archive_list article .image {
  width: 25%;
}
#report #report_main .archive_list article .text {
  width: 70%;
  margin: 0 0 0 5%;
}
#report #report_main .archive_list article .text .day {
  font-size: 14px;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.1em;
  margin: 0 0 7px;
}
@media only screen and (max-width: 960px) {
  #report #report_main .archive_list article .text .day {
    margin: 0 0 4px;
  }
}
#report #report_main .archive_list article .text h3 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal;
}
@media only screen and (max-width: 960px) {
  #report #report_main .archive_list article .text h3 {
    font-size: 15px;
  }
}
#report #report_main .archive_list article .text .cat {
  margin: 12px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 960px) {
  #report #report_main .archive_list article .text .cat {
    margin: 6px 0 0;
  }
}
#report #report_main .archive_list article .text .cat li {
  margin: 0 5px 0 0;
  font-size: 13px;
  line-height: 1;
}
@media only screen and (max-width: 960px) {
  #report #report_main .archive_list article .text .cat li {
    font-size: 12px;
  }
}
#report #report_main .archive_list article .text .cat li a {
  display: block;
  padding: 5px 12px;
  border: 1px solid #000000;
}
@media only screen and (max-width: 960px) {
  #report #report_main .archive_list article .text .cat li a {
    padding: 3px 5px;
  }
}
#report #report_main .archive_list article .text .cat li a:hover {
  background-color: #000000;
  color: #fff;
}
#report #report_main .navi {
  width: 100%;
}
#report #report_main .wp-pagenavi {
  text-align: center;
  font-size: 13px;
  padding: 40px 0;
  width: 100%;
}
@media only screen and (max-width: 960px) {
  #report #report_main .wp-pagenavi {
    text-align: center;
    font-size: 12px;
  }
}
#report #report_main .wp-pagenavi a {
  padding: 10px;
  text-decoration: none;
}
#report #report_main .wp-pagenavi span {
  padding: 10px;
}
#report #report_main .wp-pagenavi .page:hover {
  color: #0059bc;
}
#report #report_main .wp-pagenavi .current {
  font-weight: bold;
  font-size: 14px;
}
#report #report_main .wp-pagenavi .pages {
  display: none;
}
#report #report_main .wp-pagenavi .first, #report #report_main .wp-pagenavi .last, #report #report_main .wp-pagenavi .previouspostslink, #report #report_main .wp-pagenavi .nextpostslink {
  padding: 5px 15px;
  margin: 0 2px;
  border-radius: 3px;
  position: relative;
}
#report #report_main .wp-pagenavi .first::before, #report #report_main .wp-pagenavi .last::before, #report #report_main .wp-pagenavi .previouspostslink::before, #report #report_main .wp-pagenavi .nextpostslink::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#report #report_main .wp-pagenavi .first, #report #report_main .wp-pagenavi .last {
  background-color: #0059bc;
  color: #fff;
}
#report #report_main .wp-pagenavi .first {
  padding: 5px 15px 5px 25px;
}
#report #report_main .wp-pagenavi .first::before {
  left: 10px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
#report #report_main .wp-pagenavi .last {
  padding: 5px 25px 5px 15px;
}
#report #report_main .wp-pagenavi .last::before {
  right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
#report #report_main .wp-pagenavi .previouspostslink, #report #report_main .wp-pagenavi .nextpostslink {
  border: 1px solid #0059bc;
  color: #0059bc;
}
#report #report_main .wp-pagenavi .previouspostslink:hover, #report #report_main .wp-pagenavi .nextpostslink:hover {
  background-color: #0059bc;
  color: #fff;
}
#report #report_main .wp-pagenavi .previouspostslink {
  padding: 5px 15px 5px 25px;
}
#report #report_main .wp-pagenavi .previouspostslink::before {
  left: 10px;
  border-bottom: 1px solid #0059bc;
  border-left: 1px solid #0059bc;
}
#report #report_main .wp-pagenavi .previouspostslink:hover::before {
  border-bottom-color: #fff;
  border-left-color: #fff;
}
#report #report_main .wp-pagenavi .nextpostslink {
  padding: 5px 25px 5px 15px;
}
#report #report_main .wp-pagenavi .nextpostslink::before {
  right: 10px;
  border-top: 1px solid #0059bc;
  border-right: 1px solid #0059bc;
}
#report #report_main .wp-pagenavi .nextpostslink:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
@media only screen and (max-width: 960px) {
  #report #report_main .wp-pagenavi .pages, #report #report_main .wp-pagenavi .extend {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  #report #report_main .wp-pagenavi .pages, #report #report_main .wp-pagenavi .extend, #report #report_main .wp-pagenavi .first, #report #report_main .wp-pagenavi .last {
    display: none;
  }
}
#report #report_main .single .midashi {
  margin: 0 0 40px;
  padding: 24px 5px;
  border-top: 2px solid #000000;
  border-bottom: 1px dotted #000000;
}
#report #report_main .single .day {
  font-size: 15px;
  margin: 0 0 10px;
}
#report #report_main .single h1 {
  font-size: 24px;
  margin: 0 0 20px;
}
@media only screen and (max-width: 960px) {
  #report #report_main .single h1 {
    font-size: 22px;
  }
}
#report #report_main .single .cat {
  margin: 12px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 960px) {
  #report #report_main .single .cat {
    margin: 6px 0 0;
  }
}
#report #report_main .single .cat li {
  margin: 0 5px 0 0;
  font-size: 13px;
  line-height: 1;
}
@media only screen and (max-width: 960px) {
  #report #report_main .single .cat li {
    font-size: 12px;
  }
}
#report #report_main .single .cat li a {
  display: block;
  padding: 5px 12px;
  border: 1px solid #000000;
}
@media only screen and (max-width: 960px) {
  #report #report_main .single .cat li a {
    padding: 3px 5px;
  }
}
#report #report_main .single .cat li a:hover {
  background-color: #000000;
  color: #fff;
}
#report #report_main .single .honbun h2 {
  font-size: 24px;
  margin: 0 0 1em;
  padding-left: 15px;
  line-height: 1.5;
  border-left: 5px solid #0059bc;
}
@media only screen and (max-width: 960px) {
  #report #report_main .single .honbun h2 {
    font-size: 21px;
  }
}
#report #report_main .single .honbun h3 {
  font-size: 21px;
  margin: 0 0 1em;
  line-height: 1.5;
}
@media only screen and (max-width: 960px) {
  #report #report_main .single .honbun h3 {
    font-size: 18px;
  }
}
#report #report_main .single .honbun h4 {
  font-size: 18px;
  margin: 0 0 1em;
  line-height: 1.5;
}
@media only screen and (max-width: 960px) {
  #report #report_main .single .honbun h4 {
    font-size: 16px;
  }
}
#report #report_main .single .honbun h5, #report #report_main .single .honbun h6 {
  font-size: 16px;
  margin: 0 0 1em;
  line-height: 1.5;
}
@media only screen and (max-width: 960px) {
  #report #report_main .single .honbun h5, #report #report_main .single .honbun h6 {
    font-size: 15px;
  }
}
#report #report_main .single .honbun p {
  line-height: 2;
  margin: 0 0 1em;
}
#report #report_main .single .honbun ol, #report #report_main .single .honbun ul {
  line-height: 1.6;
  margin: 0 0 1em 20px;
}
#report #report_main .single .honbun ol li, #report #report_main .single .honbun ul li {
  margin: 0 0 7px;
}
#report #report_main .single .honbun ol li {
  list-style: decimal;
}
#report #report_main .single .honbun ul li {
  list-style: disc;
}
#report #report_main .single .honbun .alignright {
  float: right;
  margin: 0 0 20px 20px;
}
#report #report_main .single .honbun .alignleft {
  float: left;
  margin: 0 20px 20px 0;
}
#report #report_main .single .honbun .aligncenter {
  margin: 0 auto 20px auto;
  display: block;
}
#report #report_main .nav_single {
  clear: both;
  text-align: center;
  font-size: 13px;
  margin: 30px 0 0;
}
#report #report_main .nav_single a {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 5px;
  text-decoration: none;
  border: 1px solid #0059bc;
  border-radius: 3px;
  position: relative;
  background-color: #fff;
}
#report #report_main .nav_single a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#report #report_main .nav_single a:hover {
  background: #0059bc;
  color: #fff;
}
#report #report_main .nav_single a.top {
  background: #0059bc;
  color: #fff;
}
#report #report_main .nav_single a:nth-child(1) {
  padding: 10px 20px 10px 30px;
}
#report #report_main .nav_single a:nth-child(1)::before {
  left: 10px;
  border-bottom: 1px solid #0059bc;
  border-left: 1px solid #0059bc;
}
#report #report_main .nav_single a:nth-child(1):hover::before {
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
#report #report_main .nav_single a:nth-child(1).top {
  background: #0059bc;
  color: #fff;
  padding: 10px 20px;
}
#report #report_main .nav_single a:nth-child(1).top::before {
  display: none;
}
#report #report_main .nav_single a:nth-child(3) {
  padding: 10px 30px 10px 20px;
}
#report #report_main .nav_single a:nth-child(3)::before {
  right: 10px;
  border-top: 1px solid #0059bc;
  border-right: 1px solid #0059bc;
}
#report #report_main .nav_single a:nth-child(3):hover::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
#company #outline .white {
  padding-top: 0px;
}
#company #outline .image {
  width: 100%;
  height: 300px;
  background-image: url("../images/company/mainimage.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0 0 50px;
}
@media only screen and (max-width: 960px) {
  #company #outline .image {
    margin: 0 0 30px;
  }
}
@media only screen and (max-width: 480px) {
  #company #outline .image {
    height: 200px;
    background-image: url("../images/company/mainimage-sp@2x.jpg");
  }
}
#company #outline .inpagenavi {
  padding-top: 0;
  margin-bottom: 80px;
}
@media only screen and (max-width: 960px) {
  #company #outline .inpagenavi {
    margin-bottom: 50px;
  }
}
#company #outline .wrapper {
  max-width: 720px;
}
#company #outline h3 {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 30px;
  text-align: center;
}
@media only screen and (max-width: 960px) {
  #company #outline h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 480px) {
  #company #outline h3 {
    font-size: 5.7vw;
  }
}
#company #outline p {
  line-height: 2;
}
@media only screen and (max-width: 480px) {
  #company #outline p {
    line-height: 1.8;
  }
}
#company #profile .wrapper {
  max-width: 900px;
}
#company #profile .hyo {
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}
#company #profile .hyo dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px 20px;
  border-bottom: 1px dotted #000000;
  line-height: 1.7;
}
@media only screen and (max-width: 960px) {
  #company #profile .hyo dl {
    padding: 15px 10px;
    line-height: 1.5;
  }
}
#company #profile .hyo dl:last-child {
  border-bottom: none;
}
#company #profile .hyo dt {
  width: 20%;
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  #company #profile .hyo dt {
    width: 100%;
  }
}
#company #profile .hyo dd {
  width: 80%;
}
@media only screen and (max-width: 480px) {
  #company #profile .hyo dd {
    width: 100%;
  }
}
#company #profile .hyo dd a {
  text-decoration: underline;
}
#company #profile .hyo ol {
  margin-left: 20px;
}
#company #profile h3 {
  margin: 50px 0 0;
  text-align: center;
}
#company #profile .list {
  margin: 20px 0 0;
}
#company #profile .list .waku {
  width: 46%;
  margin: 10px 2%;
  text-align: center;
}
#company #profile .list .waku p {
  margin: 10px 0 0;
  font-size: 14px;
}
#company #profile .list .waku.left {
  text-align: left;
}
#company #profile .list .waku.left p {
  margin: 10px 0 0;
  font-size: 1rem;
}
#company #profile .list .waku ul {
  margin-left: 1.2rem;
}
#company #profile .list .waku ul li {
  list-style: disc;
  font-size: 14px;
}
#company #access .container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#company #access .map {
  width: 50%;
}
@media only screen and (max-width: 480px) {
  #company #access .map {
    width: 100%;
  }
}
#company #access .text {
  width: 45%;
  margin: 0 0 0 5%;
}
@media only screen and (max-width: 480px) {
  #company #access .text {
    width: 100%;
    margin: 20px 0 0;
  }
}
#company #access li {
  margin: 0 0 1em;
}
#company #access li img {
  width: 36px;
  vertical-align: middle;
  margin: 0 5px 0 0;
}
#company #access li a {
  text-decoration: underline;
}

#contact {
  /************************************

  #form

  ************************************/
}
#contact #lead .white {
  padding-bottom: 40px;
}
#contact #lead .wrapper {
  max-width: 900px;
}
#contact #lead h3 {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 30px;
  text-align: center;
}
@media only screen and (max-width: 960px) {
  #contact #lead h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 480px) {
  #contact #lead h3 {
    font-size: 5.7vw;
  }
}
#contact #lead p {
  text-align: center;
  line-height: 2;
}
@media only screen and (max-width: 960px) {
  #contact #lead p {
    text-align: left;
    line-height: 1.8;
  }
}
#contact #lead .bt {
  text-align: center;
  margin: 30px 0 0;
}
#contact #lead .contact_list {
  margin: 30px 0;
  border-top: 1px solid #000000;
}
#contact #lead .contact_list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #000000;
  padding: 15px 0;
}
#contact #lead .contact_list dt {
  width: 33%;
  background-color: #000000;
  color: #fff;
  padding: 10px;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  #contact #lead .contact_list dt {
    width: 100%;
  }
}
#contact #lead .contact_list dd {
  width: 64%;
  margin: 0 0 0 3%;
  padding: 10px 0;
}
@media only screen and (max-width: 480px) {
  #contact #lead .contact_list dd {
    width: 100%;
    margin: 0;
    padding: 10px 0 0;
  }
}
#contact #lead .caution {
  background-color: #f3f3f3;
  padding: 40px 20px;
  text-align: center;
  margin: 30px 0;
}
@media only screen and (max-width: 960px) {
  #contact #lead .caution {
    padding: 5%;
  }
}
#contact #lead .caution h4 {
  font-size: 16px;
  margin: 0 0 10px;
}
@media only screen and (max-width: 480px) {
  #contact #lead .caution h4 {
    text-align: left;
  }
}
#contact #lead .caution p {
  font-size: 15px;
  line-height: 1.5;
}
#contact #form {
  /* 下三角の表示 */
  /* selectタグのスタイル */
  /* IEの下三角非表示 */
  /* Firefoxの点線非表示 */
}
#contact #form .white {
  padding-top: 0;
}
#contact #form .wrapper {
  max-width: 900px;
}
#contact #form .type_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 480px) {
  #contact #form .type_list {
    display: block;
  }
}
#contact #form .type_list .kokka, #contact #form .type_list .minkan {
  width: 50%;
  position: relative;
}
@media only screen and (max-width: 480px) {
  #contact #form .type_list .kokka, #contact #form .type_list .minkan {
    width: 100%;
  }
}
#contact #form .type_list .kokka {
  padding-right: 3%;
}
@media only screen and (max-width: 480px) {
  #contact #form .type_list .kokka {
    padding: 0;
    margin-bottom: 20px;
  }
}
#contact #form .type_list h3.type_midashi {
  background-color: #cbe8f4;
  text-align: center;
  border: none;
  padding: 15px;
}
#contact #form .type_list #form_waku2 {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  width: 200%;
  margin-left: 100%;
}
@media only screen and (max-width: 480px) {
  #contact #form .type_list #form_waku2 {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 100%;
    margin-left: 0;
  }
}
#contact #form .label_pdf, #contact #form .kokka_bt {
  text-align: center;
  margin: 0 auto 20px;
  max-width: 600px;
  width: 100%;
}
#contact #form .label_pdf a, #contact #form .kokka_bt a {
  display: block;
  color: #fff;
  background-color: #0059bc;
  color: #fff;
  padding: 60px 20px 20px 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 18px;
  position: relative;
}
@media only screen and (max-width: 960px) {
  #contact #form .label_pdf a, #contact #form .kokka_bt a {
    font-size: 2.2vw;
    padding: 60px 1vw 20px 1vw;
  }
}
@media only screen and (max-width: 480px) {
  #contact #form .label_pdf a, #contact #form .kokka_bt a {
    font-size: 5vw;
  }
}
#contact #form .label_pdf a::before, #contact #form .kokka_bt a::before {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  margin: auto;
  width: 36px;
  height: 36px;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
#contact #form .label_pdf a small, #contact #form .kokka_bt a small {
  display: block;
}
@media only screen and (max-width: 960px) {
  #contact #form .label_pdf a small, #contact #form .kokka_bt a small {
    font-size: 1.5vw;
  }
}
@media only screen and (max-width: 480px) {
  #contact #form .label_pdf a small, #contact #form .kokka_bt a small {
    font-size: 3vw;
  }
}
#contact #form .label_pdf a::before {
  background-image: url("../images/icon_pdf.svg");
}
#contact #form .kokka_bt a::before {
  background-image: url("../images/icon_yaji.svg");
}
#contact #form #bt_pdf {
  display: none;
}
#contact #form #form_waku #form_waku2 {
  display: none;
}
#contact #form input#bt_pdf:checked + #form_waku #form_waku2 {
  display: block;
  padding-top: 100px;
}
@media only screen and (max-width: 480px) {
  #contact #form input#bt_pdf:checked + #form_waku #form_waku2 {
    padding-top: 40px;
  }
}
#contact #form input#bt_pdf:checked + #form_waku #form_pre {
  display: none;
}
#contact #form .lead {
  margin: 0 0 40px;
}
#contact #form .lead p {
  line-height: 1.8;
}
@media only screen and (max-width: 960px) {
  #contact #form .lead p {
    text-align: left;
  }
}
#contact #form article {
  margin: 0 0 30px;
  text-align: left;
}
#contact #form h3 {
  padding: 5px 0 5px 20px;
  border-left: 3px solid #0059bc;
  margin: 0 0 20px;
}
#contact #form dl {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#contact #form dl dt {
  width: 30%;
  background-color: #eaf7ff;
  padding: 15px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  #contact #form dl dt {
    width: 100%;
  }
}
#contact #form dl dd {
  width: 70%;
  background-color: #f3f3f3;
  padding: 15px;
  border-bottom: 1px solid #fff;
}
@media only screen and (max-width: 480px) {
  #contact #form dl dd {
    width: 100%;
  }
}
#contact #form .hissu, #contact #form .ninni {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  padding: 3px 5px;
  border: 1px solid #0059bc;
  border-radius: 3px;
  margin-right: 5px;
  background-color: #fff;
  color: #0059bc;
}
#contact #form .hissu {
  background-color: #0059bc;
  color: #fff;
}
#contact #form input[type=text], #contact #form input[type=email], #contact #form input[type=tel] {
  padding: 10px;
  font-size: 16px;
  width: 100%;
}
#contact #form .input_l {
  width: 100%;
}
#contact #form .input_s {
  width: 30%;
}
@media only screen and (max-width: 960px) {
  #contact #form .input_s {
    width: 50%;
  }
}
#contact #form textarea {
  width: 100%;
  height: 200px;
  font-size: 16px;
  padding: 10px;
}
#contact #form label {
  display: block;
}
#contact #form label input {
  margin-right: 3px;
}
#contact #form .price {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  margin-top: 10px;
}
#contact #form .price h4 {
  text-align: center;
  margin: 0 0 5px;
  color: #0059bc;
  font-size: 16px;
}
#contact #form .price table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-size: 15px;
}
#contact #form .price table th, #contact #form .price table td {
  padding: 10px;
  border-right: 1px solid #ccc;
}
@media only screen and (max-width: 480px) {
  #contact #form .price table th, #contact #form .price table td {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  #contact #form .price table thead {
    display: none;
  }
}
#contact #form .price table thead th {
  border-top: 1px solid #ccc;
  background-color: #eaf7ff;
}
#contact #form .price table tbody th {
  background-color: #fff;
  border-top: 1px solid #ccc;
}
@media only screen and (max-width: 480px) {
  #contact #form .price table tbody th {
    background-color: #eaf7ff;
  }
}
#contact #form .price table td {
  background-color: #fff;
  border-top: 1px solid #ccc;
}
@media only screen and (max-width: 480px) {
  #contact #form .price table td {
    border-top: none;
  }
}
#contact #form .price table .sp_small {
  font-size: 14px;
}
#contact #form .selectstyle {
  position: relative;
  display: inline-block;
  background: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(60%, rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.1) 100%);
  border-radius: 3px;
  font-size: 100%;
  overflow: hidden;
  z-index: 0;
  padding-right: 0px;
  vertical-align: middle;
  max-width: 100% !important;
  border: 1px solid #666;
}
#contact #form .selectstyle:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  right: 15px;
  content: "";
  border-bottom: 1px solid #666;
  border-right: 1px solid #666;
  content: "";
  width: 5px;
  height: 5px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
}
@media only screen and (max-width: 960px) {
  #contact #form .selectstyle:after {
    right: 7px;
  }
}
#contact #form .selectstyle select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.6em 2em 0.6em 1.5em;
  color: #000000;
  background: transparent;
  border: none;
  border-radius: 3px;
  font-size: 100%;
  outline: none;
}
@media only screen and (max-width: 960px) {
  #contact #form .selectstyle select {
    padding: 0.6em 2em 0.6em 0.6em;
    font-size: 15px;
  }
}
#contact #form .selectstyle select::-ms-expand {
  display: none;
}
#contact #form .selectstyle select::-moz-focus-inner {
  border: 0;
}
#contact #form #privacy {
  border: 1px solid #ccc;
  padding: 5%;
  width: 100%;
  height: 250px;
  overflow-y: scroll;
}
#contact #form #privacy article {
  margin: 0 0 30px;
  line-height: 1.7;
}
#contact #form #privacy h3 {
  margin: 0 0 0.5em;
  padding: 0;
  border-left: none;
  font-size: 18px;
}
#contact #form #privacy ol {
  margin-left: 23px;
}
#contact #form #privacy ol ol {
  margin: 10px 0 0 23px;
}
#contact #form #privacy ul {
  margin-left: 23px;
}
#contact #form #privacy ul li {
  list-style: disc;
}
#contact #form .check {
  margin: 40px 0;
  text-align: center;
  font-weight: bold;
}
#contact #form .check label {
  display: block;
  margin: 10px 0;
}
#contact #form .check input {
  margin-right: 3px;
}
#contact #form .confirm_only {
  display: none;
}
#contact #form .bt {
  text-align: center;
}
#contact #form .bt p {
  margin: 0 0 12px;
}
@media only screen and (max-width: 480px) {
  #contact #form .bt p {
    text-align: left;
  }
}
#contact #form .bt input {
  background-color: #0059bc;
  border: none;
  color: #fff;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 50px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 5px;
  cursor: pointer;
}
#contact #form .bt input.back {
  background-color: #666;
}
#contact #form .mw_wp_form_confirm .selectstyle {
  position: relative;
  display: inline-block;
  background: none;
  border-radius: 0;
  font-size: 100%;
  overflow: inherit;
  z-index: 0;
  padding-right: 0px;
  border: none;
  vertical-align: inherit;
}
#contact #form .mw_wp_form_confirm .selectstyle:after {
  display: none;
}
#contact #form .mw_wp_form_confirm .rule {
  display: none;
}
#contact #form .mw_wp_form_confirm .confirm_only {
  display: block;
  margin: 0 0 20px;
  background-color: #f3f3f3;
  padding: 4%;
}
#contact #form .mw_wp_form_confirm .confirm_only h4 {
  text-align: center;
  margin: 0 0 10px;
}
#contact #form .mw_wp_form_confirm .confirm_only p {
  text-align: left;
}
#contact #top_course .wrapper {
  max-width: 720px;
}
#contact #top_course p {
  line-height: 2;
}
#contact #top_course .calendar {
  margin: 40px 0;
}
#contact #top_course .bt {
  text-align: center;
}
#contact #top_course .line {
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  padding: 4%;
  margin: 40px 0 0;
}
@media only screen and (max-width: 960px) {
  #contact #top_course .line {
    padding: 6%;
  }
}
#contact #top_course .line h4 {
  font-size: 20px;
}
#contact #top_course .line p {
  margin: 7px 0 15px;
  line-height: 1.5;
}
@media only screen and (max-width: 480px) {
  #contact #top_course .line p {
    text-align: left;
  }
}
#contact #top_course .line .line_bt img {
  height: 50px;
}
/*# sourceMappingURL=maps/common.css.map */
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
