@charset "UTF-8";
/* ==================================================
  import
================================================== */
@import url("https://use.typekit.net/zlt2upg.css");
/* ==================================================
  Variables
================================================== */
/* ---- color ---- */
/* ---- font ---- */
/* ---- layout ---- */
/* ---- font-size ---- */
/* ==================================================
  Mixins / Functions
================================================== */
/* ---- Media Query ---- */
/* ---- VW (SP基準) ---- */
/* ==================================================
  Base
================================================== */
html {
  font-size: 100%;
}

body {
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "ＭＳ ゴシック", sans-serif;
  font-size: calc(12 / 16 * 1rem);
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #000;
  background-color: #fff;
}
body img,
body video,
body svg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- Utility ---- */
.pc {
  display: none;
}

.sp {
  display: block;
}

@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
/* ==================================================
  Animation
================================================== */
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.fadein2 {
  opacity: 0;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fadein2.is-visible {
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ==================================================
  Layout
================================================== */
.lp-container {
  width: 100%;
}

/* ==================================================
  Main Visual
================================================== */
.mv {
  position: relative;
  background-color: #1f1b1b;
  padding-bottom: calc(40 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .mv {
    padding-bottom: calc(60 / 16 * 1rem);
  }
}
.mv__inner {
  position: relative;
  margin-bottom: calc(40 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .mv__inner {
    margin-bottom: calc(40 / 16 * 1rem);
  }
}
.mv__title {
  z-index: 10;
  position: absolute;
  width: calc(240 / 390 * 100vw);
  left: calc(20 / 390 * 100vw);
  bottom: calc(20 / 390 * 100vw);
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .mv__title {
    width: 46.875vw;
    left: calc(30 / 16 * 1rem);
    bottom: calc(20 / 16 * 1rem);
  }
}
.mv__title.is-loaded {
  animation: fadeIn 1s ease forwards 4.2s;
}
.mv__image {
  z-index: 1;
  position: relative;
}
.mv__image ul {
  position: relative;
  width: 100%;
  aspect-ratio: 1170/1440;
}
@media screen and (min-width: 769px) {
  .mv__image ul {
    aspect-ratio: 1920/1080;
  }
}
.mv__image ul li {
  position: absolute;
  inset: 0;
}
.mv__image ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  animation: none;
}
.mv__image ul.is-loaded li img {
  animation: fadeIn 1s ease forwards;
}
.mv__image ul.is-loaded li:nth-child(1) img {
  animation-delay: 0.1s;
}
.mv__image ul.is-loaded li:nth-child(2) img {
  animation-delay: 0.8s;
}
.mv__image ul.is-loaded li:nth-child(3) img {
  animation-delay: 1.5s;
}
.mv__image ul.is-loaded li:nth-child(4) img {
  animation-delay: 2.2s;
}
.mv__image ul.is-loaded li:nth-child(5) img {
  animation-delay: 2.9s;
}
.mv__image ul.is-loaded li:nth-child(6) img {
  animation-delay: 3.6s;
}
.mv__lead {
  width: calc(350 / 390 * 100vw);
  color: #FFF;
  line-height: 2;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .mv__lead {
    font-size: calc(14 / 16 * 1rem);
    margin: 0 0 0 calc(30 / 16 * 1rem);
  }
}

/* ==================================================
  Content
================================================== */
.content {
  position: relative;
}
.content-block {
  position: relative;
  background-color: #CCC;
  padding: calc(60 / 16 * 1rem) 0 calc(150 / 16 * 1rem);
  position: sticky;
  top: var(--sticky-offset, 0);
}
@media screen and (min-width: 769px) {
  .content-block {
    padding: calc(120 / 16 * 1rem) 0 calc(400 / 16 * 1rem);
  }
}
.content-block--bg-image1 {
  background: url("https://baycrews.jp/src/feature/20260115_jsm/bg1_pc.webp") no-repeat center bottom/cover;
  z-index: 1;
}
.content-block--bg-image2 {
  background: url("https://baycrews.jp/src/feature/20260115_jsm/bg2_pc.webp") no-repeat center bottom/cover;
  z-index: 2;
}
.content-block--bg-image3 {
  background: url("https://baycrews.jp/src/feature/20260115_jsm/bg3_pc.webp") no-repeat center bottom/cover;
  z-index: 3;
}
.content-block--bg-image4 {
  background: url("https://baycrews.jp/src/feature/20260115_jsm/bg4_pc.webp") no-repeat center bottom/cover;
  z-index: 4;
}
.content-block--bg-image5 {
  background: url("https://baycrews.jp/src/feature/20260115_jsm/bg5_pc.webp") no-repeat center bottom/cover;
  z-index: 5;
}
.content-block--bg-image6 {
  background: url("https://baycrews.jp/src/feature/20260115_jsm/bg6_pc.webp") no-repeat center bottom/cover;
  z-index: 6;
}
.content-block__image {
  width: calc(320 / 390 * 100vw);
  margin: 0 auto calc(40 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content-block__image {
    width: 70.8984375vw;
    max-width: 900px;
    margin: 0 auto calc(80 / 16 * 1rem);
  }
}
.content-block__image--large {
  width: calc(360 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content-block__image--large {
    width: 87.890625vw;
    max-width: 1280px;
    margin: 0 auto calc(20 / 16 * 1rem);
  }
}
.content-block__image--last {
  margin-bottom: calc(20 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content-block__image--last {
    margin-bottom: calc(60 / 16 * 1rem);
  }
}

.content-block__creditList {
  background-color: rgba(255, 255, 255, 0.65);
  width: calc(360 / 390 * 100vw);
  padding: calc(20 / 390 * 100vw);
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .content-block__creditList {
    width: 640px;
    padding: calc(20 / 16 * 1rem) calc(20 / 16 * 1rem) calc(10 / 16 * 1rem) calc(20 / 16 * 1rem);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.content-block__credit {
  font-size: calc(12 / 16 * 1rem);
  line-height: 1.4;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.content-block__credit:last-child {
  margin-bottom: 0;
}
.content-block__credit .yen {
  font-size: calc(11 / 16 * 1rem);
  margin: 0 1px 0 5px;
}
.content-block__credit .item-d-none {
  display: none;
}
@media screen and (min-width: 769px) {
  .content-block__credit {
    margin-bottom: 8px;
  }
}
.content-block__buy {
  display: inline-block;
  font-size: calc(10 / 16 * 1rem);
  color: #fff;
  border: 1px solid #1f1b1b;
  background: #1f1b1b;
  line-height: 1;
  padding: 4px 5px 3px;
  margin-left: 8px;
  text-decoration: none;
}
.content-block__buy:hover {
  background: #fff;
  color: #1f1b1b;
}

/* ==================================================
  Footer
================================================== */
.footer {
  position: relative;
  border-top: solid 1px #000;
  padding: 20px;
  background-color: #1f1b1b;
  color: #FFF;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  /*フォント設定*/
}
@media screen and (min-width: 769px) {
  .footer {
    padding: 40px;
  }
}
@media screen and (min-width: 769px) {
  .footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.footer__body {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .footer__body {
    display: flex;
    align-items: center;
    width: calc(500 / 16 * 1rem);
  }
}
.footer__staff {
  font-style: italic;
  margin-bottom: calc(40 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__staff {
    margin-bottom: calc(50 / 16 * 1rem);
  }
}
.footer__logo {
  width: calc(100 / 16 * 1rem);
  margin-bottom: calc(20 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__logo {
    width: calc(90 / 16 * 1rem);
    margin-right: calc(60 / 16 * 1rem);
  }
}
.footer__itemList {
  margin-bottom: calc(20 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__itemList {
    display: flex;
    margin-bottom: 0;
  }
}
.footer__item {
  margin-bottom: calc(4 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__item {
    margin-bottom: 0;
  }
}
.footer__item a {
  transition: all 0.25s ease-in;
}
.footer__item a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 769px) {
  .footer__item {
    margin-right: calc(30 / 16 * 1rem);
  }
}
.footer__copyright {
  font-size: calc(10 / 16 * 1rem);
}
.footer__pagetop {
  font-size: calc(10 / 16 * 1rem);
}
.footer__pagetop a {
  text-decoration: underline;
}
.footer__pagetop a:hover {
  text-decoration: none;
}

/* ==================================================
loading
================================================== */
#loader {
  width: 100%;
  height: 100dvh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: opacity 0.8s ease-in-out;
}
#loader.is-complete {
  opacity: 1;
}
#loader.is-hidden {
  opacity: 0;
}
#loader .loader__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loader .loader__logo img {
  width: 180px; /*ロゴSP*/
  height: auto;
  display: block;
}
@media (min-width: 769px) {
  #loader .loader__logo img {
    width: 240px; /*ロゴPC*/
  }
}
#loader .loader__line {
  position: absolute;
  bottom: calc(30px + env(safe-area-inset-bottom, 0px));
  left: 30px;
  right: 30px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.1);
}
#loader .loader__line span {
  display: block;
  width: 0%;
  height: 100%;
  background-color: #000; /*バーのカラー*/
  transition: width 0.2s linear;
}

.lp-container { /* フェードイン */
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}
.lp-container.is-visible {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */