@charset "UTF-8";
/*
 * HTML
 * -------------------------------------------------------------------
 */
html {
  font-size: 14px;
  font-weight: normal;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Hiragino Kaku Gothic ProN, "メイリオ", meiryo, sans-serif;
  scroll-padding-top: 100px;
}

body {
  font-size: 14px;
  font-weight: normal;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Hiragino Kaku Gothic ProN, "メイリオ", meiryo, sans-serif;
  word-wrap: break-word;
  position: relative;
  overflow-x: hidden;
  background: #ffffff;
  width: 100%;
}

/*
h1,h2,h3,h4,h5,h6,section{
    display:block;
    margin:0px;
    padding:0px;
    font-size:14px;
}
*/
img {
  vertical-align: top;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
a:hover, a:focus {
  text-decoration: none;
}

ul {
  padding: 0px 0px 0px 20px;
}

/*
 * Bootstrap
 * -------------------------------------------------------------------
 */
/*************/
/* container */
/*************/
/*
@media (min-width: 1200px){
    .container {
        width: 970px !important;
    }
}
*/
/*
 * navigation
 * -------------------------------------------------------------------
 */
/**********************/
/* navigation-content */
/**********************/
.navigation-content {
  opacity: 0;
  position: fixed;
  z-index: 1000;
  height: 100vh;
  padding-top: 80px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}
.navigation-content .logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px;
  height: 80px;
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
  display: flex;
  align-items: center;
}
.navigation-content .logo img {
  display: block;
  height: 30px;
}
.navigation-content .menu {
  display: block;
  margin: 0px;
  padding: 15px;
}
.navigation-content .menu .link {
  display: flex;
  align-items: center;
  margin: 0px 0px 4px 0px;
  padding: 5px 15px;
  color: #444444;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}
.navigation-content .menu .link:hover {
  background: #f1f3f9;
}
.navigation-content.accordion {
  top: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.navigation-content.accordion.open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.navigation-content.sidebar_left {
  top: 0;
  left: 0;
  width: 300px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
@media (min-width: 992px) {
  .navigation-content.sidebar_left {
    top: 0;
    left: 0;
    width: 450px;
    -webkit-transform: translateX(-450px);
    transform: translateX(-450px);
  }
}
.navigation-content.sidebar_left.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.navigation-content.sidebar_right {
  top: 0;
  right: 0;
  width: 300px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
@media (min-width: 992px) {
  .navigation-content.sidebar_right {
    top: 0;
    right: 0;
    width: 450px;
    -webkit-transform: translateX(450px);
    transform: translateX(450px);
  }
}
.navigation-content.sidebar_right.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/*********************/
/* navigation-button */
/*********************/
.navigation-button {
  position: fixed;
  z-index: 1001;
  cursor: pointer;
  width: 60px;
  height: 60px;
  top: 10px;
  right: 10px;
  border: 1px solid #abb8d9;
  background: #abb8d9;
  display: block;
}
@media (min-width: 992px) {
  .navigation-button {
    display: none;
  }
}
.navigation-button span.bar {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}
.navigation-button span.bar span {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  position: absolute;
  display: block;
  border-radius: 1px;
  border-bottom: 1px solid transparent;
  width: 70%;
  height: 1px;
  margin-right: 15%;
  margin-left: 15%;
  border-color: #ffffff;
  background: #ffffff;
}
.navigation-button span.bar span.bar_line_1 {
  top: 30%;
}
.navigation-button span.bar span.bar_line_2 {
  top: 50%;
}
.navigation-button span.bar span.bar_line_3 {
  top: 70%;
}
.navigation-button span.bar.btn-close span.bar_line_1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
}
.navigation-button span.bar.btn-close span.bar_line_2 {
  opacity: 0;
}
.navigation-button span.bar.btn-close span.bar_line_3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 50%;
}

/********************/
/* navigation-layer */
/********************/
.navigation-layer {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 997;
  background: rgba(0, 0, 0, 0.15);
}

/*
 * table
 * -------------------------------------------------------------------
 */
table.default {
  display: block;
  margin-bottom: 40px;
  border: 1px solid #dddddd;
  border-top: none;
  background: #ffffff;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}

table.default tbody {
  display: block;
}

table.default tr {
  display: block;
  width: 100%;
  border: none;
}

table.default tr th,
table.default tr td {
  display: block;
  width: 100%;
  border: none;
  padding: 12px 16px;
}

table.default tr th {
  border: 1px solid #dddddd;
  border-left: none;
  border-right: none;
  background-color: #fafafa;
  font-size: 15px;
  font-weight: bold;
}

@media (min-width: 768px) {
  table.default {
    display: table;
  }
  table.default tbody {
    display: table-row-group;
  }
  table.default tr {
    display: table-row;
  }
  table.default tr th {
    display: table-cell;
    width: 30%;
    border: 1px solid #dddddd;
  }
  table.default tr td {
    display: table-cell;
    width: 70%;
    border: 1px solid #dddddd;
  }
}
/*
 * footer
 * -------------------------------------------------------------------
 */
.footer {
  background: #362b24;
}
.footer .footer-contact {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: flex;
  background-image: url("../img/footer/footer-contact-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.footer .footer-contact:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.35);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@media (min-width: 992px) {
  .footer .footer-contact {
    background-image: none;
    background-size: cover;
  }
}
.footer .footer-contact .footer-contact-image {
  display: none;
  position: relative;
  background-image: url("../img/footer/footer-contact-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /*
  &:after {
      content: '';
      background-color: rgba(#000,.5);
      position: absolute;
      left: 0;right: 0;top: 0;bottom: 0;
  }
  */
}
@media (min-width: 992px) {
  .footer .footer-contact .footer-contact-image {
    display: block;
    width: 50%;
  }
}
.footer .footer-contact .footer-contact-content {
  padding: 80px 40px;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .footer .footer-contact .footer-contact-content {
    width: 50%;
    background: #59493f;
  }
}
.footer .footer-contact .footer-contact-content .footer-contact-content-heading {
  margin: 0px 0px 30px 0px;
}
.footer .footer-contact .footer-contact-content .footer-contact-content-heading img {
  display: block;
  max-width: 100%;
}
.footer .footer-contact .footer-contact-content .footer-contact-content-text {
  display: flex;
  margin: 0px 0px 30px 0px;
  color: #ffffff;
}
.footer .footer-contact .footer-contact-content .footer-contact-content-text .qr-code {
  padding: 5px;
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 6px;
  font-size: 10px;
  display: none;
}
@media (min-width: 992px) {
  .footer .footer-contact .footer-contact-content .footer-contact-content-text .qr-code {
    display: block;
  }
}
.footer .footer-contact .footer-contact-content .footer-contact-content-text .qr-code img {
  margin: 0px 0px 10px 0px;
  display: block;
  width: 100%;
}
.footer .footer-contact .footer-contact-content .footer-contact-content-text .text {
  font-size: 14px;
  font-weight: bold;
  line-height: 2;
}
@media (min-width: 992px) {
  .footer .footer-contact .footer-contact-content .footer-contact-content-text .text {
    width: calc(100% - 100px);
    padding-left: 10px;
    font-size: 16px;
  }
}
.footer .footer-contact .footer-contact-content .footer-contact-content-button {
  text-align: right;
  margin-top: 15px;
}
.footer .footer-contact .footer-contact-content .footer-contact-content-button .button {
  display: inline-block;
  padding: 15px 30px;
  color: #ffffff;
  border-radius: 50px;
  background-color: #aba9cf;
}
.footer .footer-contact .footer-contact-content .footer-contact-content-button .button img {
  display: none;
  margin: 0px 0px 0px 20px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .footer .footer-contact .footer-contact-content .footer-contact-content-button .button img {
    display: inline-block;
  }
}
.footer .footer-contact .footer-contact-content .footer-contact-content-button .button:hover {
  background-color: #9b99c6;
}
.footer .footer-contact .footer-contact-content .footer-contact-content-button .button:hover img {
  transform: translateX(10px);
}
.footer .footer-pagetop {
  padding: 60px 30px;
}
.footer .footer-pagetop img {
  display: block;
  max-width: 100%;
  margin: 0px auto;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.footer .footer-pagetop img:hover {
  transform: translateY(-5px);
}
.footer .footer-link-list {
  margin-bottom: 20px;
  padding: 0px 0px 0px 20px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer .footer-link-list li {
  display: block;
  margin: 0px;
  padding: 10px 15px;
}
.footer .footer-link-list li a {
  color: #ffffff;
}
.footer .footer-link-list li a:hover {
  color: #cccccc;
}
.footer .footer-logo {
  padding: 20px;
}
.footer .footer-logo img {
  display: block;
  max-width: 100%;
  margin: 0px auto;
}
.footer .footer-copyright {
  padding: 20px 20px 50px 20px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
}

/*
 * Utilities
 * -------------------------------------------------------------------
 */
/**********/
/* margin */
/**********/
.c-m-0 {
  margin: 0px !important;
}

.c-mt-0 {
  margin-top: 0px !important;
}

.c-mr-0 {
  margin-right: 0px !important;
}

.c-mb-0 {
  margin-bottom: 0px !important;
}

.c-ml-0 {
  margin-left: 0px !important;
}

.c-m-5 {
  margin: 5px !important;
}

.c-mt-5 {
  margin-top: 5px !important;
}

.c-mr-5 {
  margin-right: 5px !important;
}

.c-mb-5 {
  margin-bottom: 5px !important;
}

.c-ml-5 {
  margin-left: 5px !important;
}

.c-m-10 {
  margin: 10px !important;
}

.c-mt-10 {
  margin-top: 10px !important;
}

.c-mr-10 {
  margin-right: 10px !important;
}

.c-mb-10 {
  margin-bottom: 10px !important;
}

.c-ml-10 {
  margin-left: 10px !important;
}

.c-m-15 {
  margin: 15px !important;
}

.c-mt-15 {
  margin-top: 15px !important;
}

.c-mr-15 {
  margin-right: 15px !important;
}

.c-mb-15 {
  margin-bottom: 15px !important;
}

.c-ml-15 {
  margin-left: 15px !important;
}

.c-m-20 {
  margin: 20px !important;
}

.c-mt-20 {
  margin-top: 20px !important;
}

.c-mr-20 {
  margin-right: 20px !important;
}

.c-mb-20 {
  margin-bottom: 20px !important;
}

.c-ml-20 {
  margin-left: 20px !important;
}

.c-m-25 {
  margin: 25px !important;
}

.c-mt-25 {
  margin-top: 25px !important;
}

.c-mr-25 {
  margin-right: 25px !important;
}

.c-mb-25 {
  margin-bottom: 25px !important;
}

.c-ml-25 {
  margin-left: 25px !important;
}

.c-m-30 {
  margin: 30px !important;
}

.c-mt-30 {
  margin-top: 30px !important;
}

.c-mr-30 {
  margin-right: 30px !important;
}

.c-mb-30 {
  margin-bottom: 30px !important;
}

.c-ml-30 {
  margin-left: 30px !important;
}

.c-m-35 {
  margin: 35px !important;
}

.c-mt-35 {
  margin-top: 35px !important;
}

.c-mr-35 {
  margin-right: 35px !important;
}

.c-mb-35 {
  margin-bottom: 35px !important;
}

.c-ml-35 {
  margin-left: 35px !important;
}

.c-m-40 {
  margin: 40px !important;
}

.c-mt-40 {
  margin-top: 40px !important;
}

.c-mr-40 {
  margin-right: 40px !important;
}

.c-mb-40 {
  margin-bottom: 40px !important;
}

.c-ml-40 {
  margin-left: 40px !important;
}

.c-m-45 {
  margin: 45px !important;
}

.c-mt-45 {
  margin-top: 45px !important;
}

.c-mr-45 {
  margin-right: 45px !important;
}

.c-mb-45 {
  margin-bottom: 45px !important;
}

.c-ml-45 {
  margin-left: 45px !important;
}

.c-m-50 {
  margin: 50px !important;
}

.c-mt-50 {
  margin-top: 50px !important;
}

.c-mr-50 {
  margin-right: 50px !important;
}

.c-mb-50 {
  margin-bottom: 50px !important;
}

.c-ml-50 {
  margin-left: 50px !important;
}

.c-m-55 {
  margin: 55px !important;
}

.c-mt-55 {
  margin-top: 55px !important;
}

.c-mr-55 {
  margin-right: 55px !important;
}

.c-mb-55 {
  margin-bottom: 55px !important;
}

.c-ml-55 {
  margin-left: 55px !important;
}

.c-m-60 {
  margin: 60px !important;
}

.c-mt-60 {
  margin-top: 60px !important;
}

.c-mr-60 {
  margin-right: 60px !important;
}

.c-mb-60 {
  margin-bottom: 60px !important;
}

.c-ml-60 {
  margin-left: 60px !important;
}

.c-m-65 {
  margin: 65px !important;
}

.c-mt-65 {
  margin-top: 65px !important;
}

.c-mr-65 {
  margin-right: 65px !important;
}

.c-mb-65 {
  margin-bottom: 65px !important;
}

.c-ml-65 {
  margin-left: 65px !important;
}

.c-m-70 {
  margin: 70px !important;
}

.c-mt-70 {
  margin-top: 70px !important;
}

.c-mr-70 {
  margin-right: 70px !important;
}

.c-mb-70 {
  margin-bottom: 70px !important;
}

.c-ml-70 {
  margin-left: 70px !important;
}

.c-m-75 {
  margin: 75px !important;
}

.c-mt-75 {
  margin-top: 75px !important;
}

.c-mr-75 {
  margin-right: 75px !important;
}

.c-mb-75 {
  margin-bottom: 75px !important;
}

.c-ml-75 {
  margin-left: 75px !important;
}

.c-m-80 {
  margin: 80px !important;
}

.c-mt-80 {
  margin-top: 80px !important;
}

.c-mr-80 {
  margin-right: 80px !important;
}

.c-mb-80 {
  margin-bottom: 80px !important;
}

.c-ml-80 {
  margin-left: 80px !important;
}

.c-m-85 {
  margin: 85px !important;
}

.c-mt-85 {
  margin-top: 85px !important;
}

.c-mr-85 {
  margin-right: 85px !important;
}

.c-mb-85 {
  margin-bottom: 85px !important;
}

.c-ml-85 {
  margin-left: 85px !important;
}

.c-m-90 {
  margin: 90px !important;
}

.c-mt-90 {
  margin-top: 90px !important;
}

.c-mr-90 {
  margin-right: 90px !important;
}

.c-mb-90 {
  margin-bottom: 90px !important;
}

.c-ml-90 {
  margin-left: 90px !important;
}

.c-m-95 {
  margin: 95px !important;
}

.c-mt-95 {
  margin-top: 95px !important;
}

.c-mr-95 {
  margin-right: 95px !important;
}

.c-mb-95 {
  margin-bottom: 95px !important;
}

.c-ml-95 {
  margin-left: 95px !important;
}

.c-m-100 {
  margin: 100px !important;
}

.c-mt-100 {
  margin-top: 100px !important;
}

.c-mr-100 {
  margin-right: 100px !important;
}

.c-mb-100 {
  margin-bottom: 100px !important;
}

.c-ml-100 {
  margin-left: 100px !important;
}

/***********/
/* padding */
/***********/
.c-p-0 {
  padding: 0px !important;
}

.c-pt-0 {
  padding-top: 0px !important;
}

.c-pr-0 {
  padding-right: 0px !important;
}

.c-pb-0 {
  padding-bottom: 0px !important;
}

.c-pl-0 {
  padding-left: 0px !important;
}

.c-p-5 {
  padding: 5px !important;
}

.c-pt-5 {
  padding-top: 5px !important;
}

.c-pr-5 {
  padding-right: 5px !important;
}

.c-pb-5 {
  padding-bottom: 5px !important;
}

.c-pl-5 {
  padding-left: 5px !important;
}

.c-p-10 {
  padding: 10px !important;
}

.c-pt-10 {
  padding-top: 10px !important;
}

.c-pr-10 {
  padding-right: 10px !important;
}

.c-pb-10 {
  padding-bottom: 10px !important;
}

.c-pl-10 {
  padding-left: 10px !important;
}

.c-p-15 {
  padding: 15px !important;
}

.c-pt-15 {
  padding-top: 15px !important;
}

.c-pr-15 {
  padding-right: 15px !important;
}

.c-pb-15 {
  padding-bottom: 15px !important;
}

.c-pl-15 {
  padding-left: 15px !important;
}

.c-p-20 {
  padding: 20px !important;
}

.c-pt-20 {
  padding-top: 20px !important;
}

.c-pr-20 {
  padding-right: 20px !important;
}

.c-pb-20 {
  padding-bottom: 20px !important;
}

.c-pl-20 {
  padding-left: 20px !important;
}

.c-p-25 {
  padding: 25px !important;
}

.c-pt-25 {
  padding-top: 25px !important;
}

.c-pr-25 {
  padding-right: 25px !important;
}

.c-pb-25 {
  padding-bottom: 25px !important;
}

.c-pl-25 {
  padding-left: 25px !important;
}

.c-p-30 {
  padding: 30px !important;
}

.c-pt-30 {
  padding-top: 30px !important;
}

.c-pr-30 {
  padding-right: 30px !important;
}

.c-pb-30 {
  padding-bottom: 30px !important;
}

.c-pl-30 {
  padding-left: 30px !important;
}

.c-p-35 {
  padding: 35px !important;
}

.c-pt-35 {
  padding-top: 35px !important;
}

.c-pr-35 {
  padding-right: 35px !important;
}

.c-pb-35 {
  padding-bottom: 35px !important;
}

.c-pl-35 {
  padding-left: 35px !important;
}

.c-p-40 {
  padding: 40px !important;
}

.c-pt-40 {
  padding-top: 40px !important;
}

.c-pr-40 {
  padding-right: 40px !important;
}

.c-pb-40 {
  padding-bottom: 40px !important;
}

.c-pl-40 {
  padding-left: 40px !important;
}

.c-p-45 {
  padding: 45px !important;
}

.c-pt-45 {
  padding-top: 45px !important;
}

.c-pr-45 {
  padding-right: 45px !important;
}

.c-pb-45 {
  padding-bottom: 45px !important;
}

.c-pl-45 {
  padding-left: 45px !important;
}

.c-p-50 {
  padding: 50px !important;
}

.c-pt-50 {
  padding-top: 50px !important;
}

.c-pr-50 {
  padding-right: 50px !important;
}

.c-pb-50 {
  padding-bottom: 50px !important;
}

.c-pl-50 {
  padding-left: 50px !important;
}

.c-p-55 {
  padding: 55px !important;
}

.c-pt-55 {
  padding-top: 55px !important;
}

.c-pr-55 {
  padding-right: 55px !important;
}

.c-pb-55 {
  padding-bottom: 55px !important;
}

.c-pl-55 {
  padding-left: 55px !important;
}

.c-p-60 {
  padding: 60px !important;
}

.c-pt-60 {
  padding-top: 60px !important;
}

.c-pr-60 {
  padding-right: 60px !important;
}

.c-pb-60 {
  padding-bottom: 60px !important;
}

.c-pl-60 {
  padding-left: 60px !important;
}

.c-p-65 {
  padding: 65px !important;
}

.c-pt-65 {
  padding-top: 65px !important;
}

.c-pr-65 {
  padding-right: 65px !important;
}

.c-pb-65 {
  padding-bottom: 65px !important;
}

.c-pl-65 {
  padding-left: 65px !important;
}

.c-p-70 {
  padding: 70px !important;
}

.c-pt-70 {
  padding-top: 70px !important;
}

.c-pr-70 {
  padding-right: 70px !important;
}

.c-pb-70 {
  padding-bottom: 70px !important;
}

.c-pl-70 {
  padding-left: 70px !important;
}

.c-p-75 {
  padding: 75px !important;
}

.c-pt-75 {
  padding-top: 75px !important;
}

.c-pr-75 {
  padding-right: 75px !important;
}

.c-pb-75 {
  padding-bottom: 75px !important;
}

.c-pl-75 {
  padding-left: 75px !important;
}

.c-p-80 {
  padding: 80px !important;
}

.c-pt-80 {
  padding-top: 80px !important;
}

.c-pr-80 {
  padding-right: 80px !important;
}

.c-pb-80 {
  padding-bottom: 80px !important;
}

.c-pl-80 {
  padding-left: 80px !important;
}

.c-p-85 {
  padding: 85px !important;
}

.c-pt-85 {
  padding-top: 85px !important;
}

.c-pr-85 {
  padding-right: 85px !important;
}

.c-pb-85 {
  padding-bottom: 85px !important;
}

.c-pl-85 {
  padding-left: 85px !important;
}

.c-p-90 {
  padding: 90px !important;
}

.c-pt-90 {
  padding-top: 90px !important;
}

.c-pr-90 {
  padding-right: 90px !important;
}

.c-pb-90 {
  padding-bottom: 90px !important;
}

.c-pl-90 {
  padding-left: 90px !important;
}

.c-p-95 {
  padding: 95px !important;
}

.c-pt-95 {
  padding-top: 95px !important;
}

.c-pr-95 {
  padding-right: 95px !important;
}

.c-pb-95 {
  padding-bottom: 95px !important;
}

.c-pl-95 {
  padding-left: 95px !important;
}

.c-p-100 {
  padding: 100px !important;
}

.c-pt-100 {
  padding-top: 100px !important;
}

.c-pr-100 {
  padding-right: 100px !important;
}

.c-pb-100 {
  padding-bottom: 100px !important;
}

.c-pl-100 {
  padding-left: 100px !important;
}

/*
 * Animation
 * -------------------------------------------------------------------
 */
[class*=animate-] {
  opacity: 0;
}

[class*=animate-].active {
  opacity: 1 \0 ;
}

/* fadeInDown */
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* fadeInLeft */
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/* fadeInRight */
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/* fadeInUp */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*
 * Others
 * -------------------------------------------------------------------
 */
/***********************/
/* bootstrap row width */
/***********************/
.row-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.row-0 > div {
  padding-right: 0px;
  padding-left: 0px;
  min-height: 0px;
}

.row-10 {
  margin-left: -5px;
  margin-right: -5px;
}

.row-10 > div {
  padding-right: 5px;
  padding-left: 5px;
}

.row-20 {
  margin-left: -10px;
  margin-right: -10px;
}

.row-20 > div {
  padding-right: 10px;
  padding-left: 10px;
}

.row-30 {
  margin-left: -15px;
  margin-right: -15px;
}

.row-30 > div {
  padding-right: 15px;
  padding-left: 15px;
}

.row-40 {
  margin-left: -20px;
  margin-right: -20px;
}

.row-40 > div {
  padding-right: 20px;
  padding-left: 20px;
}

.row-50 {
  margin-left: -25px;
  margin-right: -25px;
}

.row-50 > div {
  padding-right: 25px;
  padding-left: 25px;
}

/********************************/
/* bootstrap five column layout */
/********************************/
.col-xs-1-5, .col-sm-1-5, .col-md-1-5, .col-lg-1-5,
.col-xs-2-5, .col-sm-2-5, .col-md-2-5, .col-lg-2-5,
.col-xs-3-5, .col-sm-3-5, .col-md-3-5, .col-lg-3-5,
.col-xs-4-5, .col-sm-4-5, .col-md-4-5, .col-lg-4-5 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* smart phone（767px） */
.col-xs-1-5 {
  width: 20%;
  float: left;
}

.col-xs-2-5 {
  width: 40%;
  float: left;
}

.col-xs-3-5 {
  width: 60%;
  float: left;
}

.col-xs-4-5 {
  width: 80%;
  float: left;
}

/* table（768px～991px） */
@media (min-width: 768px) {
  .col-sm-1-5 {
    width: 20%;
    float: left;
  }
  .col-sm-2-5 {
    width: 40%;
    float: left;
  }
  .col-sm-3-5 {
    width: 60%;
    float: left;
  }
  .col-sm-4-5 {
    width: 80%;
    float: left;
  }
}
/* pc（992px～1119px） */
@media (min-width: 992px) {
  .col-md-1-5 {
    width: 20%;
    float: left;
  }
  .col-md-2-5 {
    width: 40%;
    float: left;
  }
  .col-md-3-5 {
    width: 60%;
    float: left;
  }
  .col-md-4-5 {
    width: 80%;
    float: left;
  }
}
/* pc large（1200px以上）*/
@media (min-width: 1200px) {
  .col-lg-1-5 {
    width: 20%;
    float: left;
  }
  .col-lg-2-5 {
    width: 40%;
    float: left;
  }
  .col-lg-3-5 {
    width: 60%;
    float: left;
  }
  .col-lg-4-5 {
    width: 80%;
    float: left;
  }
}/*# sourceMappingURL=style.css.map */