@charset "UTF-8";
/* ==================================================
  import
================================================== */
@import url("https://use.typekit.net/jhe3bnu.css"); /*Neue Haas Unica*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap"); /*Noto sans jp*/
/* ==================================================
  Mixins / Functions
================================================== */
/* ---- Media Query ---- */
/* ---- VW (SP基準) ---- */
/* ==================================================
  Variables
================================================== */
/* ---- color ---- */
/* ---- font ---- */
/* ---- layout ---- */
/* ---- font-size ---- */
/* ==================================================
  Base
================================================== */
html {
  font-size: 100%;
}

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;
  }
}
/* ---- CMS:header ---- */
.ftool-wrapper p {
  margin-bottom: 0;
}

/* ==================================================
  Animation
================================================== */
.fadein {
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

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

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

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

.fadein {
  opacity: 0;
  transition: all 1s ease;
}

.fadein.scrollin {
  opacity: 1;
}

.fadeinL {
  opacity: 0;
  transform: translate(-40px, 0);
  transition: all 1s ease;
}

.fadeinL.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeinR {
  opacity: 0;
  transform: translate(40px, 0);
  transition: all 1s ease;
}

.fadeinR.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ==================================================
  Layout
================================================== */
.lp-container {
  width: 100%;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: calc(12 / 16 * 1rem);
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #000;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.15s forwards;
}
@media screen and (min-width: 769px) {
  .lp-container {
    font-size: calc(13 / 16 * 1rem);
  }
}
.lp-container {
  /*opacity: 0; animation: fadeIn 1.5s ease 0.15s forwards;*/
}
.lp-container img,
.lp-container video,
.lp-container svg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ==================================================
  Main Visual
================================================== */
.kv {
  position: relative;
}
.kv__titleWrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20;
  gap: calc(32 / 16 * 1rem);
  z-index: 2;
}
.kv__title {
  width: 80%;
  margin: 0 auto calc(1 / 16 * 1rem);
}
.kv__subTitle {
  width: 60%;
  margin: 0 auto;
}
.kv__logo {
  position: absolute;
  width: 40%;
  left: 0;
  right: 0;
  margin: auto;
  bottom: calc(30 / 16 * 1rem);
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .kv__logo {
    bottom: calc(50 / 16 * 1rem);
  }
}

.flow {
  display: flex;
  gap: 4px;
  overflow: hidden;
  height: 90vh;
  margin-bottom: calc(50 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .flow {
    height: 100vh;
    margin-bottom: 0;
  }
}

.flow__col {
  overflow: hidden;
  position: relative;
}

.flow__col--left {
  width: 42%;
}

.flow__col--right {
  width: 68%;
}

.flow__inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* 左：上 → 下 */
.flow__col--left .flow__inner {
  animation: scroll-down 18s linear infinite;
}

/* 右：下 → 上 */
.flow__col--right .flow__inner {
  animation: scroll-up 33s linear infinite;
}

/* アニメーション */
@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes scroll-up {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}
/* ==================================================
  Content
================================================== */
:root {
  --space-m: 30px;
}
@media screen and (min-width: 769px) {
  :root {
    --space-m: 100px;
  }
}

.main-content {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 769px) {
  .content {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .content__left {
    width: 45%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  .content__right {
    position: relative;
    width: 55%;
  }
}
.content__lead {
  width: calc(100% - 20px);
  margin: 0 auto calc(60 / 16 * 1rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .content__lead {
    font-size: calc(13 / 16 * 1rem);
    margin: calc(80 / 16 * 1rem) auto calc(120 / 16 * 1rem);
  }
}
.content__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 120px;
}
@media screen and (min-width: 769px) {
  .content__inner {
    gap: 200px;
  }
}

@media screen and (min-width: 769px) {
  .style__box {
    width: 100%;
  }
}
.style__numWrap {
  position: relative;
  width: 95%;
  margin: 0 auto;
  padding: 4px 0 10px;
}
.style__num {
  font-family: neue-haas-unica, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(50 / 16 * 1rem);
  line-height: 100%;
  letter-spacing: -0.05em;
  font-size: calc(48 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .style__num {
    font-size: calc(60 / 16 * 1rem);
  }
}
.style__item {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: calc(50% - 2px);
  transform: translateY(-50%);
  width: calc(100 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .style__item {
    width: 19%;
  }
}
.style__img {
  position: relative;
  margin-bottom: calc(40 / 16 * 1rem);
}
.style__img.sticky {
  position: sticky;
  top: 0;
}
@media screen and (min-width: 769px) {
  .style__img {
    margin-bottom: calc(80 / 16 * 1rem);
  }
}
.style__img1 {
  position: relative;
}
.style__heading {
  position: absolute;
  font-size: calc(13 / 16 * 1rem);
  writing-mode: vertical-rl;
  color: #fff;
  background: #000;
  padding: 5px 6px 6px;
  line-height: 1;
  z-index: 5;
}
@media screen and (min-width: 769px) {
  .style__heading {
    font-size: calc(16 / 16 * 1rem);
  }
}
.style__heading.heading1 {
  top: calc(60 / 16 * 1rem);
  right: calc(50 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .style__heading.heading1 {
    top: calc(100 / 16 * 1rem);
    right: calc(90 / 16 * 1rem);
  }
}
.style__heading.heading2 {
  top: calc(60 / 16 * 1rem);
  left: calc(50 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .style__heading.heading2 {
    top: calc(100 / 16 * 1rem);
    left: calc(90 / 16 * 1rem);
  }
}
.style__heading.heading3 {
  top: calc(60 / 16 * 1rem);
  right: calc(40 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .style__heading.heading3 {
    top: calc(100 / 16 * 1rem);
    right: calc(90 / 16 * 1rem);
  }
}
.style__heading.heading4 {
  top: calc(90 / 16 * 1rem);
  left: calc(40 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .style__heading.heading4 {
    top: calc(130 / 16 * 1rem);
    left: calc(90 / 16 * 1rem);
  }
}
.style__heading.heading5 {
  top: calc(90 / 16 * 1rem);
  right: calc(36 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .style__heading.heading5 {
    top: calc(130 / 16 * 1rem);
    right: calc(90 / 16 * 1rem);
  }
}
.style__heading.heading6 {
  top: calc(100 / 16 * 1rem);
  left: calc(40 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .style__heading.heading6 {
    top: calc(140 / 16 * 1rem);
    left: calc(50 / 16 * 1rem);
  }
}
.style__heading.heading7 {
  top: calc(150 / 16 * 1rem);
  right: calc(60 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .style__heading.heading7 {
    top: calc(190 / 16 * 1rem);
    right: calc(100 / 16 * 1rem);
  }
}
.style__heading.heading8 {
  top: calc(90 / 16 * 1rem);
  right: calc(40 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .style__heading.heading8 {
    top: calc(130 / 16 * 1rem);
    right: calc(90 / 16 * 1rem);
  }
}
.style__heading.heading9 {
  top: calc(60 / 16 * 1rem);
  right: calc(50 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .style__heading.heading9 {
    top: calc(100 / 16 * 1rem);
    right: calc(90 / 16 * 1rem);
  }
}
.style__stickyBox {
  position: relative;
  margin-bottom: calc(60 / 16 * 1rem);
}
.style__img2 {
  width: calc(300 / 390 * 100vw);
  margin: 0 auto calc(40 / 16 * 1rem);
  position: sticky;
  top: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .style__img2 {
    width: 80%;
    margin: 0 auto calc(60 / 16 * 1rem);
  }
}
.style__textBox {
  position: relative;
  z-index: 2;
  padding: calc(20 / 16 * 1rem) calc(28 / 16 * 1rem);
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.6);
  color: #FFF;
  margin-bottom: calc(40 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .style__textBox {
    padding: calc(40 / 16 * 1rem) calc(28 / 16 * 1rem);
  }
}
.style__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: calc(11 / 16 * 1rem);
  align-items: center;
  margin: calc(16 / 16 * 1rem) 0;
}
@media screen and (min-width: 769px) {
  .style__text {
    font-size: calc(12 / 16 * 1rem);
  }
}
.style__other {
  overflow: hidden;
}
.style__img3 {
  position: relative;
  z-index: 5;
  width: calc(270 / 390 * 100vw);
}
.style__img3.right {
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .style__img3 {
    width: 66%;
  }
}
.style__img4 {
  position: relative;
  z-index: 5;
  width: calc(190 / 390 * 100vw);
  z-index: 5;
  margin: calc(-130 / 16 * 1rem) 0 0 auto;
}
.style__img4.left {
  margin: calc(-130 / 16 * 1rem) 0 0 0;
}
@media screen and (min-width: 769px) {
  .style__img4.left {
    margin: calc(-230 / 16 * 1rem) 0 0 0;
  }
}
@media screen and (min-width: 769px) {
  .style__img4 {
    width: 45%;
    margin: calc(-230 / 16 * 1rem) 0 0 auto;
  }
}

.style__credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.style .credits .item-d-none {
  display: none;
}
.style .credits__block {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  font-family: neue-haas-unica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(11 / 16 * 1rem);
  word-break: break-word;
}
@media screen and (min-width: 769px) {
  .style .credits__block {
    font-size: calc(13 / 16 * 1rem);
  }
}
.style .credits__block p {
  line-height: 1.2;
}
.style .credits__block p span {
  font-size: calc(10 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .style .credits__block p span {
    font-size: calc(12 / 16 * 1rem);
  }
}
.style .credits__buy {
  font-size: calc(10 / 16 * 1rem);
  display: flex;
  padding: 1px 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  border: 1px solid #000;
  background-color: #000;
  box-sizing: border-box;
  font-weight: 400;
  word-break: keep-all;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .style .credits__buy {
    font-size: calc(12 / 16 * 1rem);
  }
}
.style .credits__buy:hover {
  color: #000;
  text-decoration: none;
  background-color: #FFF;
}

.profile {
  padding: calc(120 / 16 * 1rem) 0 calc(20 / 16 * 1rem);
  background: url("https://baycrews.jp/src/feature/20260428_city/mv.webp") no-repeat center bottom/cover;
}
@media screen and (min-width: 769px) {
  .profile {
    padding: calc(200 / 16 * 1rem) 0 calc(20 / 16 * 1rem);
  }
}
.profile__list {
  width: 63%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
  margin-bottom: calc(60 / 16 * 1rem);
  font-family: neue-haas-unica, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .profile__list {
    width: 55%;
    gap: 40px;
  }
}
.profile__item {
  line-height: 1.2;
  color: #FFF;
}
.profile .img {
  margin-bottom: calc(10 / 16 * 1rem);
}
.profile .txt {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}
.profile .name {
  font-size: calc(13 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .profile .name {
    font-size: calc(16 / 16 * 1rem);
  }
}
.profile .role {
  font-size: calc(10 / 16 * 1rem);
  margin-bottom: calc(2 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .profile .role {
    font-size: calc(12 / 16 * 1rem);
  }
}
.profile .insta {
  font-size: calc(10 / 16 * 1rem);
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .profile .insta {
    font-size: calc(12 / 16 * 1rem);
  }
}
.profile .insta:hover {
  text-decoration: none;
}

.footer {
  width: 95%;
  margin-inline: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #FFF;
  padding-top: calc(20 / 16 * 1rem);
  color: #FFF;
}
.footer__list {
  font-size: calc(13 / 16 * 1rem);
  display: flex;
  flex-direction: column;
  gap: calc(6 / 16 * 1rem);
  margin-bottom: calc(60 / 16 * 1rem);
}
.footer__copy {
  font-size: calc(10 / 16 * 1rem);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__pgtop a {
  position: absolute;
  right: calc(20 / 16 * 1rem);
  bottom: calc(20 / 16 * 1rem);
  writing-mode: vertical-rl;
  transform-origin: bottom right;
  color: #FFF;
  font-size: calc(10 / 16 * 1rem);
}/*# sourceMappingURL=style.css.map */