@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: 'Lato', sans-serif;
  font-size: 1.3em;
  letter-spacing: 0.1rem;
  line-height: 2.5rem;
  text-align: center;
  display: none;
  font-weight: 600;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {}
.none {
  display: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* footer */
.section-footer {
  background-color: #070F6C;
  text-align: left;
  color: #FFF;
  height: 100vh;
}
.footer-image img {
  height: 40vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: bottom;
}
.footer-text {
  padding: 10%;
  background-color: #070F6C;
  letter-spacing: 0.2rem;
  font-weight: 400;
}
.section-footer h1 {
  margin-bottom: 40px;
}
.section-footer h1 img {
  vertical-align: bottom;
  height: 36px;
  width: auto;
}
.footer-address {
  font-style: normal;
  margin-bottom: 30px;
}
.footer-address p {
  margin-bottom: 20px;
  line-height: 2;
}
.footer-icon_area {
  vertical-align: bottom;
  display: flex;
  align-items: center;
}
.section-footer ul {
  display: flex;
  list-style: none;
  margin-bottom: 20px;
}
.section-footer ul li img {
  height: 18px;
  width: auto;
  vertical-align: bottom;
    transition-duration: 0.5s;
  }
  .section-footer ul li img:hover {
    transform: scale(0.9, 0.9);
    transition-duration: 0.5s;
  }
.section-footer ul li {
  margin-right: 30px;
}
.footer-address a{
  text-decoration: none;
  color: #FFF;
}
.footer-icon {
  height: 15px;
  width: 15px;
  margin-right: 10px;
}
.section-footer small{
  font-size: 1.0rem;
}
@media(min-width:1060px) {
  .section-footer {
    font-size: 1.6rem;
    display: flex;
    height: 85vh;
  }
  .footer-image {
    width: 65vw;
    height: 80vh;
  }
  .footer-image img {
    height: 85vh;
  }
  .section-footer h1 {
    margin-bottom: 60px;
  }
  .section-footer h1 img {
    height: 60px;
    width: auto;
    transition-duration: 0.3s;
  }
  .section-footer h1 img:hover {
    transform: scale(0.98, 0.98);
    transition-duration: 0.3s;
  }
  .footer-text {
    padding: 40px;
    position: relative;
  }
  .footer-address p {
    margin-bottom: 25px;
  }
  .section-footer ul {
    margin-bottom: 0;
  }
  .section-footer small {
    font-size: 1.2rem;
    position: absolute;
    bottom: 40px;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.3rem;
  }
}