@charset "UTF-8";

/*============================
top_img
============================*/

#top_img {
  position: relative;
  padding: 0 60px;
  overflow: hidden;
}

#zoom {
  overflow: hidden;
  width: 100%;
  margin: auto;
  height: 0;
  padding-top: 80vh;
  min-height: 600px;
}

/*IE対応用(ガクつき防止)*/

.zs-enabled .zs-slideshow .zs-slides .zs-slide {
  transform: scale(1.2, 1.2) rotate(0.1deg);
}

#catch {
  position: absolute;
  width: 403.5px;
  height: 316.4px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
}

#catch h1 {
  background: url(../images/home/catch.png) no-repeat center;
  -webkit-background-size: 100%;
  background-size: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 78.4386%;
}

/*Scroll*/

.scroll {
  position: absolute;
  bottom: 0;
  right: 20px;
}

.scroll a {
  display: block;
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding: 10px 10px 160px;
  overflow: hidden;
  line-height: 1;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}

.scroll a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 140px;
  background: #111;
}

.scroll a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #f1f1f1;
  height: 30px;
  animation: sdl 2s ease infinite;
}

@keyframes sdl {
  0% {
    transform: translateY(-110px);
  }

  50%,
  100% {
    transform: translateY(50px);
  }
}

.scroll a:hover {
  opacity: 1;
}

@media only screen and (max-width: 1040px) {
  #top_img {
    padding: 60px 20px 0;
  }

  #zoom {
    padding-top: 70vh;
    min-height: 400px;
  }

  #catch {
    width: 260px;
    height: 200px;
  }

  .scroll {
    display: none;
  }
}



/*============================
トップ共通
============================*/

article {
  padding-top: 160px;
}

@media only screen and (max-width: 1040px) {
  article {
    padding-top: 80px;
  }
}

/*
h2
============================*/

article h2 span {
  display: inline-block;
  line-height: 1;
}

article h2 .eng,
article h2 .eng-small {
  background-color: #fff;
  padding: 4px 10px 4px 0;
}

article h2 .eng {
  font-size: 70px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

article h2 .eng-small {
  font-size: 40px;
  margin-top: 20px;
  letter-spacing: 0.02em;
}

@media only screen and (max-width: 1040px) {
  article h2 .eng {
    font-size: 40px;
    margin-bottom: 5px;
  }

  article h2 .eng-small {
    font-size: 20px;
    margin-top: 10px;
  }
}

/*
top-link
============================*/

.top-link {
  text-align: right;
  line-height: 1;
  margin-top: 50px;
}

.top-link a {
  display: inline-block;
  font-size: 26px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  position: relative;
  padding-right: 70px;
}

.top-link a:hover {
  opacity: 1;
}

.top-link a::before,
.top-link a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: all 0.4s ease;
}

.top-link a::before {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1.5px solid #111;
}

.top-link a:hover::before {
  background-color: #111;
}

.top-link a::after {
  width: 12px;
  height: 12px;
  border-top: solid 1.5px #222;
  border-right: solid 1.5px #222;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 24px;
}

.top-link a:hover::after {
  border-color: #fff;
}

@media only screen and (max-width: 1040px) {
  .top-link {
    margin-top: 40px;
  }

  .top-link a {
    font-size: 20px;
    padding-right: 55px;
  }

  .top-link a::before {
    width: 40px;
    height: 40px;
  }

  .top-link a::after {
    width: 8px;
    height: 8px;
    right: 20px;
  }
}

/*============================
concept
============================*/

#concept {
  position: relative;
}

#concept::after {
  content: '';
  display: block;
  background: url(../images/home/about/illust.svg) no-repeat center;
  width: 630px;
  height: 375px;
  position: absolute;
  -webkit-background-size: 100%;
  background-size: 100%;
  top: 430px;
  left: 4vw;
}

#concept h2 {
  position: absolute;
  top: 4%;
  left: 10vw;
  z-index: 10;
}

#concept .box {
  width: 52%;
  margin-left: auto;
  position: relative;
  z-index: 5;
}

#concept .photo img {
  width: 100%;
}

@media only screen and (max-width: 1040px) {
  #concept {
    position: relative;
  }

  #concept::after {
    width: 300px;
    height: 185px;
    top: -10px;
    left: -20px;
  }

  #concept h2 {
    top: auto;
    left: 0;
    bottom: 30px;
  }

  #concept .box {
    width: 70%;
  }

  #concept .top-link {
    margin-top: 110px;
  }
}

/*============================
works
============================*/

#works h2 .eng,
#works h2 .eng-small {
  background-color: transparent;
  padding: 0;
  margin: 0;
  line-height: 1;
}

/*
swiper
============================*/

#works .swiper-container-bg {
  position: relative;
}

#works .swiper-control-container {
  position: absolute;
  width: 110px;
  top: -85px;
  right: 0;
}

#works .swiper-control-container .swiper-button-prev,
#works .swiper-control-container .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #111;
}

#works .swiper-control-container .swiper-button-next:after,
#works .swiper-control-container .swiper-button-prev:after {
  color: #fff;
  font-size: 15px;
}

#works .swiper-control-container .swiper-button-prev {
  left: 0;
}

#works .swiper-control-container .swiper-button-next {
  right: 0;
}

#works .swiper-container .swiper-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

#works .swiper-container .swiper-wrapper .swiper-slide {
  height: 100%;
}

#works .swiper-container .swiper-wrapper .swiper-slide a {
  display: block;
  position: relative;
}

#works .swiper-container .swiper-wrapper .swiper-slide a:hover {
  opacity: 1;
}

#works .swiper-container .swiper-wrapper .swiper-slide a .photo {
  overflow: hidden;
  height: 300px;
  width: 100%;
}

#works .swiper-container .swiper-wrapper .swiper-slide .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#works .swiper-container .swiper-wrapper .swiper-slide .text {
  width: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(17, 17, 17, 0.6));
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 40px 20px 10px 20px;
}

#works .swiper-container .swiper-wrapper .swiper-slide .text .title {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

@media only screen and (max-width: 1040px) {

  #works .swiper-control-container {
    width: 86px;
    top: 0;
    right: 0;
  }

  #works .swiper-control-container .swiper-button-prev,
  #works .swiper-control-container .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  #works .swiper-control-container .swiper-button-next:after,
  #works .swiper-control-container .swiper-button-prev:after {
    font-size: 13px;
  }

  #works .swiper-container .swiper-wrapper .swiper-slide a .photo {
    height: 260px;
  }

  #works .swiper-container .swiper-wrapper .swiper-slide .text .title {
    font-size: 15px;
  }
}

/*============================*/

#works .top-link {
  text-align: center;
  margin-top: 60px;
  margin-right: -40px;
}

@media only screen and (max-width: 1040px) {
  #works .top-link {
    text-align: right;
    margin-top: 40px;
    margin-right: 0;
  }
}

/*============================
flow
============================*/

#flow {
  padding-top: 170px;
}

#flow h2 {
  text-align: right;
  position: relative;
  z-index: 10;
}

#flow h2 .eng,
#flow h2 .eng-small {
  background-color: #fff;
  padding: 4px 0 4px 10px;
}

#flow .box {
  position: absolute;
  right: 10vw;
  top: 18%;
}

#flow .photo {
  width: 52%;
}

#flow .photo img {
  width: 100%;
}

@media only screen and (max-width: 1040px) {
  #flow {
    padding-top: 80px;
  }

  #flow h2 .jp {
    font-size: 15px;
  }

  #flow .box {
    right: 0;
    top: auto;
    bottom: -95px;
  }

  #flow .photo {
    width: 70%;
  }
}

/*============================
about
============================*/

#about {
  padding-top: 200px;
  padding-bottom: 160px;
}

#about h2 .eng,
#about h2 .eng-small {
  background-color: transparent;
  padding: 0;
  margin: 0;
  line-height: 1;
}

#about .photo img {
  width: 100%;
}

#about .flex {
  margin-top: 35px;
}

#about .text h3 {
  font-size: 20px;
  font-weight: 600;
}

#about .text .tel {
  margin-top: 10px;
}

#about .text .tel .eng {
  font-size: 20px;
  font-weight: 600;
}

#about .text .tel .time {
  margin-left: 10px;
}

#about .top-link {
  margin-top: 20px;
}

@media only screen and (max-width: 1040px) {

  #about {
    padding-top: 160px;
    padding-bottom: 80px;
  }

  #about .flex {
    margin-top: 20px;
    display: block;
  }

  #about .text h3 {
    font-size: 18px;
    font-weight: 600;
  }

  #about .text p {
    font-size: 14px;
  }

  #about .text .tel {
    margin-top: 10px;
  }

  #about .text .tel .eng {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
  }

  #about .text .tel .time {
    margin-left: 10px;
    font-size: 13px;
    letter-spacing: 0;
  }

  #about .top-link {
    margin-top: 40px;
  }

}
