.floating-btn {
  position: fixed;
  width: 400px;        /* ボタンの横幅を300pxに固定 */
  height: 100px;        /* ボタンの高さを60pxに固定 */
  align-items: center;  /* 縦方向の真ん中 */
  justify-content: center;
  display: flex;            /* フレックスボックスを有効にする */
  flex-direction: column;   /* 中身を縦に並べる（改行を有効にする） */
  text-align: center;
  bottom: 20px;  
  right: 20px;
  background-color: #fac249; 
  color: #fff;               
  padding: 15px 25px;        /* ボタンの大きさ（内側の余白） */
  border-radius: 10px;       
  text-decoration: none;    
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* 影をつけて浮かせている感を出す */
  z-index: 9999;            
  transition: transform 0.3s; /* マウスを乗せた時の動きを滑らかに */
}

.btn-large-text {
  font-size: 24px;
  font-weight: bold;
  display: block;
  margin-top: 5px;
}

.yuoutubeiframe{
  display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    width: 100%;  
    height: auto !important;
    max-width: 800px;   
    position: relative;
 　 z-index: 1;
}
.yuoutubeiframe iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.p-home-about__icon02{
      bottom: -25%;
    left: -45px;
    position: absolute;
    }


@media screen and (max-width: 767px) {
  .floating-btn {
  width: 60%;
  height: 80px;
  bottom: 60px;
  font-size: 14px;
  right: 10px;
  padding: 15px 10px;
  
  }
  
  .btn-large-text {
  font-size: 20px;
  font-weight: bold;
  display: block;
 }
 
  .yuoutubeiframe {
    width: 85% !important; 
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
   .p-home-about__icon03 {
     bottom: -50%;
}

    .p-home-about__icon02{
      bottom: -50%;
    }

}
