@charset "UTF-8";

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* 閉じるボタンの基本スタイル */
.fab-close-button {
  display: none; /* SP版でのみ表示するため、デフォルトでは非表示 */
  position: fixed;
  right: 50px; /* fab-stackと合わせる */
  bottom: 178px; /* fab-stackの上に配置するために調整 */
  z-index: 1101; /* fab-stackより手前に */
  width: 48px; /* サイズ調整 */
  height: 48px;
  border-radius: 50%;
  background: #2cabed;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.fab-close-button .cross-icon {
  font-size: 32px; /* バツのサイズ */
  line-height: 1;
  font-weight: 300;
}
.fab-stack {
  position: fixed;
  right: 50px;
  bottom: 40px;
  z-index: 1100;
  display: grid;
  gap: 14px;
}

.fab {
  -webkit-tap-highlight-color: transparent;
  display: grid;
  place-items: center;
  gap: 6px;
  width: 120px;
  height: 120px;
  border-radius: 9999px;
  border: 2px solid #2cabed;
  cursor: pointer;
  background: #fff;
  color: #2cabed;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  padding: 14px 10px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  letter-spacing: -0.03em;
}

.fab img {
  width: 48px;
  height: 48px;
  display: block;
  fill: currentColor;
}

.fab,
.fab:link,
.fab:visited {
  text-decoration: none;
}

.fab-close-button {
  display: none;
}
/* SP版での調整 */
@media (max-width: 978px) {
  .fab-close-button {
    display: block; /* デフォルトでは表示 */
  }

  .fab-close-button {
    display: grid;
    right: 8px;
    bottom: 220px;
    width: 24px;
    height: 24px;
  }

  .fab-close-button .cross-icon {
    font-size: 18px;
  }

  /* チェックボックスがチェックされていない（閉じた）時のfab-stackの状態 */
  #fab-toggle:not(:checked) ~ .fab-stack {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%); /* 下にスライドさせて非表示 */
  }

  /* 【追加】チェックボックスがチェックされていない（閉じた）時のfab-close-buttonの状態 */
  #fab-toggle:not(:checked) ~ .fab-close-button {
    display: none; /* バツボタン自体を非表示にする */
  }

  #fab-toggle:checked ~ .fab-close-button {
    background: #fff;
    opacity: 0.5;
    transform: rotate(0deg);
    color: #000;
    border: #bdbdbd 1px solid;
  }

  .fab-stack {
    right: 10px;
  }
  .fab {
    width: 80px;
    height: 80px;
  }
  .fab img {
    width: 24px;
    height: 24px;
  }
  .fab span {
    font-size: 10px;
  }
}