#__bs_notify__ {
  top: auto !important;
  bottom: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 1.6px;
  color: #333;
}

a {
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  color: #333;
  text-decoration: none;
}
a:hover, a:active {
  opacity: 0.6;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul, li {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}

p {
  text-align: justify;
  text-justify: inter-ideograph;
  margin: 0 auto;
}

* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media screen and (min-width: 1220px) {
  .sp-tab {
    display: none;
  }
}

@media screen and (max-width: 1219px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pc-tab {
    display: none;
  }
}

.replace {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  top: 50%;
  padding: 0;
  margin: 0 auto;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
}

.row {
  position: relative;
  width: calc(100% + 20px);
  margin: 0 -10px;
  font-size: 0;
}

.col {
  position: relative;
  width: 50%;
  position: relative;
  display: inline-block;
  padding: 0 10px;
  font-size: 1.4rem;
}

.h2-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #020E1F;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .h2-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.h3-title {
  position: relative;
  font-size: 2.2rem;
  line-height: 3.6rem;
  font-weight: 700;
  text-align: left;
  padding: 20px 15px 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1219px) {
  .h3-title {
    font-size: 1.8rem;
    line-height: 3rem;
    margin-bottom: 30px;
  }
}
.h3-title:after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #020E1F, rgba(255, 255, 255, 0) 100%);
}

.h4-title {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  border-left: 8px solid #020E1F;
  padding: 2px 0 2px 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .h4-title {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.m-bt {
  width: 200px;
  height: 50px;
  margin: 0 auto;
}
.m-bt a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  line-height: 50px;
  text-decoration: none;
  color: #FFF;
  background-color: #020E1F;
  border-radius: 50px;
}
.m-bt a:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: attr(data-hover);
  transition: transform 0.4s, opacity 0.4s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  box-sizing: border-box;
}
.m-bt a span {
  display: inline-block;
  transform: translate3d(0, -10px, 0);
  transition: transform 0.4s, opacity 0.4s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  opacity: 0;
}
@media screen and (min-width: 1220px) {
  .m-bt a:hover {
    opacity: 1;
  }
  .m-bt a:hover:before {
    transform: translate3d(0, 50%, 0);
    opacity: 0;
  }
  .m-bt a:hover span {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  .m-bt a:hover span:nth-child(1) {
    transition-delay: 0.08s;
  }
  .m-bt a:hover span:nth-child(2) {
    transition-delay: 0.16s;
  }
  .m-bt a:hover span:nth-child(3) {
    transition-delay: 0.24s;
  }
  .m-bt a:hover span:nth-child(4) {
    transition-delay: 0.32s;
  }
}

.fade {
  animation: fade 3s ease 0s 1 normal;
  -webkit-animation: fade 3s ease 0s 1 normal;
}

.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1s;
}

.fadeinup {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 2s;
}

.fadeinright {
  opacity: 0;
  transform: translate(100px, 0);
  transition: all 2s;
}

.fadeinleft {
  opacity: 0;
  transform: translate(-100px, 0);
  transition: all 2s;
}

ul.fadeturn li {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1s;
}
ul.fadeturn li:nth-child(n+1) {
  transition-delay: 0s;
}
ul.fadeturn li:nth-child(n+2) {
  transition-delay: 0.4s;
}
ul.fadeturn li:nth-child(n+3) {
  transition-delay: 0.8s;
}
ul.fadeturn li:nth-child(n+4) {
  transition-delay: 1.2s;
}
ul.fadeturn li:nth-child(n+5) {
  transition-delay: 1.6s;
}
ul.fadeturn li:nth-child(n+6) {
  transition-delay: 2s;
}
ul.fadeturn li:nth-child(n+7) {
  transition-delay: 2.4s;
}
ul.fadeturn li:nth-child(n+8) {
  transition-delay: 2.8s;
}
ul.fadeturn li:nth-child(n+9) {
  transition-delay: 3.2s;
}

.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=common.css.map */