#wrap {
  padding-top: 0;
}
#wrap:before, #wrap:after {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1;
  content: "";
}
#wrap:before {
  top: 0;
  height: 16rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

#header {
  transition: 0.3s;
}
#header #h1 a {
  background-image: url(../img/logo_main.png);
}
#header .right .btn_menu:before, #header .right .btn_menu:after, #header .right .btn_menu span {
  background-color: #fff;
}
#header #gnb {
  color: #fff;
}
#header #gnb .on .d1_link {
  color: #fff;
}
#header.active .right .btn_menu:before, #header.active .right .btn_menu:after, #header.active .right .btn_menu span {
  background-color: #000;
}

#visual video {
  width: 100%;
  height: var(--100vh);
  -o-object-fit: cover;
     object-fit: cover;
}
#visual .contents {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(var(--100vh));
  margin-top: -100dvh;
  padding-top: var(--header-height);
  color: #fff;
  text-shadow: 0 0 8rem rgba(0, 0, 0, 0.5);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
}
#visual .wrap_tit {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
}
#visual .wrap_tit .title {
  display: block;
  font-size: 4.4rem;
}
#visual .wrap_tit .desc {
  margin-top: 4rem;
  font-size: 2.4rem;
}
#visual .wrap_tit .desc span {
  display: block;
  text-align: right;
}
#visual .wrap_tit .desc span + span {
  font-size: 0.9em;
}
#visual .business {
  width: 100%;
  overflow: hidden;
  padding-bottom: 6rem;
}
#visual .business .tit_business {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
#visual .business .tit_business .tit {
  font-size: 2rem;
  font-family: var(--cormorant);
  font-weight: 700;
}
#visual .business .tit_business:before, #visual .business .tit_business:after {
  display: block;
  flex-grow: 1;
  height: 1px;
  background: #fff;
  opacity: 0.2;
  content: "";
}
#visual .business .slider {
  display: flex;
  gap: 12.5vw;
  margin-top: 6rem;
}
@media screen and (max-height: 900px) {
  #visual .business .slider {
    margin-top: 6vh;
  }
}
#visual .business .slider .inner {
  display: block;
  position: relative;
  padding-top: 2.6rem;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.75);
}
#visual .business .slider .tit {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 3.2rem;
  font-family: var(--cormorant);
  z-index: 2;
  line-height: 1;
}
#visual .business .slider .img {
  position: relative;
}
#visual .business .slider .img .inner_img {
  overflow: hidden;
}
#visual .business .slider .img img {
  filter: grayscale(70%);
  transition: 0.5s;
}
#visual .business .slider .deco {
  position: absolute;
  top: 50%;
  right: -1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.6rem;
  padding: 0 0.8rem;
  transform: translateY(-50%);
  border-radius: 3.6rem;
  background: var(--blue-dark);
  z-index: 2;
}
#visual .business .slider .deco span {
  display: block;
  width: 0;
  font-size: 1.4rem;
  font-weight: 700;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  white-space: nowrap;
}
#visual .business .slider .deco:after {
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../img/arrow04.svg) no-repeat center/contain;
  transform: rotate(180deg);
  filter: var(--filter-white);
  content: "";
}
#visual .business .slider .conts {
  text-align: right;
  margin-top: 8px;
  font-weight: bold;
}
@media screen and (min-width: 1440px) {
  #visual .business .slider .inner:hover {
    color: #fff;
  }
  #visual .business .slider .inner:hover .img img {
    filter: none;
    transform: scale(1.1);
  }
  #visual .business .slider .inner:hover .deco {
    gap: 0.8rem;
  }
  #visual .business .slider .inner:hover .deco span {
    width: 72px;
  }
}
@media screen and (max-width: 1024px) {
  #visual .business .slider {
    gap: 48px;
  }
}
@media screen and (max-width: 786px) {
  #visual .wrap_tit {
    padding: 0 20px;
  }
  #visual .wrap_tit .title {
    font-size: 22px;
    line-height: 1.4;
  }
  #visual .wrap_tit .desc {
    font-size: 14px;
    font-weight: 500;
  }
  #visual .business .tit_business .tit {
    font-size: 13px;
  }
  #visual .business .slider {
    margin-top: 12px;
    gap: 20px;
  }
  #visual .business .slider .inner {
    padding-top: 16px;
  }
  #visual .business .slider .tit {
    font-size: 20px;
  }
  #visual .business .slider .img img {
    filter: unset;
    width: 100%;
    height: 20vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #visual .business .slider .deco {
    display: none;
  }
  #visual .business .slider .conts {
    font-size: 14px;
    line-height: 1.2;
    font-size: 12px;
    text-align: center;
  }
}

#footer {
  background: #000;
  color: rgba(255, 255, 255, 0.8);
}
#footer .ft_logo {
  background-image: url(../img/logo_white.png);
}