#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#fff;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash_logo img {
  width: calc(70px * 2);
}

.splash-fade-up {
  animation-name: splash-fade-up-frames;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes splash-fade-up-frames {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  animation-duration: 3s;
  animation-delay: 12s;
}

#main-visual .movie {
  position: relative;
  width: 100vw;
  min-height: 835px;
}

#main-visual .movie > .video-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-53px);
  width: calc(1980px * 0.95);
}

#main-visual .movie > .video-wrap > video {
  width: 100%;
}

#main-visual .movie .heading {
  position: absolute;
  left: 1120px;
  top: 360px;
  z-index: 3;
  -ms-writing-mode: horizontal-tb;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 3.9rem;
  color: #A5A5A6;
}

#main-visual .movie .heading p {
  margin-left: 19px;
}

#main-visual .movie .heading p.animation {
  animation-duration: 28s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-name: heading-fade-in-up-frames;
}

@keyframes heading-fade-in-up-frames {
  0% {
    opacity: 0;
    transform: translateY(95px);
  }
  15% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  35.7% {
    opacity: 0;
    transform: translateY(95px);
  }
  100% {
    opacity: 0;
    transform: translateY(95px);
  }
}

#main-visual .movie .heading p.animation:nth-of-type(1) {
  animation-delay: 0.6s;
}

#main-visual .movie .heading p.animation:nth-of-type(2) {
  animation-delay: 0.9s;
}

#main-visual .movie .heading p.animation:nth-of-type(3) {
  animation-delay: 1.2s;
}

#main-visual .movie .heading p.animation:nth-of-type(4) {
  animation-delay: 1.5s;
}

#main-visual .movie .heading span {
  padding-right: 4px;
  padding-bottom: 6px;
  border-right: solid 2px #A5A5A6;
}

#main-visual .movie .scrolldown4{
	position: absolute;
  width: 150px;
  top: calc(100vh + 0px);
	left: 230px;
  z-index: 5;
	animation: arrowmove 1.5s ease-in-out infinite;
}

#main-visual .movie .clickable {
	position: absolute;
  width: 100px;
  height: 220px;
  top: calc(100vh - 150px - 3%);
	left: 310px;
  z-index: 6;
  cursor: pointer;
  display: block;
}

@keyframes arrowmove{
  /*
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
     */
      0%{top:calc(100vh + 100px - 1%);}
      50%{top:calc(100vh + 100px - 3%);}
     100%{top:calc(100vh +  100px - 1%);}
 }

#main-visual .movie .scrolldown4:before {
  content: "";
  position: absolute;
	bottom: 5vw;
  right: -12px;
  width: 2px;
  height: 40px;
  background: #A5A5A6;
  transform: skewX(-31deg);
}

#main-visual .movie .scrolldown4:after{
	content:"";
	position: absolute;
	bottom:5vw;
	right:0;
	width: 2px;
	height: 160px;
	background:#A5A5A6;
}

#business {
  margin-top: 100px;
  background-color: transparent;
}

#business .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 65px 60px;
  margin-top: 50px;
}

#business .list > div {
  position: relative;
  width: 315px;
  height: 300px;
}

#business .list .image {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#business .list .image.on {
  opacity: 0;
}

#business .list a:hover .image.off {
  opacity: 0;
}

#business .list a:hover .image.on {
  opacity: 1;
}

#archives {
  margin-top: 250px;
  position: relative;
}

#archives .back {
  position: absolute;
  width: 750px;
  right: -200px;
  top: -40%
}

.ex-more {
  position: absolute;
  bottom: -100px;
  right: 0;
  color: #A5A5A6;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  display: inline-block;
}

#instagram .ex-more {
  bottom: -50px;
}

.ex-more > a {
  color: #A5A5A6;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.ex-more .right-arrow {
  width: 75%;
  margin-left: auto;
  transition: transform 0.4s ease;
  transform: translate(40px, -15px);
}

.ex-more > a:hover ~ .right-arrow  {
  transform: translate(55px, -15px);
}

.ex-more .right-arrow .line {
  height: 30px;
  border-bottom: 2px solid #A5A5A6;
  border-right: 2px solid #A5A5A6;
  transform: skew(45deg);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 65px 41px;
  margin-top: 50px;
}

.card {
  width: 315px;
  position: relative;
}

.card > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.card .thumb-wrap {
  overflow: hidden;
}

.card .thumb {
  /*
  background: url('/assets/img/kawasakikids_img.jpg') no-repeat center;
  */
  background-size: cover;
  width: 100%;
  height: 315px;
  background-color: #e6e6e6;
  transition: all 0.25s ease;
}

.card a:hover ~ .thumb-wrap .thumb {
  /*
  transform: scale(1.1);
  */
  opacity: 0.8;
  transition: all 0.4s ease;
}

.card .title {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  color: #A5A5A6;
  margin-top: 10px;
  transition: all 0.25s ease;
}

.card a:hover ~ .title {
  color: #CCCCCC;
  transition: all 0.4s ease;
}

.card a:hover ~ .date {
  color: #91A8B5;
  transition: all 0.4s ease;
}

.card a:hover ~ .category {
  color: #91A8B5;
  border-color: #91A8B5;
  transition: all 0.4s ease;
}

.card .date {
  font-size: 2rem;
  color: #687A87;
  margin-top: 5px;
  transition: all 0.25s ease;
}

.card .category {
  display: inline-block;
  padding: 2px 10px 0px 10px;
  font-size: 2.2rem;
  color: #687A87;
  margin-top: 8px;
  border: 1px solid #687a87;
  border-radius: 25px;
  transition: all 0.25s ease;
}

.card .category a {
  color: #687A87;
}

#pickup {
  margin-top: 250px;
  position: relative;
}

#pickup .inner .heading h2 {
  letter-spacing: 0.3rem;
}

#pickup .back {
  position: absolute;
  width: 600px;
  left: 0px;
  top: -60px;
}

#instagram {
  margin-top: 250px;
}

#instagram .inner .heading h2 {
  letter-spacing: 0.2rem;
}

#fixed-top-link {
  position: fixed;
  cursor: pointer;
  right: 45px;
  bottom: 45px;
  z-index: 999;
  width: 65px;
}

#fixed-top-link img {
  width: 100%;
}

#fixed-contact-link {
  position: fixed;
  cursor: pointer;
  right: 45px;
  bottom: 130px;
  z-index: 999;
  width: 65px;
}

#fixed-contact-link img {
  width: 100%;
}