@charset "utf-8";
/* CSS Document */
/* ロード画面の全体設定 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff; /* ここは背景色、透過なら rgba(255,255,255,0.8) とかもOK */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

/* ロード中の動画のサイズ調整 */
#loading video {
  width: 100vw; /* 動画のサイズ指定 */
  height: auto;
}

/* ロード完了でフェードアウト用クラス */
#loading.loaded {
  opacity: 0;
  pointer-events: none;
}

/* ロード後のフェードアウト用 */
#loading.fadeout {
  opacity: 0;
  visibility: hidden;
}

/* ページ本体 */
#main-content {
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* 表示時のフェードイン */
#main-content.show {
  opacity: 1;
}


/*ここからトップビジュアル*/
.TOP_visual {
  display: flex;
  align-items: flex-end;
  height: calc(100vh - 140px);
  min-height: 560px;
  overflow-x: hidden;
}
.TOP_visual-left {
  width: 300px;
  height: 500px;
  overflow: hidden;
  margin-bottom: 150px;
}
.TOP_visual-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.TOP_visual-image {
  margin-left: auto;
  width: calc(100% - 300px);
  height: calc(100vh - 140px);
  min-height: 560px;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
}
.TOP_visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 50%;
  display: block;
  border-radius: 16px 0 0 16px;
}
/*ここまでトップビジュアル*/
/*ここからあいさつ*/
.greeting-section {
  background: linear-gradient(to bottom, #FF8561, #FF8EBB); /*グラデーション*/
  padding-top: 230px;
  display: flex;
  justify-content: center;
  margin-top: -130px;
}
.greeting-section_All {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  max-width: 1000px;
}
/*ここからあいさつ左*/
.greeting-section_left {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.greeting_title {
  font-size: 8.0rem;
  color: #fff;
  font-weight: 600;
}
.greeting_message {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px 0 0 16px;
  padding: 40px;
}
.greeting_message p {
  font-size: 2.0rem;
}
/*ここまであいさつ左*/
/*ここからあいさつ右*/
.greeting-section_right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.greeting-section_right img {
  width: 400px;
  height: 550px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
/*ここまであいさつ右*/
/*ここまであいさつ*/
/*ここからサービス内容*/
.service-section {
  background: #fff;
  padding-top: 50px;
}
.service-section_All {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 50px 0;
  background: var(--main-blue);
  border-radius: 60px 60px 0 0 ;
}
/*ここからサービス内容左*/
.service-section_left {
 
}
.service-section_left img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
/*ここまでサービス内容左*/
/*ここからサービス内容右*/
.service-section_right {
  width: 600px;
  height: auto;
  padding: 40px 0 40px 50px;
  border-radius: 16px;
 
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.service-section_right h2 {
  font-size: 8.0rem;
  font-weight: 600;
  color: #fff;
}
.service-section_right p {
  font-size: 2.0rem;
  color: #fff;
}
.service_btn-wrap {
  display: flex;
  justify-content: center;
}
/*ここまでサービス内容右*/
/*ここまでサービス内容*/

/*ここから会社概要*/
.Company-section {
	background: #fff;
	margin: -100px auto 0;
	padding-top: 150px;
}
.Company-Info {
  display: flex;
  justify-content: center;
  width: 90%;
  max-width: 1120px;
  margin: 50px auto 0;
}
.Company-Info_title {
  width: 200px;
}
.Company-Info_title h2 {
  font-size: 4.0rem;
  color: #FF6167;
  font-weight: 600;
}
.Company-Info_list {
  width: calc(100% - 200px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.Company-Info_list-item {
  width: calc(50% - 15px);
  padding: 24px 20px 26px;
  border-top: 2px solid #e6e6e6;
}
.hl {
	font-size: 1.6rem;
	font-weight: 600;
	color: #FF6167;
}
.txt {
	font-size: 1.8rem;
	font-weight: 400;
}
/*ここまで会社概要*/

/*ここからスタッフ*/
.staff-section {
  padding-top: 100px;
  padding-bottom: 200px;
}
.staff-section_All {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.staff-section_All img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 16px;
}
.staff-section_Content {
  position: absolute;
  bottom: -100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.staff-section_Content-left {
  background: #fff;
  padding: 50px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: 0 16px 0 0;
}
.staff-section_Content-left h2 {
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--main-blue);
}
.staff-section_Content-left p {
  font-size: 1.8rem;
}
.staff-section_Content-right {
  display: flex;
  align-items: flex-end;
}
/*ここまでスタッフ*/
/* =============================
  1120px以下 レスポンシブ対応
============================= */
@media (max-width: 1120px) {
  .TOP_visual-left {
    width: 100px;
  }
  .TOP_visual-image {
    margin-left: auto;
    width: calc(100% - 100px);
  }
  .TOP_visual-left img {
    display: none;
  }
  .greeting-section_All {
    max-width: 700px;
  }
  .greeting-section_left {
    gap: 30px;
  }
  .greeting_title {
    font-size: 6.5rem;
  }
  .greeting_message {
    padding: 20px;
  }
  .greeting_message p {
    font-size: 1.4rem;
  }
  .greeting-section_right img {
    width: 280px;
    height: 385px;
  }
  .service-section_All {
	padding-bottom: 50px;
	border-radius: 30px 30px 0 0 ;
  }
  .service-section_left img {
    width: 360px;
    height: 360px;
  }
  .service-section_right {
    width: 360px;
    height: auto;
    padding: 30px 0 30px 30px;
    gap: 20px;
  }
  .service-section_right h2 {
    font-size: 5.0rem;
  }
  .service-section_right p {
    font-size: 1.4rem;
  }
	
  /*ここから会社概要*/
  .Company-Info {
    display: flex;
    justify-content: center;
    width: 90%;
    max-width: 1120px;
    margin: 50px auto 0;
  }
  .Company-Info_title {
    width: 150px;
  }
  .Company-Info_title h2 {
    font-size: 3.0rem;
  }
  .Company-Info_list {
    width: calc(100% - 150px);
  }
  .Company-Info_list-item {
    width: calc(50% - 15px);
    padding: 20px 16px 24px;
    border-top: 2px solid #e6e6e6;
  }	
  /*ここまで会社概要*/
	
	
  .staff-section_All {
    width: 90%;
  }
  .staff-section_All img {
    border-radius: 12px;
  }
  .staff-section_Content-left {
    padding: 20px 20px 0;
    gap: 20px;
    border-radius: 0 12px 0 0;
  }
  .staff-section_Content-left h2 {
    font-size: 3.0rem;
  }
  .staff-section_Content-left p {
    font-size: 1.4rem;
  }
}
/* =============================
  768px以下 レスポンシブ対応
============================= */
@media (max-width: 768px) {
  .TOP_visual {
    height: calc(50vh - 90px);
    min-height: 200px;
  }
  .TOP_visual-left {
    width: 50px;
  }
  .TOP_visual-image {
    margin-left: auto;
	height: calc(50vh - 90px); /* 👈 追加！ */
    min-height: 200px;
    width: calc(100% - 50px);
  }
  .TOP_visual-image img {
  object-position: 80% center;
  }
  .TOP_visual-left img {
    display: none;
  }
  .greeting-section {
    padding-top: 180px;
  }
  .greeting_title {
    font-size: 5.0rem;
  }
  .greeting-section_All {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /*ここからあいさつ左*/
  .greeting-section_left {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .greeting_message {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    border-radius: 12px 12px 0 0;
    padding: 30px;
  }
  .greeting-section_right img {
    width: 90%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    display: block;
	border-radius: 0 0 12px 12px;
  }
  .service-section {
    padding-top: 50px;
  }
  .service-section_All {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: var(--main-blue)); /*グラデーション*/
    padding-top: 50px;
	padding-bottom: 0;
  }
  .service-section_left {
    width: 80%;
    aspect-ratio: 1 / 1;
    position: static;
    transform: translateX(0px);
  }
  .service-section_left img {
    width: 100%;
    height: 100%;
  }
  .service-section_right {
    width: 80%;
    height: auto;
    ;
    background: none;
    position: static;
    transform: translateX(0px);
  }
	.service-section_right h2 {
    font-size: 3.0rem;
  }
	
  /*ここから会社概要*/
  .Company-Info {
	flex-direction: column;
	align-items: center;
    margin: 50px auto 0;
   }
  .Company-Info_title {
    width: auto;
	padding-bottom: 20px;
  }
  .Company-Info_list {
    width: 100%;
	flex-direction: column;
	align-items: center;
  }
  .Company-Info_list-item {
    width: 100%;
  }
  /*ここまで会社概要*/
	
  .staff-section {
    padding-top: 0;
    padding-bottom: 50px;
  }
  .staff-section_All img {
    transform: translateY(50px);
    z-index: 0;
  }
  .staff-section_Content {
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    z-index: 2;
  }
  .staff-section_Content-left {
    padding: 30px;
    border-radius: 12px 12px 0 0;
  }
}