html {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  word-wrap: break-word;
}
@media print, screen and (min-width: 768px) and (max-width: 1600px) {
  html {
    font-size: 0.625vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 1.3020833333vw;
  }
}
html * {
  font-weight: inherit;
  box-sizing: border-box;
}

body {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 2.8rem;
  }
}

.enfont {
  font-family: "Outfit", sans-serif;
}

header,
main,
section,
aside,
footer {
  width: 100%;
}

a {
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
a:hover {
  opacity: 0.7;
}

figure img {
  width: 100%;
  height: auto;
}
figure img[src$=".svg"] {
  max-width: 100%;
}

th {
  font-weight: normal;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.noFind {
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .noFind {
    margin-top: 2rem;
  }
}

.scrollbar {
  overflow: hidden scroll;
  padding-right: 1rem;
}
.scrollbar::-webkit-scrollbar {
  width: 1rem;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: #e6e6e6;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #b3b3b3;
}

.flowLink {
  position: relative;
  padding-bottom: 0.4rem;
}
@media print, screen and (min-width: 768px) {
  .flowLink::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #045BAA;
    height: 2px;
    width: 100%;
    transform: scale(0);
    transform-origin: left center;
    transition: all ease 0.3s;
  }
}
.flowLink:hover::after {
  transform: scale(1);
}

.marker {
  display: inline;
  background: linear-gradient(transparent 70%, #fdd8d8 0%);
  padding: 0 0.4rem;
}

.scrollAnim {
  position: absolute;
  text-align: center;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-weight: bold;
  font-size: 1.2rem;
}
.scrollAnim a {
  position: relative;
  display: inline-block;
  padding-bottom: 8rem;
}
.scrollAnim a::before, .scrollAnim a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.3rem;
}
.scrollAnim a::before {
  height: 8rem;
  background-color: #045BAA;
  bottom: 0;
}
.scrollAnim a::after {
  height: 0rem;
  background-color: #fff;
  bottom: 8rem;
  -webkit-animation: scroll_anim 1.6s ease-in-out 0s infinite normal forwards;
          animation: scroll_anim 1.6s ease-in-out 0s infinite normal forwards;
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@-webkit-keyframes scroll_anim {
  0% {
    height: 0;
    bottom: 8rem;
  }
  70% {
    height: 5rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
@keyframes scroll_anim {
  0% {
    height: 0;
    bottom: 8rem;
  }
  70% {
    height: 5rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
@-webkit-keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
img {
  max-width: 100%;
  height: auto;
}
/*# sourceMappingURL=base.css.map */