body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #222;
  font-weight: 600;
}

main {
  background: #fff;
}

.wrapper {
	position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.75;
}

img {
  vertical-align: bottom;
}

.ylw {
  color: #e7b022;
}

.red {
  color: #c8161d;
}

.blue {
  color: #004e8d;
}

/**/
.element {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 1.5s, visibility 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, visibility 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, visibility 1.5s, transform 1.5s;
  transition: opacity 1.5s, visibility 1.5s, transform 1.5s, -webkit-transform 1.5s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.line {
  width: 100%;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  -webkit-transition: background-size 1s;
  transition: background-size 1s;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1s;
}

.line.is-animation {
  background-size: 100% 100%;
}

/*
.line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #000;
  transition: all 1.2s;
}

.line.is-animation::after {
  width: 100%;
}
*/

@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }

  .wrapper {
    width: 94%;
  }
}

@media screen and (max-width: 1100px) {
  #main #sectionExample .wrapper {
    overflow: hidden;
  }
}

/*# sourceMappingURL=style.css.map */