@charset "UTF-8";
.noto-sans {
  font-family: "Noto Sans JP", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
}

.zen-maru-gothic {
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
}

.exo-2 {
  font-family: "Exo 2", 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_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: 60vh;
  }
}
#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;
  top: 50%;
  left: 5.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 45%;
}
@media (max-width: 767px) {
  #main_visual .copy_text {
    width: 90%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
#main_visual .btm_img {
  z-index: 1;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 163.2px;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url(../images/home/mv_btm01.svg);
  aspect-ratio: 1920/163.2;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 480px) {
  #main_visual .btm_img {
    height: 40px;
  }
}
#main_visual {
  /* -- -- */
}
#main_visual .scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 10px;
  left: 3%;
  z-index: 1;
}
@media (max-width: 767px) {
  #main_visual .scrolldown1 {
    left: 8%;
  }
}
#main_visual {
  /*Scrollテキストの描写*/
}
#main_visual .scrolldown1 span {
  /*描画位置*/
  position: relative;
  left: -1.5em;
  bottom: 190px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  #main_visual .scrolldown1 span {
    bottom: 70px;
  }
}
#main_visual {
  /* 丸の描写 */
}
#main_visual .scrolldown1: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 {
  /*下からの距離が変化して丸の全体が上から下に動く*/
}
@-webkit-keyframes circlemove {
  0% {
    bottom: 170px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 170px;
  }
  100% {
    bottom: -5px;
  }
}
@media screen and (max-width: 768px) {
  @-webkit-keyframes circlemove {
    0% {
      bottom: 70px;
    }
    100% {
      bottom: -5px;
    }
  }
  @keyframes circlemove {
    0% {
      bottom: 70px;
    }
    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 {
  /* 線の描写 */
}
#main_visual .scrolldown1:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 180px;
  background: #eee;
}
@media (max-width: 767px) {
  #main_visual .scrolldown1:after {
    height: 70px;
  }
}
#main_visual {
  /******************************/
  /* swiper TOPのみ制御 */
  /******************************/
}
#main_visual .swiper-container .swiper-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#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: 100vh;
  }
}
#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: 100vh;
  }
}
@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: 60vh;
  }
}
#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;
}

/******************************/
/* サイドスライダー */
/******************************/
.side-slider_area .swiper-slide {
  opacity: 0.3;
  /* 左右のスライドを薄くする */
  /* 左右のスライドを小さくする */
  /* ゆっくり小さくさせる */
}
.side-slider_area .swiper-slide.swiper-slide-active {
  opacity: 1;
  /* 中央のスライドは薄くしない */
  /* 中央のスライドは小さくしない */
  z-index: 1;
}
.side-slider_area .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  border-radius: 20px;
}
.side-slider_area .swiper-button-next,
.side-slider_area .swiper-button-prev {
  top: 50%;
  color: #333;
  background-color: #fff;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .side-slider_area .swiper-button-next,
  .side-slider_area .swiper-button-prev {
    top: 10%;
    width: 25px;
    height: 25px;
  }
}
.side-slider_area .swiper-button-next:before, .side-slider_area .swiper-button-next:after,
.side-slider_area .swiper-button-prev:before,
.side-slider_area .swiper-button-prev:after {
  font-size: 22px;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .side-slider_area .swiper-button-next:before, .side-slider_area .swiper-button-next:after,
  .side-slider_area .swiper-button-prev:before,
  .side-slider_area .swiper-button-prev:after {
    font-size: 12px;
  }
}
.side-slider_area .swiper-button-next {
  right: 1.5%;
}
@media (max-width: 767px) {
  .side-slider_area .swiper-button-next {
    right: 2%;
  }
}
.side-slider_area .swiper-button-prev {
  left: 1.5%;
}
@media (max-width: 767px) {
  .side-slider_area .swiper-button-prev {
    left: 2%;
  }
}
.side-slider_area .swiper-pagination {
  /* top: 40%; */
  position: absolute !important;
  bottom: 55px;
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  .side-slider_area .swiper-pagination {
    left: 0;
    right: 0;
    bottom: 55px;
    position: inherit;
  }
}
.side-slider_area .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) {
  .side-slider_area .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    background-color: #ddd;
  }
}
.side-slider_area .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e83c41;
  opacity: 1;
}
.side-slider_area .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_news {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.tp_sec01 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #FFFFFF;
  padding: 90px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .tp_sec01 {
    padding: 50px 0;
  }
}
.tp_sec01 h2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 15px;
}
@media (max-width: 1024px) {
  .tp_sec01 h2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 5%;
  }
}
.tp_sec01 h2:before {
  content: "";
  display: inline-block;
  background-image: url(../images/home/sec01/h2_icon01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 136.03px;
  height: 154.1px;
  aspect-ratio: 136.03/154.1;
}
@media screen and (max-width: 1380px) {
  .tp_sec01 h2:before {
    display: none;
  }
}
.tp_sec01 h2:after {
  content: "";
  display: inline-block;
  background-image: url(../images/home/sec01/h2_icon02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 80.47px;
  height: 154.1px;
  aspect-ratio: 80.47/154.1;
}
@media screen and (max-width: 1380px) {
  .tp_sec01 h2:after {
    display: none;
  }
}

.tp_sec02 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0 90px;
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
}
@media (max-width: 767px) {
  .tp_sec02 {
    padding: 0 0 50px;
  }
}

.tp_sec03 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0 90px;
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
}
@media (max-width: 767px) {
  .tp_sec03 {
    padding: 0 0 50px;
  }
}
/*# sourceMappingURL=css_map/style_home.css.map */
