@charset "UTF-8";
/* ==================================================
  import
================================================== */
@import url("https://use.typekit.net/amn1cbu.css"); /* Sitka Heading */
/* ==================================================
  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 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

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

.is-center {
  margin-inline: auto;
}

.is-right {
  margin-left: auto;
}

.l-flex {
  display: flex;
  align-items: center;
}

.l-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.l-mb60 {
  margin-bottom: calc(60 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .l-mb60 {
    margin-bottom: calc(100 / 16 * 1rem);
  }
}

.is-mr10 {
  margin-right: calc(10 / 16 * 1rem) !important;
}
@media screen and (min-width: 769px) {
  .is-mr10 {
    margin-right: 0 !important;
  }
}

/* ==================================================
loading
================================================== */
#loader {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#page.is-loader-visible #loader {
  opacity: 1;
  pointer-events: auto;
}

/* 背景 */
.loader__bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#page.is-bg-visible .loader__bg {
  opacity: 1;
}

.loader__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* タイトル */
.loader__title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__title img {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

#page.is-loader-visible .loader__title img {
  opacity: 1;
}

/* LP */
.lp-container {
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#page.is-loaded .lp-container {
  opacity: 1;
}

#page.is-loaded #loader {
  opacity: 0;
  pointer-events: none;
}

.loader__bg {
  width: 100%;
  height: 100%;
}
.loader__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: center center;
     object-position: center center;
}
.loader__title {
  width: 61vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .loader__title {
    width: 400px;
  }
}

/* ==================================================
  Main Visual
================================================== */
.mv {
  position: relative;
  margin-bottom: calc(40 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .mv {
    display: flex;
    margin-bottom: calc(150 / 16 * 1rem);
  }
}
.mv__inner {
  position: relative;
}
@media screen and (min-width: 769px) {
  .mv__inner {
    width: 50%;
    background: #E1B9D4;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.mv__image {
  margin-bottom: calc(50 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .mv__image {
    width: 50%;
    margin-bottom: 0;
  }
}
.mv__title {
  width: calc(128 / 390 * 100vw);
  margin: 0 auto calc(40 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .mv__title {
    width: 13.59375vw;
    left: calc(30 / 16 * 1rem);
    bottom: calc(20 / 16 * 1rem);
  }
}
.mv__lead {
  width: calc(350 / 390 * 100vw);
  line-height: 2;
  text-align: center;
}
.mv__lead p {
  margin-bottom: 10px;
}
.mv__lead p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .mv__lead {
    width: 100%;
    font-size: calc(13 / 16 * 1rem);
  }
}

/* ==================================================
  Content
================================================== */
.content {
  position: relative;
  overflow: hidden;
}
.content-block {
  position: relative;
  margin-bottom: calc(120 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block {
    width: 982px;
    margin: 0 auto calc(200 / 16 * 1rem);
  }
}
.content-block .image--300 {
  width: calc(300 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content-block .image--300 {
    width: 540px;
  }
}
.content-block .image--310 {
  width: calc(310 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content-block .image--310 {
    width: 500px;
  }
}
.content-block .image--350 {
  width: calc(350 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content-block .image--350 {
    width: 650px;
  }
}
.content-block .image--full {
  width: 100vw;
}
@media screen and (min-width: 769px) {
  .content-block .image--full {
    width: 720px;
  }
}
.content-block__image--logo {
  width: calc(90 / 390 * 100vw);
  text-align: center;
}
.content-block__image--logo img {
  width: calc(70 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content-block__image--logo {
    width: 442px;
  }
  .content-block__image--logo img {
    width: 180px;
  }
}

.content-block__credit {
  font-size: calc(13 / 16 * 1rem);
  line-height: 1.4;
  display: flex;
  align-items: center;
  text-align: right;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  margin-inline: auto 0;
  font-family: "sitka-heading", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.content-block__credit:last-child {
  margin-bottom: 0;
}
.content-block__credit .tax {
  font-size: calc(11 / 16 * 1rem);
}
.content-block__credit .item-d-none {
  display: none;
}
@media screen and (min-width: 769px) {
  .content-block__credit {
    margin-bottom: 8px;
  }
}
.content-block__buy {
  position: relative;
  display: inline-block;
  text-decoration: none;
  width: 32px;
  margin-left: 8px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 769px) {
  .content-block__buy {
    font-size: calc(14 / 16 * 1rem);
  }
}
.content-block__buy span {
  font-family: "sitka-heading", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: calc(10 / 16 * 1rem);
  color: #000;
  position: absolute;
  inset: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-2px);
}
@media screen and (min-width: 769px) {
  .content-block__buy span {
    font-size: calc(11 / 16 * 1rem);
  }
}
.content-block__buy:hover {
  opacity: 0.6;
}

.content-collaboration {
  background-color: #ECDEE7;
  margin-bottom: calc(60 / 16 * 1rem);
  padding: calc(30 / 16 * 1rem) 0 calc(40 / 16 * 1rem);
  position: relative;
}
@media screen and (min-width: 769px) {
  .content-collaboration {
    width: 800px;
    margin: 0 auto calc(100 / 16 * 1rem);
  }
}
.content-collaboration__heading {
  font-family: "sitka-heading", sans-serif;
  font-weight: 600;
  font-style: normal;
  display: block;
  font-size: calc(36 / 16 * 1rem);
  width: 100%;
  position: absolute;
  top: -25px;
  left: 0;
  text-align: center;
  line-height: 1;
}
.content-collaboration__img {
  margin-bottom: calc(10 / 16 * 1rem);
}
.content-collaboration__date {
  font-family: "sitka-heading", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: calc(27 / 16 * 1rem);
  line-height: 1;
  margin-bottom: calc(3 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-collaboration__date {
    font-size: calc(34 / 16 * 1rem);
  }
}
.content-collaboration__text {
  font-size: calc(16 / 16 * 1rem);
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .content-collaboration__text {
    font-size: calc(20 / 16 * 1rem);
  }
}
.content-collaboration__attention {
  font-size: calc(11 / 16 * 1rem);
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .content-collaboration__attention {
    font-size: calc(13 / 16 * 1rem);
  }
}
.content-collaboration__copyright {
  font-family: "sitka-heading", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: calc(10 / 16 * 1rem);
  text-align: right;
  margin: 0 calc(15 / 16 * 1rem) calc(40 / 16 * 1rem) 0;
}
@media screen and (min-width: 769px) {
  .content-collaboration__copyright {
    margin: 0 calc(15 / 16 * 1rem) calc(30 / 16 * 1rem) 0;
  }
}
.content-collaboration__btn {
  width: calc(350 / 390 * 100vw);
  margin: calc(16 / 16 * 1rem) auto 0;
}
@media screen and (min-width: 769px) {
  .content-collaboration__btn {
    width: 420px;
  }
}
.content-collaboration__btn a {
  display: flex;
  padding: 14px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 30px;
  border: 1px solid #D44C77;
  background: #D44C77;
  font-family: "sitka-heading", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: calc(15 / 16 * 1rem);
  color: #FFF;
  line-height: 1;
  transition: all 0.3s ease;
}
.content-collaboration__btn a:first-child {
  margin-bottom: calc(15 / 16 * 1rem);
}
.content-collaboration__btn a:hover {
  color: #D44C77;
  background: #FFF;
}
.content-collaboration .logoMarquee {
  overflow: hidden;
  width: 100%;
  padding: 8px 0;
}
.content-collaboration .logoMarquee__track {
  display: flex;
  align-items: flex-end;
  width: -moz-max-content;
  width: max-content;
  animation: marqueeR 10s linear infinite;
}
.content-collaboration .logoMarquee__track.reverse {
  animation: marqueeL 10s linear infinite;
}
.content-collaboration .logo {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 40px;
}
.content-collaboration .logoMarquee__track img {
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 20px;
}
.content-collaboration .kirinuki1-1 {
  width: calc(89 / 16 * 1rem);
}
.content-collaboration .kirinuki1-2 {
  width: calc(65 / 16 * 1rem);
}
.content-collaboration .kirinuki1-3 {
  width: calc(98 / 16 * 1rem);
}
.content-collaboration .kirinuki1-4 {
  width: calc(87 / 16 * 1rem);
}
.content-collaboration .kirinuki1-5 {
  width: calc(147 / 16 * 1rem);
}
.content-collaboration .kirinuki2-1 {
  width: calc(146 / 16 * 1rem);
}
.content-collaboration .kirinuki2-2 {
  width: calc(96 / 16 * 1rem);
}
.content-collaboration .kirinuki2-3 {
  width: calc(65 / 16 * 1rem);
}
.content-collaboration .kirinuki2-4 {
  width: calc(94 / 16 * 1rem);
}
.content-collaboration .kirinuki2-5 {
  width: calc(90 / 16 * 1rem);
}
@keyframes marqueeL {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marqueeR {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.content-about {
  background-color: #ECDEE7;
  padding: calc(32 / 16 * 1rem) 0;
}
@media screen and (min-width: 769px) {
  .content-about {
    width: 800px;
    margin: 0 auto calc(100 / 16 * 1rem);
  }
}
.content-about__heading {
  font-family: "sitka-heading", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: calc(36 / 16 * 1rem);
  text-align: center;
  margin-bottom: calc(16 / 16 * 1rem);
}
.content-about__text {
  text-align: center;
  font-size: calc(11 / 16 * 1rem);
  width: calc(100% - 20px);
  margin: 0 auto calc(16 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-about__text {
    font-size: calc(13 / 16 * 1rem);
    margin: 0 auto calc(32 / 16 * 1rem);
  }
}
.content-about__text p {
  margin-bottom: calc(10 / 16 * 1rem);
}
.content-about__text p:last-child {
  margin-bottom: 0;
}
.content-about__text-image {
  width: calc(17 / 16 * 1rem);
  margin: calc(16 / 16 * 1rem) auto;
}
.content-about__comic {
  width: calc(350 / 390 * 100vw);
  margin: 0 auto;
  padding: calc(30 / 16 * 1rem) 0;
  border-radius: 30px;
  border: 1px solid #D44C77;
  background-color: #FFF;
}
@media screen and (min-width: 769px) {
  .content-about__comic {
    width: 700px;
    padding: calc(40 / 16 * 1rem) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 769px) {
  .content-about__comic-inner {
    width: 350px;
    margin-right: auto;
  }
}
.content-about__comic-heading {
  text-align: center;
  color: #D44C77;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .content-about__comic-heading {
    font-size: calc(14 / 16 * 1rem);
    margin-bottom: calc(10 / 16 * 1rem);
  }
}
.content-about__comic-heading span {
  display: block;
  font-size: calc(28 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-about__comic-heading span {
    font-size: calc(30 / 16 * 1rem);
    line-height: 1.3;
  }
}
.content-about__comic-image {
  width: calc(200 / 390 * 100vw);
  margin: 0 auto calc(13 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-about__comic-image {
    width: 250px;
    margin: 0 auto;
  }
}
.content-about__comic-text {
  text-align: center;
  margin-bottom: calc(15 / 16 * 1rem);
}
.content-about__comic-text p {
  margin-bottom: calc(10 / 16 * 1rem);
}
.content-about__comic-text p:last-child {
  margin-bottom: 0;
}
.content-about__comic-link {
  width: calc(290 / 390 * 100vw);
  margin: 0 auto;
  display: flex;
  padding: 14px 10px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  align-self: stretch;
  border-radius: 30px;
  background: #D44C77;
  font-size: calc(11 / 16 * 1rem);
  color: #FFF;
  border: 1px solid #D44C77;
  transition: all 0.3s ease;
}
@media screen and (min-width: 769px) {
  .content-about__comic-link {
    width: 100%;
  }
}
.content-about__comic-link span {
  width: 10px;
  height: 10px;
}
.content-about__comic-link span img {
  vertical-align: top;
}
.content-about__comic-link:hover {
  color: #D44C77;
  background: #FFF;
}

/* ==================================================
  Footer
================================================== */
.footer {
  position: relative;
  padding: calc(30 / 16 * 1rem) 0 calc(10 / 16 * 1rem);
  background: url("https://baycrews.jp/src/feature/20260131_letalon/bg_footer_sp.webp") no-repeat center bottom/cover;
  color: #FFF;
}
@media screen and (min-width: 769px) {
  .footer {
    padding: 0;
    background: none;
    display: flex;
  }
}
.footer__left, .footer__right {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .footer__left, .footer__right {
    width: 50%;
    position: relative;
  }
}
.footer__all {
  width: calc(146 / 390 * 100vw);
  margin: 0 auto calc(32 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__all {
    position: absolute;
    width: 21.09375vw;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media screen and (min-width: 769px) {
  .footer__right-content {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
  }
}
.footer__staff {
  font-size: calc(12 / 16 * 1rem);
  text-align: center;
  font-family: "sitka-heading", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: calc(40 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__staff {
    font-size: calc(15 / 16 * 1rem);
    margin-bottom: calc(30 / 16 * 1rem);
  }
}
.footer__logo {
  width: calc(122 / 16 * 1rem);
  margin: 0 auto calc(16 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__logo {
    width: calc(150 / 16 * 1rem);
    margin: 0 auto calc(26 / 16 * 1rem);
  }
}
.footer__itemList {
  width: calc(350 / 390 * 100vw);
  margin: 0 auto calc(20 / 16 * 1rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .footer__itemList {
    width: 420px;
  }
}
.footer__item {
  font-family: "sitka-heading", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: calc(12 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__item {
    font-size: calc(14 / 16 * 1rem);
  }
}
.footer__item a {
  transition: all 0.25s ease-in;
}
.footer__item a:hover {
  opacity: 0.6;
}
.footer__item__line {
  width: 1px;
  height: 14px;
  background-color: #FFF;
}
.footer__item__x {
  width: calc(12 / 16 * 1rem);
}
.footer__item__x img {
  vertical-align: middle;
}
.footer__insta {
  width: calc(30 / 16 * 1rem);
  margin: 0 auto calc(55 / 16 * 1rem);
}
.footer__copyright {
  font-size: calc(10 / 16 * 1rem);
  text-align: center;
}
.footer__pagetop {
  font-size: calc(10 / 16 * 1rem);
}
.footer__pagetop a {
  text-decoration: underline;
}
.footer__pagetop a:hover {
  text-decoration: none;
}

/* ==================================================
swiper
================================================== */
.heart-swiper-wrap {
  position: relative;
}

.heart-swiper {
  position: relative;
}

.heart-swiper img {
  width: 100%;
  display: block;
}

/* heart nav */
.heart-nav {
  position: absolute;
  bottom: -32px;
  left: 0;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.heart {
  width: 12px;
  height: 10px;
  background: url("https://baycrews.jp/src/feature/20260131_letalon/heart_gray.svg") no-repeat center/contain;
}

.heart.is-active {
  background-image: url("https://baycrews.jp/src/feature/20260131_letalon/heart_black.svg");
}/*# sourceMappingURL=style.css.map */