.mv {
  position: relative;
  line-height: 1;

  /* スマホ時にスクロールするとautoplayが止まる対策 */
  pointer-events: none;
}

.mv-slider {
  z-index: 1;
}

.mv-slider__item img {
  width: 63vw;
  object-fit: cover;
  border-radius: clamp(15px, 2rem, 20px);
}

.mv-slider__item {
  margin: 0 1vw;
}


.mv .mv-slider {
  /* overflow: hidden; */
}

.mv .mv-slider__item {
  position: relative;
  overflow: hidden;
}

.slider-dots li button {
  background: var(--blue);
}

/* .mv .slick-active img {
  animation-name: zoomout;
  animation-fill-mode: forwards;
  animation-delay: 0s;
  animation-duration: 6s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-direction: normal;
}

@keyframes zoomout {
  0% {
    transform: scale(1.2);
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomin {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 1;
  }
} */

/* Dots */

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3.6rem;
  z-index: 1;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}

.slider-dots li {
  position: relative;
  display: inline-block;
  margin: 0 1rem;
  padding: 0;
  cursor: pointer;
}

.slider-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 1rem;
  height: 1rem;
  padding: .5rem;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slider-dots li button:hover,
.slider-dots li button:focus {
  outline: none;
}

.slider-dots li button:hover:before,
.slider-dots li button:focus:before {
  opacity: 1;
}

.slider-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 1rem;
  height: 1rem;
  content: '';
  text-align: center;
  background-color: var(--white);
  border-radius: 50%;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slider-dots li.slick-active button:before {
  background-color: var(--yellow);
}


.mv-txt {
  position: relative;
  z-index: 1;
  margin-top: -5.4vw;
  width: 86vw;
  margin-inline: auto;
}

.mv-txt img {
  width: 40.9rem;
}

.mv-under-image {
  position: relative;
  margin-top: 10.8rem;
  width: 100vw;
  padding-inline: 7vw;
}

.mv-under-image img {
  width: 100%;
}

.mv-under-image::before {
  content: '';
  display: block;
  width: 93vw;
  height: calc(100% + 30.4vw);
  position: absolute;
  top: -30.4vw;
  left: 0;
  background-color: var(--blue);
  z-index: -1;
  border-top-right-radius: clamp(15px, 2rem, 20px);
}

@media screen and (max-width: 640px) {
  .mv::before {
    content: '';
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 50vw;
    left: 0;
    background-color: var(--blue);
    z-index: -1;
  }

  .mv-slider__item {
    margin: 30px 5vw 10vw;
  }

  .mv-slider__item img {
    width: 90vw;
  }

  .mv-txt {
    margin-left: 5vw;
  }

  .mv-txt img {
    width: 270px;
  }

  .slider-dots {
    bottom: 5vw;
  }

  .mv-under-image {
    width: 100%;
    padding-left: 5vw;
    padding-right: 0;
  }

  .mv-under-image::before {
    content: none;
  }

}


/* ------------------------------------- */

.message {
  position: relative;
}

.message::before {
  content: '';
  display: block;
  padding-top: 10rem;
  /* width: calc(100% + (100vw - 100%) / 2); */
  width: 93vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--blue);
  z-index: -1;
  border-bottom-right-radius: clamp(15px, 2rem, 20px);
}

.message__inner {
  display: flex;
  gap: 7.2rem;
}

.message-lead_en {
  text-transform: uppercase;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
}

.message-lead {
  font-size: max(20px, 3rem);
  font-weight: 700;
  line-height: 1.6;
  margin-top: 1rem;
}

.message-content-main {
  flex: 0 0 42%;
  padding-left: 2.6rem;
}

.message-image {
  position: relative;
  margin-top: 5rem;
}

.message-illust01 {
  width: 11rem;
  position: absolute;
  top: -2rem;
  left: -7.7rem;
}

.message-content-txt {
  margin-top: 9rem;
  padding-bottom: 8rem;
  position: relative;
}

.message-content-txt p {
  font-size: max(13px, 1.6rem);
  line-height: 2.5;
}

.message-content-txt p:nth-child(n+2) {
  margin-top: 1em;
}

.message-illust02 {
  width: 10.7rem;
  position: absolute;
  bottom: 6rem;
  right: 10vw;
}

.message .arrow-link-wrap {
  margin-top: 4.8rem;
}

@media screen and (max-width: 1024px) {
  .message-content-txt {
    padding-right: 5vw;
  }
}

@media screen and (max-width: 640px) {
  .message::before {
    width: 100vw;
    border-radius: 0;
  }

  .message__inner {
    flex-direction: column;
  }

  .message-image {
    width: min(70vw, 430px);
    padding-right: 5vw;
    margin-inline: auto;
  }

  .message-content-txt {
    margin-top: 0;
    padding-right: 0;
    text-align: justify;
  }
}

/* ------------------------------------- */

.first {
  padding: 5rem 4rem;
}

.first .section-title {
  text-align: center;
  justify-content: center;  
}

.first .section-title::before {
  font-size: max(30px, 6rem);
}

.first__link{
  margin-top: 4.8rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  text-align: center;
}
.first__faq-link {
  display: block;
  margin-top: 1.5em;
  text-decoration: underline;
}

/* ------------------------------------- */

.info {
  padding-bottom: 42.5rem;
}

.info::before {
  content: '';
  display: block;
  padding-top: 10rem;
  width: 100%;
  height: calc(100% + 28.2vw);
  position: absolute;
  top: -28.2vw;
  left: 0;
  background-color: var(--light-blue);
  z-index: -10;
}

.info__inner {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.news {
  flex: 0 0 53.2%;
}

.info-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 1em;
  font-weight: 700;
  font-size: max(14px, 1.5rem);
  border-bottom: 1px solid var(--black);
}

.info-title::before {
  content: attr(data-title);
  text-transform: uppercase;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: max(30px, 4rem);
  line-height: 1.5;
  display: block;
  /* padding-bottom: 0.15em; */
  color: var(--blue);
}


.news-list {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  row-gap: 3.5rem;
  max-height: max(250px, 30rem);
  overflow-y: auto;
}

.news-list__item {
  display: flex;
}

.news-list__item:nth-child(n+2) {
  padding-top: 3.5rem;
  border-top: 1px dashed #c0c0c0;
}

.topics-list__item-date {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: max(13px, 1.5rem);
  flex: 0 0 20%;
}

.news-list__item-title {
  flex: 0 0 80%;
}

.calendar {
  flex: 0 0 38.7%;
  overflow: hidden;
}

.calendar-list {
  margin-top: 4rem;
  width: 68.75%;
  margin-inline: auto;
}

.calendar-list__item .time {
  font-size: max(16px, 2rem);
  font-family: var(--font-en);
  font-weight: 500;
  margin-bottom: 0.3em;
}


/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  width: 3.6rem;
  height: 3.6rem;
}

.slick-prev:before,
.slick-next:before {
  font-family: var(--font-sans);
  content: "";
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  background: url(../../images/icon-arrow-black.svg) center center no-repeat;
  background-size: contain;
}

.slick-prev {
  left: -7rem;
}

[dir='rtl'] .slick-prev {
  right: -7rem;
  left: auto;
}

.slick-prev:before {
  /* content: '←'; */
  transform: rotate(-180deg);
}

[dir='rtl'] .slick-prev:before {
  /* content: '→'; */
}

.slick-next {
  right: -7rem;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -7rem;
}

.slick-next:before {
  /* content: '→'; */
}

[dir='rtl'] .slick-next:before {
  /* content: '←'; */
  transform: rotate(-180deg);
}

@media screen and (max-width: 1024px) {
  .info__inner {
    flex-direction: column;
    gap: 60px;
  }

  .slick-prev,
  .slick-next,
  .slick-prev:before,
  .slick-next:before {
    width: 36px;
    height: 36px;
  }

  .slick-prev {
    left: -50px;
  }

  [dir='rtl'] .slick-prev {
    right: -50px;
    left: auto;
  }

  .slick-next {
    right: -50px;
  }

  [dir='rtl'] .slick-next {
    right: auto;
    left: -50px;
  }
}

@media screen and (max-width: 640px) {
  .news-list__item {
    flex-direction: column;
  }
}

/* ------------------------------------- */

.about {
  margin-top: -33rem;
/* margin-top: clamp(60px, 12rem, 120px); */
position: relative;
}
.about::before {
  content: '';
  position: absolute;
  display: block;
  width: 50vw;
  height: 100%;
  background: var(--yellow);
  top: 0;
  right: 0;
}

.about__inner {
  padding: 10rem 8rem;
  position: relative;
  min-height: 74rem;
}

.about::after {
  content: '';
  position: absolute;
  display: block;
  width: 57vw;
  height: 58rem;
  background: url(../../images/index/about2.jpg) center center no-repeat;
  background-size: cover;
  top: 8rem;
  right: 0;
  border-top-left-radius: clamp(15px, 2rem, 20px);
  border-bottom-left-radius: clamp(15px, 2rem, 20px);
  transition: .4s;
}

/* @media (hover: hover) and (pointer: fine) {
  .about:has(.about-list__item:nth-child(2):hover)::after {
    background-image: url(../../images/index/about2.jpg) ;
  }
  .about:has(.about-list__item:nth-child(3):hover)::after {
    background-image: url(../../images/index/about3.jpg) ;
  }
  .about:has(.about-list__item:nth-child(4):hover)::after {
    background-image: url(../../images/index/about4.jpg) ;
  }
} */

.about-content {
  width: 36rem;
}
.about-list {
  margin-top: 4rem;
}
.about-list__item {
}
.about-list__item:nth-child(n+2) a {
  padding-top: 1.5em;
  border-top: 1px dashed #868686;
}
.about-list__item a {
  padding-bottom: 1.5em;
  text-decoration: none;
  position: relative;
  padding-left: 3em;
  display: block;
}
.about-list__item a::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../../images/icon-arrow-black.svg) center center no-repeat;
  background-size: contain;
  margin-right: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.about-list__en {
  text-transform: uppercase;
  font-family: var(--font-en);
  font-weight: 500;
  display: block;
  font-size: max(12px, 1.4rem);
}
.about-list__jp {
  font-weight: 700;
  font-size: max(16px, 2rem);
  display: block;
}


@media screen and (max-width: 640px) {

  .about::after {
    content: none;
  }
  .about__inner {
    padding: 3em 0 3em 8vw;
  }
  .about__inner::after {
    content: '';
    display: block;
    width: 87vw;
    height: 58rem;
    background: url(../../images/index/about2.jpg) center center no-repeat;
    background-size: cover;
    border-top-left-radius: clamp(15px, 2rem, 20px);
    border-bottom-left-radius: clamp(15px, 2rem, 20px);
    margin-top: 5rem;
  }
  .about-content {
    width: 100%;
  }
}

/* ------------------------------------- */

.company::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 36rem;
  background: var(--light-blue);
  bottom: 0;
  left: 0;
  z-index: -1;
}
.company-inner {
  background-image: url(../../images/index/company_bg.jpg);
  padding-block: 5rem;
  padding-inline: 8rem;
}

@media screen and (max-width: 640px) {
  .company-inner {
    padding-block: 30px;
    padding-inline: 5vw;
    background-image: url(../../images/index/company_bg_sp.jpg);
  }
}

/* ------------------------------------- */

.recruit {
  background-image: url(../../images/index/recruit_bg.jpg);
}

@media screen and (max-width: 640px) {}

/* ------------------------------------- */


@media screen and (max-width: 640px) {}