@charset "UTF-8";
/* CSS Document */


/*-------------- ヘッダアニメーション --------------*/

/* lottie-container は背景レイヤー */
#lottie-container {
  position: absolute;    /* 背景として固定配置 */
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background-color: rgb(241, 241, 241);
  z-index: -2;
 
}

#lottie-container svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  min-height: 100% !important;
  width: auto !important;
  height: auto !important;
}

/* HTMLコンテンツ配置エリア */
.top-item-container {
  position: relative;
  max-width: 1600px;
  width: 100%;
  height: 80vh;
  margin-top:-150px;/* メニューの高さ分下げる */
  margin: 0 auto;
  z-index: 1;
  display: flex;
  align-items: flex-end;      /* 下寄せ */
  justify-content: flex-start; /* 左寄せ */
  pointer-events: auto;


}

/* メッセージの位置調整 */
.lottie-container-message {


  color: #020202;

}

.lottie-container-message h1{
font-size: 40px;

}
.lottie-container-message h3{
font-size: 28px;
font-weight:300;

}

.top-item-container .bottom-box{
  position: absolute;
  width: 100%;
   bottom: 100px;
   padding: 0 10px 0 10px;
   display: flex;
   justify-content: space-around;
  
}

/* CTA丸型ボタン */
.cta {
  display: flex;
  gap: 20px;
  justify-content: flex-start; /* 左寄せ。中央にしたい場合は center */
  margin-top: 50px;
color:white;
  
}

.round-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;         /* ボタンの直径 */
  height: 120px;
  border-radius: 50%;   /* 丸型 */
  background-color: #109191;  /* 好きな色に変更可 */
  color: white;
  text-decoration: none;
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
  padding: 10px;
  transition: background-color 0.3s ease;
}

.round-button:hover {
  background-color: #0d7a7a;
}

a.round-button:visited{
  color: #ffffff;
}

@media screen and (max-width: 767px) { /* スクリーンサイズが767px以下の場合に適用 */
/* HTMLコンテンツ配置エリア */
.top-item-container {

 margin-top:-50px;/* メニューの高さ分下げる */



}
.top-item-container .bottom-box{
 
   bottom: 10px;   
}
.lottie-container-message h1{
font-size: 20px;

}
.lottie-container-message h3{
font-size: 16px;
}

/* CTA丸型ボタン */
.cta {

  margin-top: 0px;

  
}

}