/* gsapアニメーション用CSS スクリプトはcustom-gsap.js */

/* 右下に現れるCTAボタン header.php設定 */
.mido-cta {
  position: fixed;
  right: -200px; /* 最初は画面外 */
  bottom: 150px;
  z-index: 9999;
  transition: right 0.5s ease;
}

.mido-cta-round-button {
  display:flex;
  background-color: #109191;
  color: white;
  padding: 20px 15px;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  width:120px;
  height: 120px;
  line-height: 1.2;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  align-items: center;
  justify-content: center;
}
a.mido-cta-round-button{

  color: white;

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

.mido-cta-close {
  position: absolute;
  top: -12px;    /* ボタンサイズに合わせて調整 */
  right: -12px;
  width: 32px;
  height: 32px;
  background-color: #109191;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;        /* × を大きく */
  line-height: 32px;      /* ボタンの高さと一致させる */
  text-align: center;
  padding: 0;
  
}

.mido-cta-round-button hr {
  border: none;
  border-top: 1px solid #ffffff; /* 上線だけ表示、色と太さ指定 */
  margin: 10px 0;
}

/* /右下に現れるCTAボタン */






.svg-bg {/*横長背景を左からスライド */
  position: absolute;
  top: 50%;
  left: -1200px; /* 初期は画面外 */
  transform: translateY(-50%);
  width:auto;
  height:300px;
  z-index: -1; /* 背景扱い */
  opacity: 0;
}

.svg-bg-message{
  position: relative;
 max-width: 1200px;
 margin: 0 auto ;
 padding-left: 50px;
height:300px;
display: flex;
align-items: center;
 
}

.svg-bg-message h1,.svg-bg-message h3{
margin-left: 20px;
 margin-right: 20px;
}

.svg-bg-message{
  position: relative;
 max-width: 1200px;
 margin: 0 auto ;
 padding-left: 50px;
height:300px;
display: flex;
align-items: center;
 
}
.svg-wrapper {
  position:absolute;
  top: 0px;
  right: -1200px;
  width: 800px;
  height: auto;
  opacity: 0;
  transform: rotate(0deg);
z-index: -1;
}




@media screen and (max-width: 767px) { /* スクリーンサイズが767px以下の場合に適用 */

}