@charset "UTF-8";

/* ローディング */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  background-size: 100% 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}

#loader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 10001;
  background: linear-gradient(-90deg, #55651a 0%, #262d0c 40%, #040401 60%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.7) 85%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(-90deg, #55651a 0%, #262d0c 40%, #040401 60%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.7) 85%, rgba(0, 0, 0, 0) 100%);
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-weight: bold;
}

.loader-container > * {
  margin-bottom: 10px;
}
.loader-container > *:last-child {
  margin-bottom: 0;
}

.char-image {
  width: 65px;
  height: auto;
  opacity: 0;
  transition: opacity 5000ms ease-in;
}

#char-ichi {
  position: relative;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}

.rotating-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  transform-origin: center;
  transition: opacity 3800ms ease-in;
  animation-fill-mode: forwards;
}

@keyframes rotate-in-img-1 {
  0% { transform: translate(-50%, -50%) rotate(900deg) scaleX(0.5); }
  100% { transform: translate(-50%, -50%) rotate(0deg) scaleX(1); }
}
@keyframes rotate-in-img-2 {
  0% { transform: translate(-50%, -50%) rotate(-900deg) scaleX(0.5); }
  100% { transform: translate(-50%, -50%) rotate(0deg) scaleX(1); }
}
@keyframes rotate-in-img-3 {
  0% { transform: translate(-50%, -50%) rotate(990deg) scaleX(0.5); }
  100% { transform: translate(-50%, -50%) rotate(0deg) scaleX(1); }
}

#logo {
  position: absolute;
  bottom: 90px;
  width: 130px;
  height: auto;
}

#main-content {
  min-height: 100vh;
  background-color: #000;
  opacity: 0;
}


#home-service {
  padding-top: 68px;
}

.c-txt--service {
  margin-bottom: 30px;
}

.f_monopo.f_monopo--ja {
  font-family: 'Hina Mincho','Hiragino Mincho ProN','游明朝','Yu Mincho','MS PMincho',serif;
        font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  line-height: 1.75;
}

.service_img {
  border-radius: 10px;
}

.service_img img {
  width: 100%;
  border-radius: 10px;
}

.service_imgArea {
  width: 81.33%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 0 76px;
  border-bottom: 1px solid #333;
}

.service_img--01 {
  order: 3;
  width: 64%;
  height: auto;
}

.service_img--02 {
  position: relative;
  order: 1;
  width: 61%;
  height: auto;
  z-index: 1;
}

.service_img--03 {
  order: 2;
  width: 63%;
  height: auto;
  margin: -34px 0 0 auto;
}

.blurTrigger:not(.blur) {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.02);
  transition: none;
}

.fadeUpTrigger:not(.fadeUp) {
  opacity: 0;
  transform: translateY(2rem);
  transition: none;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blurTrigger.blur {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.fadeUpTrigger.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.blurTrigger.blur,
.fadeUpTrigger.fadeUp {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.blurTrigger.blur,
.fadeUpTrigger.fadeUp {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}


.aboutus__en {
  margin-bottom: 30px;
  font-size: 11px;
  color: #fff;
  font-family: 'TT Norms','Inter','Helvetica Neue','Arial',sans-serif;
  font-weight: 400;
  line-height: 1.64;
}

.aboutus__ja {
  margin-bottom: 30px;
  font-family: 'Hina Mincho','Hiragino Mincho ProN','游明朝','Yu Mincho','MS PMincho',serif;
  font-size: 12px;
  color: #fff;
  line-height: 2.25;
        font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


#home-aboutus {
  padding: 28px 0 0 0;
}

#home-pickup {
  padding: 50px 0 0 0;
}

.works_list ul {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-bottom: 46px;
  padding-top: 14px;
}

.works_list ul li {
  width: 100%;
}

.works_list ul li img {
  width: 100%;
  height: 100%;
    object-fit: cover; 
  border-radius: 8px;
}

.works_list ul li h3.title {
  padding: 16px 0 14px;
  font-size: 20px;
  font-family: 'TT Norms', 'Inter', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1.37;
}

.works_list ul li p.role {
  color: #4c4c4c;
  font-family: "Sawarabi Gothic", "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", YuGothic, "游ゴシック", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  font-size: 11px;
  letter-spacing: 1.2px;
        display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
        line-height: 1.64;
        font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.home-news__img {
  width: 100%;
  height: 490px;
  background-image: url(./images/common/news_img.jpg);
  background-size: 100% 100%;
}


#home-news {
  padding: 60px 0 0;
}

.c-news_list {
  padding: 5px 0 0 0;
}

.home-news--wrapper {
  padding: 74px 0 112px;
  border-bottom: 1px solid #333;
}

.c_width.c_width--media {
  width: 81.33%;
  width: inherit;
  padding: 58px 0 60px;
  border-bottom: 1px solid #333;
}

.c_width.c_width--media h2 {
  width: 81.33%;
  margin: 0 auto;
  position: relative;
}

.media-slide {
  flex-shrink: 0
}


.media-slide img {
  border-radius: 10px;
}

.media-slide__img {
  height: 235px;
  overflow: hidden;
  border-radius: 10px;
}

.media-slide h3 {
  padding: 26px 0 20px;
  font-family: "Sawarabi Gothic", "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", YuGothic, "游ゴシック", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 1.2px;
        font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.media-slide p {
  font-family: "Sawarabi Gothic", "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", YuGothic, "游ゴシック", "ＭＳ ゴシック", "MS Gothic", sans-serif;
  color: #fff;
  font-size: 11px;
  line-height: 1.64;
  letter-spacing: 1.2px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
        font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.media-wrapper {
  position: relative;
  height: auto !important;
}


.media-swiper {
  margin-top: 25px;
  overflow: hidden;
  left: 0 !important;
}

.custom-swiper-button-prev,
.custom-swiper-button-next {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  width: 45px;
  height: 35px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s;
}

.custom-swiper-button-prev img,
.custom-swiper-button-next img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* transition: .2s ease-in; */
}

.media-swiper .swiper-wrapper {
  height: auto;
}

.custom-swiper-button-prev {
  left: 0;
}

.custom-swiper-button-next {
  right: 30px;
}

.cu.media-slide h3tom-swiper-button-prev:hover,
.custom-swiper-button-next:hover {
  opacity: 1;
}

.btn_next_border--media {
  margin-left: 9%;
}

.section-policy {
  margin-top: -60px;
}

.policy__inner .c-mv_bg {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 375 / 320;
  background-image: url(../ujien_theme/images/common/policy_mv.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 58px;
  z-index: 1;
}

.policy__inner .c-mv_bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background:
  linear-gradient(180deg,
  rgba(85, 101, 26, 0.1) 0%,
  rgba(27, 32, 9, 0.1) 50%,
  rgba(0, 0, 0, 0.2) 80%,
  rgba(0, 0, 0, 1) 100%);
  z-index: 2;
}

.section-policy .c-h1 {
  top: 202px;
}

.policy__inner .c-mv_bg h1,
.policy__inner .c-mv_bg .c-mv-content__title {
  position: absolute;
  z-index: 3;
}

.privacy-policy__inner {
  max-width: 720px;
  padding: 28px 0;
  margin: 0 auto;
  border-bottom: 1px solid #333333;
}

.privacy-policy__title {
  margin-bottom: 40px;
  font-size: 24px;
  color: #fff;
  font-family: 'TT Norms', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
  font-weight: 500;
}

.privacy-policy__section {
  margin: 20px auto;
}

.privacy-policy__introduction {
  margin: 10px auto;
}

.privacy-policy__introduction p {
  margin: 10px auto;
  font-size: 14px;
  color: #fff;
  font-family: 'Hina Mincho', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', 'MS PMincho', serif;
        font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.06rem;
}

.privacy-policy__heading {
  font-size: 17px;
  color: #fff;
  font-family: 'Hina Mincho', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', 'MS PMincho', serif;
        font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.06rem;
  line-height: 1.6;
}

.privacy-policy__content p {
  margin: 10px auto;
  font-size: 14px;
  color: #fff;
  font-family: 'Hina Mincho', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', 'MS PMincho', serif;
        font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  letter-spacing: 0.06rem;
}

.privacy-policy__content p a {
  font-size: 14px;
  color: #fff;
  font-family: 'Hina Mincho', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', 'MS PMincho', serif;
        font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  letter-spacing: 0.06rem;
}

.privacy-policy__contact-item,
.privacy-policy__list-item,
.privacy-policy__contact-value,
.privacy-policy__link {
  font-size: 14px;
  color: #fff;
  font-family: 'Hina Mincho', 'Hiragino Mincho ProN', '游明朝', 'Yu Mincho', 'MS PMincho', serif;
        font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  letter-spacing: 0.06rem;
}

.privacy-policy__list-item,
.privacy-policy__contact-item {
  line-height: 1.8;
  /* text-indent: -1em;
  padding-left: 1em; */
}

.media-slide__img img {
        width: 100%;
    height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 768px) {
  .works_list ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4.49%;
    flex-direction: inherit;
    margin-bottom: 47px;
    padding-top: 0;
    gap: 48px;
  }

  .works_list ul li {
    /* width: 44.75%; */
    width: 45%;
  }

  .works_list ul li a {
    transition: all 1.5s cubic-bezier(.19,1,.22,1), opacity .5s linear;
  }

  .works_list ul li a:hover img {
    transform: scale(1.1);
    will-change: filter;
    filter: grayscale(0) brightness(1);
    transition: all 1.5s cubic-bezier(.19,1,.22,1), opacity .5s linear;
  }

  .works_list ul li .img {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 295 / 365;
  }

  .works_list ul li img {
    border-radius: 12px;
    transition: .2s ease-in;
  }

  #home-news {
    padding: 83px 0 0;
  }

  .c-news_list {
    padding: 0;
    margin-top: 42px;
    padding-bottom: 0;
    width: 100%;
  }

  .media-slide {
    width: calc(50% - 15px) !important;
    transition: .2s ease-in;
  }

  .media-slide a:hover {
    transition: .2s ease-in;
  }

  .media-slide a:hover .media-slide__img {
    overflow: hidden;
    border-radius: 10px;
  }


  .media-slide__img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  .media-slide a:hover .media-slide__img img {
    transform: scale(1.1);
    filter: grayscale(0) brightness(1);
    will-change: filter;
    transition: all 1.5s cubic-bezier(.19,1,.22,1), opacity .5s linear;
  }

  .media-slide a:hover img {
    transform: scale(1.1);
    transition: .2s ease-in;
  }
    .media-slide a img {
    transition: .2s ease-in;
  }

  .media-wrapper {
    flex-wrap: nowrap;
  }

  .c_width--media {
    padding: 112px 0 100px;
  }

  .btn_next_border--media {
    text-align: right;
    display: block;
    width: 190px;
    margin: 0 0 0 auto;
  }

  .btn_next_border--media a {
    padding: 9px 115px 9px 20px !important;
  }

  .home-news--wrapper {
    padding: 61px 0 0;
  }

  .service_img--01 {
    order: 1;
    width: 380px;
    height: auto;
  }

  .service_img--02 {
    order: 2;
    margin: -390px 0 0 auto;
    width: 364px;
    height: auto;
    z-index: -1;
  }

  .service_img--03 {
    width: 378px;
    height: auto;
    order: 3;
    margin-top: -112px;
    margin-bottom: 0;
    margin-left: 26%;
    margin-right: auto;
    z-index: -1;
  }

  .home-news__img {
    position: relative;
    height: 400px;
    background-image: url(./images/common/pc_news_img.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-attachment: fixed;
    -webkit-backface-visibility: hidden;
  }

  /* .home-news__img {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-image: none;
  } */

  /* .home-news__img__wrapper {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
  } */

  /* .home-news__img img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: top center;
  } */

  .custom-swiper-button-next {
    right: -20px;
  }

  .custom-swiper-button-next {
    top: 34%;
  }

  .c_width.c_width--media {
    width: 88%;
    margin: 0 auto;
    position: relative;
    padding: 112px 0 100px;
  }

  .media-swiper {
    overflow: inherit;
    margin-top: 0;
  }

  .service_imgArea {
    max-width: 1000px;
    width: 88%;
    padding: 0 0 110px;
  }

  #home-service {
    padding-top: 122px;
  }

  #home-aboutus {
    padding: 110px 0 0 0;
  }

  .works_list ul li h3.title {
    padding: 18px 0 13px;
  }

  .c-news_list {
    margin-top: 20px;
  }

  .c_width.c_width--media h2 {
    width: 85.33%;
    padding-left: 0px;
    padding-top: 14px;
  }

  .c_width.c_width--media h2::before {
    top: 12px;
    left: -20px;
  }

  .custom-swiper-button-prev,
  .custom-swiper-button-next {
    top: 33%;
  }

  .policy__inner .c-mv_bg {
    height: 355px;
    aspect-ratio: 375 / 355;
  }

  .privacy-policy__content p a:hover {
    border-bottom: 1px solid #fff;
  }

  .privacy-policy__heading {
    font-size: 18px;
  }

  .privacy-policy__section {
    margin: 30px auto;
  }

}

@media only screen and (min-width: 980px) {
    .works_list ul li {
      width: 46%;
    }
}