body, h1, h2, h3, h4, h5, dl, dd, dt, ul, li {
  margin: 0;
  padding: 0;
}

a {
  color: #000;
  text-decoration: none;
}

li {
  list-style: none;
}

.button-30 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  margin: 0 auto;
  padding: 0.9em 2em;
  border: 2px solid #0097b2;
  border-radius: 5px;
  background-color: #fff;
  color: #0097b2;
  font-size: 1em;
  font-weight: bold;
}

.button-30:hover {
  animation: anima-button-30 1s;
  cursor: pointer;
}

@keyframes anima-button-30 {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 208, 185, 0.5);
  }
  100% {
    box-shadow: 0 0 0 1.2em rgba(0, 0, 0, 0);
  }
}
.sec_1 {
  position: relative;
  width: 100%;
  height: 650px;
}
@media (max-width: 600px) {
  .sec_1 {
    height: auto;
  }
}
.sec_1 .box {
  position: relative;
}
@media (max-width: 600px) {
  .sec_1 .box {
    display: flex;
    flex-flow: row wrap-reverse;
  }
}
.sec_1 .box .left {
  position: absolute;
  width: 650px;
  top: 100px;
  left: 100px;
  z-index: 2;
}
@media (max-width: 600px) {
  .sec_1 .box .left {
    position: static;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }
}
.sec_1 .box .left h1 {
  font-size: 45px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 5px;
  margin: 20px 0;
}
@media (max-width: 600px) {
  .sec_1 .box .left h1 {
    font-size: 23px;
    margin: 0 0 20px 0;
  }
}
.sec_1 .box .left h1 .style_1 {
  font-size: 120%;
  color: #0097b2;
}
.sec_1 .box .left p.text {
  margin: 10px 0;
  letter-spacing: 2px;
  line-height: 1.7;
}
.sec_1 .box .left img.logo_1 {
  width: 400px;
}
@media (max-width: 600px) {
  .sec_1 .box .left img.logo_1 {
    width: 300px;
  }
}
.sec_1 .box .left .btn_box_1 {
  margin: 10px 0;
}
.sec_1 .box .left .btn_box_1 button {
  margin-left: 10px;
}
@media (max-width: 600px) {
  .sec_1 .box .left .btn_box_1 button {
    margin: 0 auto;
  }
}
.sec_1 .box .right {
  position: absolute;
  width: 800px;
  top: 50px;
  right: 0px;
  z-index: 1;
}
@media (max-width: 600px) {
  .sec_1 .box .right {
    width: 100%;
    position: static;
    text-align: right;
  }
}
.sec_1 .box .right img {
  width: 100%;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .sec_1 .box .right img {
    width: 320px;
    border-radius: 10px 0 0 10px;
  }
}

.sec_2 {
  display: flex;
  justify-content: space-around;
  width: 100%;
  align-items: center;
  margin: 50px 0;
}
@media (max-width: 600px) {
  .sec_2 {
    flex-wrap: wrap-reverse;
    align-items: stretch;
    justify-content: normal;
    padding: 15px;
    box-sizing: border-box;
  }
}
@media (max-width: 600px) {
  .sec_2 .left {
    width: 100%;
  }
}
.sec_2 .left img {
  max-width: 600px;
  display: block;
}
@media (max-width: 600px) {
  .sec_2 .left img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .sec_2 .right {
    width: 100%;
  }
}
.sec_2 .right img {
  width: 300px;
}
@media (max-width: 600px) {
  .sec_2 .right img {
    width: 240px;
  }
}
.sec_2 .right h2 {
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 5px;
}
@media (max-width: 600px) {
  .sec_2 .right h2 {
    font-size: 18px;
  }
}
.sec_2 .right h2 .style_1 {
  font-size: 120%;
  color: #0097b2;
}
.sec_2 .right h2 .style_2 {
  font-size: 140%;
  color: #d65454;
}
.sec_2 .right .btn_box_1 {
  margin: 30px 0;
}

footer {
  background: #0097b2;
  color: #fff;
  padding: 30px;
}
footer div {
  margin: 10px auto;
  text-align: center;
}
footer .text_1 {
  font-size: 25px;
}
@media (max-width: 600px) {
  footer .text_1 {
    font-size: 18px;
  }
}
footer .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  footer .logo {
    flex-wrap: wrap;
  }
}
footer .logo img {
  width: 200px;
}

/* Animation */
.target {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(3%);
  }
}/*# sourceMappingURL=top_style.css.map */