@font-face {
  font-family: "Avenir";
  src: url(../font/Avenir\ Book.ttf);
}
html,
body {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  background-color: #fff;
}

img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  color: #000;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.6;
    transition: all 0.4s;
  }
}
a[href=""] {
  pointer-events: none;
}

#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

.container {
  width: clamp(335px, 89.3333333333vw, 600px);
  margin: 0 auto;
}

.fv {
  position: relative;
}
.fv .logo {
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: 5%;
  width: fit-content;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .fv .logo {
    left: 80%;
    bottom: 10%;
  }
}
.fv .logo figure {
  width: clamp(140px, 37.3333333333vw, 210px);
  margin: 10px auto 0;
}
@media screen and (min-width: 769px) {
  .fv .logo figure {
    margin: 10px auto 0 0;
  }
}
.fv .text {
  font-family: "Avenir";
  white-space: nowrap;
  margin-top: clamp(22px, 5.8666666667vw, 34px);
  font-size: clamp(16px, 4.2666666667vw, 24px);
  color: #231815;
}

.sec {
  margin: 100px 0;
}
.sec .box {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.sec .box li {
  width: calc(50% - 1.5px);
  position: relative;
}

.sec.single .container {
  width: clamp(203px, 54.1333333333vw, 363px);
}

.close {
  position: fixed;
  width: 20px;
  height: 20px;
  top: 30px;
  right: 20px;
  z-index: 10;
  transform: rotate(45deg);
}
.close:before, .close:after {
  content: "";
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: #000;
  position: absolute;
}
.close:before {
  width: 1px;
  height: 20px;
}
.close:after {
  height: 1px;
  width: 20px;
}

.open {
  position: relative;
}
.open .circle {
  width: 15px;
  height: 15px;
  border: 0.8px solid #fff;
  position: absolute;
  bottom: 15px;
  right: 15px;
  opacity: 0.5;
  border-radius: 50%;
  animation: 2s linear 1s infinite alternate forwards zoomcircle;
}
@keyframes zoomcircle {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}

.slider .slick-slide {
  margin-right: 3px;
}

.credit {
  width: fit-content;
  margin: 50px auto 80px;
}
.credit li {
  margin-bottom: 10px;
}
.credit li a {
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  .credit {
    margin: 80px auto 120px;
  }
}

#sec1 {
  padding-top: 100px;
}

.slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: inherit;
}
@media screen and (min-width: 769px) {
  .slick-dots {
    bottom: -50px !important;
  }
}

.slick-dots li {
  width: 10px !important;
  height: inherit !important;
}
.slick-dots li.slick-active button {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "" !important;
  content: "" !important;
}

.slick-dots li button {
  width: 3px !important;
  height: 3px !important;
  background-color: #000 !important;
  border-radius: 50%;
  padding: 0 !important;
  margin: 0 auto;
  opacity: 0.3;
}

.slick-prev,
.slick-next {
  top: inherit !important;
  z-index: 10;
}
.slick-prev:before, .slick-prev:after,
.slick-next:before,
.slick-next:after {
  content: "" !important;
  background-color: #000;
  opacity: 1 !important;
  position: absolute;
}
.slick-prev::before,
.slick-next::before {
  height: 1px;
  width: 15px;
  transform: rotate(20deg);
}
.slick-prev::after,
.slick-next::after {
  height: 1px;
  width: 15px;
  transform: rotate(-20deg);
  top: 15px;
}

.slick-next {
  bottom: -40px;
  right: 26.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .slick-next {
    right: 40vw !important;
    bottom: -64px;
  }
}

.slick-prev {
  left: 26.6666666667vw !important;
  bottom: -36px;
  transform: rotate(180deg) !important;
}
@media screen and (min-width: 769px) {
  .slick-prev {
    left: 40vw !important;
    bottom: -60px;
  }
}

header {
  position: fixed;
  top: 20px;
  left: 15px;
  font-family: "Avenir";
  z-index: 10;
}
header .flex {
  display: flex;
  gap: 5px;
}
header .logo {
  width: clamp(100px, 26.6666666667vw, 130px);
}
header .text {
  font-size: 13px;
  margin-top: clamp(12px, 3.2vw, 19px);
}

footer {
  text-align: center;
  padding: 50px 0 100px;
}
footer .logo {
  display: block;
  width: min(26.6666666667vw, 150px);
  margin: 0 auto;
  border-bottom: 0;
}
footer .staff_credit {
  font-size: 10px;
  margin: 50px 0 80px;
  color: #000;
  line-height: 1.5;
}
footer a:not(.logo) {
  display: block;
  border-bottom: none;
  color: #000;
  padding: clamp(5px, 0.4166666667vw, 10px);
  max-width: 200px;
  margin: 0 auto 10px;
  border: 1px solid #000;
}/*# sourceMappingURL=style.css.map */