@charset "utf-8";

/*--------------------------------------------------------------

home

--------------------------------------------------------------*/

.page-home .main {
  margin-top: 0;
}

/* ローディング画面 */
#loader {
  position: fixed;
  width: 100%;
  height: 100dvh;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: var(--cl-key);
  z-index: 191;
}
.loader-pic {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20rem;
  height: 2.4rem;
  margin: 0 auto;
  animation: 2s linear infinite flash;
  transform: translate(-50%, -50%);
}
@media print, screen and (min-width: 768px) {
  .loader-pic {
    width: 30rem;
    height: auto;
  }
}
/* ローディングアニメーション */
@keyframes flash {
  /* 点滅 */
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

body.page-home {
  height: 100%;
  overflow: hidden;
}

[data-loading="true"].page-home:not(.is-open) {
  height: auto;
  overflow: initial;
}

.kv {
  position: relative;
}
.kv::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 16rem;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 10;
}
.kv-catch {
  position: absolute;
  bottom: 6rem;
  left: 2rem;
  z-index: 3;
  color: var(--cl-wh);
}
.kv-catch-en {
  font-size: 3.6rem;
  line-height: 1.2;
}
.kv-catch-title {
  margin-top: 1.5rem;
  font-weight: 600;
}
.kv-slider {
}
.kv-slider::before,
.kv-slider::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(/assets/images/home/kv_bg_on.png) no-repeat center / cover;
  z-index: 1;
}
.kv-slider::after {
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.kv-slider ul {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding-bottom: 50%;
}
.kv-slider ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation-iteration-count: infinite;
  animation-duration: 32s;
}
.kv-slider ul li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kv-slider ul li:nth-child(1) {
  animation-name: slider;
  animation-delay: -3s;
}
.kv-slider ul li:nth-child(2) {
  animation-name: slider;
  animation-delay: 5s;
  opacity: 0;
}
.kv-slider ul li:nth-child(3) {
  animation-name: slider;
  animation-delay: 13s;
  opacity: 0;
}
.kv-slider ul li:nth-child(4) {
  animation-name: slider;
  animation-delay: 21s;
  opacity: 0;
}

@keyframes slider {
  0% {
    opacity: 0;
  }
  20.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  45.83% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media print, screen and (min-width: 640px) {
  .kv-catch {
    bottom: 14rem;
    left: 4rem;
  }
  .kv-catch-en {
    font-size: 6rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
  .kv-catch-title {
    margin: 1.5rem 0 0 0.5rem;
    font-size: 1.8rem;
  }
  .kv-slider ul {
    height: 80rem;
  }
}
@media print, screen and (min-width: 1190px) {
  .kv-catch {
    left: calc(((100vw - 111rem) / 2) * 1);
  }
}

.about {
  position: relative;
  background: url(/assets/images/common/bg.jpg) no-repeat center / cover;
}
.about::after {
  position: absolute;
  top: 2rem;
  right: 2rem;
  content: "";
  display: block;
  width: 70%;
  height: 60%;
  background: url(/assets/images/home/about_bg.svg) no-repeat center / contain;
  z-index: 1;
}

@media print, screen and (min-width: 640px) {
  .about::after {
    top: 50%;
    right: calc(((100vw - 111rem) / 2) * 1);
    width: 57.4rem;
    height: 57.4rem;
    transform: translate(0, -50%);
  }
  .about-txt {
    max-width: 43.5rem;
  }
}
@media print, screen and (min-width: 1300px) {
  .about::after {
    right: calc(((100vw - 130rem) / 2) * 1);
  }
}

.hu590 .c-bgWrap {
  background-image: url(/assets/images/home/hu590_bg.jpg);
}
.hu590-catch {
  margin-bottom: 2rem;
  font-size: 2.8rem;
}

@media print, screen and (min-width: 640px) {
  .hu590-catch {
    margin-bottom: 5.2rem;
    font-size: 6rem;
  }
}

.business-lead {
}
.business .c-menuList {
  margin-top: 4rem;
}

@media print, screen and (min-width: 640px) {
  .business-lead {
    display: grid;
    grid-template-columns: 1fr 34rem;
    align-items: flex-end;
  }
  .business .c-menuList {
    margin-top: 6rem;
  }
}

.company {
  position: relative;
}
.company::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: calc(100% - 4rem);
  height: 100%;
  background: url(/assets/images/common/bg.jpg) no-repeat center / cover;
  z-index: -1;
}
.company-menu {
  margin-top: 4rem;
}
.company-menu .u-btn {
  text-align: left;
  max-width: initial;
}
.company-menu .u-btn a {
  padding-inline: 2rem;
  border-left: none;
  border-right: none;
}
.company-menu .u-btn + .u-btn a {
  border-top: none;
}
.company .c-pageLead-pic {
  margin-top: 4rem;
}
.company .c-pageLead {
  margin-top: 0;
}
.company .c-pageLead > *:nth-child(1) {
  padding-right: 5rem;
}

@media print, screen and (min-width: 640px) {
  .company::before {
    width: calc(100% - (((100vw - 111rem) / 2) * 1));
  }
  .company-menu {
    margin-top: 6rem;
  }
  .company .c-pageLead > *:nth-child(1) {
    padding-right: 0;
  }
  .company .c-pageLead-pic {
    margin-top: 0;
  }
}

.document.c-secwrap {
  padding-top: 0;
}
.document .c-bgWrap {
  background-image: url(/assets/images/home/document_bg.jpg);
}
@media print, screen and (min-width: 640px) {
}

.recruit {
}
.recruit-catch {
  align-items: center;
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  z-index: 1;
}
.recruit-catch ul {
  animation: flowing 200s linear infinite;
  font-size: 20px;
  transform: translateX(100%);
  margin: 0;
  padding: 0;
}
.recruit-catch ul li {
  display: inline-block;
  padding-right: 1rem;
  color: var(--cl-key);
  opacity: 0.05;
  font-size: 10rem;
}
@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.recruit .c-bgWrap {
  position: relative;
  margin-top: -4rem;
  background-image: url(/assets/images/home/recruit_bg.jpg);
  z-index: 2;
}

@media print, screen and (min-width: 640px) {
  .recruit-catch ul li {
    font-size: 15rem;
  }
  .recruit .c-bgWrap {
    margin-top: -8rem;
  }
  .recruit .c-bgWrap .u-inner > * {
    max-width: 43.5rem;
    margin-inline: auto 0;
  }
  .recruit .c-bgWrap .u-inner .u-btn a {
    max-width: 34rem;
  }
}

.news.c-secwrap {
  padding-top: 15rem;
  padding-bottom: 12rem;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 12rem;
}
.news-wrap {
  display: flex;
  justify-content: space-between;
}
.news-left-wrap {
  width: 24.5rem;
}

.news-wrap .news-list {
  width: 72rem;
}
@media screen and (min-width: 640px) {
   .sp-only{
    display: none !important;
   }
}
@media print, screen and (max-width: 639px) {
  .pc-only{
    display: none !important;
  }
  .news.c-secwrap {
    padding-top: 6rem;
    padding-bottom: 7.5rem;
    margin-bottom: 6rem;
  }
  .news-wrap {
    flex-direction: column;
    gap: 4rem;
  }

  .news-left-wrap {
    width: 100%;
  }

  .news-wrap .news-list {
    width: auto;
  }

  .newsList-item a{
    padding: 1.5rem 0 !important;
  }

  .newsList-item:last-child{
    border-bottom: 1px solid #e5e5e5;
  }
}
