/* みまもりサービスへ戻るボタンがタイトルに被らないよう余白をとる */
.markdown-section {
  padding: 60px 20px 0px 20px;
}

/* 画像のスタイル */
.markdown-section img {
  border: solid 1px  black;
}
@media (min-width: 1024px) {
  .markdown-section img {
    max-width: 800px;
  }
}

/* テーブルのレイアウト指定 */
.markdown-section table th {
  border-collapse: collapse;
  border: 1px solid;
  border-color: gray;
  background-color: rgb(202, 248, 233);
}

.markdown-section table td {
  border-collapse: collapse;
  border: 1px solid;
  border-color: gray;
}

/* Ripple effect */
.ripple {
  background-position: center;
  transition: background 0.8s;
}
.ripple:hover {
  background: #47a7f5 radial-gradient(circle, transparent 1%, #47a7f5 1%) center/15000%;
}
.ripple:active {
  background-color: #6eb9f7;
  background-size: 100%;
  transition: background 0s;
}

/* Button style */
.button {
  border: none;
  border-radius: 2px;
  padding: 12px 18px;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  color: white;
  background-color: #2196f3;
  box-shadow: 0 0 4px #999;
  outline: none;
}

/* サイドメニューのレイアウト指定 */
.sidebar-nav li > p {
  margin-bottom: 0px;
}
.sidebar-nav li > p > a {
  font-weight: bold;
}
.sidebar ul > li > a {
  padding: 0px;
}
.sidebar {
  padding-bottom: 190px !important;
}

/* ※1、※2. ・・・みたいな注釈用 */
ol.asterisk {
  counter-reset: number;
  list-style: none;
  padding-left: 0px;
}
ol.asterisk li:before {
  counter-increment: number;
  content: "※"counter(number)".";
  margin-right: 5px;
}
li.asterlisk-item {
  display: flex;
}

/* FAQの回答文のスタイル */
.faq-answer {
  font-size: 18px;
  font-weight: bold;
}

/* テーブルのスタイル */
.markdown-section tbody tr:nth-child(even) {
  background: white;
}