@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

/*ディスプレイ初期値設定*/
/*以下、サイト固有の設定*/
/*
$gray_color01: #D1D1D1;
$gray_color02: #ccc;
$gray_color03: #777;
$gray_color04: #555;
$gray_color05: #F4F3F3;
$gray_color06: #ddd;
*/
/*サイト共通の間隔*/
/*英語用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;
}
*/
/*

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

*/
/* ------------ */
/* デザイン共通 */
/* ------------ */
/* -------------- */
/* メインビジュアル */
/* ------------- */
#main_visual {
  width: 100%;
  z-index: 1;
  overflow: hidden;
  height: calc(100vh);
  position: relative;
}

@media screen and (max-width: 767px) {
  #main_visual {
    height: calc(80vh - 60px);
  }
}

/** MV GLID**************/
.mv_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.mv_list.collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  margin: 10px;
  width: calc(100% - 20px);
  height: 100%;
  grid-gap: 20px;
  grid-template-areas: "collage_img01 collage_img03 collage_img02" "collage_img01 collage_img03 collage_img05" "collage_img04 collage_img03 collage_img05";
}

@media screen and (max-width: 767px) {
  .mv_list.collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: "collage_img01 collage_img02" "collage_img03 collage_img03" "collage_img04 collage_img05";
  }
}

.mv_list.collage li {
  width: 100%;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.mv_list.collage li:nth-child(1) {
  grid-area: collage_img01;
}

.mv_list.collage li:nth-child(2) {
  grid-area: collage_img02;
}

.mv_list.collage li:nth-child(3) {
  grid-area: collage_img03;
}

.mv_list.collage li:nth-child(4) {
  grid-area: collage_img04;
}

.mv_list.collage li:nth-child(5) {
  grid-area: collage_img05;
}

/***/
.mv_logo_area {
  width: 100vw;
  height: 100%;
  /*aspect-ratio: 1600 / 852;*/
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 2;
  opacity: 0;
  /* -webkit-transform: scale(0.4); */
  /* transform: scale(0.4); */
}

.mv_logo_area.active {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  opacity: 1;
}

.mv_logo_area figure {
  max-width: 600px;
  position: absolute;
  top: calc(50% - 0px);
  left: 49.5%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  -webkit-animation: zoomUp 4s linear 0s normal both;
          animation: zoomUp 4s linear 0s normal both;
}

.mv_logo {
  position: absolute;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 45vw;
  z-index: 555;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.mv_logo figure {
  margin: 0;
  text-align: center;
}

.copy_text {
  width: 30%;
  color: #fff;
  position: absolute;
  z-index: 2;
  top: calc(70% - 0px);
  left: 20%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .copy_text {
    top: calc(85% - 50px);
    width: 70%;
    left: 40%;
  }
}

/******************************/
/* swiper TOPのみ制御 */
/******************************/
.swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  background-position: center;
  background-size: cover;
  height: calc(100vh);
}

.swiper-container .swiper-wrapper .swiper-slide .slider_block {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100vh);
}

@media screen and (max-width: 1280px) {
  .swiper-container .swiper-wrapper .swiper-slide .slider_block {
    height: 100vh;
  }
}

@media screen and (max-width: 1280px) {
  .swiper-container .swiper-wrapper .swiper-slide .slider_mask {
    height: 63vh;
  }
}

.swiper-pagination {
  /* top: 40%; */
  bottom: 55px;
  left: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .swiper-pagination {
    left: 0;
    right: 0;
    bottom: 55px;
    position: inherit;
  }
}

.swiper-pagination .swiper-pagination-bullet {
  margin-right: 15px;
  width: 40px;
  height: 4px;
  background-color: #ffffff;
  opacity: 1;
  outline: none;
  border-radius: initial;
}

@media screen and (max-width: 767px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    background-color: #ddd;
  }
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e83c41;
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

/* -------------- */
/* ヘッダー */
/* ------------- */
@media screen and (max-width: 767px) {
  .home header .h-logo .h1 a img {
    display: none;
  }
  .home header .h-logo .h1 a img + img {
    display: block;
  }
}

.home .header_drawer_toggle .gnav-trg span,
.home .header_drawer_toggle .gnav-trg::before,
.home .header_drawer_toggle .gnav-trg::after {
  background-color: #fff;
}

.home .header_drawer_toggle.fixed .gnav-trg span,
.home .header_drawer_toggle.fixed .gnav-trg::before,
.home .header_drawer_toggle.fixed .gnav-trg::after {
  background-color: #333;
}

/* -------------- */
/* トップコンテンツ */
/* ------------- */
.tp_news {
  padding: 100px 0 0;
}

@media screen and (max-width: 1024px) {
  .tp_news {
    padding: 50px 0 0;
  }
}

.tp_news .thum_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px 20px;
}

.tp_news .thum_list li {
  width: calc(100% / 4 - 27px);
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .tp_news .thum_list li {
    width: calc(100% / 2 - 10px);
  }
}

.tp_news .thum_list li a figure img {
  aspect-ratio: 1/1;
}

.tp_sec01 {
  padding: 90px 0 0;
}

@media screen and (max-width: 767px) {
  .tp_sec01 {
    padding: 45px 0 0;
  }
}

.tp_sec01 .layout_sec01 .ttlbox {
  width: 300px;
}

@media screen and (max-width: 767px) {
  .tp_sec01 .layout_sec01 .ttlbox {
    width: 100%;
  }
}

.tp_sec01 .tp_sec01_bg {
  background-image: url(../images/common/tp_sec01_bg01.png);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  aspect-ratio: 1920/99;
}

@media screen and (max-width: 767px) {
  .tp_sec01 .tp_sec01_bg {
    background-size: cover;
    aspect-ratio: 640/90;
  }
}

.tp_sec01 .btn_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .tp_sec01 .btn_flex {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .tp_sec01 .btn_flex li {
    margin-bottom: 15px;
  }
  .tp_sec01 .btn_flex li:last-child {
    margin-bottom: 0;
  }
}

.tp_sec03 {
  position: relative;
  padding: 80px 0 0;
}

@media screen and (max-width: 1024px) {
  .tp_sec03 {
    padding: 50px 0 0;
  }
}

.tp_sec04 {
  position: relative;
  padding: 0 0 80px;
}

@media screen and (max-width: 1024px) {
  .tp_sec04 {
    padding: 0 0 50px;
  }
}

.tp_sec05 {
  padding: 80px 0;
  background-color: #F9F5F6;
}

@media screen and (max-width: 767px) {
  .tp_sec05 {
    padding: 50px 0;
  }
}

.tp_sec05 .lauout_ul01b li:last-child {
  border: none;
}

.tp_sec05 .lauout_ul01b li .imgbox img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 700/540;
}

.tp_sec06 {
  /*padding: 100px 0;

  @include max_scr($bp_tb) {
    padding: 50px 0;
  }
*/
}

.tp_sec08 {
  padding: 90px 0;
}

@media screen and (max-width: 767px) {
  .tp_sec08 {
    padding: 45px 0;
  }
}

/*# sourceMappingURL=css_map/style_home.css.map */
