@charset "UTF-8";
.btn {
  color: #fff;
  font-size: 3.733vw;
  align-items: center;
  justify-content: space-between;
  display: inline-block;
  -moz-column-gap: 3.2vw;
       column-gap: 3.2vw;
}
.btn__arrow-wrapper {
  width: 13.867vw;
  height: 13.867vw;
  border-radius: 50%;
  border: #fff solid 1px;
  display: block;
  position: relative;
}
.btn__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 20%;
  height: 20%;
}
.btn__arrow::before, .btn__arrow::after {
  content: "";
  display: block;
}
.btn__arrow::before {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fe4530;
}
.btn__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 40%;
  height: 40%;
  border-top: 1px solid #fe4530;
  border-right: 1px solid #fe4530;
}
@media (width >= 900px) {
  .btn {
    font-size: 1.25vw;
    transition: all 0.4s;
    -moz-column-gap: 1.67vw;
         column-gap: 1.67vw;
  }
  .btn__arrow-wrapper {
    width: 5.556vw;
    height: 5.556vw;
    transition: all 0.4s;
  }
  .btn:hover {
    color: rgba(255, 255, 255, 0.5);
  }
  .btn:hover .btn__arrow-wrapper {
    opacity: 0.5;
    background: #fff;
    transform: translate(4px, 4px);
  }
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

@media (width >= 900px) {
  .pc-hidden {
    display: none;
  }
}
.en {
  font-family: "Poppins", sans-serif;
}

.heading-main {
  font-size: 15.47vw;
  font-weight: 500;
  text-transform: capitalize;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.2);
}
.heading-sub {
  font-size: min(4.5vw, 3rem);
  font-weight: 500;
  color: #fe4530;
  writing-mode: vertical-rl;
  margin-top: 3px;
}
@media (width >= 900px) {
  .heading-main {
    font-size: 8vw;
  }
  .heading-sub {
    font-size: 2vw;
  }
}

.wrapper {
  width: 83vw;
  margin: 0 auto;
}
@media (width >= 900px) {
  .wrapper {
    width: 65vw;
  }
}

body {
  background: #000;
}

.mv {
  width: 100vw;
  margin-bottom: 32vw;
}
@media (width >= 900px) {
  .mv {
    margin-bottom: 13.19vw;
  }
}
.mv__img-wrapper {
  width: 110%;
  height: 39vw;
  -moz-column-gap: 4.266vw;
       column-gap: 4.266vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 6.4vw;
  overflow: hidden;
}
.mv__img-group {
  -moz-column-gap: 4.266vw;
       column-gap: 4.266vw;
  width: 50%;
  height: 100%;
  position: relative;
}
.mv__img {
  width: 50%;
  height: 100%;
  position: relative;
  border-radius: 3vw;
  overflow: hidden;
}
.mv__img img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 6s;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv__img img.active {
  opacity: 1;
  visibility: visible;
}
.mv .mv__text-wrapper {
  width: 92vw;
  margin-right: auto;
  writing-mode: vertical-rl;
  color: #eee;
  letter-spacing: 0.15em;
  line-height: 1.25;
  position: relative;
}
.mv .mv__copy {
  font-size: min(8.26vw, 5.6rem);
  font-weight: 500;
  letter-spacing: 0.5em;
  line-height: 1.5;
  margin-left: 4.26vw;
}
.mv .mv__description {
  font-size: min(3.2vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  line-height: 2;
}
@media (max-width: 1019px) {
  .mv .mv__decoration {
    animation: mv__text 3s ease forwards;
  }
  @keyframes mv__text {
    0% {
      filter: blur(20px); /* ぼかしの強さ */
      opacity: 0;
    }
    100% {
      filter: blur(0); /* ぼかし解除 */
      opacity: 1;
    }
  }
}

.mv__decoration {
  position: absolute;
  top: 0;
  left: -3%;
  font-size: min(16.5vw, 13.2rem);
  font-weight: 300;
  line-height: 1;
  color: #fe4530;
  font-weight: 600;
}

@media (width >= 900px) {
  .mv {
    position: relative;
    padding-bottom: 16vw;
  }
  .mv__img-wrapper {
    justify-content: space-between;
    width: 105vw;
    height: 25vw;
    -moz-column-gap: 0;
         column-gap: 0;
    margin-bottom: 0;
  }
  .mv__img-group {
    -moz-column-gap: 2.7vw;
         column-gap: 2.7vw;
    width: 38vw;
  }
  .mv__img {
    width: 45%;
  }
  .mv .mv__text-wrapper {
    line-height: 1.25;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    max-width: initial;
  }
  .mv .mv__copy {
    font-size: 2.8vw;
    margin: 1vw 0 0 2.22vw;
  }
  .mv .mv__description {
    font-size: 1vw;
  }
  .mv__decoration {
    top: auto;
    bottom: 0;
    left: auto;
    width: 100%;
    font-size: 10vw;
    writing-mode: horizontal-tb;
    text-align: center;
    letter-spacing: 0.05em;
    opacity: 0;
  }
  .mv__decoration.fade-in {
    animation: mv__text 3s ease forwards;
  }
  @keyframes mv__text {
    0% {
      filter: blur(20px); /* ぼかしの強さ */
      opacity: 0;
    }
    100% {
      filter: blur(0); /* ぼかし解除 */
      opacity: 1;
    }
  }
}
.news {
  margin-bottom: 32vw;
}
@media (width >= 900px) {
  .news {
    margin-bottom: 13.19vw;
  }
}
.news__wrapper {
  justify-content: space-between;
  margin-bottom: 6.4vw;
}
.news__tab-wrapper {
  color: #fff;
  width: 65%;
}
.news__tab-list {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 5.333vw;
  margin-bottom: 6.4vw;
}
.news__tab-item {
  width: 50%;
  text-align: center;
  font-size: 3.2vw;
  font-weight: 500;
  padding-bottom: 2.667vw;
  border-bottom: 1px #fff solid;
  transition: all 0.4s;
}
.news__tab-item.active {
  color: #fe4530;
  border-bottom: 1px #fe4530 solid;
}
.news__list {
  row-gap: 2.667vw;
  display: none;
}
.news__list.active {
  display: flex;
}
.news__item {
  font-size: 3.2vw;
  justify-content: space-between;
  -moz-column-gap: 8%;
       column-gap: 8%;
  align-items: baseline;
}
.news__item-text {
  width: 100%;
  line-height: 1.5;
}
.news__btn {
  margin-left: auto;
  justify-content: flex-end;
}

@media (width >= 900px) {
  .news__wrapper {
    margin-bottom: 1.667vw;
  }
  .news__tab-wrapper {
    width: 78.5%;
  }
  .news__tab-list {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: stretch;
    row-gap: 0;
    margin-bottom: 2.778vw;
    padding-bottom: 1.111vw;
    position: relative;
  }
  .news__tab-list::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 0.069vw;
    background: #fff;
  }
  .news__tab-item {
    width: 15%;
    font-size: 1.111vw;
    padding-bottom: 0;
    border: 0;
    position: relative;
    cursor: pointer;
  }
  .news__tab-item.active {
    border: 0;
  }
  .news__tab-item.active::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.069vw;
    background: #fe4530;
    bottom: -1.111vw;
    left: 0;
    z-index: 1;
  }
  .news__list {
    row-gap: 1.25vw;
  }
  .news__item {
    font-size: 1.111vw;
  }
}
.product__wrapper {
  justify-content: space-between;
  margin-bottom: 32vw;
}
@media (width >= 900px) {
  .product__wrapper {
    margin-bottom: 13.19vw;
  }
}
.product__list {
  width: 68%;
  display: flex;
  flex-direction: column;
  row-gap: 10.667vw;
}
.product__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 4.267vw;
  color: #fff;
}
.product__item-title {
  font-size: 4.267vw;
  margin-bottom: 2.133vw;
  padding-left: 6.4vw;
  position: relative;
}
.product__item-title::before {
  content: "";
  display: block;
  width: 3.733vw;
  height: 3.733vw;
  border-radius: 50%;
  border: 1px #fe4530 solid;
  position: absolute;
  left: 0;
  top: 1px;
}
.product__item-description {
  font-size: 2.933vw;
  line-height: 1.7;
  margin-bottom: 4.267vw;
}
.product__item-label-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2.133vw;
}
.product__item-label-item {
  font-size: 2.933vw;
  padding: 3.2vw;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5.333vw;
}

@media (width >= 900px) {
  .product__list {
    width: 78%;
    row-gap: 4.6vw;
  }
  .product__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .product__item-text {
    width: 47.6%;
  }
  .product__item-title {
    font-size: 1.389vw;
    margin-bottom: 0.556vw;
    padding-left: 1.944vw;
  }
  .product__item-title::before {
    width: 1.389vw;
    height: 1.389vw;
  }
  .product__item-description {
    font-size: 0.972vw;
    margin-bottom: 1.5vw;
  }
  .product__item-label-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .product__item-label-item {
    font-size: 0.972vw;
    padding: 0.834vw 1.389vw;
  }
  .product__item-img {
    width: 47.6%;
  }
}
.message {
  width: 100vw;
  margin-bottom: 32vw;
}
@media (width >= 900px) {
  .message {
    margin-bottom: 13.19vw;
  }
}
.message__movie {
  width: 83vw;
  margin: 0 auto;
  margin-bottom: 8.533vw;
  padding-bottom: 19.2vw;
  position: relative;
}
@media (width >= 900px) {
  .message__movie {
    width: 65vw;
  }
}
.message__movie-list {
  position: relative;
  height: 65vw;
}
.message__movie-item {
  overflow: hidden;
  border-radius: 3vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.message__movie-item.active {
  animation-name: movieActive;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}
@media (max-width: 900px) {
  @keyframes movieActive {
    0% {
      bottom: 0;
      width: 75%;
    }
    100% {
      bottom: 30%;
      width: 100%;
    }
  }
}
.message__movie-item.inactive {
  z-index: -1;
  bottom: 0;
  width: 100%;
  bottom: auto;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-name: movieInActive;
}
@media (max-width: 900px) {
  @keyframes movieInActive {
    0% {
      top: 0;
      width: 100%;
    }
    100% {
      top: 50%;
      width: 75%;
    }
  }
}
.message__movie-next-btn {
  height: 12.267vw;
  -moz-column-gap: 3.2vw;
       column-gap: 3.2vw;
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
}
.message__movie-arrow-wrapper {
  width: 12.267vw;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  position: relative;
  margin-right: 3.2vw;
}
.message__movie-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 20%;
  height: 20%;
}
.message__movie-arrow::before, .message__movie-arrow::after {
  content: "";
  display: block;
}
.message__movie-arrow::before {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fe4530;
}
.message__movie-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 40%;
  height: 40%;
  border-top: 1px solid #fe4530;
  border-right: 1px solid #fe4530;
}
.message__movie-number {
  color: #fe4530;
  font-size: 3.733vw;
  font-weight: 400;
}
.message__wrapper {
  justify-content: space-between;
}
.message__text {
  color: #fff;
  width: 69%;
  font-weight: 400;
}
.message__description {
  font-size: 3.2vw;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 4.267vw;
}
.message__description:nth-of-type(4) {
  margin-bottom: 6.4vw;
}
.message .company-information {
  text-align: right;
}
.message .company-name {
  font-size: 2.933vw;
  margin-bottom: 2.133vw;
}
.message .representative-name {
  font-size: 3.733vw;
}

@media (width >= 900px) {
  .message__movie {
    margin-bottom: 6.667vw;
    padding-bottom: 4.58vw;
  }
  .message__movie-list {
    width: 85.4%;
    height: 24.3vw;
    margin: 0 auto;
  }
  .message__movie-item {
    width: 70%;
    padding-bottom: 0;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: auto;
  }
  .message__movie-item.active {
    bottom: auto;
    animation-name: movieActivePc;
  }
  @keyframes movieActivePc {
    0% {
      right: 0;
      width: 50%;
    }
    100% {
      right: 30%;
      width: 70%;
    }
  }
  .message__movie-item.inactive {
    width: 50%;
    right: 0;
    bottom: auto;
    animation-name: movieInActivePc;
  }
  @keyframes movieInActivePc {
    0% {
      left: 0;
      width: 70%;
    }
    100% {
      left: 50%;
      width: 50%;
    }
  }
  .message__movie-next-btn {
    height: 4.444vw;
    -moz-column-gap: 0;
         column-gap: 0;
    right: 10vw;
    bottom: 2.22vw;
  }
  .message__movie-arrow-wrapper {
    cursor: pointer;
    width: 4.444vw;
    margin-right: 2vw;
    transition: all 0.4s;
  }
  .message__movie-arrow-wrapper:hover {
    color: rgba(255, 255, 255, 0.5);
    opacity: 0.5;
    background: #fff;
    transform: translate(4px, 4px);
  }
  .message__movie-number {
    font-size: 1.25vw;
  }
  .message__movie::before {
    content: "";
    position: absolute;
    z-index: -1;
    display: block;
    width: 100%;
    height: 15.5vw;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    left: 0;
    bottom: 0;
  }
  .message__text {
    width: 78.4%;
  }
  .message__description {
    font-size: 1.111vw;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-bottom: 1.111vw;
  }
  .message__description:nth-of-type(4) {
    margin-bottom: 2.222vw;
  }
  .message .company-name {
    font-size: 0.972vw;
    margin-bottom: 0.556vw;
  }
  .message .representative-name {
    font-size: 1.25vw;
  }
}
.user-voice {
  width: 100vw;
  margin-bottom: 32vw;
}
@media (width >= 900px) {
  .user-voice {
    margin-bottom: 13.19vw;
  }
}
.user-voice__flex {
  justify-content: space-between;
  margin-bottom: 6.4vw;
}
.user-voice__list {
  row-gap: 6.4vw;
  width: 57.067vw;
}
.user-voice__item {
  padding: 4.267vw;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6.4vw;
  color: #eee;
}
.user-voice__item-wrapper--up {
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4.267vw;
  border-bottom: 1px solid #eee;
}
.user-voice__item span {
  display: inline-block;
}
.user-voice__item-icon {
  width: 17.067vw;
}
.user-voice__item-title {
  width: 26.667vw;
}
.user-voice__item-message {
  font-size: 3.2vw;
  font-weight: 500;
  margin-bottom: 2.133vw;
  line-height: 1.5;
}
.user-voice__item-name {
  font-size: 3.733vw;
  font-weight: 400;
}
.user-voice__item-name > span {
  font-size: 3.2vw;
}
.user-voice__item-wrapper--bottom {
  padding-top: 4.267vw;
}
.user-voice__item-description {
  font-size: 2.933vw;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.133vw;
}
.user-voice__item-btn {
  color: #fe4530;
  font-size: 2.933vw;
  font-weight: 500;
  width: 100%;
  text-align: right;
}
.user-voice__btn {
  justify-content: flex-start;
}

@media (width >= 900px) {
  .user-voice__flex {
    margin-bottom: 4.444vw;
  }
  .user-voice__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2.778vw;
    width: 51.042vw;
  }
  .user-voice__item {
    padding: 1.667vw;
    border-radius: 32px;
  }
  .user-voice__item-wrapper--up {
    padding-bottom: 1.667vw;
  }
  .user-voice__item-icon {
    width: 8.333vw;
  }
  .user-voice__item-title {
    width: 10.764vw;
  }
  .user-voice__item-message {
    font-size: 1.111vw;
    margin-bottom: 0.556vw;
  }
  .user-voice__item-name {
    font-size: 1.25vw;
  }
  .user-voice__item-name > span {
    font-size: 1.111vw;
  }
  .user-voice__item-wrapper--bottom {
    padding-top: 1.667vw;
  }
  .user-voice__item-description {
    font-size: 0.972vw;
    margin-bottom: 0.556vw;
  }
  .user-voice__item-btn {
    font-size: 0.972vw;
  }
}
.header {
  width: 100vw;
  height: min(22.5vw, 150px);
}
.header__wrapper {
  width: 83%;
  margin: 0 auto;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.header__logo a {
  font-size: 6.25vw;
  font-weight: 600;
  color: #fe4530;
  letter-spacing: 0.05em;
}
.header__nav {
  width: 100vw;
  position: absolute;
  z-index: 1;
  height: calc(100svh - min(22.5vw, 150px));
  bottom: 0;
  left: 0;
  background: rgba(254, 69, 48, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__nav.active {
  opacity: 1;
  visibility: visible;
}
.header__nav-item {
  font-size: min(4.26vw, 2.4rem);
  font-weight: 400;
  margin-bottom: min(9.6vw, 5.6rem);
}
.header__nav-item--btn {
  margin-bottom: min(6.4vw, 4rem);
}
.header__nav-item--btn a {
  background: #000;
  color: #eee;
  font-size: min(3.73vw, 2.2rem);
  padding: min(4.26vw, 2.4rem) 0;
  width: min(49vw, 28rem);
  box-sizing: border-box;
  display: inline-block;
  border-radius: 60px;
}
.header .hamburger-btn {
  width: 10.66vw;
  height: 10.66vw;
  background: #fe4530;
  border-radius: 50%;
  position: relative;
}
.header .hamburger-btn span {
  display: inline-block;
  width: 60%;
  height: 2px;
  background: #000;
  position: absolute;
  top: 38%;
  left: 20%;
  transition: all 0.4s ease;
}
.header .hamburger-btn span:nth-of-type(2) {
  width: 45%;
  top: 55%;
}
.header .hamburger-btn.active span {
  transform: rotate(45deg);
  top: 50%;
}
.header .hamburger-btn.active span:nth-of-type(2) {
  transform: rotate(-45deg);
  width: 60%;
}

html.no-scroll {
  overflow: hidden;
}

@media (width >= 900px) {
  .header {
    height: 9vw;
    margin-bottom: 5vw;
  }
  .header__wrapper {
    width: 92%;
    height: 100%;
  }
  .header__logo a {
    font-size: 2vw;
    transition: all 0.4s;
  }
  .header__logo a:hover {
    opacity: 0.7;
  }
  .header__nav {
    width: auto;
    position: static;
    height: auto;
    opacity: 1;
    visibility: visible;
    background: transparent;
    text-align: left;
  }
  .header__nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .header__nav-item {
    font-size: 1vw;
    margin: 0 2.22vw 0 0;
  }
  .header__nav-item a {
    color: #eee;
    transition: all 0.4s;
  }
  .header__nav-item a:hover {
    opacity: 0.7;
  }
  .header__nav-item--btn {
    margin: 0 1vw 0 0;
    text-align: center;
  }
  .header__nav-item--btn:nth-of-type(8) {
    margin: 0;
  }
  .header__nav-item--btn a {
    background: #fe4530;
    color: #000;
    font-size: 1vw;
    font-weight: 400;
    padding: 1.05vw 3vw;
    width: auto;
    box-sizing: border-box;
    display: inline-block;
    border-radius: 60px;
  }
  .header__nav-item--btn a:hover {
    background: #eee;
    color: #fe4530;
    opacity: 1;
  }
  .header .hamburger-btn {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */