@charset "utf-8";
/* CSS Document */
*, *::before, *::after {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  scroll-behavior: smooth;
}
body {
  font-family: "BIZ UDPGothic", sans-serif;
  /*font-family: "Noto Sans JP", sans-serif;*/
  color: #292929;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  min-height: 100vh;
  overflow-wrap: break-word;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img, picture, video {
  display: block;
  height: auto;
  max-width: 100%;
}
ul, ol {
  list-style: none;
}
em {
  font-style: italic;
}
button {
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
}
.opacityIn {
  opacity: 0;
  transition: all 1s;
}
.opacityIn.active {
  opacity: 1;
}
.fadeIn {
  opacity: 0;
  transform: translateY(120px);
  transition: all 1s;
}
.fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}
.fadeIn_l {
  opacity: 0;
  transform: translateX(-120px);
  transition: all 1s;
}
.fadeIn_l.active {
  opacity: 1;
  transform: translateX(0);
}
.fadeIn_r {
  opacity: 0;
  transform: translateX(120px);
  transition: all 1s;
}
.fadeIn_r.active {
  opacity: 1;
  transform: translateX(0);
}
/* 遅延表示用 common.Lazy.js
-----------------------------------------------------------------*/
#Content .lazy, #Content .all_lazy > * {
  opacity: 0;
}
/*================================================
 *  ページトップへの戻り
 ================================================*/
.pagetop {
  position: fixed;
  bottom: 130px;
  right: 40px;
}
@media screen and (max-width:1024px) {
  .pagetop {
    position: fixed;
    bottom: 130px;
    right: 40px;
  }
}
.red {
  color: #DF2225;
}
/*.pagetop {
  cursor: pointer;
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: block;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: .3s;
  opacity: 0;
}
.pagetop img {
  width: 100%;
  height: auto;
}
.pagetop:hover {
  box-shadow: 0 0 10px #fff;
}
.is-active{
  opacity: 1;
  visibility: visible;
}
*/
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.wp-caption, [class*='wp-image'] {
  display: block;
  max-width: 100% !important;
  margin-top: 1.5em;
  text-align: center;
}
img.alignright {
  display: block;
  margin: 0 0 0 auto;
}
img.alignleft {
  display: block;
  margin: 0 auto 0 0;
}
img.aligncenter {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width:1024px) {
  .alignright {
    float: none;
    margin-bottom: 20px;
    margin-left: 0px;
  }
  .alignleft {
    float: none;
    margin-bottom: 20px;
    margin-right: 0px;
    margin-left: 0px;
  }
  img.alignright {
    width: 100%;
    display: block;
    margin: 0 0 0 auto;
  }
  img.alignleft {
    width: 100%;
    display: block;
    margin: 0 auto 0 0;
  }
}
blockquote {
    position: relative;
    padding: 30px 15px 8px 15px;
    box-sizing: border-box;
    font-style: italic;
    background: #efefef;
    color: #555;
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: 13px;
    left: 15px;
    color: #cfcfcf;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}


hr {border-top: 1px solid #8c8b8b;margin: 15px 0;}



