@charset "UTF-8";
/* CSS Document */
body {
  background-color: #F7F6F2;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}
h2, h3, h4, h6 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 2.5em;
}
h5{
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5em;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}
.hide {
  animation: fadeOut 0.8s ease-out forwards;
}
@keyframes scroll {
  0% {
    transform: translate(0, 0);
  }
  80% {
    transform: translate(0px, 30px);
  }
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
a {
  color: #000;
  text-decoration: underline;
}
a img {
  transition: transform 0.3s ease-in-out;
}
a img:hover {
  transform: scale(0.9);
}
.section {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}
.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  font-size: 2rem;
  margin-top: 50vh;
}
.menu {
  display: flex;
  flex-flow: column;
  position: fixed;
  right: 2.5vw;
  top: 3vh;
  z-index: 10;
}
.menu a {
  margin-bottom: 10px;
}
.btn-yajirushi {
  animation: scroll 3.5s infinite;
  position: absolute;
  bottom: 5vh;
}
.logo {
  position: fixed;
  bottom: 5vh;
  left: 2.5vw;
}
#page-top {
  position: fixed;
  bottom: 3vh;
  right: 2.5vw;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.show {
  opacity: 1 !important;
}
.hide {
  opacity: 0 !important;
}
.bg-white {
  background-color: #FFFFFF;
}
.bg-brown {
  background-color: #F2F1EA;
}
@media (max-width:767.98px) {
  .bg-white, .bg-brown {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
ul {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}
ul li {
  list-style-type: none;
}
dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
dt, dd {
  text-align: left;
  font-size: 110%;
}
dt {
  width: 30%;
}
dd {
  width: 70%;
  padding-bottom: 20px;
}
dd img, li img {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width:767.98px) {
  dl {
    display: inherit;
    width: 100%;
  }
  dt, dd {
    width: 100%;
  }
  dt {
    font-size: 110%;
  }
  dd {
    padding-bottom: 50px;
    font-size: 90%;
  }
}
.block {
  /*scroll-snap-align: start;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;*/
}
.nav-bar {
  position: fixed;
  top: 50%;
  right: 2.5vw;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}
.nav-dot {
  width: 3px;
  height: 40px;
  margin: 10px;
  background-color: #E5E0D3;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.nav-dot.active {
  background-color: #BEB186;
  transform: scale(1.3);
}
.category {
  line-height: 1.2em;
}
@media (max-width:767.98px) {
  .txtbox {
    font-size: 80%;
  }
  .headcopy {
    font-size: 110%;
      line-height: 160%;
  }
}