@charset "UTF-8";
.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: italic;
}

.noto-sans {
  font-family: "Noto Sans JP", sans-serif !important;
  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;
}
.home header a.tel_link:before {
  background-image: url(../images/icon/tel_icon01_wt.svg);
}
.home header.fixed ul.links_sns li a.tiktok_icon::before {
  background-image: url(../images/icon/sns/tiktok.svg);
}
.home header.fixed a.tel_link:before {
  background-image: url(../images/icon/tel_icon01.svg);
}
.home header ul.links_sns li a.tiktok_icon::before {
  background-image: url(../images/icon/sns/tiktok_wt.svg);
}
.home .header_drawer_toggle .gnav-trg span.txt:before {
  color: #fff;
}

/* -------------- */
/* メインビジュアル */
/* ------------- */
#main_visual {
  width: 100%;
  overflow: hidden;
  background-image: url(../images/home/mv_bg01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  position: relative;
}
@media (max-width: 1024px) {
  #main_visual {
    height: 140vh;
  }
}
@media (max-width: 767px) {
  #main_visual {
    height: calc(100vh - 60px);
  }
}
#main_visual .mv_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  gap: 0 80px;
  height: calc(100% - 100px);
}
@media (max-width: 1024px) {
  #main_visual .mv_flex {
    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;
    gap: 20px 0;
    height: auto;
    bottom: auto;
    left: auto;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
    right: 0;
  }
}
#main_visual .mv_flex .mv_txt {
  width: 45%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5%;
}
@media (max-width: 1024px) {
  #main_visual .mv_flex .mv_txt {
    width: 100%;
    padding: 25px 5%;
  }
}
#main_visual .mv_flex .mv_img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-image: url(../images/home/mv_img01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  aspect-ratio: 96/69;
}
@media (max-width: 1024px) {
  #main_visual .mv_flex .mv_img {
    aspect-ratio: 370/267;
    background-position: right;
    width: 95%;
    margin-left: auto;
  }
}
#main_visual .swiper-slide-active .swiper-img,
#main_visual .swiper-slide-duplicate-active .swiper-img,
#main_visual .swiper-slide-prev .swiper-img {
  -webkit-animation: zoomUp 4s linear 0s normal both;
          animation: zoomUp 4s linear 0s normal both;
}
#main_visual {
  /*
   .swiper-slide-active .swiper-img {
     animation: zoomUp 6s linear 0s normal both;
   }*/
  /* -- -- */
}
@-webkit-keyframes sdb05 {
  0% {
    height: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 0;
  }
}
@keyframes sdb05 {
  0% {
    height: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 0;
  }
}
#main_visual .scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 0;
  left: 5%;
}
@media (max-width: 767px) {
  #main_visual .scrolldown2 {
    left: 50%;
  }
}
#main_visual .scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  bottom: 190px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  #main_visual .scrolldown2 span {
    bottom: 80px;
  }
}
#main_visual .scrolldown2: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 .scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 175px;
  background: #eee;
}
@media (max-width: 767px) {
  #main_visual .scrolldown2:after {
    height: 70px;
  }
}
#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) {
  #main_visual {
    /*下からの距離が変化して丸の全体が上から下に動く*/
  }
  @-webkit-keyframes circlemove {
    0% {
      bottom: 65px;
    }
    100% {
      bottom: -5px;
    }
  }
  @keyframes circlemove {
    0% {
      bottom: 65px;
    }
    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 .swiper-slide {
  position: relative;
  background-position: center;
  background-size: cover;
  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: 1280px) {
  #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;
  }
}
#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;
}
@media (max-width: 767px) {
  .tp_sec01 {
    padding: 50px 0;
  }
}
.tp_sec01 .b_txt {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  color: #C80A0A;
}
@media (max-width: 1024px) {
  .tp_sec01 .b_txt {
    font-size: 24px;
  }
}
.tp_sec01 .layout_a .imgbox {
  width: 40%;
}
@media (max-width: 1024px) {
  .tp_sec01 .layout_a .imgbox {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .tp_sec01 .layout_a .txtbox {
    margin-top: 25px;
  }
}

.tp_sec02 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url(../images/home/sec02/sec02_bg01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 90px 0;
  color: #fff;
}
@media (max-width: 1024px) {
  .tp_sec02 {
    padding: 50px 0;
  }
}
@media (max-width: 1024px) {
  .tp_sec02 .ttl05 {
    text-align: center;
  }
}
.tp_sec02 figure {
  text-align: center;
}
.tp_sec02 figure img {
  width: 75%;
}

.tp_sec03 {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}
.tp_sec03:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: transparent -webkit-gradient(linear, left top, right top, from(#DE6641), color-stop(17%, #E8AC51), color-stop(33%, #F2E55C), color-stop(51%, #39A869), color-stop(67%, #4784BF), color-stop(84%, #5D5099), to(#A55B9A)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #DE6641 0%, #E8AC51 17%, #F2E55C 33%, #39A869 51%, #4784BF 67%, #5D5099 84%, #A55B9A 100%) 0% 0% no-repeat padding-box;
  z-index: -1;
}

.tp_sec04 {
  position: relative;
  z-index: 1;
}
.tp_sec04 .sec04_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: solid 5px;
  border-top: solid 5px;
  -o-border-image: linear-gradient(90deg, #DE6641 0%, #E8AC51 17%, #F2E55C 33%, #39A869 51%, #4784BF 67%, #5D5099 84%, #A55B9A 100%) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(#DE6641), color-stop(17%, #E8AC51), color-stop(33%, #F2E55C), color-stop(51%, #39A869), color-stop(67%, #4784BF), color-stop(84%, #5D5099), to(#A55B9A)) 1;
     border-image: linear-gradient(90deg, #DE6641 0%, #E8AC51 17%, #F2E55C 33%, #39A869 51%, #4784BF 67%, #5D5099 84%, #A55B9A 100%) 1;
}
.tp_sec04 .sec04_bnr li {
  width: 50%;
}
.tp_sec04 .sec04_bnr li a figure {
  position: relative;
  overflow: hidden;
}
.tp_sec04 .sec04_bnr li a figure .img_bnr {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 960/325;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .tp_sec04 .sec04_bnr li a figure .img_bnr {
    aspect-ratio: 195/107;
  }
}
.tp_sec04 .sec04_bnr li a figure figcaption {
  position: absolute;
  bottom: 5%;
  left: 10%;
  /* ✅ これが重要：箱としてサイズ確保 */
  width: 220px;
  height: 60px;
  pointer-events: none;
  /* ✅ 子のabsolute基準 */
  position: absolute;
}
@media (max-width: 767px) {
  .tp_sec04 .sec04_bnr li a figure figcaption {
    width: 164px;
    height: 14.82px;
    left: 3%;
  }
}
.tp_sec04 .sec04_bnr li a figure figcaption img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.tp_sec04 .sec04_bnr li a figure figcaption img + img {
  opacity: 0;
}
.tp_sec04 .sec04_bnr li a:hover figure .img_bnr {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.tp_sec04 .sec04_bnr li a:hover figure figcaption img {
  opacity: 0;
}
.tp_sec04 .sec04_bnr li a:hover figure figcaption img + img {
  opacity: 1;
}

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