@charset "UTF-8";
@import url("https://use.typekit.net/fae8xuq.css"); /*Cormorant Garamond*/
@import url("https://use.typekit.net/vxv1uiy.css"); /*Acumin*/
/* --------------------------------------------------
Common
-------------------------------------------------- */
html {
  font-size: 14px;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "Noto Serif JP", "MS PMincho", "MS Mincho", serif;
  line-height: 1.8;
  color: #222;
}

body img, body svg {
  width: auto;
  height: 100%;
  vertical-align: bottom;
}

a {
  color: #222;
}
a:active, a:hover, a:visited {
  color: #222;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.container {
  font-size: 14px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
  transform: translate(0, 10px);
  transition: all 1.1s ease;
}

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

/* --------------------------------------------------
Content
-------------------------------------------------- */
.container {
  opacity: 0;
  animation: fadeIn 1s ease 0.15s forwards;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 13px;
}
.container.active {
  opacity: 1;
}

.header, .footer {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 60px;
  padding: 0 40px;
  z-index: 100;
}
.header img, .footer img {
  width: 100%;
  height: auto;
}
.header a, .footer a {
  transition: all 0.3s ease;
}
.header a:hover, .footer a:hover {
  opacity: 0.5;
}

.header {
  top: 30px;
}
.header__logo {
  width: 250px;
  font-size: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo .logo1 {
  width: 72px;
  margin-right: 3px;
}
.header__logo .logo2 {
  width: 140px;
}
.header__logo .line {
  width: 1px;
  height: 32px;
  background: #000;
}
.header__nav {
  display: flex;
}
.header__nav li {
  margin-right: 40px;
  font-size: 16px;
}
.header__nav li:last-child {
  margin-right: 0;
}

.footer {
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__left {
  width: 194px;
  height: 2px;
  border-radius: 2px;
  background-color: #cccccc;
  position: relative;
}
.footer__left .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: black;
  width: 0%;
  z-index: 10;
  border-radius: 2px;
}
.footer__right {
  display: flex;
  align-items: center;
}
.footer__right li {
  font-size: 16px;
}
.footer__right li.insta {
  width: 30px; /*margin-right: 40px;*/
}

.main {
  margin-top: 60px;
  height: calc(100vh - 120px);
  overflow-x: auto; /* 横スクロールを有効化 */
  overflow-y: hidden; /* 縦スクロール無効化 */
  white-space: nowrap; /* 横並びに */
  -ms-overflow-style: none; /* IE, Edge */
  scrollbar-width: none;
}
.main::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.main .contents {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.main .contents__box {
  display: flex;
  align-items: center;
  height: 100%;
}
.main .contents .is-kv {
  margin: 0 300px 0 200px;
}
.main .contents .box {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 100px;
}
.main .contents .box.mr-s {
  margin-right: 50px;
}
.main .contents .box.mr-m {
  margin-right: 200px;
}
.main .contents .box.mr-l {
  margin-right: 300px;
}
.main .contents .is-logo {
  margin: 0 180px 0 80px;
}
.main .contents .is-title {
  font-size: 18px;
  font-family: "adobe-jenson-pro", serif;
  font-weight: 400;
  font-style: normal;
  margin-left: 100px;
  color: #555;
  letter-spacing: 0.1em;
}
.main .contents .is-title span {
  font-size: 16px;
}
.main .contents .grid-container {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 15px;
}
.main .contents .is-large {
  height: calc(750 / 1000 * 100dvh);
  font-size: 0;
}
.main .contents .is-middle {
  height: calc(620 / 1000 * 100dvh);
  font-size: 0;
}
.main .contents .is-small {
  height: calc(500 / 1000 * 100dvh);
  font-size: 0;
}
.main .contents .is-xsmall {
  height: calc(330 / 1000 * 100dvh);
  font-size: 0;
}
.main .contents .credit-list {
  margin-top: 20px;
}
.main .contents .credit-list .item {
  display: flex;
  align-items: center;
  font-size: 10px;
  line-height: 1.4;
  font-family: acumin-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 5px;
  letter-spacing: 0.08em;
}
.main .contents .credit-list .item a {
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  border: 1px solid #000;
  box-sizing: border-box;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  /*padding: 1px 1px 0px 3px;*/
  width: 32px;
  padding-left: 1px;
  padding-bottom: 1px;
  height: 18px;
  text-decoration: none;
  text-align: center;
}
.main .contents .credit-list .item a:hover {
  text-decoration: none;
  background-color: #FFF;
  color: #000;
}
.main .contents .credit-list .item .item-d-none buy {
  display: none;
}
.main .contents .logo img, .main .contents .insta img {
  width: 100%;
  height: auto;
}
.main .contents .logo {
  width: 230px;
  margin: 0 auto 25px;
}
.main .contents .text {
  text-align: center;
}
.main .contents .insta {
  width: 40px;
  margin: 20px auto 0;
}
.main .contents .insta a {
  transition: all 0.3s ease;
}
.main .contents .insta a:hover {
  opacity: 0.6;
}

@keyframes fade {
  0%, 40% {
    opacity: 1;
  }
  50%, 90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .container {
    font-size: 12px;
  }
  .header, .footer {
    height: 50px;
    padding: 0 15px;
  }
  .header {
    top: 15px;
  }
  .header__logo {
    width: 180px;
  }
  .header__logo .logo1 {
    width: 50px;
    margin-right: 3px;
  }
  .header__logo .logo2 {
    width: 100px;
  }
  .header__logo .line {
    width: 1px;
    height: 25px;
    background: #000;
  }
  .header__nav li {
    margin-right: 20px;
    font-size: 12px;
  }
  .footer__left {
    width: 124px;
  }
  .footer__right li {
    font-size: 12px;
  }
  .footer__right li.insta {
    width: 25px; /*margin-right: 15px;*/
  }
  .main {
    margin-top: 50px;
    height: calc(100dvh - 100px);
  }
  .main .contents__box {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .main .contents .is-kv {
    margin: 0 150px 0 50px;
  }
  .main .contents .box {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 100px;
  }
  .main .contents .box.mr-s {
    margin-right: 50px;
  }
  .main .contents .box.mr-m {
    margin-right: 100px;
  }
  .main .contents .box.mr-l {
    margin-right: 150px;
  }
  .main .contents .is-logo {
    margin: 0 180px 0 80px;
  }
  .main .contents .is-title {
    font-size: 13px;
    margin-left: 50px;
  }
  .main .contents .grid-container {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 15px;
  }
  .main .contents .is-large {
    height: calc(700 / 1000 * 100dvh);
    font-size: 0;
  }
  .main .contents .is-middle {
    height: calc(600 / 1000 * 100dvh);
    font-size: 0;
  }
  .main .contents .is-small {
    height: calc(400 / 1000 * 100dvh);
    font-size: 0;
  }
  .main .contents .is-xsmall {
    height: calc(330 / 1000 * 100dvh);
    font-size: 0;
  }
  .main .contents .credit-list {
    margin-top: 20px;
  }
  .main .contents .credit-list .item {
    display: flex;
    align-items: center;
    font-size: 10px;
    margin-bottom: 5px;
  }
  .main .contents .logo img, .main .contents .insta img {
    width: 100%;
    height: auto;
  }
  .main .contents .text {
    font-size: 11px;
  }
  .main .contents .logo {
    width: 150px;
  }
  .main .contents .insta {
    width: 30px;
    margin: 16px auto 0;
  }
}
/* --------------------------------------------------
loading
-------------------------------------------------- */
@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
#loader {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: -webkit-fill-available;
  background-color: #c6a847;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  top: 0;
  z-index: 9999;
  transition: opacity 1s ease-in-out 0.3s;
}

#loader .logo {
  width: 300px;
  height: 100px;
  background-image: url("https://baycrews.jp/src/feature/20250901_ensemble/logo.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}

#loader .bar {
  width: 100%;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}

#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #2c6782;
  display: block;
}

#loader.complete {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  #loader .logo {
    width: 180px;
    height: 66px;
  }
}/*# sourceMappingURL=common.css.map */