@charset "UTF-8";
/* CSS Document */
* {
  word-break: break-word;
  overflow-wrap: break-word
}
*, *:before, *:after {
  box-sizing: inherit;
}
/*a:focus, *:focus { outline:none; }*/
html {
  /*overflow-x:hidden;
  overflow-y:auto;*/
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth; /*スムーズスクロール*/
  box-sizing: border-box;
  font-size: 62.5%;
}
body {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  /*font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;*/
  background: #fff;
 color: #555;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*font-weight: bold;*/
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
/* mac 游ゴシックbold*/
.bold {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #555;
}

a:focus, *:focus {
  outline: none;
}

/*img {
  max-width: 100%;
  height: auto;
  margin: auto;
}*/
/*  
  ページスクロール
---------------------------------*/
/* ページTOPに戻る（画像） */
/*#page_top {
  width: 55px;
  height: auto;
  position: fixed;
  right: 9px;
  bottom: 5px !important;
  z-index: 10;
  cursor: pointer;
}
#page_top a {
  text-decoration: none;
  display: block;
}
img {
  width: 100%;
  height: auto;
}*/
/* ページTOPに戻る  */
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 8px;
  bottom: 10px;
  background: #DBC091;
  opacity: 0.9;
  border-radius: 50%;
  z-index: 10;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 25px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin: auto;
  text-align: center;
}