@charset "UTF-8";
/* heading */

.heading {
  width: 85%;
  margin: 0 auto;
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translate(-50%, 0);
}

.heading-ttl {
  font-size: 1.2rem;
  text-align: right;
  font-weight: 500;
}

/* 背景レイヤー */
.bg-controller {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

/* メイン構造ラッパー */
.wrapper {
  position: relative;
  z-index: 1;
}

/*---画像マスクアニメ---*/
.mask-fade-img {
  width: 100%;
  display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s ease-out;
}

.contact-wrapper {
  background: none;
}

/*---loop---*/
.loop {
  width: 100%;
  height: auto;
  position: absolute;
  top: 85%;
  left: 0;
  mix-blend-mode: difference;
  pointer-events: none;
}

.loop-wrap {
  width: 500vw;
  height: auto;
  display: flex;
  overflow: hidden;
}

.loop-list {
  width: calc(100%/3);
  list-style: none;
  animation: infinity-scroll-left2 40s infinite linear 0.5s both;
  -webkit-animation: infinity-scroll-left2 40s infinite linear 0.5s both
}

.loop-item {
  width: 100%;
  height: auto;
}

.loop-item>img {
  display: block;
  width: 100%;
}

/*--------------------------------------
 breadcrumb
---------------------------------------*/
.breadcrumb {
  width: 90%;
  margin: 20px auto 0 auto;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

.breadcrumb ol {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: auto;
  padding: 0.5em 30px;
  box-sizing: border-box;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, .2);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 12px;
  height: 0.5px;
  background-color: #ccc;
  margin: 0 0.8em;
}

.breadcrumb li:last-child {
  color: #5AC8D1;
}

.breadcrumb li>a i {
  margin-right: 5px;
}

@keyframes infinity-scroll-left2 {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }

  99.9%,
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}


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

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

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

@media screen and (max-width:787px) {
  .loop {
    top: 90%;
  }

}

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

@media screen and (max-width:480px) {
  .heading {
    top: 80px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .heading-ttl {
    font-size: 1rem;
    transform: scale(.8);
    transform-origin: right;
  }

  .loop {
    top: 90%;
  }

  .loop-wrap {
    width: 800vw;
  }

  /*---breadcrumb---*/
  .breadcrumb ol {
    font-size: 1rem;
    padding: 0.5em 14px;
  }
}