
/*メイン*/

body {
    margin: 0;
    overflow: hidden;
    background: #000000;
    color: white;
    font-family: sans-serif;
  }



  /* タイマー（右上固定） */
  #timerBox {
    position: fixed;
    top: 20px;
    right: 20px;
    /*background: rgba(255,255,255,0.1);*/
    padding: 14px 20px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    font-size: 20px;
  }

  #timerControls button {
    margin: 0 5px;
  }

  /*タイマー設定*/
  #timerBox {
    position: fixed;
    top: 20px;
    right: 20px;
    /*background: rgba(255,255,255,0.1);*/
    padding: 14px 20px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    font-size: 20px;
    color: white;
  }
  #timeSettings {
    margin-top: 8px;
    font-size: 14px;
  }
  #timeSettings div {
    margin-bottom: 6px;
  }
  #timeSettings button {
    width: 24px;
    height: 24px;
    margin: 0 4px;
  }


/*タイマービジュアル最新*/

#timeDisplay {
  opacity: 1 !important;
  display: block !important;
  position: relative !important;
  z-index: 10 !important;
  color: rgb(255, 255, 255) !important;
  font-size: 60px !important;
}

.timer-modern {
  /*background: #eaf6ef;*/
  border-radius: 20px;
  padding: 18px 22px;
}

.timer-modern #timeDisplay {
  font-size: 56px;
  font-weight: 700;
  color: #6fcf97;
  letter-spacing: 1px;
}

.timer-modern #timerControls button {
  background: none;
  border: none;
  font-size: 26px;
  color: #6fcf97;
}




  /* ボタン中央配置 */
  #buttonContainer {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    display: flex; 
    gap: 40px;
  }

  /* ピクトグラムボタン */
  .sound-btn {
    width: 180px;
    height: auto;
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s;
  }

  .sound-btn:hover {
    transform: scale(1.1);
  }

  /* 音量調整部分 */
  #volumePanel {
  position: fixed;
  bottom: 0;
  width: 100%;
  /*background: rgba(0,0,0,0.6);*/
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.volume-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.volume-row button {
  background: #ff6666;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  color: white;
  font-size: 14px;
}


  /*ボタンにふきだしをつける*/
  /*.tooltip {
    position: absolute;
    background: rgba(255,255,255,0.9);
    color: #000;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    transform: translate(-50%, -130%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }

  .tooltip.show {
    opacity: 1;
  }*/

 /*ボタンを押すと薄く白くなる*/
  .sound-active {
  filter: brightness(1.1) opacity(0.75);
  transition: 0.2s;
 }

