@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-padding-top: 68px;
  /*-webkit-text-size-adjust: 100%;*/
}
@media (min-width: 1000px){
  html{
    scroll-padding-top: 80px;
  }
}
body {
  color: #333; /* RGB */
  /*font-family: 'Noto Sans JP', 'メイリオ', sans-serif;*/
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
*{
  box-sizing: border-box;
}
section h2 {
  font-size: 2.8rem;
}
a:hover {
  opacity: 0.5;
}
img{
  vertical-align: bottom;
}
ul, ol{
  list-style: none;
}
.title_under-line{
  width: 60px;
  height: 5px;
  background-color: #c30d23;
  border-radius: 50px;
  display: inline-block;
}
@media (min-width: 1000px){
  .title_under-line{
    width: 80px;
    height: 7px;
  }
}