@charset "UTF-8";
main {
  padding-left: 10px;
  padding-right: 10px;
}

main .statics-container {
  width: 100%;
  padding: 20px 10px;
  border: 2px solid #E72F29;
  border-radius: 4px;
  background: #fff;
}

@media screen and (min-width: 600px) {
  main {
    padding-left: 0px;
    padding-right: 0px;
  }
  main .statics-container {
    padding: 20px;
  }
}

@media screen and (min-width: 900px) {
  main .statics-container {
    padding: 40px;
  }
}

.small {
  margin: 20px 0;
  padding: 10px;
  border: 1px solid #000;
}

.small p {
  margin-bottom: 0;
  padding-left: 12px;
  font-size: 12px;
  position: relative;
}

.small p:not(:last-of-type) {
  margin-bottom: 10px;
}

.small p::before {
  content: "※";
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
}

.btn {
  margin-top: 40px;
  text-align: center;
}

.btn__wrap {
  width: 80%;
  max-width: 600px;
  display: inline-block;
  position: relative;
}

.btn__wrap::after {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  color: #E72F29;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.btn__wrap a, .btn__wrap input, .btn__wrap button {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: 3px solid #E72F29;
  border-radius: 40px;
  color: #E72F29;
  font-size: 16px;
  display: block;
  cursor: pointer;
}

.back-btn {
  margin-top: 20px;
  text-align: center;
}

.back-btn__wrap {
  width: 80%;
  max-width: 600px;
  display: inline-block;
  position: relative;
}

.back-btn__wrap::after {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  color: #808080;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.back-btn__wrap a, .back-btn__wrap input, .back-btn__wrap button {
  width: 100%;
  padding: 6px;
  background: #fff;
  border: 2px solid #808080;
  border-radius: 40px;
  color: #808080;
  font-size: 12px;
  display: block;
  cursor: pointer;
}

@media screen and (min-width: 900px) {
  .btn__wrap::after {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .btn__wrap:hover::after {
    right: 10px;
    color: #fff;
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .btn__wrap:hover a, .btn__wrap:hover input, .btn__wrap:hover button {
    background: #E72F29;
    color: #fff;
  }
  .btn__wrap a, .btn__wrap input, .btn__wrap button {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

/*--------------------
再生産
--------------------*/
#reproduction {
  padding: 40px 10px;
}

#reproduction h1 {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: bold;
  color: #E72F29;
  text-align: center;
  line-height: 1;
}

#reproduction h2 {
  margin-bottom: 20px;
  padding: 10px 10px 10px 24px;
  background: #E72F29;
  border-radius: 30px;
  font-size: clamp(1.25rem, calc(1vw + 1rem), 1.375rem);
  color: #fff;
  line-height: 1;
  position: relative;
}

#reproduction h2::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 600px) {
  #reproduction {
    padding: 40px;
  }
  #reproduction h1 {
    font-size: 36px;
  }
}