body {
  font-family: 'Noto Sans JP', 'Zen Maru Gothic';
  margin: 0;
  padding: 0;
}

body {
  background: #E2E2E2;
}
header {
  position: sticky;
  top: 0;
  z-index: 35;
}

/* 背景色 */
.bg_blue {
  background-color: #0084e7;
}
/* global-navigation */
#global-navigation a {
  font-weight: bold;
}
#global-navigation a:hover {
  background-color: #0084e7;
  color: #FFFFFF;
}

/* button */
a.btn {
  text-align: center;
  display: block;
  border-radius: 100vh;
  border: 3px solid #333333;
  background: #FFFFFF;
  margin: 0 auto;
  font-weight: bold;
  background: #FFFFFF;
}
a.btn.btn-black {
  background: #333333;
  color: #FFFFFF;
}
a.btn.btn-yellow {
  background: #ffd800;
  border: 2px solid #333333;
}
a.btn.btn-sm {
  width: 200px;
  line-height: 36px;
  padding: 0;
  font-size: 1.2rem;
  box-shadow: 0px 1px 0px var(--box-shadow-color);
}
a.btn.btn-lg {
  width: 300px;
  line-height: 36px;
  padding: 0;
  font-size: 1.2rem;
  box-shadow: 0px 4px 0px var(--box-shadow-color);
} 
@media screen and (max-width:768px) {
  a.btn.btn-lg {
    width: auto;
  } 
}

/* share button */
#share-buttons p {
    line-height: 40px;
}
#share-buttons .sbtn{
    width:40px; height:40px;
    padding:0;
    border:0;
    background: center / cover no-repeat;
    border-radius:8px;
    cursor:pointer;
  }
#share-buttons .sbtn--share{ background-image:url("/assets/icon/icon_share.png"); }
#share-buttons .sbtn--x    { background-image:url("/assets/icon/icon_x.png"); }
#share-buttons .sbtn--line { background-image:url("/assets/icon/icon_line.png"); }
#share-buttons .sbtn--fb   { background-image:url("/assets/icon/icon_facebook.png"); }

#share-buttons .sbtn:focus-visible{
    outline:2px solid currentColor;
    outline-offset:2px;
  }


  /* markdown */
.markdown p {
   line-height: 1.8;
   margin: 0 0 1em 0;
}
.markdown ul {
   line-height: 1.8;
   list-style: circle;
   margin: 0 0 1em 0;
   padding: 0 0 0 1.5em;
}
.markdown h2 {
  margin: 0 0 0.5em 0;
  font-size: 1.4em;
  font-weight: bold;
}
.markdown h3 {
  font-size: 1.2em;
  font-weight: bold;
}
.markdown a {
  text-decoration: underline;
}