@charset "UTF-8";
@font-face {
  font-family: "Helvetica";
  src: url("../font/Helvetica.ttf") format("truetype");
}
/* ▼▼▼ トップ
======================================================*/
/* ▼ メインビジュアル
----------------------------------------*/
.mv {
  width: 100%;
  position: relative;
  z-index: 4;
  overflow: hidden;
}

.slick-track {
  width: 100%;
  height: calc(100vh + 162rem);
  max-height: 1026rem;
  counter-reset: number 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .slick-track {
    height: calc(100vh + 20rem);
    max-height: 704rem;
  }
}

.slick-slide {
  counter-increment: number;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  opacity: 0;
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
}
.slick-slide .mv__img {
  scale: 1.075;
}
.slick-slide:nth-child(1) {
  z-index: 1007 !important;
}
.slick-slide:nth-child(2) {
  z-index: 1006 !important;
}
.slick-slide:nth-child(3) {
  z-index: 1005 !important;
}
.slick-slide.slick-active {
  opacity: 1;
  z-index: 1009 !important;
  -webkit-animation: mv2 4s linear 1 forwards;
          animation: mv2 4s linear 1 forwards;
}
.slick-slide.slick-active .mv__img {
  -webkit-animation: mv 4s linear 1 forwards;
          animation: mv 4s linear 1 forwards;
}
.slick-slide.slide-next {
  opacity: 1;
  z-index: 1008 !important;
}
.slick-slide.slide-next .mv__img {
  -webkit-animation: mv-next 4s linear 1 forwards;
          animation: mv-next 4s linear 1 forwards;
}

.slick-slide:not(.slick-active) {
  opacity: 1 !important;
}

@-webkit-keyframes mv {
  0% {
    scale: 1.075;
  }
  100% {
    scale: 1.15;
  }
}

@keyframes mv {
  0% {
    scale: 1.075;
  }
  100% {
    scale: 1.15;
  }
}
@-webkit-keyframes mv2 {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes mv2 {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes mv-next {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.075;
  }
}
@keyframes mv-next {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.075;
  }
}
.mv__slider li {
  padding-block: 89rem 162rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__slider li {
    padding-block: 76rem 20rem;
  }
}

.mv__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.mv__img::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/mv-filter.webp) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .mv__img::after {
    background-image: url(../img/mv-filter-sp.webp);
  }
}

.mv__slide-main {
  width: 100%;
  height: calc(100vh - 89rem);
  max-height: 775rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__slide-main {
    height: calc(100vh - 76rem);
    max-height: 608rem;
  }
}
.mv__slide-main::before {
  content: "";
  width: 69rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .mv__slide-main::before {
    width: 20rem;
  }
}
.mv__slide-main::before {
  background: url(../img/mv-corner-top.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
}

.mv__text {
  min-width: 450rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  right: calc(50vw - 550rem);
  bottom: 40rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .mv__text {
    gap: 3rem;
    bottom: 84rem;
    right: unset;
    left: 20rem;
  }
}
.mv__text::before {
  content: counter(number, decimal-leading-zero) ".";
  color: #fff;
  font-size: 17rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-left: 5rem;
}
@media screen and (max-width: 767px) {
  .mv__text::before {
    font-size: max(12px, 13rem);
    line-height: 1.7692307692;
    margin-left: unset;
  }
}
.mv__text span {
  color: #fff;
  font-size: 45rem;
  line-height: 1.3555555556;
}
@media screen and (max-width: 767px) {
  .mv__text span {
    font-size: 30rem;
    line-height: 1.4333333333;
  }
}
.mv__text span > span {
  position: relative;
}
.mv__text span > span::after {
  content: "";
  width: 100%;
  height: 1rem;
  background: repeat-x left center/9rem 1rem;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #fff), color-stop(4rem, transparent));
  background-image: linear-gradient(to right, #fff 0 4rem, transparent 4rem 9rem);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .mv__text span > span::after {
    bottom: -1rem;
  }
}

.slick-num {
  width: 40rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: max(10px, 10rem);
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 5rem;
  position: absolute;
  bottom: 195rem;
  left: 35rem;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .slick-num {
    width: 37rem;
    bottom: 52rem;
    left: 20rem;
  }
}

.slick-dotted.slick-slider {
  margin: unset;
}

.slick-dots {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: 198rem;
  left: 86rem;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .slick-dots {
    bottom: 55rem;
    left: 71rem;
  }
}
.slick-dots li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: unset;
  padding: unset;
  height: auto;
}
.slick-dots button {
  width: 33rem !important;
  height: auto !important;
  aspect-ratio: 33/6;
  border-radius: 3rem !important;
  border: max(2px, 2rem) solid #c1c1c1 !important;
  padding: unset !important;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.slick-dots button::before {
  display: none;
}
.slick-dots button::after {
  content: "";
  width: 6rem;
  height: 6rem;
  border-radius: 3rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: -2rem;
  translate: 0 -50%;
  opacity: 0;
}
.slick-dots li.slick-active button::after {
  opacity: 1;
  -webkit-animation: mv-pagination 4s ease 1 forwards;
          animation: mv-pagination 4s ease 1 forwards;
}

@-webkit-keyframes mv-pagination {
  0% {
    width: 6rem;
  }
  100% {
    width: 33rem;
  }
}

@keyframes mv-pagination {
  0% {
    width: 6rem;
  }
  100% {
    width: 33rem;
  }
}
/* ▼ トピックス
----------------------------------------*/
.top-topics {
  padding-block: 72rem 95rem;
  margin-top: -164rem;
  border-top-left-radius: 80rem;
  background: #fff;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .top-topics {
    padding-block: 48rem 11rem;
    margin-top: -20rem;
    border-top-left-radius: 20rem;
  }
}
.top-topics::after {
  content: "";
  width: 69rem;
  aspect-ratio: 1/1;
  background: url(../img/mv-corner-bottom.svg) no-repeat center center/contain;
  position: absolute;
  bottom: calc(100% - 1px);
  right: 0;
}
@media screen and (max-width: 767px) {
  .top-topics::after {
    width: 30rem;
  }
}

.top-topics__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60rem;
}
@media screen and (max-width: 767px) {
  .top-topics__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: unset;
  }
}

@media screen and (max-width: 767px) {
  .top-topics__title-wrap {
    display: contents;
  }
}

.top-topics__btn {
  margin-top: 40rem;
}
@media screen and (max-width: 767px) {
  .top-topics__btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-inline: auto;
    margin-top: 32rem;
  }
}

.top-topics__item-wrap {
  width: 848rem;
}
@media screen and (max-width: 767px) {
  .top-topics__item-wrap {
    width: 100%;
    margin-top: 4rem;
  }
}

.top-topics__item a {
  padding-bottom: 24rem;
  border-bottom: 1rem solid #efeaea;
  margin-top: 24rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-topics__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14rem 16rem;
  }
}
.top-topics__item a::after {
  content: "";
  width: 0;
  height: 1rem;
  background: #DE0A0A;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (any-hover: hover) {
  .top-topics__item a:hover::after {
    -webkit-animation: topics-line-in 0.5s ease forwards;
            animation: topics-line-in 0.5s ease forwards;
  }
  .top-topics__item a:not(:hover)::after {
    -webkit-animation: topics-line-out 0.5s ease forwards;
            animation: topics-line-out 0.5s ease forwards;
  }
}
@-webkit-keyframes topics-line-in {
  0% {
    width: 0;
    margin-left: 0;
    margin-right: auto;
  }
  100% {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }
}
@keyframes topics-line-in {
  0% {
    width: 0;
    margin-left: 0;
    margin-right: auto;
  }
  100% {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }
}
@-webkit-keyframes topics-line-out {
  0% {
    width: 100%;
    margin-left: auto;
    margin-right: 0;
  }
  100% {
    width: 0;
    margin-left: auto;
    margin-right: 0;
  }
}
@keyframes topics-line-out {
  0% {
    width: 100%;
    margin-left: auto;
    margin-right: 0;
  }
  100% {
    width: 0;
    margin-left: auto;
    margin-right: 0;
  }
}

.top-topics__item-date {
  color: #908989;
  font-family: "Outfit", sans-serif;
  font-size: max(12px, 13rem);
  line-height: 1.3076923077;
}
@media screen and (max-width: 767px) {
  .top-topics__item-date {
    color: #2C2C2C;
  }
}

.top-topics__item-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30rem;
  margin-top: 13rem;
}
@media screen and (max-width: 767px) {
  .top-topics__item-title-wrap {
    display: contents;
  }
}

.top-topics__item-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* 行数を指定 */
}
@media screen and (max-width: 767px) {
  .top-topics__item-title {
    width: 100%;
    -webkit-line-clamp: 2; /* 行数を指定 */
  }
}

.top-company {
  padding-bottom: 138rem;
  border-bottom-left-radius: 70rem;
  background: #fff;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 767px) {
  .top-company {
    padding-block: 50rem 110rem;
    border-bottom-left-radius: 30rem;
    overflow: hidden;
  }
}

.top-company__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-company__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40rem;
  }
}

.top-company__title-wrap {
  padding-left: 164rem;
  padding-top: 86rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-company__title-wrap {
    padding: unset;
  }
}
.top-company__title-wrap::after {
  content: "";
  width: 228rem;
  aspect-ratio: 1/1;
  background: url(../img/top-company-deco2.webp) no-repeat center center/contain;
  position: absolute;
  top: -23rem;
  left: -37rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-company__title-wrap::after {
    width: 175rem;
    top: -49rem;
    left: 201rem;
  }
}

.top-company__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  font-size: 28rem;
  font-weight: 700;
  line-height: 1.4285714286;
  margin-top: 25rem;
}
@media screen and (max-width: 767px) {
  .top-company__title {
    margin-top: 23rem;
  }
}
.top-company__title span:first-child {
  margin-left: 16rem;
}

.top-company__text {
  max-width: 352rem;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 25rem;
}
@media screen and (max-width: ) {
  .top-company__text {
    max-width: 100%;
    margin-top: 20rem;
  }
}

.top-company__btn-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 40rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .top-company__btn-wrap {
    margin-top: 32rem;
  }
}

.top-company__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: transparent;
}
.top-company__btn.--en {
  min-width: max(180px, 215rem);
}
@media screen and (max-width: 767px) {
  .top-company__btn.--en {
    min-width: 190rem;
    padding-right: 10rem;
  }
}

.top-company__img-wrap {
  position: relative;
}
.top-company__img-wrap::after {
  content: "";
  width: 348rem;
  aspect-ratio: 348/295;
  background: url(../img/top-company-deco1.webp) no-repeat center center/contain;
  position: absolute;
  bottom: -138rem;
  left: -230rem;
}
@media screen and (max-width: 767px) {
  .top-company__img-wrap::after {
    width: 205rem;
    left: 170rem;
    bottom: -108rem;
  }
}

.top-company__img {
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  -webkit-transition: all 0.5s ease 1.5s;
  transition: all 0.5s ease 1.5s;
}

.top-company__main:has(.is-show) .top-company__img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.top-company__img.--1 {
  width: 527rem;
  aspect-ratio: 527/510;
  border-radius: 9rem 70rem 9rem 70rem;
  margin-right: -54rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-company__img.--1 {
    width: 276rem;
    border-radius: 0rem 35rem 0rem 35rem;
    margin-right: unset;
    margin-left: -20rem;
  }
}

.top-company__img.--2 {
  width: 325rem;
  aspect-ratio: 325/302;
  border-radius: 55rem;
  position: absolute;
  top: 268rem;
  left: -222rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-company__img.--2 {
    width: 194rem;
    aspect-ratio: 194/181;
    border-radius: 35rem;
    top: 328rem;
    left: unset;
    right: -56rem;
  }
}

.top-product {
  padding-block: 153rem 83rem;
  background: #3E3D3D;
  margin-top: -70rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .top-product {
    padding-block: 60rem 70rem;
  }
}
.top-product::before {
  content: "";
  width: 70rem;
  aspect-ratio: 1/1;
  background: url(../img/mv-corner-top.svg) no-repeat center center/contain;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  position: absolute;
  top: 70rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .top-product::before {
    width: 30rem;
  }
}
.top-product::after {
  content: "";
  width: 70rem;
  aspect-ratio: 1/1;
  background-color: #3E3D3D;
  -webkit-mask: url(../img/mv-corner-top.svg) no-repeat center/contain;
  mask: url(../img/mv-corner-top.svg) no-repeat center/contain;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  position: absolute;
  top: calc(100% - 0.5px);
  right: 0;
}
@media screen and (max-width: 767px) {
  .top-product::after {
    width: 30rem;
  }
}

.top-product__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30rem;
}
@media screen and (max-width: 767px) {
  .top-product__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 38rem;
  }
}

.top-product__title-wrap {
  color: #fff;
  padding-top: 52rem;
}

.top-product__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 28rem;
  font-weight: 700;
  line-height: 1.4285714286;
  margin-top: 25rem;
}
@media screen and (max-width: 767px) {
  .top-product__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
    margin-top: 38rem;
  }
  .top-product__title span:last-child {
    margin-left: -16rem;
  }
}

.top-product__text {
  font-weight: 500;
  line-height: 1.75;
  margin-top: 25rem;
}
@media screen and (max-width: 767px) {
  .top-product__text {
    margin-top: 20rem;
  }
}
@media screen and (max-width: 950px) and (min-width: 768px) {
  .top-product__text br {
    display: none;
  }
}

.top-product__btn {
  margin-top: 40rem;
}
@media screen and (max-width: 767px) {
  .top-product__btn {
    margin-top: 32rem;
  }
}

.top-product__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 698rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 19rem;
}
@media screen and (max-width: 767px) {
  .top-product__img-wrap {
    width: 355rem;
    gap: 10rem;
    margin-right: -20rem;
    margin-left: auto;
  }
}

.top-product__img {
  width: 220rem;
  aspect-ratio: 220/431;
  -webkit-transition: all 0.5s ease 1.5s;
  transition: all 0.5s ease 1.5s;
}
@media screen and (max-width: 767px) {
  .top-product__img {
    width: 112rem;
  }
}
.top-product__img.--1 {
  margin-top: 52rem;
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
}
.top-product__img.--2 {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}
.top-product__img.--3 {
  margin-top: 52rem;
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
}

.top-product__main:has(.is-show) .top-product__img.--1, .top-product__main:has(.is-show) .top-product__img.--2, .top-product__main:has(.is-show) .top-product__img.--3 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}