/* stylelint-disable no-descending-specificity */
/* stylelint-disable-next-line at-rule-no-unknown */
/* stylelint-disable-next-line scss/double-slash-comment-empty-line-before */
/* $accent-color: #194569; */
/* $link-color: #194569; */
.hero {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  /* height: calc(100vh - 50px);
  height: calc(100svh - 50px);
  height: calc(100dvh - 50px);
  height: calc(100vh);
  height: calc(100svh); */
}

.hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-swiper.swiper-initialized .hero-slide {
  opacity: 1;
  transition: opacity 0.6s ease;
  transition-delay: 0.3s;
}

.hero-swiper-slide.swiper-slide-active .hero-slide-title,
.hero-swiper-slide.swiper-slide-active .hero-slide-text {
  opacity: 1;
  transform: translate(-50%, 0);
}
.hero-swiper-slide.swiper-slide-active .hero-slide-title {
  transition-delay: 0.8s;
}
.hero-swiper-slide.swiper-slide-active .hero-slide-text {
  transition-delay: 0.9s;
}
.hero-swiper-slide.swiper-slide-end .hero-slide-title,
.hero-swiper-slide.swiper-slide-end .hero-slide-text {
  opacity: 0;
  transform: translate(-50%, -30px);
}
.hero-swiper-slide.swiper-slide-active .hero-slide-bg-img, .hero-swiper-slide.swiper-slide-prev .hero-slide-bg-img {
  animation: zoomout 9s linear 0s 1 normal both;
}

.hero-slide {
  opacity: 0;
  position: relative;
  height: 100%;
}

.hero-slide-bg {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.hero-slide-bg::before {
  content: "";
  display: block;
  opacity: 1;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/mask.webp");
  background-repeat: repeat;
  background-position: center center;
  background-size: 3px;
}
.hero-slide-bg .hero-slide-bg-img {
  display: block;
  position: relative;
  z-index: 0;
  height: 100%;
}
.hero-slide-bg .hero-slide-bg-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.hero-slide-title,
.hero-slide-text {
  opacity: 0;
  position: absolute;
  z-index: 2;
  left: 50%;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.2, 1), opacity 0.8s;
}

.hero-slide-title {
  top: 40%;
  transform: translate(-50%, 60px);
  font-size: 7.7333333333vw;
}

.hero-slide-text {
  top: 55%;
  transform: translate(-50%, 60px);
  font-size: 4.2666666667vw;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 70px;
  height: 80px;
}
.hero-scroll a {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-scroll a::after {
  content: "";
  opacity: 0;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  height: 30px;
  background: #fff;
  animation: scrollMove 1.4s ease-in-out infinite;
}
.hero-scroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
}

.section-wrap {
  position: relative;
  z-index: 1;
  background-color: #f3f3f3;
}

.section {
  padding: 3.5em 0;
}

.section-title .en {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 7.7333333333vw;
}
.section-title .ja {
  font-size: 4vw;
}

.section-about {
  overflow: hidden;
  position: relative;
}
.section-about .section-title {
  margin-bottom: 2em;
}
.section-about .section-title .ja {
  display: block;
}
.section-about .section-inner {
  position: relative;
  z-index: 1;
}

.about-bg-logo {
  position: absolute;
  z-index: 0;
  bottom: -6%;
  left: 27%;
  width: 100%;
  aspect-ratio: 1/1;
}
.about-bg-logo svg {
  fill: rgba(255, 255, 255, 0.7);
}

.about-text {
  margin-bottom: 2em;
}

.section-service {
  background: linear-gradient(130deg, rgb(40, 40, 40) 2.5%, rgb(39, 40, 40) 2.5%, rgb(39, 94, 125) 100%);
  color: #f3f3f3;
}
.section-service .section-title {
  margin-bottom: 2em;
  text-align: center;
}
.section-service .section-title .ja {
  display: block;
}

.service-list {
  margin-bottom: 2em;
}

.service-item {
  margin-bottom: 1em;
  background-color: #fff;
}
.service-item a {
  display: block;
  padding: 1em 4% 1.5em;
  color: #333;
  pointer-events: none;
}

.service-item-img {
  overflow: hidden;
  margin-bottom: 1.5em;
}
.service-item-img img {
  aspect-ratio: 1.75/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-item-title {
  font-size: 4.2666666667vw;
  margin-bottom: 1em;
  font-weight: 500;
}

.service-item-text {
  text-align: justify;
}

.service-more-btn {
  text-align: center;
}

.service-no-post {
  padding: 1em 0;
  text-align: center;
}

.section-news .section-title,
.section-works .section-title {
  margin-bottom: 1em;
}
.section-news .section-title .en,
.section-works .section-title .en {
  margin-right: 0.5em;
}

.section-works {
  overflow: hidden;
  background-color: #fff;
}

.works-swiper {
  overflow: visible;
  margin-bottom: 2em;
  padding-bottom: 3em;
}
.works-swiper.swiper-initialized .works-slide {
  opacity: 1;
  transition: opacity 0.6s ease;
  transition-delay: 0.3s;
}

.works-swiper-slide {
  max-width: 80%;
  height: auto;
}

.works-slide {
  opacity: 0;
  height: 100%;
}
.works-slide a {
  display: block;
  padding: 1em 5% 1.5em;
  height: 100%;
  background-color: #f3f3f3;
  color: #333;
}

.works-img {
  overflow: hidden;
  margin-bottom: 1.5em;
}
.works-img img {
  aspect-ratio: 1.75/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.works-date {
  margin-bottom: 0.3em;
  font-size: 3.2vw;
  color: #aaa;
}

.works-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.works-swiper-scrollbar {
  height: 2px !important;
}
.works-swiper-scrollbar .swiper-scrollbar-drag {
  cursor: grab;
}

.works-more-btn {
  text-align: center;
}

.works-no-post {
  padding: 1em 0;
  text-align: center;
}

.news-list {
  margin-bottom: 2em;
  border-top: 1px solid #ccc;
}

.news-item {
  padding: 1em 0;
  border-bottom: 1px solid #ccc;
}

.news-date {
  margin-bottom: 0.3em;
  font-size: 3.2vw;
}

.news-more-btn {
  text-align: center;
}

.news-no-post {
  padding: 1em 0;
  text-align: center;
}

.section-instagram {
  background-color: #c8c8c8;
}
.section-instagram .section-title {
  margin: 0 auto 1em;
  width: 54%;
}

.instagram-list {
  display: flex;
  flex-wrap: wrap;
}

.instagram-item {
  margin: 0 4% 1em 0;
  width: 48%;
}
.instagram-item:nth-of-type(2n) {
  margin-right: 0;
}
.instagram-item a {
  display: block;
  overflow: hidden;
}
.instagram-item a img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 769px) {
  .hero {
    /* height: calc(100vh - 80px);
    height: calc(100svh - 80px);
    height: calc(100vh);
    height: calc(100svh); */
    aspect-ratio: 16/9;
  }
  .hero-slide-title {
    top: 40%;
    font-size: 42px;
    font-size: 4.2rem;
  }
  .hero-slide-text {
    top: 55%;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .section {
    padding: 80px 0;
  }
  .section-title .en {
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: 42px;
    font-size: 4.2rem;
  }
  .section-title .ja {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .section-about .section-title {
    margin-bottom: 40px;
  }
  .section-about .section-inner {
    max-width: 1000px;
  }
  .about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .about-bg-logo {
    bottom: -30%;
    left: 50%;
    width: 530px;
  }
  .about-text {
    flex: 1;
    margin-bottom: 0;
    padding-right: 10%;
  }
  .about-more-btn {
    width: 245px;
  }
  .section-service .section-title {
    margin-bottom: 40px;
  }
  .service-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .service-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .service-item:nth-of-type(1) {
    margin-right: 2%;
    width: 49%;
  }
  .service-item:nth-of-type(2) {
    width: 49%;
  }
  .service-item:nth-of-type(n + 3) {
    margin-right: 2%;
    width: 32%;
  }
  .service-item:nth-of-type(3n + 5) {
    margin-right: 0;
  }
  .service-item a {
    flex-grow: 1;
    padding: 25px 25px 30px;
  }
  .service-item a.pcmo:hover {
    background-color: #fff;
    color: #333;
  }
  .service-item a.pcmo:hover .service-item-img img {
    opacity: 1;
    transform: scale(1.05);
  }
  .service-item a.pcmo:hover .service-item-arrow .arrow.first {
    opacity: 0;
    transform: translateX(16px);
  }
  .service-item a.pcmo:hover .service-item-arrow .arrow.second {
    opacity: 1;
    transform: translateX(0);
  }
  .service-item-img {
    margin-bottom: 30px;
  }
  .service-item-img img {
    transition: transform 0.3s ease;
  }
  .service-item-title {
    font-size: 20px;
    font-size: 2rem;
  }
  .works-swiper {
    margin-bottom: 40px;
    padding-bottom: 50px;
  }
  .works-swiper-slide {
    max-width: 370px;
  }
  .works-slide a {
    padding: 25px 25px 30px;
  }
  .works-slide a.pcmo:hover {
    color: #333;
  }
  .works-slide a.pcmo:hover .works-img img {
    opacity: 1;
    transform: scale(1.05);
  }
  .works-img {
    margin-bottom: 30px;
  }
  .works-img img {
    transition: transform 0.3s ease;
  }
  .works-date {
    margin-bottom: 10px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .section-news .section-inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: 200px;
  }
  .section-news .section-title {
    margin-bottom: 1em;
    width: 203px;
    text-align: center;
  }
  .section-news .section-title .en {
    margin-right: 0;
  }
  .section-news .section-title .ja {
    display: block;
  }
  .news-list {
    width: 68%;
    border-top: 1px solid #ccc;
  }
  .news-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
  }
  .news-date {
    margin-bottom: 0;
    width: 120px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .news-title {
    flex: 1;
  }
  .news-more-btn {
    /* width: 100%;
    text-align: right; */
    position: absolute;
    top: 140px;
  }
  .news-no-post {
    width: 68%;
  }
  .section-instagram {
    padding-bottom: 100px;
  }
  .section-instagram .section-title {
    margin: 0 auto 30px;
    width: 220px;
  }
  .instagram-item {
    margin: 0 2% 0 0;
    width: 15%;
  }
  .instagram-item:nth-of-type(2n) {
    margin-right: 2%;
  }
  .instagram-item:nth-of-type(6n) {
    margin-right: 0;
  }
  .instagram-item a img {
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  .instagram-item a.pcmo:hover img {
    opacity: 1;
    transform: scale(110%);
    filter: brightness(50%);
  }
}/*# sourceMappingURL=home.css.map */