@layer base {
  :root {
    --color-key: #c6000b;
    --color-base: #000000;
    --color-gray: #3c3c3c;
    --color-bg-gray: #ebebeb;
    --font-family-base: "Noto Sans JP", sans-serif;
    --font-family-en: "Montserrat", sans-serif;
    --font-family-serif: "Noto Serif", serif;
  }
}
@layer base {
  html {
    font-family: var(--font-family-base);
  }
  body {
    font-family: inherit;
    color: var(--color-base);
  }
}
.l-header__logo {
  max-width: 193px;
  width: 100%;
  position: absolute;
  top: 12px;
  left: 17px;
}

.l-main {
  overflow: hidden;
}

.l-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #f7e8ed;
}

.l-footer__inner {
  padding: 40px 0 5px;
  background-color: #c6000b;
}
@media (min-width: 768px) {
  .l-footer__inner {
    padding: 50px 0 5px;
  }
}

.l-footer__deco {
  --footer-deco-width: 665px;
  --footer-deco-offset-y: 18px;
  position: relative;
  left: 50%;
  width: var(--footer-deco-width);
  max-width: none;
  line-height: 0;
  pointer-events: none;
  transform: translate(-50%, var(--footer-deco-offset-y));
}
.l-footer__deco img {
  display: block;
  width: var(--footer-deco-width);
  max-width: none;
  height: auto;
}
@media (min-width: 768px) {
  .l-footer__deco {
    --footer-deco-width: 1586px;
    --footer-deco-offset-y: 35px;
  }
}

.l-footer > .container {
  position: relative;
  z-index: 1;
  padding-top: 30px;
}

.l-footer__logo {
  max-width: 270px;
  margin: 0 auto;
}
.l-footer__logo a {
  display: block;
}
.l-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .l-footer__logo {
    max-width: 380px;
  }
}

.l-footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.l-footer__sns__item__anchor {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.l-footer__sns__item__anchor:hover {
  opacity: 0.7;
}
.l-footer__sns__item__anchor img {
  display: block;
  width: 31px;
  height: auto;
}

.l-footer__legal {
  margin-top: 30px;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.005em;
}

.l-footer__legal__copy {
  margin: 0;
}

.l-footer__legal__note {
  margin: 0;
}

.l-footer__legal__note__br {
  display: inline;
}
@media (min-width: 768px) {
  .l-footer__legal__note__br {
    display: none;
  }
}

.l-bubbles {
  position: fixed;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
}

.l-bubbles__item {
  position: absolute;
  bottom: -12%;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  animation: l-bubbles-rise var(--duration) linear var(--delay) forwards;
  will-change: transform, opacity;
}
.l-bubbles__item.is-fading-out {
  animation-play-state: paused;
}
.l-bubbles__item.is-fading-out .l-bubbles__item__inner {
  animation-play-state: paused;
  transition: opacity 0.8s ease;
  opacity: 0;
}

.l-bubbles__item__inner {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/bubble.png") no-repeat center/contain;
  animation: l-bubbles-wobble var(--wobble-duration) ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes l-bubbles-rise {
  0% {
    transform: translate3d(-50%, 0, 0) scale(0.9);
    opacity: 0;
  }
  8% {
    opacity: var(--peak-opacity, 0.5);
  }
  82% {
    transform: translate3d(-50%, calc(var(--rise-distance) * -0.82 * 1vh), 0) scale(1);
    opacity: var(--peak-opacity, 0.5);
  }
  100% {
    transform: translate3d(-50%, calc(var(--rise-distance) * -1 * 1vh), 0) scale(1.04);
    opacity: 0;
  }
}
@keyframes l-bubbles-wobble {
  0% {
    transform: translate3d(calc(var(--wobble-distance) * -1), 0, 0) rotate(-4deg);
  }
  100% {
    transform: translate3d(var(--wobble-distance), 0, 0) rotate(4deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .l-bubbles {
    display: none;
  }
}
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
}

.movie-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.movie-modal.is-open {
  display: flex;
}

.movie-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.movie-modal__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
}

.movie-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.movie-modal__close::before, .movie-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #fff;
}
.movie-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.movie-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.movie-modal__content {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
}

.movie-modal__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.u-sp-br {
  display: inline;
}
@media (min-width: 768px) {
  .u-sp-br {
    display: none;
  }
}

.home-comingsoon {
  padding-top: 200px;
  padding-bottom: 150px;
  max-width: none;
  margin: 0 auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .home-comingsoon {
    padding-top: 200px;
    padding-bottom: 200px;
    max-width: 670px;
    padding-inline: 0;
  }
}

.home-comingsoon__image {
  display: block;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
}
.home-comingsoon__image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .home-comingsoon__image {
    max-width: none;
    margin-inline: 0;
  }
}

.home-hero {
  padding: 50px 20px 20px 20px;
}
@media screen and (min-width: 768px) {
  .home-hero {
    padding: 50px;
  }
}

.home-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home-lead {
  padding: 0px 0 100px;
}

.home-lead__text {
  text-align: center;
  font-weight: 700;
  color: #000000;
}

.home-lead__text__statement {
  color: #c6000b;
  font-size: 3.8461538462vw;
  letter-spacing: 0.005em;
  line-height: 2.1333333333em;
}
@media (min-width: 768px) {
  .home-lead__text__statement {
    font-size: 15px;
  }
}

.home-lead__text__copy {
  font-size: 10.7692307692vw;
  margin-left: 0.5em;
  margin-top: 40px;
  color: #c6000b;
  line-height: 1.25;
  letter-spacing: 0.005em;
}
@media (min-width: 768px) {
  .home-lead__text__copy {
    font-size: 42px;
    line-height: 1.5;
  }
}

.home-lead__image {
  max-width: 58.9743589744vw;
  margin: 7.6923076923vw auto 0;
}
@media (min-width: 768px) {
  .home-lead__image {
    max-width: 320px;
    margin: 50px auto 0;
  }
}

.home-lead__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home-lead__image__text {
  color: #c6000b;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin: 5.1282051282vw 0 0;
}
@media (min-width: 768px) {
  .home-lead__image__text {
    margin: 20px 0 0;
  }
}

.home-lead__button {
  max-width: 53.8461538462vw;
  margin: 15.3846153846vw auto 0;
}
@media (min-width: 768px) {
  .home-lead__button {
    max-width: 210px;
    margin: 85px auto 0;
  }
}

.home-lead__button__anchor {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.home-lead__button__anchor:hover {
  opacity: 0.7;
}

.home-lead__message {
  padding-top: 60px;
  margin-top: 90px;
  position: relative;
}

.home-lead__message__icon {
  max-width: 46.1538461538vw;
  position: absolute;
  top: 0;
  left: calc(50% - 28.2051282051vw);
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .home-lead__message__icon {
    max-width: 200px;
    left: calc(50% - 220px);
  }
}

.home-lead__message__icon img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home-lead__message__text {
  color: #3c3c3c;
  text-align: center;
  font-size: 3.8461538462vw;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 2.1333333333em;
  margin: 1em 0 !important;
}
@media (min-width: 768px) {
  .home-lead__message__text {
    font-size: 15px;
  }
}

.home-lead__message__name {
  color: #3c3c3c;
  text-align: center;
  font-size: 5.3846153846vw;
  font-weight: 500;
  letter-spacing: 0.003em;
  margin: 1em 0 !important;
}
@media (min-width: 768px) {
  .home-lead__message__name {
    font-size: 21px;
  }
}

.home-lead__message__name span {
  display: block;
  font-size: 3.3333333333vw;
  font-weight: 500;
  letter-spacing: 0.003em;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .home-lead__message__name span {
    font-size: 13px;
  }
}

.home-crosstalk {
  position: relative;
  overflow: hidden;
  background-color: #ebebeb;
  padding: 15.3846153846vw 0;
}
@media (min-width: 768px) {
  .home-crosstalk {
    padding: 110px 0;
  }
}

.home-crosstalk__cross {
  position: absolute;
  z-index: 0;
  width: 179.4871794872vw;
  height: 179.4871794872vw;
  pointer-events: none;
}
.home-crosstalk__cross::before, .home-crosstalk__cross::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 10.2564102564vw;
  height: 100%;
  margin: auto;
  background-color: #f3f3f3;
}
.home-crosstalk__cross::before {
  transform: rotate(45deg);
}
.home-crosstalk__cross::after {
  transform: rotate(-45deg);
}
.home-crosstalk__cross--top-right {
  top: 0;
  right: 0;
  translate: 35% -35%;
}
.home-crosstalk__cross--bottom-left {
  bottom: 0;
  left: 0;
  translate: -35% 35%;
  scale: -1 -1;
}
@media (min-width: 768px) {
  .home-crosstalk__cross {
    width: 1400px;
    height: 1400px;
  }
  .home-crosstalk__cross::before, .home-crosstalk__cross::after {
    width: 70px;
  }
}

.home-crosstalk > .container {
  position: relative;
  z-index: 1;
}

.home-crosstalk__heading {
  text-align: center;
}

.home-crosstalk__heading__icon {
  max-width: 61.5384615385vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home-crosstalk__heading__icon {
    max-width: 320px;
  }
}

.home-crosstalk__heading__icon img {
  width: 100%;
  height: auto;
}

.home-crosstalk__heading__title-en {
  margin: 4.1025641026vw 0 0 7.6923076923vw;
  font-weight: 900;
  font-size: 7.1794871795vw;
  letter-spacing: 0.75em;
  line-height: 1;
}
@media (min-width: 768px) {
  .home-crosstalk__heading__title-en {
    margin: 16px 0 0 0.75em;
    font-size: 40px;
  }
}

.home-crosstalk__heading__title-ja {
  margin: 2.5641025641vw 0 0;
  font-family: var(--font-family-base);
  font-size: 3.5897435897vw;
  font-weight: 500;
  letter-spacing: 0.005em;
}
@media (min-width: 768px) {
  .home-crosstalk__heading__title-ja {
    margin: 10px 0 0;
    font-size: 14px;
  }
}

.home-crosstalk__people {
  margin: 7.6923076923vw auto 0;
}
.home-crosstalk__people picture,
.home-crosstalk__people img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .home-crosstalk__people {
    max-width: 730px;
    margin: 60px auto 0;
  }
}

.home-crosstalk__box {
  margin-top: -11.7948717949vw;
  padding: 25.641025641vw 5.1282051282vw 10.2564102564vw;
  border-radius: 6.1538461538vw;
  background-color: #fff;
}
@media (min-width: 768px) {
  .home-crosstalk__box {
    margin-top: -25px;
    padding: 100px 80px 80px;
    border-radius: 40px;
  }
}

.home-crosstalk__box__title {
  max-width: 76.9230769231vw;
  margin: 0 auto;
}
.home-crosstalk__box__title img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .home-crosstalk__box__title {
    max-width: 460px;
  }
}

.home-crosstalk__box__text {
  margin-top: 7.6923076923vw;
  font-size: 3.8461538462vw;
  text-align: center;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .home-crosstalk__box__text {
    margin-top: 50px;
    font-size: 15px;
  }
}

.home-crosstalk__box__movie {
  max-width: 100%;
  margin: 7.6923076923vw auto 0;
}
@media (min-width: 768px) {
  .home-crosstalk__box__movie {
    margin: 50px auto 0;
  }
}

.home-crosstalk__box__movie__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7.6923076923vw;
}
@media (min-width: 768px) {
  .home-crosstalk__box__movie__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px;
  }
}

.home-crosstalk__box__movie__columns__column__thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
  border-radius: 5.1282051282vw;
  overflow: hidden;
}
.home-crosstalk__box__movie__columns__column__thumb:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .home-crosstalk__box__movie__columns__column__thumb {
    border-radius: 35px;
  }
}

.home-crosstalk__box__movie__columns__column__image {
  display: block;
  width: 100%;
  height: auto;
}

.home-crosstalk__box__movie__columns__column__label {
  margin: 3.0769230769vw 0 0;
  font-size: 3.3333333333vw;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.005em;
  text-align: center;
}
@media (min-width: 768px) {
  .home-crosstalk__box__movie__columns__column__label {
    margin-top: 12px;
    font-size: 13px;
  }
}

.home-crosstalk__box__movie__thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.home-crosstalk__box__movie__thumb__image {
  display: block;
  width: 100%;
  border-radius: 5.1282051282vw;
}
@media (min-width: 768px) {
  .home-crosstalk__box__movie__thumb__image {
    border-radius: 35px;
  }
}

.home-crosstalk__box__movie__ico {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 15.3846153846vw;
  height: auto;
  translate: -50% -50%;
  pointer-events: none;
}
@media (min-width: 768px) {
  .home-crosstalk__box__movie__ico {
    width: 86px;
    height: 86px;
  }
}

.home-crosstalk__box__profile {
  display: flex;
  flex-direction: column;
  gap: 7.6923076923vw;
  margin-top: 10.2564102564vw;
  align-items: stretch;
}
@media (min-width: 768px) {
  .home-crosstalk__box__profile {
    flex-direction: row;
    gap: 40px;
    margin-top: 80px;
    align-items: flex-start;
  }
}

.home-crosstalk__box__profile__head {
  position: relative;
  flex: 0 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .home-crosstalk__box__profile__head {
    flex: 0 0 180px;
    text-align: left;
  }
}

.home-crosstalk__box__profile__head__header {
  position: relative;
  z-index: 1;
  line-height: 1.1;
}

.home-crosstalk__box__profile__head__header__sub {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 4.1025641026vw;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .home-crosstalk__box__profile__head__header__sub {
    font-size: 16px;
  }
}

.home-crosstalk__box__profile__head__header__main {
  color: #c6000b;
  font-family: var(--font-family-en);
  font-size: 8.7179487179vw;
  font-weight: 700;
  letter-spacing: 0.005em;
}
@media (min-width: 768px) {
  .home-crosstalk__box__profile__head__header__main {
    font-size: 34px;
  }
}

.home-crosstalk__box__profile__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10.2564102564vw;
  margin-top: -5.1282051282vw;
}
@media (min-width: 768px) {
  .home-crosstalk__box__profile__body {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
  }
}

.home-crosstalk__box__profile__body__item__sub {
  font-size: 3.3333333333vw;
  font-weight: 500;
  letter-spacing: 0.005em;
  margin: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .home-crosstalk__box__profile__body__item__sub {
    text-align: left;
    font-size: 13px;
  }
}

.home-crosstalk__box__profile__body__item__name {
  margin: 0vw 0 0;
  font-size: 4.6153846154vw;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-align: center;
}
@media (min-width: 768px) {
  .home-crosstalk__box__profile__body__item__name {
    margin: 0;
    font-size: 18px;
    text-align: left;
  }
}

.home-crosstalk__box__profile__body__item__text {
  margin: 3.8461538462vw 0 0;
  color: #000000;
  font-size: 3.5897435897vw;
  font-weight: 400;
  line-height: 1.5em;
}
.home-crosstalk__box__profile__body__item__text a {
  color: #0066cc;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .home-crosstalk__box__profile__body__item__text {
    margin: 10px 0 0;
    font-size: 14px;
  }
}

.home-crosstalk__box__profile__body__item__sns {
  list-style: none;
  margin: 2.5641025641vw 0 0;
  padding-left: 0;
}
@media (min-width: 768px) {
  .home-crosstalk__box__profile__body__item__sns {
    margin-left: 0;
    margin-top: 16px;
  }
}

.home-crosstalk__box__profile__body__item__sns__item + .home-crosstalk__box__profile__body__item__sns__item {
  margin-top: 5px;
}

.home-crosstalk__box__profile__body__item__sns__item__anchor {
  color: #386bc6;
  text-decoration: none;
  padding-right: 7.1794871795vw;
  position: relative;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.home-crosstalk__box__profile__body__item__sns__item__anchor:hover {
  opacity: 0.7;
}
.home-crosstalk__box__profile__body__item__sns__item__anchor::after {
  content: "";
  background-image: url("../images/ico_window.svg");
  width: 4.1025641026vw;
  height: 4.1025641026vw;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .home-crosstalk__box__profile__body__item__sns__item__anchor {
    padding-right: 28px;
  }
  .home-crosstalk__box__profile__body__item__sns__item__anchor::after {
    width: 16px;
    height: 16px;
  }
}

.home-project {
  overflow: hidden;
  border-top: 2px solid #fff;
  padding: 16.6666666667vw 0 30.7692307692vw;
  background-image: url("../images/project_bg_cloud_palmtop.png"), url("../images/project_bg.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center bottom, center bottom;
  background-size: 100% auto, cover;
}
@media (min-width: 768px) {
  .home-project {
    padding: 110px 0 450px;
    background-image: url("../images/project_bg_cloud.png"), url("../images/project_bg.png");
    background-position: center calc(100% + clamp(300px, 6vw, 100px)), center bottom;
  }
}

.home-project > .container {
  max-width: 1320px;
}

.home-project__intro {
  position: relative;
  padding-bottom: 43.5897435897vw;
}
@media (min-width: 768px) {
  .home-project__intro {
    min-height: 300px;
    padding-bottom: 0;
  }
}

.home-project__heading {
  position: relative;
  z-index: 1;
  text-align: center;
}

.home-project__heading__icon {
  max-width: 61.5384615385vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home-project__heading__icon {
    max-width: 320px;
  }
}

.home-project__heading__icon img {
  width: 100%;
  height: auto;
}

.home-project__heading__title-en {
  margin: 4.1025641026vw 0 0;
  font-family: var(--font-family-en);
  font-size: 9.7435897436vw;
  font-weight: 800;
  letter-spacing: 0.005em;
  line-height: 1;
}
@media (min-width: 768px) {
  .home-project__heading__title-en {
    margin: 16px 0 0;
    font-size: 47px;
  }
}

.home-project__heading__title-ja {
  margin: 2.5641025641vw 0 0;
  font-family: var(--font-family-base);
  font-size: 3.5897435897vw;
  font-weight: 500;
  letter-spacing: 0.005em;
}
@media (min-width: 768px) {
  .home-project__heading__title-ja {
    margin: 10px 0 0;
    font-size: 14px;
  }
}

.home-project__lead {
  position: relative;
  z-index: 1;
  margin-top: 7.6923076923vw;
  text-align: center;
  font-weight: 700;
  font-size: 3.5897435897vw;
  line-height: 2em;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .home-project__lead {
    margin-top: 30px;
    font-size: inherit;
    letter-spacing: 0.1em;
  }
}

.home-project__deco {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -1px;
  width: 48.7179487179vw;
  height: auto;
  translate: -50% 0;
}
.home-project__deco img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .home-project__deco {
    left: auto;
    right: 50%;
    width: 270px;
    translate: calc(50% + 320px) 0;
  }
}

.home-project__articles {
  position: relative;
  z-index: 1;
  margin-inline: -1.2820512821vw;
  padding: 2.5641025641vw 2.5641025641vw 10.2564102564vw;
  background-color: rgba(255, 255, 255, 0.88);
}
@media (min-width: 768px) {
  .home-project__articles {
    margin-inline: 0;
    padding: 70px 90px 60px;
  }
}

.home-project__article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6.4102564103vw;
}
.home-project__article + .home-project__article {
  margin-top: 7.6923076923vw;
  padding-top: 7.6923076923vw;
  border-top: 1px solid #bdbdbd;
}
@media (min-width: 768px) {
  .home-project__article {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
  .home-project__article + .home-project__article {
    margin-top: 35px;
    padding-top: 35px;
  }
}

@media (min-width: 768px) {
  .home-project__article__image {
    max-width: none;
  }
}

.home-project__article__image img {
  display: block;
  width: 100%;
  height: auto;
}

.home-project__article__eyebrow {
  margin: 0;
  font-size: 3.3333333333vw;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .home-project__article__eyebrow {
    font-size: 15px;
  }
}

.home-project__article__title {
  margin: 0;
  color: #c6000b;
  font-size: 5.3846153846vw;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.025em;
}
@media (min-width: 768px) {
  .home-project__article__title {
    font-size: clamp(22px, 2vw, 25px);
  }
}

.home-project__article__title__nowrap {
  display: inline;
}
@media screen and (min-width: 768px) {
  .home-project__article__title__nowrap {
    display: inline-block;
  }
}

.home-project__article__label {
  display: table;
  margin: 1.7948717949vw 0 0;
  padding: 0.5128205128vw 2.3076923077vw 0.7692307692vw;
  background-color: #c6000b;
  color: #fff;
  font-size: 2.8205128205vw;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .home-project__article__label {
    margin: 7px 0 0;
    padding: 5px 13px 6px;
    font-size: 14px;
  }
}

.home-project__article__text {
  margin: 5.1282051282vw 0 0;
  color: #3c3c3c;
  font-size: 3.3333333333vw;
  font-weight: 500;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .home-project__article__text {
    margin: 20px 0 0;
    font-size: 15px;
  }
}

.home-project__article__buttons {
  display: flex;
  flex-direction: column;
  gap: 3.0769230769vw;
  margin-top: 5.1282051282vw;
  justify-content: flex-end;
  max-width: 61.5384615385vw;
  margin-inline: auto;
}
.home-project__article__buttons--end .home-project__button {
  flex-basis: auto;
}
@media (min-width: 768px) {
  .home-project__article__buttons {
    flex-direction: row;
    gap: 12px;
    margin-top: 12px;
    max-width: none;
  }
  .home-project__article__buttons--end .home-project__button {
    flex: 0 1 210px;
  }
}

.home-project__button {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  min-height: 11.7948717949vw;
  padding: 2.5641025641vw 11.7948717949vw 2.5641025641vw 5.1282051282vw;
  border-radius: 999px;
  background-color: #3c3c3c;
  color: #fff;
  font-size: 3.5897435897vw;
  font-weight: 700;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.home-project__button:hover {
  opacity: 0.75;
}
@media (min-width: 768px) {
  .home-project__button {
    max-width: 240px;
    flex: 1 1 0;
    min-height: 46px;
    padding: 10px 46px 10px 20px;
    font-size: 14px;
  }
}

.home-project__button__arrow {
  position: absolute;
  top: 50%;
  right: 2.5641025641vw;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  translate: 0 -50%;
}
@media (min-width: 768px) {
  .home-project__button__arrow {
    right: 10px;
    width: 26px;
    height: 26px;
  }
}

.home-project__button__arrow img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-radiocar {
  position: relative;
  margin-top: -10.2564102564vw;
}
@media (min-width: 768px) {
  .home-radiocar {
    margin-top: -330px;
  }
}

.home-radiocar > .container {
  max-width: none;
  padding-inline: 0;
}

.home-radiocar__wave {
  position: relative;
  width: 100%;
  height: 54.8717948718vw;
}
@media (min-width: 768px) {
  .home-radiocar__wave {
    height: 350px;
  }
}

.home-radiocar__wave::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/radiocar_wave_palmtop.svg") no-repeat center bottom/100% auto;
}
@media (min-width: 768px) {
  .home-radiocar__wave::before {
    background: url("../images/radiocar_wave.svg") no-repeat center center/1920px 350px;
  }
}

.home-radiocar__content {
  margin-top: -17.9487179487vw;
  padding: 10.2564102564vw 5.1282051282vw 12.8205128205vw;
  background-color: #d9d0d0;
}
@media (min-width: 768px) {
  .home-radiocar__content {
    margin-top: -90px;
    padding-block: 60px;
    padding-inline: 0;
  }
}

.home-radiocar__content__car {
  --car-x: calc(50vw + 50%);
  --car-y: -20.5128205128vw;
  position: relative;
  padding-top: 2.5641025641vw;
  max-width: 87.1794871795vw;
  margin: 0 auto;
  transform: translate3d(var(--car-x), var(--car-y), 0);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-radiocar__content__car picture {
  display: contents;
}
.home-radiocar__content__car.is-before {
  --car-x: calc(50vw + 50%);
}
.home-radiocar__content__car.is-active {
  --car-x: 0px;
}
.home-radiocar__content__car.is-after {
  --car-x: calc(-50vw - 50%);
}
@media (min-width: 768px) {
  .home-radiocar__content__car {
    --car-y: -150px;
    padding-top: 20px;
    max-width: 530px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-radiocar__content__car {
    --car-x: 0px !important;
    transition: none;
  }
}

.home-radiocar__content__balloon {
  position: absolute;
  bottom: calc(100% + 2.5641025641vw);
  left: 50%;
  z-index: 2;
  width: max-content;
  max-width: min(600px, 90vw);
  padding: 3.0769230769vw 4.1025641026vw;
  border-radius: 4.1025641026vw;
  background-color: #c6000b;
  color: #fff;
  translate: -50% 0;
  text-align: center;
}
@media (min-width: 768px) {
  .home-radiocar__content__balloon {
    bottom: calc(100% + 15px);
    padding: 15px 25px;
    border-radius: 20px;
  }
}

.home-radiocar__content__balloon__text {
  margin: 0;
}

.home-radiocar__content__balloon__text__sub {
  display: block;
  font-size: 3.0769230769vw;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.005em;
}
@media (min-width: 768px) {
  .home-radiocar__content__balloon__text__sub {
    font-size: 15px;
  }
}

.home-radiocar__content__balloon__text__main {
  display: block;
  margin-top: 1.0256410256vw;
  font-size: 4.6153846154vw;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.005em;
}
@media (min-width: 768px) {
  .home-radiocar__content__balloon__text__main {
    margin-top: 0;
    font-size: 22px;
  }
}

.home-radiocar__content__balloon__tail {
  position: absolute;
  bottom: 2.0512820513vw;
  left: calc(50% + 2.0512820513vw);
  width: 8.2051282051vw;
  height: auto;
  translate: -50% 100%;
  pointer-events: none;
}
@media (min-width: 768px) {
  .home-radiocar__content__balloon__tail {
    bottom: 10px;
    left: calc(50% - 40px);
    width: 32px;
  }
}

.home-radiocar__content__car__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  animation: radiocar-bob 0.3s ease-in-out infinite alternate;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .home-radiocar__content__car__image {
    animation: none;
  }
}

@keyframes radiocar-bob {
  from {
    transform: translateY(-1px);
  }
  to {
    transform: translateY(1px);
  }
}
.home-radiocar__content__car__shadow {
  position: absolute;
  bottom: 3px;
  left: 50%;
  z-index: 0;
  width: 95%;
  height: auto;
  translate: -50% 0;
  pointer-events: none;
}

.home-radiocar__content__sns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5641025641vw;
  max-width: none;
  margin: -10.2564102564vw 0vw 0;
  padding: 1.2820512821vw 5.1282051282vw;
  background-color: #fff;
  border-radius: 100vw;
}
@media (min-width: 768px) {
  .home-radiocar__content__sns {
    flex-direction: row;
    gap: 0;
    max-width: 580px;
    margin: -110px auto 0;
    padding: 5px 30px 5px 40px;
    border-radius: 100vw;
    text-align: left;
  }
}

.home-radiocar__content__sns__text {
  font-size: 3.5897435897vw;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .home-radiocar__content__sns__text {
    font-size: 21px;
    line-height: 1.5;
  }
}

.home-radiocar__content__sns__text em {
  font-style: normal;
  color: #c6000b;
}

.home-radiocar__content__sns__anchors {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .home-radiocar__content__sns__anchors {
    gap: 0;
  }
}

.home-radiocar__content__sns__anchors__anchor {
  display: inline-block;
  width: 12.3076923077vw;
  height: 12.3076923077vw;
  margin-left: 0;
}
.home-radiocar__content__sns__anchors__anchor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .home-radiocar__content__sns__anchors__anchor {
    width: 55px;
    height: 55px;
    margin-left: auto;
  }
}

.home-radiocar__content__text {
  position: relative;
  margin-top: 7.6923076923vw;
  max-width: none;
  margin-inline: auto;
  font-size: 3.5897435897vw;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.005em;
}
@media (min-width: 768px) {
  .home-radiocar__content__text {
    margin-top: 40px;
    max-width: 560px;
    font-size: inherit;
  }
}

.home-radiocar__content__text__detail {
  width: 35.8974358974vw;
  margin: 7.6923076923vw auto 0;
}
@media (min-width: 768px) {
  .home-radiocar__content__text__detail {
    width: 160px;
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
    transform: translate(280px);
  }
}

.home-radiocar__content__text__detail__button {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.home-radiocar__content__text__detail__button:hover {
  opacity: 0.7;
}
.home-radiocar__content__text__detail__button img {
  display: block;
  width: 100%;
  height: auto;
}

.home-pictures {
  background-color: #d9d0d0;
  overflow: hidden;
}

.home-pictures__scroll {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .home-pictures__scroll {
    overflow-x: auto;
  }
}

.home-pictures__track {
  display: flex;
  width: max-content;
  animation: home-pictures-scroll 80s linear infinite;
  will-change: transform;
}
.home-pictures__track.is-paused {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .home-pictures__track {
    animation: none;
  }
}

.home-pictures__list {
  display: flex;
  flex-shrink: 0;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-pictures__list__item {
  flex: 0 0 auto;
  width: 280px;
}
@media (min-width: 768px) {
  .home-pictures__list__item {
    width: 440px;
  }
}
.home-pictures__list__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 440/225;
  object-fit: cover;
}

@keyframes home-pictures-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.home-cm {
  padding: 15.3846153846vw 0 20.5128205128vw;
  background-color: #f7e8ed;
}
@media (min-width: 768px) {
  .home-cm {
    padding: 80px 0 100px;
  }
}

.home-cm__box {
  padding: 10.2564102564vw 5.1282051282vw 5.1282051282vw;
  border-radius: 6.1538461538vw;
  background-color: #fff;
}
@media (min-width: 768px) {
  .home-cm__box {
    padding: 60px 80px;
    border-radius: 40px;
  }
}
.home-cm__box + .home-cm__box {
  margin-top: 5.1282051282vw;
}
@media (min-width: 768px) {
  .home-cm__box + .home-cm__box {
    margin-top: 80px;
  }
}

.home-cm__box__heading {
  text-align: center;
}

.home-cm__box__heading__en {
  margin: 0;
  font-family: var(--font-family-en);
  font-size: 8.2051282051vw;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (min-width: 768px) {
  .home-cm__box__heading__en {
    font-size: 47px;
  }
}

.home-cm__box__heading__ja {
  margin: 1.2820512821vw 0 0;
  font-size: 3.5897435897vw;
  font-weight: 500;
  letter-spacing: 0.005em;
}
@media (min-width: 768px) {
  .home-cm__box__heading__ja {
    margin: 10px 0 0;
    font-size: 14px;
  }
}

.home-cm__box__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7.6923076923vw;
  margin-top: 7.6923076923vw;
  align-items: center;
}
@media (min-width: 768px) {
  .home-cm__box__gallery {
    grid-template-columns: minmax(0, 660fr) minmax(0, 300fr);
    gap: 40px;
    margin-top: 40px;
  }
}

.home-cm__box__gallery__movie.home-cm__box__movie {
  width: 100%;
  margin-top: 0;
}
@media (min-width: 768px) {
  .home-cm__box__gallery__movie.home-cm__box__movie {
    max-width: 660px;
  }
}

.home-cm__box__gallery__radio {
  text-align: center;
}

.home-cm__box__gallery__radio__text {
  margin: 0 0 0vw;
  font-size: 3.5897435897vw;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.005em;
}
@media (min-width: 768px) {
  .home-cm__box__gallery__radio__text {
    margin-bottom: 24px;
    font-size: 15px;
  }
}

.home-cm__box__gallery__radio__image {
  display: block;
  max-width: 53.8461538462vw;
  margin: 0 auto;
}
.home-cm__box__gallery__radio__image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .home-cm__box__gallery__radio__image {
    max-width: 100%;
  }
}

.home-cm__box__commercial {
  margin-top: 5.1282051282vw;
  padding-top: 10.2564102564vw;
}
@media (min-width: 768px) {
  .home-cm__box__commercial {
    margin-top: 40px;
    padding-top: 60px;
  }
}

.home-cm__box__commercial__heading {
  text-align: center;
  margin: 0;
}

.home-cm__box__commercial__heading__en {
  display: block;
  font-family: var(--font-family-en);
  font-size: 4.1025641026vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (min-width: 768px) {
  .home-cm__box__commercial__heading__en {
    font-size: 20px;
  }
}

.home-cm__box__commercial__heading__ja {
  display: block;
  margin-top: 2.0512820513vw;
  font-family: var(--font-family-en);
  font-size: 7.1794871795vw;
  font-weight: 800;
  color: #c6000b;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (min-width: 768px) {
  .home-cm__box__commercial__heading__ja {
    margin-top: 10px;
    font-size: 40px;
  }
}

.home-cm__box__commercial__movie__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5.1282051282vw;
  margin: 7.6923076923vw 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .home-cm__box__commercial__movie__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 40px;
  }
}

.home-cm__box__commercial__movie__list__item__anchor {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
  border-radius: 5.1282051282vw;
  overflow: hidden;
}
.home-cm__box__commercial__movie__list__item__anchor:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .home-cm__box__commercial__movie__list__item__anchor {
    border-radius: 30px;
  }
}

.home-cm__box__commercial__movie__list__item__anchor__image {
  display: block;
  width: 100%;
  height: auto;
}

.home-cm__box__movie {
  max-width: 100%;
  margin: 7.6923076923vw auto 0;
}
@media (min-width: 768px) {
  .home-cm__box__movie {
    max-width: 660px;
    margin-top: 40px;
  }
}

.home-cm__box__movie__slider {
  overflow: hidden;
}

.home-cm__box__movie__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-cm__box__movie__list__item {
  height: auto;
}

.home-cm__box__movie__list__item__anchor {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
  border-radius: 5.1282051282vw;
  overflow: hidden;
}
.home-cm__box__movie__list__item__anchor:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .home-cm__box__movie__list__item__anchor {
    border-radius: 30px;
  }
}

.home-cm__box__movie__list__item__anchor__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 660/370;
  object-fit: cover;
}

.home-cm__box__movie__list__item__anchor__ico {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 15.3846153846vw;
  height: auto;
  translate: -50% -50%;
  pointer-events: none;
}
@media (min-width: 768px) {
  .home-cm__box__movie__list__item__anchor__ico {
    width: 92px;
  }
}

.home-cm__box__movie__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.1538461538vw;
  margin-top: 5.1282051282vw;
}
@media (min-width: 768px) {
  .home-cm__box__movie__nav {
    margin-top: 24px;
    gap: 32px;
  }
}

.home-cm__box__movie__nav__prev,
.home-cm__box__movie__nav__next {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.1025641026vw 2.0512820513vw;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.home-cm__box__movie__nav__prev:hover,
.home-cm__box__movie__nav__next:hover {
  opacity: 0.7;
}
.home-cm__box__movie__nav__prev.swiper-button-disabled,
.home-cm__box__movie__nav__next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.home-cm__box__movie__nav__prev img,
.home-cm__box__movie__nav__next img {
  display: block;
  width: 11.5384615385vw;
  height: auto;
}
@media (min-width: 768px) {
  .home-cm__box__movie__nav__prev,
  .home-cm__box__movie__nav__next {
    padding: 16px 8px;
  }
  .home-cm__box__movie__nav__prev img,
  .home-cm__box__movie__nav__next img {
    width: 45px;
  }
}

.home-cm__box__movie__nav__prev img {
  scale: -1 1;
}

.home-cm__box__movie__nav__count {
  margin: 0;
  font-family: var(--font-family-en);
  font-size: 4.1025641026vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (min-width: 768px) {
  .home-cm__box__movie__nav__count {
    font-size: 16px;
  }
}

.home-cm__box__movie__nav__count__current {
  color: #c6000b;
  margin-right: 2.0512820513vw;
}
@media (min-width: 768px) {
  .home-cm__box__movie__nav__count__current {
    margin-right: 8px;
  }
}

.home-cm__box__movie__nav__count__total {
  margin-left: 2.0512820513vw;
}
@media (min-width: 768px) {
  .home-cm__box__movie__nav__count__total {
    margin-left: 8px;
  }
}

.copy-0002 {
  margin: 0 !important;
}

.unit-base {
  max-width: none !important;
  padding: 0 !important;
}

.wrapper > .container:first-of-type {
  max-width: none !important;
  padding: 0 !important;
}

.wrapper {
    margin: 0 !important;
}

.container {
  padding-top: 0 !important;
}