@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

body, table, form, input, select {
  font-family: Noto Sans JP, 游ゴシック, YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt" 1;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #1f1f1f;
}

h1, h2, h3, h4, h5, h6, p, a, table, th, td {
  font-family: Noto Sans JP, 游ゴシック, YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0.05em !important;
}

p, a {
  font-size: 0.9rem;
}

/* ========================================= */
/* bootstrap add */
/* ========================================= */

.w-5 { width: 5% !important; }
.w-10 { width: 10% !important; }
.w-15 { width: 15% !important; }
.w-20 { width: 20% !important; }
.w-25 { width: 25% !important; }
.w-30 { width: 30% !important; }
.w-40 { width: 40% !important; }
.w-50 { width: 50% !important; }
.w-60 { width: 60% !important; }
.w-70 { width: 70% !important; }
.w-80 { width: 80% !important; }
.w-90 { width: 90% !important; }
.w-95 { width: 95% !important; }

/* image width */
.img_w30 { width: 30px; }
.img_w40 { width: 40px; }
.img_w50 { width: 50px; }
.img_w60 { width: 60px; }
.img_w70 { width: 70px; }
.img_w80 { width: 80px; }
.img_w100 { width: 100px; }
.img_w120 { width: 120px; }
.img_w140 { width: 140px; }
.img_w160 { width: 160px; }
.img_w180 { width: 180px; }
.img_w200 { width: 200px; }
.img_w240 { width: 240px; }
.img_w300 { width: 300px; }
.img_w340 { width: 340px; }
.img_w400 { width: 400px; }

/* bootstrap5.3 */
.bg-warning-subtle { background-color: #fff3cd !important; }
.bg-danger-subtle { background-color: #f8d7da !important; }


/* ========================================= */
/* text */
/* ========================================= */

.text--sd {
  text-shadow: 1px 1px 2px black;
}


/* ========================================= */
/* google recaptcha */
/* ========================================= */

.grecaptcha-badge { visibility: hidden; }

/* ========================================= */
/* ini */
/* ========================================= */

.main--contents {
  padding-top: 30px;
  padding-bottom: 50px;
}

#recaptcha {
  width: 304px;
  margin: 0 auto;
}


/* ========================================= */
/* header */
/* ========================================= */

.header--logo {
  width: 150px;
}

.header--icon {
  width: 24px;
}

/* ========================================= */
/* top main */
/* ========================================= */

.top--main {
  background: url(../images/main.jpg) center center no-repeat #212529;
}
.top--main h1 {
  font-weight: bold;
}

@media screen and (max-width: 600px) {
 .top--main {
    background-image: url(../images/main.jpg);
    background-position: center center;
    background-size: 100% auto;
  }
}

/* ========================================= */
/* error--msg--box */
/* ========================================= */

.error--msg--box {
    display: none;
    position: fixed;
    width: 600px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    top: 300px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    border-radius: 5px;
    z-index: 100;
}

/* ========================================= */
/* error / completed */
/* ========================================= */

.bg--img--completed {
  background-image: url(../images/cos.png);
  background-repeat: no-repeat;
  background-size: 25%;
  background-position: top left;
}

.bg--img--error {
  background-image: url(../images/error.png);
  background-repeat: no-repeat;
  background-size: 25%;
  background-position: top left;
}

/* ========================================= */
/* page navigation buttons */
/* ========================================= */


/* button box */
#page--top {
  bottom:5px;
}

#page--search {
  bottom:70px;
}

/* button */
.page--navigation--btn {
  width: 72px;
  position: fixed;
  right: 10px;
  z-index: 10;
  transform: translateX(100px);
}

.page--navigation--btn .btn {
  padding: 0.75rem 0.3rem;
  margin-bottom: 0.3rem;
  width: 100%;
  font-size: 0.7rem;
}


/* move */
.page--navigation--btn.left--move {
  animation: left--anime 0.5s forwards;
}

@keyframes left--anime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }
  to {
    opacity: 1;
  transform: translateX(0);
  }
}

.page--navigation--btn.right--move {
  animation: right--anime 0.5s forwards;
}
@keyframes right--anime{
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}











