@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Sawarabi+Mincho:400');
html, body {
  height: 100%;
  background-color: #fff;
  font-family: 'Sawarabi Mincho', sans-serif;
  font-weight: 400;
  line-height: 1.75 !important;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: -ms-flexbox;
  display: flex;
  /* color: #fff; */
  /* text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
   box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5); */
}

.Item02{
  color: #fff !important;
}

a, a:focus, a:hover {
  color: #fff;
}

.jumbotron {
  background-image: url("../img/topimg-new.jpg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  height: 100vh !important;
  width: 100vw !important;
  border-radius: 0 !important;
}

@media (max-width: 575px) {
  .jumbotron {
    background-image: url("../img/topimg-new2.jpg");
    background-position: left bottom !important;
  }
}

@media (max-width: 379px) {
  .jumbotron {
    background-image: url("../img/topimg-new3.jpg");
    background-position: left bottom !important;
  }
}

.logo01{
  display: block;
}

.logo02{
  display: none;
}

.logo03{
  display: none !important;
}

span {
  display: inline-block;
}

.memo{
  font-size: 1.25rem !important;
}

@media (max-width: 991px) {
  .logo01{
    display: none !important;
  }

  .logo02{
    display: block !important;
  }

  .logo03{
    display: none !important;
  }

  .h1{
    font-size: 2rem !important;
  }

  .h2{
    font-size: 1.8rem !important;
  }

  .memo{
    font-size: 1.15rem !important;
    padding-top: 5px !important;
  }
}

@media (max-width: 575px) {
  .logo01{
    display: none !important;
  }
  .logo02{
    display: none !important;
  }
  .logo03{
    display: block !important;
  }
  .h1{
    font-size: 1.35rem !important;
    line-height: 1.45 !important;
  }
  .h2{
    font-size: 1.2rem !important;
  }
  .memo{
    font-size: 0.95rem !important;
  }
}

.masthead {
  margin-bottom: 2rem;
}

.masthead-brand {
  margin-bottom: 0;
}

.nav-masthead .nav-link+.nav-link {
  margin-left: 1rem;
}

@media (min-width: 48em) {
  .masthead-brand {
    float: left;
  }
  .nav-masthead {
    float: right;
  }
}

.lead {
  color: #fff !important;
}

.cover {
  padding: 0 1.5rem;
}

.cover .btn-lg {
  padding: .75rem 1.25rem;
  font-weight: 700;
}

.hit-the-floor {
  color:rgb(77, 77, 77) !important;
  font-weight: 700;
  text-shadow: #fff 1px 0, #fff -1px 0, #fff 0 -1px, #fff 0 1px, #fff 1px 1px, #fff -1px 1px, #fff 1px -1px, #fff -1px -1px, #fff 0px 1px, #fff 0px 1px, #fff 0px -1px, #fff 0px -1px, #fff 1px 0px, #fff -1px 0px, #fff 1px 0px, #fff -1px 0px, rgba(0, 0, 0, .5) 2px 2px 2px;
}

.hit-the-floor02 {
  color:#444 !important;
  font-weight: 700;
  text-shadow: #fff 1px 0, #fff -1px 0, #fff 0 -1px, #fff 0 1px, #fff 1px 1px, #fff -1px 1px, #fff 1px -1px, #fff -1px -1px, #fff 0px 1px, #fff 0px 1px, #fff 0px -1px, #fff 0px -1px, #fff 1px 0px, #fff -1px 0px, #fff 1px 0px, #fff -1px 0px, rgba(0, 0, 0, .5) 2px 2px 2px;
}

.Item {
  /* font-family: 'Courier New', Courier, monospace !important; */
  animation-name: fadeleft;
  animation-duration: 2s;
  animation-iteration-count: 1;
  letter-spacing: 0.1rem;
}

@keyframes fadeleft {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.Item02 {
  animation-name: fadedown;
  animation-duration: 2s;
  animation-iteration-count: 1;
}

@keyframes fadedown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


