@charset "utf-8";

/* ローディングアニメーション */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1F4A58;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
}

.loading.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-container {
  text-align: center;
}

.loading-images {
  position: relative;
  width: 39.2rem;
  height: 12.1rem;
  margin: 0 auto;
}

.loading-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  /* transform: scale(0.8); */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.loading-img.active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 767px) {
  .loading-images {
    width: 28rem;
    height: 8.6rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   MV

--------------------------------------------------------------------------------------------- */
.swiper,
.swiper-wrapper,
.swiper-slide {
  scroll-snap-type: none !important;
  scroll-snap-align: none !important;
}
#mv {
  position: relative;
  overflow: hidden;
}
.mv_img {
  position: relative;
  z-index: 3;
  opacity: 0;
}
.mv_img img {
  width: 100%;
}

.mv_copy {
  font-weight: bold;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  z-index: 5;
  color: #fff;
  position: absolute;
}
.mv_copy p {
  line-height: 1.2em;
}
.mv_scroll_down{
  position:absolute;
  bottom: 0px;
  right : 5%;
  font-weight: 700;
  z-index: 5;
  opacity: 0;
}

.mv_scroll_down a {
  position: absolute;
  left: 1rem;
  bottom: 11rem;
  color: #fff;
  font-size: 1.4rem;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.mv_scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -.5rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--mainColor);
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
  z-index: 6;
}

@keyframes circlemove{
  0%{bottom:16rem;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.mv_scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:.2rem;
  height: 16rem;
  background:#fff;
}
#mv_lottie {
  position: fixed;
  z-index: -1;
  opacity: .1;
  mix-blend-mode: screen;
}
.mv_copy_text {
  visibility: hidden;
}
.mv_copy_text .txt-wrap {
  line-height: 1.3;
}
#mv_nav {
  position: absolute;
  z-index: 10;
  font-weight: 700;
  opacity: 0;
}
#mv_nav li {
  text-align: right;
}

.mv_obi {
  opacity: 0;
}


@media only screen and ( max-width : 767px ) {
  #mv {
    /* padding-top: 18rem; */
    max-height: 100svh;
    height: 100svh;
  }
  .mv_img {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
  }
  .mv_copy {
    font-size: 7.2rem;
    left: 1rem;
    bottom: 1rem;
    letter-spacing: .1em;
  }
  .mv_scroll_down {
    right: 12%;
  }
  #mv_nav {
    font-size: 3.733vw;
    right: 1rem;
    top: 34.667vw;
  }
  #mv_nav li {
    margin-bottom: 4vw;
  }
  #mv_lottie {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 420%;
    height: auto;
  }
}

@media print, screen and ( min-width : 768px ) {
  #mv {
  }
  .mv_img {
    width: 40.78%;
    left: 50%;
    transform: translateX(-50%);
  }
  .mv_copy {
    font-size: 8.79vw;
    left: 6.15vw;
    bottom: 4.03vw;
    letter-spacing: .2em;;
  }
  #mv .mv_obi {
    bottom: 8vw;
  }
  #mv_nav {
    font-size: 1.171vw;
    right: 2.196vw;
    top: 14rem;
  }
  #mv_nav li {
    margin-bottom: 2.2vw;
  }
  #mv_lottie {
    left: -7%;
    right: -7%;
    bottom: 0;
    width: 120%;
    /* height: 100%; */
  }
}

/* ---------------------------------------------------------------------------------------------

　   PICKUP

--------------------------------------------------------------------------------------------- */
#pickup {
  overflow: hidden;
}
/*#pickup .slick-list {
  overflow: visible;
}*/
.pickup_content {
  position: relative;
}


/* ===== 共通（矢印のベース） ===== */
#pickup .swiper-button-prev,
#pickup .swiper-button-next {
  position: absolute;
  z-index: 99;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  top: auto;
  font-size: 0;
  line-height: 0;
  width: 5.6rem;
  height: 5.6rem;
}

#pickup .swiper-button-prev::after,
#pickup .swiper-button-next::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== 背景アイコン指定 ===== */
#pickup .swiper-button-prev::after {
  background-image: url(../img/prev.svg);
}
#pickup .swiper-button-next::after {
  background-image: url(../img/next.svg);
}

/* ===== 無効化されたときのopacity調整 ===== */
#pickup .swiper-button-disabled::after {
  opacity: 0.25;
}



#pickup .top-slide__item {
}
#pickup .top-slide__fig {
  position: relative;
}


#pickup .slick-track {
  display: flex;
}
#pickup .slick-slide {
  height: auto !important;
}

@media only screen and ( max-width : 767px ) {
  .pickup_title .btn {
    display: none;
  }
  .pickup_content {
    margin-right: -2rem;
    margin-left: -2rem;
    /* margin-left: -4rem; */
  }
  #pickup .swiper-wrapper {
    padding-left: 2rem;
  }
  .pickup__slide {
    overflow: visible;
    margin-right: 4rem;
  }
  
  #pickup .top-slide__item {
    width: 76%;
  }
  #pickup .top-slide__fig .pickup-category {
  }
  #pickup .top-slide__fig {
    height: 18rem;
  }
  #pickup .pickup__list_txt {
    /* padding: 0 4rem; */
  }
  .pickup_content .btn {
    margin: 4.5rem auto 0;
  }
  #pickup .swiper-button-prev,
  #pickup .swiper-button-next {
    width: 4rem;
    height: 4rem;
    top: -7rem;
  }

  #pickup .swiper-button-prev::after,
  #pickup .swiper-button-next::after {
    width: 4rem;
    height: 4rem;
  }

  #pickup .swiper-button-prev {
    right: 7rem;
    left: auto;
  }

  #pickup .swiper-button-next {
    right: 2rem;
  }
  #pickup .top-slide__fig {
    margin-bottom: 1.5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #pickup {
    margin-top: 0;
  }
  .pickup_title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 6rem;
  }
  .pickup_title .heading {
    margin-bottom: 0;
  }
  .pickup_content {
    /*max-width: 90rem;*/
    padding-left: 14rem;
    margin-right: calc(50% - 50vw);
  }
  #pickup .top-slide__item {
    margin: 0 4rem;
    width: 38.2rem;
  }
  .pickup__list_txt {
  }
  #pickup .top-slide__fig {
    height: 24.2rem;
  }
  #pickup .top-slide__fig .pickup-category {
  }
  .pickup_content .btn {
    display: none;
  }
  #pickup .swiper-button-prev,
  #pickup .swiper-button-next {
    left: 0;
  }

  #pickup .swiper-button-prev {
    bottom: 7.5rem;
  }

  #pickup .swiper-button-next {
    bottom: 0;
  }

  #pickup .swiper-button-prev::after,
  #pickup .swiper-button-next::after {
    width: 5.6rem;
    height: 5.6rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   about

--------------------------------------------------------------------------------------------- */
#about,
.about_wrapper {
  position: relative;
}

.about_wrapper {
  position: 10;
}

#about .container {
  position: relative;
}

#about .sec-lead__txt {
  font-weight: 700;
}
.about_txt {
  line-height: 2.2em;
}


#about .mv_obi {
  z-index: -1;
}
@media only screen and ( max-width : 767px ) {
  #about {
  }
  .about_content {
    position: relative;
    z-index: 2;
  }
  .about_txt {
    margin-bottom: 4rem;
  }
  .about_ph {
    display: none;
  }
  .about_ph_sp {
    margin-bottom: 2rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #about .heading-en {
    margin-bottom: 2rem;
  }
  .about_content {
    width: 47%;
  }
  .about_ph {
    width: 42.6%;
  }
  .about_txt {
    margin-bottom: 6rem;
  }
  #about .mv_obi {
    bottom: 0;
  }
  .about_ph_sp {
    display: none;
  }
}


/* ---------------------------------------------------------------------------------------------

　   SERVICE

--------------------------------------------------------------------------------------------- */
.service_txt {
  line-height: 2.2em;
}
@media only screen and ( max-width : 767px ) {
  .service_img {
    display: none;
  }
  #service h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .service_txt {
    margin-bottom: 4rem;
  }
  .service_img_sp {
    margin-bottom: 2rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .service_content {
    width: 52.26%;
  }
  .service_img {
    width: 41.74%;
  }
  #service h3 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
  }
  .service_txt {
    margin-bottom: 6rem;
  }
  .service_img_sp {
    display: none;
  }
}


/* ---------------------------------------------------------------------------------------------

　   WORKS

--------------------------------------------------------------------------------------------- */
#works {
  background: var(--subColor2);
}
.works_txt {
  line-height: 2.2em;
}
.vertical-works {
  width: 100%;
  position: relative;
}

.works__image {
  position: relative;
  overflow: hidden;
}

.works__image img {
  width: 100%;
  display: block;
}

.works__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: rgba(33,33,33,.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.works__labels {
  display: flex;
  gap: 1rem;
}

.works__labels span {
  background: #fff;
  padding: 0.2rem 0.8rem;
  font-size: 1.2rem;
  border-radius: 2rem;
  color: var(--subColor);
  font-weight: 700;
}

.works__title {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
}

.works__arrow {
  background: #6a5745 url('../img/arrow.svg') no-repeat center/1.2rem;
  border-radius: 50%;
}
/* 共通ナビボタン位置（縦スライド用） */
.vertical-works .swiper-button-next,
.vertical-works .swiper-button-prev {
  left: auto;
  right: 0;
  width: 3rem;
  height: 3rem;
  background-color: #6a5745;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem;
}

.vertical-works .swiper-button-prev {
  top: 4rem;
  transform: rotate(90deg); /* ←上向き矢印 */
}
.vertical-works .swiper-button-next {
  bottom: 4rem;
  transform: rotate(270deg); /* ←下向き矢印 */
}
.vertical-works .swiper-slide a {
  display: block;
}
#works .swiper-wrapper {
  transition-timing-function: linear !important;
}
/* スナップ防止＋一定速度 */
.vertical-works .swiper-wrapper {
  will-change: transform;
  transition-timing-function: linear !important;
}

.vertical-works .swiper-container {
  overflow: hidden;
}
.works__image {
  overflow: hidden;
  position: relative;
  contain: paint;
}
.works__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  will-change: transform;
  display: block;
  vertical-align: bottom;
  position: relative;
  z-index: -1;
  display: block;
}


@media only screen and ( max-width : 767px ) {
  .works_content {
    padding: 4rem 0;
  }
  .works_content .btn {
    display: none;
  }
  .works_posts {
    margin-left: -2rem;
    margin-right: -2rem;
    padding-bottom: 4rem;
  }
  .works_posts .swiper-wrapper {
    padding-left: 2rem;
  }
  .works__arrow {
    width: 3.2rem;
    height: 3.2rem;
  }
  .works__content {
    padding: 1rem;
  }
  .works__content_inner {
    width: calc(100% - 4.2rem);
  }
  .works__title {
    font-size: 1.4rem;
    margin-top: .6rem;
  }
  .works__labels span {
    font-size: 1rem;
  }
  .works_posts .btn {
    margin: 4rem 2rem 0 2rem;
  }
  .works__image {
    height: 20rem;
  }
  
}
@media print, screen and ( min-width : 768px ) {
  .works_posts .btn {
    display: none;
  }
  .works_wrapper {
    flex-direction: row-reverse;
  }
  .works_content {
    width: 41.74%;
    padding: 9rem 0;
    bottom: -1px;
  }
  .works_posts {
    width: 48.41%;
  }
  #works h3 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
  }
  .works_txt {
    margin-bottom: 6rem;
  }

  .vertical-works {
    /* height: 50.07vw; */
    height: 70rem;
    overflow: hidden;
  }
  .vertical-works .swiper-slide {
    height: auto;
    transition: transform 0.3s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
  .works__labels {
    margin-bottom: 1rem;
  }
  .works__arrow {
    width: 5.6rem;
    height: 5.6rem;
  }
  .works__content_inner {
    width: calc(100% - 6.6rem);
  }
  .works__image {
    overflow: hidden;
  }
  .vertical-works .swiper-slide a:hover img {
    transform: scale(1.05);
    transform-origin: center center;
  }
  .works__image img {
    transition: transform 0.3s ease;
  }
  .works__image {
    height: 35.2rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}

