.header,
.main,
.footer {
  overflow-x: hidden;
}

.header {
  background-repeat: no-repeat;
  background-position: center top;
}

.header .keyvisual {
  display: flex;
  margin: 1.6rem;
  position: relative;
}

.header .keyvisual > * {
  display: flex;
}

.header .kvimg {
  overflow: hidden;
  padding-top: 75.02%;
  position: relative;
  height: 0;
  width: 100%;
  z-index: 1;
}

.header .kvimg img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.header .keytitle {
  position: absolute;
  right: 0;
  bottom: 4.973%;
  left: 0;
  margin: 0 auto;
  width: 82.166%;
  z-index: 2;
}

.header .keytitle img {
  width: 100%;
}

.header .keycatch {
  position: absolute;
  right: 6.5rem;
  bottom: 20%;
  margin-left: auto;
  width: 30%;
  z-index: 3;
}

.header .keycatch img {
  width: 100%;
}

.header .en-text {
  position: absolute;
  left: 4.416%;
  bottom: 15.053%;
  margin-left: auto;
  width: 25.25%;
  z-index: 3;
}

.header .en-text img {
  width: 100%;
}

.section {
  display: block;
  position: relative;
  z-index: 1;
}

.section .section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.section-title {
  border: 0.1rem solid #C7BA79;
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10rem;
  padding: 1.8rem 4.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  background-color: #C7BA79;
  display: block;
  height: 4.5rem;
  width: 0.4rem;
  position: absolute;
  top: 100%;
  left: calc(50% - 0.2rem);
}

.text-brightness {
  filter: contrast(0.8) brightness(1.2) sepia(0.3);
  position: relative;
}

.text-brightness::after {
  content: "";
  -webkit-mask-image: url();
  mask-image: url();
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  z-index: 1;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.5s;
}

.contents {
  padding: 20px 3vw;
  width: 100%;
  position: relative;
}

.contents-inner {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.footer {
  background-image: url(../images/bg_footer.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.footer .container {
  margin-top: 10rem;
  margin-bottom: 8rem;
}

.footer ul {
  align-items: center;
  justify-content: center;
}

.footer figure {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.footer .logo {
  margin-bottom: 2rem;
}

.footer .logo img {
  height: auto;
  width: 90%;
}

.animate-target {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  animation-fill-mode: both;
}

.animate-target.is-visible {
  opacity: 1;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
}

.animate-target.svg-fade.is-visible {
  animation: fadeIn 0.8s ease-out 0.8s both;
}

.animate-target.slide-in.is-visible {
  animation-name: slideInLeft;
}

.animate-target.scale-calm.is-visible {
  animation: zoomImage 3s forwards !important;
}

.animate-target.pop-in.is-visible {
  animation-name: scaleInEmphasis;
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.animate-target.fade-in-up.is-visible {
  animation-name: fadeInUp;
}

.fv-main-img {
  animation: zoomImage 3s forwards !important;
}

.fv-text-1 {
  animation: fadeIn 0.8s ease-out 0.8s both;
}

.fv-text-2 {
  animation: slideInLeft 0.7s ease-out 1.2s both;
}

.fv-text-3 {
  animation: fadeIn 0.9s ease-out 1.4s both;
}

[data-delay="0.2"].is-visible {
  animation-delay: 0.2s;
}

[data-delay="0.4"].is-visible {
  animation-delay: 0.4s;
}

[data-delay="0.6"].is-visible {
  animation-delay: 0.6s;
}

[data-delay="0.8"].is-visible {
  animation-delay: 0.8s;
}

[data-delay="1.0"].is-visible {
  animation-delay: 1s;
}

[data-delay="1.2"].is-visible {
  animation-delay: 1.2s;
}

@keyframes scaleInEmphasis {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  80% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoomImage {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media screen and (min-width: 600px) {
  .header .keyvisual {
    margin: 4rem;
  }

  .footer .logo {
    margin-bottom: 3rem;
  }

  .footer .logo img {
    height: 9.3rem;
    width: auto;
  }
}

@media screen and (min-width: 800px) {
  .header {
    background-size: cover;
  }
}

@media screen and (min-width: 1024px) {
  .contents {
    width: calc(100% - 300px);
  }
}

@media screen and (max-width: 1023.98px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 5rem;
    padding: 0.5rem 2.3rem;
  }

  .section-title::after {
    height: 2.3rem;
  }

  .contents {
    padding-right: 15px;
    padding-left: 15px;
  }

  .footer {
    background-size: auto 50%;
  }

  .footer .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (max-width: 1023.98px) {
  .fv-svg {
    animation: fadeIn 0.8s ease-out 0.5s both;
  }
}

@media screen and (max-width: 599.98px) {
  .footer p {
    font-size: 1.4rem;
  }
}