@charset "UTF-8";
/* CSS Document */
*, *:before, *:after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  color: #000;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body, p {
  animation: fadeIn .5s ease 0s 1 normal;
  color: #333; /* RGB */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: .5px;
  text-align: left;
  line-break: normal;
}
h1 {
  font-family: "Aboreto", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 5rem;
  color: #A48560;
  transform: translateY(-32px);
}
h2 {
  font-size: 3rem;
  line-height: 4.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}
h3 {
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.5rem;
  letter-spacing: 1px;
  color: #A48560;
  margin: 20px 0 50px;
}

@media(max-width:820px) {
  body, p {
    font-size: 1.4rem;
    line-height: 3.2rem;
  }
  h1 {
    font-size: 3.5rem;
    transform: translateY(-28px);
  }
  h3 {
    font-size: 2rem;
    line-height: 3.5rem;
  }
}
@media(max-width:430px) {
  body, p {
    font-size: 1.3rem;
    line-height: 2.5rem;
  }
  h1 {
    transform: translateY(-25px);
  }
  h3 {
    margin: 30px 0 50px;;
  }
}

.footer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
  padding-top: 400px;
  background-image: url(../img/footer_img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.footer small {
  color: #FFF;
  font-size: 1.1rem;
}
.footer__filter-background img {
  position: absolute;
  bottom: 0px;
  width: 100%;
  object-fit: cover;
}
.tent_top {
  position: absolute;
  z-index: 1;
  top: -1px;
}
.footer__filter-background::after {
  content: "";
  background-color: #ffffff;
  background-image: radial-gradient(circle, #000000 1px, transparent 2px);
  background-position: 0 0;
  background-size: 3px 3px;
  animation: GradientBackground 20s ease infinite;
  opacity: .3;
  position: absolute;
  inset: 0;
}
.footer__content-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #FFF;
  padding: 0 5% 3%;
  align-items: flex-end;
}
.footer_left {
  width: 230px;
}
.footer_left p {
  color: #FFF;
  font-size: 1.1rem;
  line-height: 2.5rem;
  text-shadow: 0 0 3px rgba(0, 0, 0, .5);
}
.footer_left span {
  border-bottom: solid 1px;
}
.footer_left a {
  text-decoration: none;
  color: #FFF;
  border-bottom: solid 1px;
}
.company {
  text-align: center;
}
.company h4 {
  color: #FFF;
  font-size: 1.5rem;
}
.company a {
  text-decoration: none;
  color: #FFF;
  border-bottom: solid 1px #FFF;
}
.company img {
  width: 100px;
}
.company__address {
  font-size: 1.3rem;
  line-height: 2.1rem;
  text-align: left;
}

.footer_right {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  gap: 5px;
  align-items: flex-end;
  width: 230px;
}
.footer_right img {
  width: 35px;
  height: 35px;
}
.footer_right p {
  color: #FFF;
  text-shadow: 0 0 3px rgba(0, 0, 0, .5);
  font-size: 1.2rem;
  padding-right: 5px;
}
.footer-copyright {
  text-align: center;
  z-index: 1;
}
@media (max-width:820px) {
  .footer_left {
    display: none;
  }
  .footer__content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 5% 0;
  }
  .footer {
    padding-top: 180px;
  }
  .footer_left {
    width: 90%;
  }
  .footer_right {
    width: 90%;
  }
}