@charset "UTF-8";
.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/*ディスプレイ初期値設定*/
/*以下、サイト固有の設定*/
/*サイト共通の間隔*/
/*英語用font読み込み指定*/
/*
@font-face {
	font-family: 'General Sans';
	src: url("../font/GeneralSans-Regular.otf") format("otf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
	font-family: 'General Sans';
	src: url("../font/GeneralSans-Semibold.otf") format("otf");
    font-weight: bold;
    font-style: normal;
}
*/
/*

トップページ用のスタイルです。

*/
/* ------------ */
/* デザイン共通 */
/* ------------ */
.home header {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home header.fixed {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
}
.home header.fixed .h-logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.home header.fixed #menu-header-navi li a {
  color: #333;
}
.home .header_drawer_toggle .gnav-trg span.line,
.home .header_drawer_toggle .gnav-trg::before,
.home .header_drawer_toggle .gnav-trg::after {
  background-color: #fff;
}
@media (max-width: 1024px) {
  .home .header_drawer_toggle .gnav-trg span.line,
  .home .header_drawer_toggle .gnav-trg::before,
  .home .header_drawer_toggle .gnav-trg::after {
    background-color: #333;
  }
}
.home .header_drawer_toggle.fixed .gnav-trg span.line,
.home .header_drawer_toggle.fixed .gnav-trg::before,
.home .header_drawer_toggle.fixed .gnav-trg::after {
  background-color: #333;
}
.home .header_drawer_toggle .gnav-trg span.txt:before {
  color: #fff;
}

#main_visual {
  width: 100%;
  overflow: hidden;
  height: 100vh;
  position: relative;
}
@media (max-width: 767px) {
  #main_visual {
    height: calc(100vh - 60px);
  }
}
#main_visual .mv_scr {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 0;
  left: 50%;
}
@media (max-width: 767px) {
  #main_visual .mv_scr {
    left: 30px;
  }
}
#main_visual .mv_scr:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
#main_visual .mv_scr:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 140px;
  background: #eee;
}
#main_visual .mv_scr span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 90px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
#main_visual {
  /*
   .swiper-slide-active .swiper-img {
     animation: zoomUp 6s linear 0s normal both;
   }*/
}
#main_visual .copy_text {
  color: #fff;
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: 5%;
  width: 35%;
}
@media (max-width: 767px) {
  #main_visual .copy_text {
    width: 85%;
    bottom: 45%;
  }
}
#main_visual {
  /* -- -- */
  /*下からの距離が変化して丸の全体が上から下に動く*/
}
@-webkit-keyframes circlemove {
  0% {
    bottom: 130px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 130px;
  }
  100% {
    bottom: -5px;
  }
}
#main_visual {
  /*上から下にかけて丸が透過→不透明→透過する*/
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
#main_visual {
  /******************************/
  /* swiper TOPのみ制御 */
  /******************************/
}
#main_visual .swiper-container .swiper-wrapper {
  position: fixed;
  z-index: -1;
}
#main_visual .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  background-position: center;
  background-size: cover;
  height: 100vh;
}
@media (max-width: 767px) {
  #main_visual .swiper-container .swiper-wrapper .swiper-slide {
    height: calc(100vh - 60px);
  }
}
#main_visual .swiper-container .swiper-wrapper .swiper-slide .slider_block {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}
@media (max-width: 767px) {
  #main_visual .swiper-container .swiper-wrapper .swiper-slide .slider_block {
    height: calc(100vh - 60px);
  }
}
@media (max-width: 1280px) {
  #main_visual .swiper-container .swiper-wrapper .swiper-slide .slider_mask {
    height: 63vh;
  }
}
@media (max-width: 767px) {
  #main_visual .swiper-container .swiper-wrapper .swiper-slide .slider_mask {
    height: calc(100vh - 60px);
  }
}
#main_visual .swiper-pagination {
  /* top: 40%; */
  bottom: 55px;
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  #main_visual .swiper-pagination {
    left: 0;
    right: 0;
    bottom: 55px;
    position: inherit;
  }
}
#main_visual .swiper-pagination .swiper-pagination-bullet {
  margin-right: 15px;
  width: 40px;
  height: 4px;
  background-color: #ffffff;
  opacity: 1;
  outline: none;
  border-radius: initial;
}
@media (max-width: 767px) {
  #main_visual .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    background-color: #ddd;
  }
}
#main_visual .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e83c41;
  opacity: 1;
}
#main_visual .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

/* -------------- */
/* works */
/* ------------- */
/* -------------- */
/* 実績 SLICK */
/* ------------- */
.slick_slider .slick-slide {
  padding: 0 5px;
}
.slick_slider .slick-slide:nth-child(even) img {
  position: relative;
  padding-top: 30px;
}

.img_slider img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

/* -------------- */
/* サムネイル付一覧 */
/* ------------- */
/* -------------- */
/* トップコンテンツ */
/* ------------- */
.tp_sec01 {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  color: #fff;
  background-color: #fff;
  background-image: url(../images/home/tp_sec01_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .tp_sec01 {
    padding: 50px 0;
  }
}
.tp_sec01 .sec01_img_full {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1500px) {
  .tp_sec01 .sec01_img_full {
    padding: 0 5%;
  }
}
.tp_sec01 .ttl01:after {
  border-bottom: solid 2px #fff;
}
@media (max-width: 1024px) {
  .tp_sec01 .layout_a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.tp_sec01 .layout_a .imgbox {
  width: 30%;
}
@media (max-width: 1024px) {
  .tp_sec01 .layout_a .imgbox {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 1024px) {
  .tp_sec01 .layout_a .imgbox figure {
    text-align: center;
  }
}

.tp_sec02 {
  padding: 80px 0;
  position: relative;
  background-color: #fff;
  z-index: 1;
}
@media (max-width: 767px) {
  .tp_sec02 {
    padding: 50px 0;
  }
}
.tp_sec02 .layout_b,
.tp_sec02 .layout_a {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding-bottom: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .tp_sec02 .layout_b,
  .tp_sec02 .layout_a {
    padding: 0 5%;
  }
}
.tp_sec02 .layout_b .imgbox img,
.tp_sec02 .layout_a .imgbox img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1263/600;
}
.tp_sec02 .box {
  position: relative;
}
.tp_sec02 .box .layout_b:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../images/home/sec02_bg01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 50%;
  z-index: -1;
}
.tp_sec02 .box .layout_a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../images/home/sec02_bg01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 50%;
  z-index: -1;
}

.tp_company {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  color: #fff;
}
.tp_company:before {
  content: "";
  display: inline-block;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#B4B4B4), color-stop(30%, #434343), to(#000F23)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #B4B4B4 0%, #434343 30%, #000F23 100%) 0% 0% no-repeat padding-box;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1024px) {
  .tp_company {
    padding: 50px 0;
  }
}

.tp_sec05 {
  position: relative;
  z-index: 1;
}

.tp_news {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background-color: #fff;
}
@media (max-width: 767px) {
  .tp_news {
    padding: 50px 0;
  }
}
/*# sourceMappingURL=css_map/style_home.css.map */
