/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  margin: auto;
  width: auto;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a, b, dd, dt, li, p, span, td, th {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #595757;
}
@media screen and (max-width: 767px) {
  a, b, dd, dt, li, p, span, td, th {
    font-size: 1.5rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #595757;
  line-height: 1.5;
}

.pc_only {
  display: block !important;
}
@media (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

.sp_only {
  display: none !important;
}
@media (max-width: 768px) {
  .sp_only {
    display: block !important;
  }
}

.txt_base {
  font-size: 1.8rem;
}
.txt_base p {
  font-size: 1em;
  line-height: 1.8;
}
.txt_base p:not(:last-child) {
  margin-bottom: 1em;
}

.center {
  margin: 0 auto;
  text-align: center;
}

/********************************************/
/*scroll_top */
/********************************************/
.scroll_top_btn {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.scroll_top_btn.fade {
  opacity: 1;
  visibility: visible;
}
.scroll_top_btn .btn {
  position: relative;
  font-size: clamp(1.3rem, 1.6vw, 1.8rem);
  color: #595757;
  font-weight: 600;
  letter-spacing: 0.18em;
  background-color: unset;
  border: none;
  cursor: pointer;
}
.scroll_top_btn .btn:hover {
  opacity: 0.7;
}
.scroll_top_btn .btn::before {
  position: absolute;
  right: 0;
  top: -25px;
  left: 0;
  content: "";
  margin: 0 auto;
  width: 20px;
  height: 20px;
  background: url(../img/common/arrow-right.svg) no-repeat center/contain;
  transform: rotate(-90deg);
}
@media (max-width: 1024px) {
  .scroll_top_btn .btn::before {
    top: -20px;
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 1024px) {
  .scroll_top_btn .btn {
    bottom: 40px;
  }
}/*# sourceMappingURL=style.css.map */