@charset "UTF-8";

/* ========== 画面右下のフロート式CTAボタン（共通） ==========
   元: css/style.css 行754-838 より切り出し。
   柏平ベース PHP（index/style/attendees）からはこのファイルのみを読込むことで、
   旧デザインの他スタイル汚染を回避する。 */
.fix_btn {
  position: fixed;
  bottom: 5px;
  right: 15px;
  max-width: 400px;
  border-radius: 10px;
  font-family: "游明朝","游明朝体","serif";
  z-index: 9999;
  text-align: center;
}
.fix_btn .heading {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #555;
  text-shadow: 0 0 2px #ffffff;
}
.fix_btn .btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 215px;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  padding: 15px;
  gap: 20px;
}
.fix_btn .btn img {
  width: 45px;
  height: 45px;
}
.fix_btn .phone {
  background-color: #CABC73;
}
.fix_btn .fix_contact {
  background-color: #68c3c5;
}
.fix_btn .btn p {
  text-align: left;
  color: #fff;
  font-weight: normal;
  font-size: 15px;
  line-height: 1.4;
}
.fix_btn .phone p span {
  text-align: left;
  font-size: 20px;
}
@media (max-width: 499px) {
  .fix_btn {
    position: fixed !important;
    display: flex !important;
    max-width: 100%;
    width: 100%;
    left: 0;
    right: 0;
    bottom: env(safe-area-inset-bottom, 0);
    z-index: 9999;
  }
  .fix_btn .heading {
    display: none;
  }
  .fix_btn .btn {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin-bottom: 0;
    border-radius: 0;
    padding: 10px;
    box-shadow: none;
  }
  .fix_btn .phone p span {
    display: none;
  }
  .fix_btn .btn img {
    width: 30px;
    height: 30px;
  }
  .fix_btn .btn p {
    font-size: 14px;
  }
}
