@charset "utf-8";

/* PC CTAボタン */
.fixed-cta {
      position: fixed;
      width: 15em;
      height: 10em;
      bottom: 30px;
      right: 20px;
      text-align: center;
      /* left: 50%; */
      /* transform: translateX(-50%); */
      z-index: 1000;
      background-color: rgba(255,214,0,0.9);
      backdrop-filter: blur(6px);
      border: 3px solid #FFD600;
      color: black;
      font-family: "Noto Sans", sans-serif;
      font-size: 1.3rem;
      padding: 30px 20px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: bold;
      transition: transform 0.3s ease, opacity 0.3s ease;
      box-shadow: 0 6px 16px rgba(0,0,0,0.25); /* 影追加 */
    }
.fixed-cta p{
      font-size: 1.4rem;
      padding-bottom: 10px;
      letter-spacing: 1.2px;
    }
.fixed-cta a {
  color: black;
  text-decoration: none;
  padding-top: 30px;
  line-height: 40px;
  font-size: 1.8rem;
  letter-spacing: 2.0px;
    }
.fixed-cta .tel-time{
  font-size: 1.0rem;
  font-weight: 500;
    }
.fixed-cta a.mail-btn {
  display: inline-block;
  margin-top: 5px;
  padding: 5px 20px;
  background-color: #fff; /* 白ベース */
  color: #333;            /* 文字は濃いグレー */
  border: 1px solid #FFD600; /* 枠はCTAカラー */
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25); /* 影追加 */
}
.fixed-cta a.mail-btn:hover {
  background-color: #2E7D32; 
  color: #ffffff;
}
.fixed-cta.hide {
transform: translateX(120%);
  opacity: 0;
  pointer-events: none;
    }

.cta-close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
    }
.cta-reopen {
  position: fixed;
  bottom: 80px;
  right: 0;
  width: 50px;
  padding: 15px 0;
  background-color:  rgba(255,214,0,0.9);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: black;
  font-size: 1.2rem;
  padding: 15px 20px;
  padding-top: 20px;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  display: none;
  z-index: 1001;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 1.3px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  position: fixed;
  letter-spacing: 2.5px;
    }
/* 付箋色 */
.cta-reopen::before {
  content: "";
  display: block;
  width: 100%;
  height: 12px;      /* 付箋の頭の高さ */
  background-color: #2E7D32; /* 付箋色 */
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 840px) {
/* タブレット　CTAボタン */
    .fixed-cta {
      height: 11.5em;
      bottom: 90px;
    }
    .cta-reopen{
      width: 60px;
      height: 11.5em;
      padding-top: 37px;
      padding-right: 23px;
      font-size: 1.4rem;
    }
}


@media (max-width: 520px) { 
 /* スマホ　CTAボタン */
.fixed-cta {
      position: fixed;
      width: 20em;
      height: 13em;
      bottom: 0;
      right: 0;
      z-index: 1000;
      background-color: rgba(255,214,0,0.9);
      border: 3px solid #FFD600;
      color: black;
      padding: 13px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .fixed-cta a{
      font-size: 2.5rem;
    }
    .fixed-cta p{
      font-size: 1.6rem;
    }
    .fixed-cta .tel-time{
      font-size: 1.6rem;
    }
.fixed-cta a.mail-btn {
  display: inline-block;
  margin-top: 5px;
  padding: 5px 20px;
  background-color: #fff; /* 白ベース */
  color: #333;            /* 文字は濃いグレー */
  border: 1px solid #FFD600; /* 枠はCTAカラー */
  border-radius: 6px;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25); /* 影追加 */
}
.fixed-cta a.mail-btn:hover {
  background-color: #2E7D32; 
  color: #ffffff;
}
.cta-reopen{
  bottom: 0;
    }
.fixed-cta.hide {
  transform: translateY(100%);
  opacity: 0;
    }
  }