@charset "UTF-8";
/* 通常CSS */
html {
  scroll-behavior: smooth;
}

/* 戻るボタン */
.top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #002d56;
  color: #fff;
  cursor: pointer;
  visibility: hidden;
  transition: all 0.7s;
  opacity: 0;
}

.top-btn.active {
  visibility: visible;
  opacity: 1;
}

.top-btn.active:hover {
  opacity: 0.7;
}

.top-btn::after {
  content: "↑";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 900;
  font-size: 20px;
}

li.side-navi-list {
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 8px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid gray;
}

li.side-navi-list a.side-navi-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 8px;
  height: 100%;
  color: inherit; /* リンクの文字色を親から継承 */
  text-decoration: none; /* 必要なら装飾をリセット */
}

li.side-navi-list img {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}

/* お問い合わせフォーム */
input[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
  margin-right: 0.25rem;
  color: #002d56;
}

input[type=radio],
input[type=checkbox] {
  transform: scale(1.5);
}

/* 送信ボタンスタイル */
input[type=submit].submit-button {
  background-color: #002d56;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type=submit].submit-button:hover {
  opacity: 0.7;
}

/* blogのカスタマイズ定義 */
.blog-container marker {
  background: linear-gradient(transparent 50%, #ffff01 80%);
}

.blog-container mark-yellow {
  background-color: #ffff33;
}

.blog-container mark-blue {
  background-color: #00ccff;
}

.blog-container mark-green {
  background-color: #99ff33;
}/*# sourceMappingURL=style.css.map */