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

.cormorant {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.zen-old {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  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: 2;
  overflow: hidden;
  height: calc(100vh);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /*
  .swiper-slide-active .swiper-img,
  .swiper-slide-duplicate-active .swiper-img,
  .swiper-slide-prev .swiper-img {
    animation: zoomUp 8.5s linear 0s normal;
  }
*/
}

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

#main_visual .mv_scr {
  font-weight: 800;
  position: absolute;
  bottom: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  z-index: 3;
  opacity: 0;
}

@media screen and (max-width: 1280px) {
  #main_visual .mv_scr {
    bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  #main_visual .mv_scr {
    bottom: 8px;
  }
}

#main_visual .mv_scr.active {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 1;
}

#main_visual .mv_scr:before {
  content: "";
  width: 2px;
  height: 125px;
  position: absolute;
  bottom: -15vh;
  left: 50%;
  background-color: #294E7A;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}

@media screen and (max-width: 1280px) {
  #main_visual .mv_scr:before {
    height: 60px;
    bottom: -9vh;
  }
}

@media screen and (max-width: 767px) {
  #main_visual .mv_scr:before {
    height: 30px;
    bottom: -9vh;
  }
}

#main_visual .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); */
}

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

#main_visual .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%);
}

#main_visual .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;
}

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

#main_visual .copy_text {
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  position: absolute;
  z-index: 2;
  top: calc(50% - 0px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  #main_visual .copy_text {
    top: calc(50% - 50px);
    width: 80%;
  }
}

/* -------------- */
/* 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;
}

/* -------------- */
/* ABOUT */
/* ------------- */
/* -------------- */
/* トップコンテンツ */
/* ------------- */
.tp_sec01 {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

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

.tp_sec01 .ttl00 {
  font-size: 36px;
}

@media screen and (max-width: 767px) {
  .tp_sec01 .ttl00 {
    font-size: 24px;
  }
}

.tp_sec01:before {
  content: "";
  width: 2px;
  height: 25%;
  position: absolute;
  top: 0%;
  left: 50%;
  background-color: #333;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}

@media screen and (max-width: 1280px) {
  .tp_sec01:before {
    height: 30px;
  }
}

.tp_sec01:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff99;
  background: -webkit-gradient(linear, left bottom, left top, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.tp_sec01 .sec01_bg {
  background-image: url(../images/home/tp_message_txt01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 779/194;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60%;
  max-height: 194px;
}

@media screen and (max-height: 1024px) {
  .tp_sec01 .sec01_bg {
    width: 60%;
    background-image: url(../images/home/tp_message_txt01.png);
  }
}

@media screen and (max-width: 767px) {
  .tp_sec01 .sec01_bg {
    width: 80%;
    top: 20%;
    background-image: url(../images/home/tp_message_txt01.png);
  }
}

.tp_sec01 .box {
  padding-top: 12%;
  color: #333;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tp_sec01 .box p {
  line-height: 4;
}

.tp_sec02 {
  padding: 100px 0;
  background-color: #DBDBDB;
  position: relative;
  z-index: 2;
}

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

.tp_sec02 .sec02_contflex01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .tp_sec02 .sec02_contflex01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.tp_sec02 .sec02_contflex01 .imgbox {
  width: 50%;
  margin-top: 40px;
}

@media screen and (max-width: 1024px) {
  .tp_sec02 .sec02_contflex01 .imgbox {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .tp_sec02 .sec02_contflex01 .imgbox {
    margin-bottom: 100px;
  }
}

.tp_sec02 .sec02_contflex01 .imgbox figure.act01 {
  position: relative;
  z-index: 2;
}

.tp_sec02 .sec02_contflex01 .imgbox figure.act02 {
  position: absolute;
  z-index: 1;
  left: 0vw;
  max-width: 390px;
  width: 50%;
  -webkit-transform: translate(calc(0px), -25%);
          transform: translate(calc(0px), -25%);
}

.tp_sec02 .sec02_contflex01 .imgbox figure.act02 img {
  width: 20vw;
}

@media screen and (max-width: 767px) {
  .tp_sec02 .sec02_contflex01 .imgbox figure.act02 img {
    width: 34vw;
  }
}

.tp_sec02 .sec02_contflex01 .txtbox {
  margin-left: 100px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .tp_sec02 .sec02_contflex01 .txtbox {
    margin-left: 0;
  }
}

.tp_sec02 .sec02_contflex01 .txtbox p {
  line-height: 1.8;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .tp_sec02 .sec02_contflex01 .txtbox p {
    width: 100%;
  }
}

.tp_sec02 .sec02_contflex01 .txtbox .eng_txt {
  font-size: 12px;
  font-family: "Cormorant", serif;
}

.tp_sec02 .sec02_contflex02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .tp_sec02 .sec02_contflex02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.tp_sec02 .sec02_contflex02 .imgbox {
  width: 30%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .tp_sec02 .sec02_contflex02 .imgbox {
    width: 100%;
    position: inherit;
    margin-bottom: 50px;
  }
}

.tp_sec02 .sec02_contflex02 .imgbox img {
  position: absolute;
  bottom: 0%;
  right: 0;
  height: 26vh;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 645/356;
}

@media screen and (max-width: 767px) {
  .tp_sec02 .sec02_contflex02 .imgbox img {
    position: relative;
  }
}

.tp_sec02 .sec02_contflex02 .txtbox {
  max-width: 36vw;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  margin-right: 100px;
}

@media screen and (max-width: 767px) {
  .tp_sec02 .sec02_contflex02 .txtbox {
    width: 100%;
    max-width: inherit;
    margin-right: 0;
    margin-bottom: 50px;
  }
}

.tp_sec02 .sec02_contflex02 .txtbox p {
  line-height: 1.8;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .tp_sec02 .sec02_contflex02 .txtbox p {
    width: 100%;
  }
}

.tp_sec02 .sec02_contflex02 .txtbox .eng_txt {
  font-size: 12px;
  font-family: "Cormorant", serif;
}

.tp_sec03 {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

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

.tp_sec03 .h3 {
  font-size: 20px;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .tp_sec03 .h3 {
    text-align: center;
  }
}

.tp_sec03 .tp_sec03_contents {
  max-width: 1200px;
  margin-left: auto;
}

.tp_sec03 .tp_sec03_contents .tp_sec03_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .tp_sec03 .tp_sec03_contents .tp_sec03_flex {
    display: block;
  }
}

.tp_sec03 .tp_sec03_contents .tp_sec03_flex .imgbox {
  width: 55%;
}

@media screen and (max-width: 1024px) {
  .tp_sec03 .tp_sec03_contents .tp_sec03_flex .imgbox {
    width: 100%;
  }
  .tp_sec03 .tp_sec03_contents .tp_sec03_flex .imgbox figure {
    text-align: center;
  }
}

.tp_sec03 .tp_sec03_contents .tp_sec03_flex .txtbox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 40px;
}

@media screen and (max-width: 1024px) {
  .tp_sec03 .tp_sec03_contents .tp_sec03_flex .txtbox {
    margin-left: 0;
    margin-top: 30px;
  }
}

.tp_sec03 .tp_sec03_contents .tp_sec03_flex .txtbox p {
  line-height: 1.8;
}

.tp_sec03 .tp_sec03_contents .tp_sec03_flex .txtbox .text_align_left.ttl00 {
  text-align: center !important;
}

.tp_sec03 .tp_sec03_contents .tp_sec03_flex .txtbox .eng_txt {
  font-size: 12px;
  font-family: "Cormorant", serif;
}

.tp_sec04 {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

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

.tp_sec04 .eng_txt {
  font-size: 12px;
  font-family: "Cormorant", serif;
}

.tp_sec05 {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

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

@media screen and (max-width: 767px) {
  .tp_sec05 .ttl01.text_align_left {
    text-align: center !important;
  }
}

@media screen and (max-width: 767px) {
  .tp_sec05 .thum_list {
    display: block;
  }
}

.tp_sec05 .thum_list li {
  width: calc((100% - 60px) / 4);
  margin-right: 20px;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .tp_sec05 .thum_list li {
    margin-right: 0;
    width: 100%;
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .tp_sec05 .thum_list li:nth-child(1) {
    margin-top: 0;
  }
}

.tp_sec05 .thum_list li:nth-child(4n) {
  margin-right: 0;
}

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

.tp_sec06 {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

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

.tp_sec06 .layout_b .imgbox {
  width: 30%;
}

@media screen and (max-width: 1024px) {
  .tp_sec06 .layout_b .imgbox {
    width: 100%;
  }
}

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