@charset "UTF-8";

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../assets/ Sans JP Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/font/Noto Sans JP Regular.woff") format("woff");
  font-display: swap;
}

:root {
  /* カラー */
  --Text: #333;
  --Back: #E6FCFB;
  --Main: #aaa;
  font-family: "Noto Sans JP", sans-serif;
  /* 文字サイズ */
  --FontSizeSP: 16px;
  /* 375px 〜 768px */
  --FontSizeSP2: 4.2666666667vw;
  /* 〜　374px */
}

body {
  margin: 0;
  color: var(--Text);
}

.content {
  background-color: var(--Back);
  min-height: 100vh;
  padding: 36px 20px;
  box-sizing: border-box;
}

.content__head-ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
}

.content__inner {
  max-width: 340px;
  margin-right: auto;
  margin-left: auto;
}

.content__loader {
  margin-top: 34px;
}

.content__main {
  margin-top: 40px;
}

.content__link {
  margin-top: 18px;
  text-align: center;
}

.content__link a {
  font-weight: bold;
  font-size: 14px;
  color: var(--Main);
}

.content__bnr img {
  width: 100%;
  height: auto;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.loader {
  margin: 0 auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 6px solid rgba(255, 255, 255, 0.2);
  border-right: 6px solid rgba(255, 255, 255, 0.2);
  border-bottom: 6px solid rgba(255, 255, 255, 0.2);
  border-left: 6px solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.circle-container {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: 0 10px;
  background-color: #13757b;
  animation: scaleCircle 1.7s linear infinite;
}

.circle:nth-child(2) {
  animation-delay: 0.3s;
}

.circle:nth-child(3) {
  animation-delay: 1s;
}

@keyframes scaleCircle {
  0%, 100% {
      transform: scale(1);
      background-color: #d9d9d9;
  }
  50% {
      transform: scale(1.5);
  background-color: #13757b;
  }
}