@charset "utf-8";
#contents {font-size: 1.6rem; line-height: 1.6;}
#contents h3 {margin: unset unset 30px; display: revert; background: unset;}
@media screen and (max-width: 767px) {
  body :where(div, h1, h2, h3, li):has(> wbr) {
        word-break: keep-all;
  }
}
#contents p {margin: 0}
/* #contents p + p {margin-top: 10px} */
#contents img {max-width: 100%; width: unset;}

.taC {text-align: center !important}
.flx-box { /*基本のカラム（2分割）*/
  --gap: 20px;
  --number: 2;
  --child-width: calc((100% - var(--gap) * (var(--number) - 1)) / var(--number));
  display: flex;
  gap: var(--gap);
    & > * {
      width: var(--child-width);
    }
    &._fit {
      & > * {
        width: fit-content;
      }
    }
    &.btns {
      justify-content: center;
      width: fit-content;
    }
    @media screen and (max-width: 767px) {
      &._clear {
        flex-wrap: wrap;
      & > * {
        width: 100%;
      }
    }
  }
}
body #title {
  background: none;
  margin-bottom: 0;
}
body #title h1 {
  color: #000;
}
.scam_warning {
  background: #fede00;
  padding: 40px 10px;
  border-top: solid 10px;
  border-bottom: solid 10px;
  border-image: repeating-linear-gradient(-45deg, #000, #000 5px, transparent 5px, transparent 10px ) 10;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 60px;
  line-height: 1.6;
}
.scam_warning h2 {
  font-size: 2rem;
}
.scam_warning .lead {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 30px;
}
.scam_warning .lead strong {
  font-size: 125%;
  color: #C00000;
  display: block;
  text-decoration: underline;
}
@media screen and (max-width:540px) {
  .scam_warning h2 {text-align: left}
}
.to_login {
  background: #2288ff;
  font-weight: 700;
  text-align: center;
  margin-top: 60px;
  padding: 40px 10px;
}
#contents .to_login a {
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
  text-decoration: none;

  &:hover {
/*    text-decoration: underline;*/
    top: -1px;
  }
}

#contents .box {
  border: 2px solid #C00000;
  border-radius: 10px;
  font-weight: 700;
  padding: 50px 30px 30px;
  position: relative;
  margin: 60px auto;
  max-width: 1020px;
  & p {
    font-size: 1.8rem;
  }
}
#contents .box h3 {
  border: none;
  background: #C00000;
  color: #fff;
  font-size: 2rem;
  padding: 10px min(5vw, 30px);
  border-radius: 2em;
  width: fit-content;
  position: absolute;
  left: 30px;
  top: -1.25em;
}
@media screen and (max-width:540px) {
  #contents .box h3 {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}
#contents .box ul {
  text-align: left;
  color: #C00000;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-left: 1em;
  & li {
    text-indent: -1em;
  }
}
#contents .btns {
  width: fit-content;
  margin: 40px auto 20px;
}
#contents p.btn > a {
  line-height: 1.5;
  padding-block: 15px;
  min-width: 320px;
  height: 5em;
  display: grid;
  place-content: center;
}
#contents p.btn > a span {
  display: block;
  font-size: 80%;
}
#contents .btns ~ .indent1 {
  text-align: center;
}
@media screen and (max-width:540px) {
  #contents .btns ~ .indent1 {
    text-align: left
  }
}