@charset "utf-8";
/* ========================================================
   Business
======================================================== */
.ttl-notsvg {
  margin-bottom: 2.5rem;
}
.ttl-notsvg__title {
  font-size: 2.85rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  letter-spacing: 0.04rem;
}
.ttl-notsvg__subtitle {
  font-size: 1.14rem;
}
.top-business {
  padding: 2rem 0 0;
}
.top-business__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.top-business__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 390 / 193;
  overflow: hidden;
  text-decoration: none;
  z-index: 1;
}
.top-business__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.top-business__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.top-business__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  transition: opacity 0.4s ease;
  z-index: 1;
}
.top-business__item:hover .top-business__bg::after {
  opacity: 0;
}
.top-business__item:hover .top-business__bg img {
  transform: scale(1.05);
}
.top-business__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, #3389b9, #79b2d1);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.top-business__item:hover .top-business__overlay {
  opacity: 0.8;
}
.top-business__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 1rem;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.top-business__content--normal {
  opacity: 1;
}
.top-business__item:hover .top-business__content--normal {
  opacity: 0;
}
.top-business__content--diff {
  mix-blend-mode: difference;
  opacity: 0;
}
.top-business__item:hover .top-business__content--diff {
  opacity: 1;
}
.top-business__name {
  font-size: 1.78rem;
  letter-spacing: 0.04rem;
  margin-bottom: 0.2rem;
  text-align: center;
}
.top-business__jp {
  font-size: 1rem;
  letter-spacing: 0.06rem;
  margin-bottom: 0;
}
.top-business__logo {
  width: 12.85rem;
  margin-bottom: 0.5rem;
}
.top-business__logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .top-business__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
  }
}
@media screen and (min-width: 992px) {
  .top-business {
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  .top-business__list {
    gap: 0.625rem;
  }
  .ttl-notsvg {
    margin-bottom: 4rem;
  }
  .ttl-notsvg__title {
    font-size: 3.75rem;
    margin-bottom: 0.8rem;
    line-height: 1;
  }
  .ttl-notsvg__subtitle {
    font-size: 1.125rem;
  }
  .top-business__name {
    font-size: 2.81rem;
    margin-bottom: 0.4rem;
  }
  .top-business__jp {
    font-size: 1.25rem;
  }
  .top-business__logo {
    width: 21.875rem;
    margin-bottom: 0.7rem;
  }
}
/* ========================================================
   Recruit
======================================================== */
.top-recruit {
  position: relative;
  z-index: 20;
  margin-top: -5rem;
  overflow: hidden;
}
.top-recruit__inner {
  display: flex;
  flex-direction: column;
  gap: 2.85rem;
  align-items: center;
}
.top-recruit__slider-wrap {
  width: 92.3%;
  margin-right: auto;
}
.top-recruit__slider-css {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.top-recruit__slider-track {
  display: flex;
  flex-shrink: 0;
  animation: recruit-image-marquee 30s linear infinite;
}
.top-recruit__slider-track img {
  width: 84vw;
  height: auto;
  object-fit: cover;
}
@keyframes recruit-image-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* テキストエリア */
.top-recruit__text-wrap {
  padding: 0 5%;
}
.top-recruit__text-wrap .sec-header {
  align-items: center;
  margin-bottom: 1.5rem;
}
.top-recruit__text-wrap .sec-header__title {
  width: 12rem; /* スマホ時のロゴサイズ */
  margin-bottom: 0.5rem;
}
.top-recruit__text-wrap .sec-header__title img {
  width: 100%;
  height: auto;
}
.top-recruit__text-wrap .sec-header__subtitle {
  text-align: left;
  margin-bottom: 0;
}
.top-recruit__copy {
  font-size: 1.85rem;
  line-height: 1.615;
  margin-bottom: 2rem;
  text-align: center;
}
.top-recruit__btn {
  display: flex;
  justify-content: center;
}
/* マーキー（無限スクロール） */
.top-recruit__marquee {
  display: flex;
  width: 100%;
  margin-top: 2.85rem;
  overflow: hidden;
}
.top-recruit__marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  flex-shrink: 0;
  animation: rlp-marquee-joinus 40s linear infinite;
}
.top-recruit__marquee-track span {
  font-size: 5rem;
  color: #eef4fb;
  line-height: 1;
  white-space: nowrap;
}
.top-recruit__marquee-track img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
@keyframes rlp-marquee-joinus {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media screen and (min-width: 768px) {
  .top-recruit {
    margin-top: -3rem;
  }
}
@media screen and (min-width: 992px) {
  .top-recruit {
    margin-top: 0rem;
  }
  .top-recruit__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 94.44%;
    margin: 0 auto;
    overflow: hidden;
  }
  .top-recruit__slider-wrap {
    width: 70.58%;
    flex-shrink: 0;
  }
  .top-recruit__slider-track img {
    width: 47.22vw;
  }
  /* PCテキスト：右側に配置 */
  .top-recruit__text-wrap {
    width: 20.9%;
    padding: 0;
    flex-shrink: 0;
  }
  .top-recruit__copy {
    font-size: 2rem;
    margin-bottom: 3.5rem;
    text-align: left;
  }
  .top-recruit__btn {
    justify-content: flex-start;
  }
  /* マーキーPCサイズ */
  .top-recruit__marquee {
    margin-top: 5rem;
  }
  .top-recruit__marquee-track span {
    font-size: 7.5rem;
  }
  .top-recruit__marquee-track img {
    width: 140px;
    height: 140px;
  }
  .top-recruit__marquee-track {
    animation: rlp-marquee-joinus 60s linear infinite;
  }
  .top-recruit__text-wrap .sec-header {
    align-items: end;
    width: 12rem;
  }
}
@media screen and (min-width: 1200px) {
  .top-recruit {
    margin-top: -8.875rem;
  }
  .top-recruit__marquee {
    margin-top: 6.25rem;
  }
}
@media screen and (min-width: 1600px) {
  .top-recruit__text-wrap .sec-header {
    width: 16.87rem;
    margin-bottom: 3rem;
  }
  .top-recruit__text-wrap .sec-header__title {
    width: 16.875rem;
  }
  .top-recruit__copy {
    font-size: 2.75rem;
    text-align: left;
    line-height: 1.727;
  }
}
/* ========================================================
   Links (Company / Contact / Sustainability / Estate)
======================================================== */
.top-links {
  width: 85%;
  margin: 6rem auto 2.14rem;
}
.top-links__inner {
  display: grid;
  gap: 0.714rem;
  grid-template-columns: 1fr;
}
a.top-link:hover {
  text-decoration: none;
}
.top-link {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  aspect-ratio: 332 / 180;
}
.top-link__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.top-link__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.top-link__mask {
  position: absolute;
  inset: 0;
  z-index: 2;
}
/* マスク色指定 */
.top-link--blue .top-link__mask {
  background-color: rgba(0, 77, 160, 0.3);
}
.top-link--green .top-link__mask {
  background-color: rgba(31, 81, 101, 0.4);
}
.top-link:hover .top-link__bg img {
  transform: scale(1.08);
}
/* テキストコンテンツ */
.top-link__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.top-link__title {
  font-size: 2.07rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.top-link__subtitle {
  font-size: 1.14rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
/* ボタン */
.top-link__btn {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 5;
  display: none;
}
.top-link__circle {
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transform: scale(1);
}
.top-link__circle img {
  width: 14px;
  height: auto;
  position: absolute;
  transition: opacity 0.4s ease;
}
.top-link__arrow-hover {
  opacity: 0;
}
.top-link:hover .top-link__circle {
  background-color: #004da0;
  transform: scale(1.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.top-link:hover .top-link__arrow-default {
  opacity: 0;
}
.top-link:hover .top-link__arrow-hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .top-links {
    margin: 7.5rem auto 2.14rem;
  }
  .top-links__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .top-link--full {
    grid-column: 1 / -1;
  }
  .top-link__content--left {
    align-items: flex-start;
    text-align: left;
    padding-left: 8.4%;
  }
  .top-link {
    aspect-ratio: 1450 / 350;
  }
  .top-link.top-link--half {
    aspect-ratio: 710 / 350;
  }
}
@media screen and (min-width: 992px) {
  .top-link__btn {
    display: flex;
  }
  .top-link__content--left {
    justify-content: start;
  }
}
@media screen and (min-width: 1200px) {
  .top-links {
    margin: 7.5rem auto 5rem;
    width: 80.55%;
  }
  .top-link__title {
    font-size: 2.81rem;
    margin-bottom: 0.1rem;
  }
  .top-link__subtitle {
    font-size: 1rem;
  }
  .top-link__circle {
    width: 60px;
    height: 60px;
  }
  .top-link__btn {
    bottom: 2.5rem;
    right: 6%;
    gap: 1rem;
    font-size: 0.9375rem;
  }
  .top-link--full .top-link__btn {
    right: 3.4%;
  }
}
@media screen and (min-width: 1600px) {
  .top-links__inner {
    gap: 1.8rem;
  }
  .top-link__content {
    padding: 2.8rem;
  }
}
/* ========================================================
   Footer External Links
======================================================== */
.footer-ext-links {
  width: 85%;
  margin: 0 auto;
}
.footer-ext-links__inner {
  margin: 0 auto;
	max-width: 400px;
}
.footer-ext-links__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-ext-links__item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-left: 1px solid #e0e0e0;
}
.footer-ext-links__item:last-child {
  border-right: 1px solid #e0e0e0;
}
.footer-ext-links__item a {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    text-decoration: none;
    width: 45px;
}
.footer-ext-links__item a:hover {
  opacity: 0.7;
}
.footer-ext-links__item img {
  width: 100%;
  max-width: 75px;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
	.footer-ext-links {
    width: 50.22%;
    max-width: 725px;
}
	.footer-ext-links__item a {
    width: 100px;
}
.footer-ext-links__item img {
    max-width: 100px;
}
	.footer-ext-links__inner {
    max-width: unset;
}
}