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


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

/* lottie-container は背景レイヤー */
#lottie-container {
  position: absolute;    /* 背景として固定配置 */
  top: 129px;
  left: 0;
  width: 100%;
height: calc(100vh - 129px);
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  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: calc(100vh - 129px);
  margin: 0 auto;
  z-index: 1;
  display: flex;
  align-items: flex-end;      /* 下寄せ */
  justify-content: flex-start; /* 左寄せ */
  pointer-events: auto;


}


.top-item-container .bottom-box{
  position: absolute;
  width: 400px;
   bottom: 40px;
right: 100px;
z-index: 1;

  
}

.top-item-container .bottom-box img{

  width: 400px;
  height: auto;
  margin-bottom: 0;

  
}

.cta-karina {
  opacity: 0;
}


.arrow {
  position: absolute;
  bottom: -30px;           /* 下端に配置 */
  left: 50%;           /* 横方向の中央へ */
  transform: translateX(-50%); /* 画像の中心を揃える */
  width: 12px;         /* 任意でサイズ調整 */
  z-index: 0;
}


@media screen and (max-width: 767px) { /* スクリーンサイズが767px以下の場合に適用 */
/* HTMLコンテンツ配置エリア */
.top-item-container .bottom-box{
  position: relative;
  margin: 0 auto;
  max-width: 400px;
  width: 95%;
   bottom: 10px;
right: auto;

  
}

.top-item-container .bottom-box img{

 
  width: 100%;
  height: auto;
  margin-bottom: 0;



}
}

/* スマホ用メディアクエリ */
@media (max-width: 768px) {
  #lottie-container svg {
    width: 100% !important;        /* 横幅は画面いっぱい */
    height: auto !important;       /* 高さは自動でアスペクト比保持 */
    position: absolute !important;
    top: 50% !important;           /* 縦中央に基準を置く */
    left: 0 !important;            /* 左端に固定 */
    transform: translateY(-50%) !important; /* 縦だけ中央に移動 */
  }
}




