@charset "UTF-8";
/* SCSS Document */
* {
  box-sizing: border-box;
}

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

common

------------------------------------------------------------*/
body {
  font-family: "Zen Old Mincho", serif;
  counter-reset: item;
  background: url(../img/bg.jpg);
  background-attachment: fixed;
}

.js_ttlFadeIn {
  transform: translateX(-3%);
  opacity: 0;
}

.js_ttlFadeIn.fadeUp {
  transform: translateY(30px);
  opacity: 0;
}

.huwa {
  animation: huwa 1s ease-out forwards;
}

@keyframes huwa {
  to {
    transform: initial;
    opacity: 1;
  }
}
a {
  text-decoration: none;
}

.flex {
  display: flex;
}

.left {
  width: 30%;
}

.right {
  width: 70%;
}

.wht {
  color: #fff;
}

.bold {
  font-weight: bold;
}

.top-image {
  position: relative;
  height: 100vh !important;
  background: #f5f5f5;
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 480px) {
  .logo {
    width: 100%;
  }
}

.logo-image {
  max-width: 600px;
}
@media screen and (max-width: 480px) {
  .logo-image {
    max-width: 300px;
    margin: 0 auto;
  }
}
.logo-image img {
  width: 100%;
}

.nav {
  position: fixed;
  width: 100%;
  /*display: flex;
  justify-content: flex-end;*/
  padding: 10px;
  box-sizing: border-box;
  z-index: 99;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .nav {
    display: none;
  }
}

.gnav {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.gnav li {
  padding: 0 10px;
  box-sizing: border-box;
}
.gnav li a {
  display: inline-block;
  position: relative;
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px 2px #000;
  transition: 0.3s;
}
.gnav li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #ccc 15%, #666666);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.gnav li a:hover::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.top-logo {
  padding: 10px !important;
  margin-right: auto;
  width: 100%;
  max-width: 300px;
  opacity: 0;
}

.top-logo a::after {
  content: none !important;
}

.top-logo img {
  width: 100%;
}

.top-logo.logoShow {
  opacity: 1 !important;
}

.bgColor {
  background: rgba(15, 15, 24, 0.8);
  transition: 0.3s;
}

#contents {
  width: 100%;
  /*padding: 100px 0;*/
}

.subttl__area {
  padding: 20px;
  text-align: center;
  margin-bottom: 40px;
}

h2.subttl {
  position: relative;
  font-size: 2.5rem;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px 5px #000;
}
@media screen and (max-width: 480px) {
  h2.subttl {
    font-size: 1.5rem;
  }
}
h2.subttl::before {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 30px;
  height: 5px;
  content: "";
  background: #fff;
}
@media screen and (max-width: 480px) {
  h2.subttl::before {
    width: 20px;
  }
}

.section__space {
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .section__space {
    padding: 50px 10px;
  }
}

.top__area {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.top__area .bg-box {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  -webkit-mask-image: linear-gradient(to left, 255, 255, 255 0%, rgba(255, 255, 255, 0) 70%);
  mask-image: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
}
.top__area .bg-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 480px) {
  .top__area .bg-box img {
    height: 100%;
  }
}

.top__area--inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 2;
}
.top__area--inner p {
  font-size: 1.4rem;
  line-height: 1.75;
}
@media screen and (max-width: 480px) {
  .top__area--inner p {
    font-size: 1.2rem;
  }
}

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

業務案内

------------------------------------------------------------*/
.works__box {
  min-height: 400px;
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 50px auto 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .works__box {
    height: 100%;
  }
}
@media screen and (max-width: 480px) {
  .works__box {
    margin: 0 auto;
  }
}

/* 左画像　右テキスト */
.l_image {
  width: 53%;
  height: 100%;
  display: flex;
  align-items: baseline;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-image: url("../img/mask_a.svg");
          mask-image: url("../img/mask_a.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top right;
          mask-position: top right;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
@media screen and (max-width: 480px) {
  .l_image {
    position: relative;
    aspect-ratio: 355/266;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.l_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  transition: 0.3s;
}
.l_image::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(255, 255, 255, .5); */
}

.r_txt {
  width: 53%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-mask-image: url("../img/mask_b.svg");
          mask-image: url("../img/mask_b.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom left;
          mask-position: bottom left;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 1024px) {
  .r_txt {
    width: 100%;
    height: 100%;
    position: static;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

.r_txt_inner {
  width: 100%;
  position: relative;
  padding: 50px 0;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .r_txt_inner {
    padding: 10px;
  }
}
.r_txt_inner .txt-box {
  padding: 0 20px 0 100px;
  line-height: 1.75;
}
@media screen and (max-width: 480px) {
  .r_txt_inner .txt-box {
    padding: 10px;
  }
}
.r_txt_inner h3 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .r_txt_inner h3 {
    padding-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .r_txt_inner h3 {
    font-size: 1.2rem;
  }
}

/* 左テキスト　右画像 */
.r_image {
  width: 53%;
  height: 100%;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-mask-image: url("../img/mask_b.svg");
          mask-image: url("../img/mask_b.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom left;
          mask-position: bottom left;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
@media screen and (max-width: 480px) {
  .r_image {
    position: relative;
    aspect-ratio: 355/266;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.r_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.r_image::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(255, 255, 255, .5); */
}

.l_txt {
  width: 53%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-image: url("../img/mask_a.svg");
          mask-image: url("../img/mask_a.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top right;
          mask-position: top right;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  display: flex;
  justify-content: start;
}
@media screen and (max-width: 1024px) {
  .l_txt {
    width: 100%;
    height: 100%;
    position: static;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

.l_txt_inner {
  width: 100%;
  position: relative;
  padding: 50px 0;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .l_txt_inner {
    padding: 10px;
  }
}
.l_txt_inner .txt-box {
  padding: 0 80px 0 20px;
  line-height: 1.75;
}
@media screen and (max-width: 480px) {
  .l_txt_inner .txt-box {
    padding: 10px;
  }
}
.l_txt_inner h3 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .l_txt_inner h3 {
    padding-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .l_txt_inner h3 {
    font-size: 1.2rem;
  }
}

.txt_inner-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .txt_inner-flex {
    padding: 20px;
  }
}

.kinds__flex {
  display: flex;
  gap: 20px;
  max-width: 1280px;
  margin: 50px auto 0;
}
@media screen and (max-width: 480px) {
  .kinds__flex {
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto;
  }
}
.kinds__flex .kinds__box {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 480px) {
  .kinds__flex .kinds__box {
    width: calc((100% - 10px) / 2);
  }
}
.kinds__flex .kinds__box .kinds__box--img {
  width: 100%;
  aspect-ratio: 304/278;
}
.kinds__flex .kinds__box .kinds__box--img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.kinds__flex .kinds__box .kinds__box--txt {
  padding: 10px;
  text-align: center;
}
.kinds__flex .kinds__box .kinds__box--txt p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 1px #000;
}

.slide {
  visibility: hidden;
  opacity: 0;
}
.slide.active {
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}

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

実績一覧

------------------------------------------------------------*/
.archive__area {
  background: #333333;
}

.archive__area--txt {
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  margin: 30px auto;
}
.archive__area--txt p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.75;
}
@media screen and (max-width: 480px) {
  .archive__area--txt p {
    font-size: 1rem;
  }
}

.slider-box {
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  margin: 30px auto 100px auto;
}

.slider-wrap {
  width: 100%;
  box-sizing: border-box;
}
.slider-wrap .slick-slide {
  aspect-ratio: 900/675;
}
.slider-wrap .slick-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-nav {
  position: relative;
  width: 100%;
  padding: 0 !important;
}
.slider-nav li:hover {
  cursor: pointer;
}

.slick-prev {
  margin: 0 !important;
  position: absolute !important;
  bottom: 0 !important;
  z-index: 99;
  font-size: 1.2em !important;
  padding: 0 20px;
  height: 100% !important;
  background: rgba(255, 255, 255, 0.8) !important;
  border: none !important;
  cursor: pointer;
}

.slick-next {
  margin: 0 !important;
  position: absolute !important;
  bottom: 0 !important;
  right: 0;
  font-size: 1.2em !important;
  padding: 0 20px;
  height: 100% !important;
  background: rgba(255, 255, 255, 0.8) !important;
  border: none !important;
  cursor: pointer;
}

.slick-current p.filter {
  background: #000;
}

.filter img {
  opacity: 0.8;
}

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

会社概要

------------------------------------------------------------*/
.company__area {
  background: #fff;
}
.company__area .subttl__area .subttl {
  color: #333333;
  text-shadow: 1px 1px 1px #ccc;
}
.company__area .subttl__area .subttl::before {
  background: #000;
}

.company-tbl {
  width: 100%;
  max-width: 900px;
  margin: 50px auto;
  border-top: solid 1px #ccc;
  line-height: 1.5em;
}
@media screen and (max-width: 480px) {
  .company-tbl {
    margin: 0 auto;
  }
}
.company-tbl tr {
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 480px) {
  .company-tbl tr {
    display: flex;
    flex-wrap: wrap;
  }
}
.company-tbl th {
  padding: 20px 10px;
  color: #fff;
  font-weight: bold;
  background: #666666;
  vertical-align: middle;
  width: 300px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .company-tbl th {
    width: 100%;
  }
}
.company-tbl td {
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .company-tbl td {
    width: 100%;
  }
}
.company-tbl td ul li {
  list-style-type: disc;
  list-style-position: inside;
}

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

お問い合わせ

------------------------------------------------------------*/
.contact__area {
  background: #000;
  color: #fff;
}
.contact__area--flex {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .contact__area--flex {
    flex-wrap: wrap;
  }
}
.contact__area--flex .contact__area--box {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .contact__area--flex .contact__area--box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.contact__area--flex .contact__area--box .dllist__flex {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .contact__area--flex .contact__area--box .dllist__flex {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .contact__area--flex .contact__area--box .dllist__flex dl {
    width: 100%;
  }
}
.contact__area--flex .contact__area--box .dllist__flex dl dt {
  font-size: 1.2rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 480px) {
  .contact__area--flex .contact__area--box .dllist__flex dl dt {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.contact__area--flex .contact__area--box .dllist__flex dl dd {
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .contact__area--flex .contact__area--box .dllist__flex dl dd {
    font-size: 1.5rem;
  }
}
.contact__area--flex .gmap {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .contact__area--flex .gmap {
    width: 100%;
    height: auto;
  }
}
.contact__area--flex .gmap iframe {
  width: 100%;
  height: 350px;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.75;
  background: #f2f2f2;
  padding: 20px;
}
@media screen and (max-width: 480px) {
  footer span {
    display: block;
  }
}

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

スマホナビ

------------------------------------------------------------*/
.sp-logo {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp-logo {
    display: block;
    padding: 20px;
  }
}

nav.globalMenuSp {
  display: none;
}
@media screen and (max-width: 1024px) {
  nav.globalMenuSp {
    display: block;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    /*background: #fff;*/
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
  }
  nav.globalMenuSp ul {
    background: #333333;
    /*background: -webkit-linear-gradient(-45deg, #fa709a 0%, #fbb0c9 100%);*/
    background-size: cover;
    margin: 0 auto;
    padding: 50px 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    /*border-bottom: 1px dotted #fff;*/
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    /*text-shadow: 1px 1px 0 #ccc;*/
    font-weight: bold;
    padding: 1em 0;
    font-size: 1.1em;
    border-bottom: dotted 1px #ccc;
  }
  nav.globalMenuSp ul li a:hover {
    background: rgba(245, 245, 245, 0.8);
  }
  nav.globalMenuSp.nav_active {
    transform: translateY(0%);
  }
}

.navToggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .navToggle {
    display: block;
    position: fixed;
    right: 5px;
    top: 5px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 101;
    text-align: center;
    border-radius: 5px;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 47px;
    border-bottom: solid 4px #fff;
    box-shadow: 1px 1px 1px #aaaaaa;
    transition: 0.35s ease-in-out;
    left: 6px;
  }
  .navToggle span:nth-child(1) {
    top: 9px;
  }
  .navToggle span:nth-child(2) {
    top: 23px;
  }
  .navToggle span:nth-child(3) {
    top: 37px;
  }
  .navToggle span:nth-child(4) {
    border: none;
    color: #fff;
    text-shadow: 1px 1px 1px #aaaaaa;
    box-shadow: none;
    font-size: 11px;
    font-weight: bold;
    top: 45px;
  }
  .navToggle.nav_active span {
    box-shadow: none;
    text-shadow: none;
  }
  .navToggle.nav_active span:nth-child(1) {
    top: 22px;
    left: 6px;
    transform: rotate(-45deg);
  }
  .navToggle.nav_active span:nth-child(2), .navToggle.nav_active span:nth-child(3) {
    top: 22px;
    transform: rotate(45deg);
  }
}/*# sourceMappingURL=style.css.map */