@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BBH+Sans+Bogle&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8em;
  font-size: min(3.8vw, 16px);
  box-sizing: border-box;
}

.tit-row {
  font-style: normal;
  color: #9d917c;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2em;
  margin-bottom: min(6vw, 55px);
}
.tit-row:not(.ja) {
  font-family: "BBH Sans Bogle", sans-serif;
  font-weight: 400;
  font-size: min(7.5vw, 40px);
  letter-spacing: 0.1em;
}
.tit-row.ja {
  font-weight: 600;
  font-size: min(5.4vw, 30px);
  letter-spacing: 0.05em;
}
.tit-row.ja span {
  font-size: min(4.5vw, 24px);
  display: block;
  margin-top: 0.5em;
}

.core {
  width: min(100% - 70px, 1050px);
  margin-left: auto;
  margin-right: auto;
}

.flexbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a, span, em {
  font-size: inherit;
  color: inherit;
  font-style: inherit;
}

a {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

footer {
  background: #000;
  text-align: center;
  padding-bottom: 10px;
}
footer .inner {
  padding: min(38vw, 170px) 0;
  text-align: center;
}
footer .inner img {
  width: min(25.35vw, 178px);
}
footer .copyright {
  color: white;
  font-size: 10px;
}

/* スクロールフェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .spv {
    display: none;
  }
  .flexpc {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .pcv {
    display: none;
  }
  .flexsp {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
/*# sourceMappingURL=common.css.map */