/* ====================================================
reset style
==================================================== */
html {
    overflow-y: scroll;
    overflow-x: hidden;
    font-size: 10px; /* Base font size, change to 14px or 16px if needed */
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
  
  body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, p, blockquote, th, td {
    margin: 0;
    padding: 0;
  }
  
  * {
    box-sizing: border-box;
  }
  
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  fieldset, img {
    border: 0;
  }
  
  img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
  }
  
  address, caption, cite, code, dfn, var {
    font-style: normal;
    font-weight: normal;
  }
  
  li {
    list-style: none;
  }
  
  caption, th {
    text-align: left;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
  }
  
  q:before, q:after {
    content: "";
  }
  
  abbr, acronym {
    border: 0;
    font-variant: normal;
  }
  
  sup {
    vertical-align: text-top;
  }
  
  sub {
    vertical-align: text-bottom;
  }
  
  /*to enable resizing for IE*/
  /*because legend doesn't inherit in IE */
  legend {
    color: #000;
  }
  
  del, ins {
    text-decoration: none;
  }
  
  main {
    display: block;
  }
  
  main,
  footer {
    opacity: 1;
    transition: 0.3s;
  }
  main.active,
  footer.active {
    opacity: 0;
    transition: 0.3s;
  }
  
  section {
    position: relative;
    background: #fff;
  }
  section.l-faq {
    background: transparent;
  }
  
  .archive {
    overflow: hidden;
  }
  
  .pages section, .single section, .archive section {
    background: initial;
  }
  
  video {
    display: block;
    height: 100%;
    width: 100%;
  }
  
  picture, img {
    pointer-events: none;
  }
  
  /* ====================================================
  HTML
  ==================================================== */
  html {
    font-size: 62.5%;
    font-size: 100%;
    scroll-behavior: smooth;
    overscroll-behavior-y: none;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
  }
  @media screen and (min-width: 768.99px) {
    html {
      font-size: 62.5%;
    }
  }
  
  body {
    color: #1e1e1e;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    background: white;
    overflow-x: hidden;
  }
  @media screen and (max-width: 768.98px) {
    body {
      overflow-x: hidden;
    }
  }
  
  a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    outline: none;
  }

/* ====================================================
common style
==================================================== */
.inner{
    max-width: 1025px;
    width: 95%;
    margin: 0 auto;
}
@media screen and (max-width: 768.98px){
    .inner{
    width: 97%;
}
}
.sp{
    display: none;
}
@media screen and (max-width: 768.98px){
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
}
.inline{
    display: inline-block;
}

.l-header{
    background: #DCFF00;
    text-align: center;
    padding: 25px 0;
    box-shadow:0 3px 3px #c4c2c3;
}
@media screen and (max-width: 768.98px){
    .l-header{
        padding: 20px 0;
    }
}
.l-header__logo{
    max-width: 241px;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 768.98px){
    .l-header__logo{
        max-width: 150px;
    }
}

.l-footer{
    background-color: #333;
    padding-top: 10px;
}
.l-footer .copyright_area p{
    color: #fff;
    padding: 6px 0;
    font-size: 11px;
    line-height: 1.25;
    text-align: center;
}
#page-top{
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    width: 46px;
}