html, body, img, div, a, p {
  margin: 0;
  padding: 0;
}
img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
#comic {
  margin: 0 auto;
  background-image: linear-gradient(0deg, transparent 15px, rgb(191, 191, 191) 16px), linear-gradient(90deg,  transparent 15px, rgb(191, 191, 191) 16px);
  background-size: 16px 16px;
  font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro";
}
#comic article {
  max-width: 600px;
  padding: 0 15px;
  margin: 0 auto;
}
#comic .hal {
  text-align: right;
  width: 100%;
  font-size: 0.7rem;
}
#comic .top {
  margin-top: 16px;
}
#comic .text-base {
  font-size: 20px;
}
#comic .one-minutes {
  text-align: center;
  font-size: 20px;
}
#comic .red {
  color: red;
}
#comic .gray {
  color: gray;
}
#comic img {
  padding: 5px 0;
}
#comic .calc1 {
  text-align: center;
  border: 2px solid #51bbb5;
  border-radius: 15px;
}
#comic .calc1-title {
  background-color: #51bbb5;
  color: white;
  padding: 15px 0;
  font-size: 24px;
  font-weight: bold;
}
#comic .calc1 p, #comic .calc1 button {
  margin: 20px 0;
}
#comic .astarisk {
  font-size: 10px;
}
#comic .calc1 select {
  width: 250px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #222;
  font-size: 22px;
  text-align: center;
}
#comic .calc1 .result-button {
  width: 320px;
  background-color: #51bbb5;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  border: none;
  padding: 8px 0;
}
#comic .calc1 .fee {
  font-size: 20px;
}
#comic .calc1 .result {
  height: 50px;
  font-size: 28px;
  color: red;
  margin-top: 10px;
  text-align: center;
}
#comic .kome {
  font-size: 12px;
  text-align: left;
  color: rgb(181, 181, 181);
  margin: 10px 0;
}
#comic .calc2 {
  width: 90%;
  margin: 30px auto 15px;
  border-radius: 50px;
  background-color: #51bbb5;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
#comic .calc-yen {
  background-color: rgb(175, 175, 175);
  padding: 10px;
}
#comic .calc-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#comic .calc-box label img {
  width: 70px;
}
#comic .text-left {
  text-align: left;
}
#comic .result-yen {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
#comic .result-box {
  width: 80%;
  border: 2px solid black;
  padding: 20px;
  text-align: center;
  color: red;
  font-size: 50px;
  font-weight: bold;
}
#comic .underline {
  text-decoration: underline;
}
#comic .oneyear {
  margin: 20px 0;
  font-size: 16px;
}
#comic .result-yen .yen {
  font-size: 35px;
  font-weight: bold;
  width: 20%;
  text-align: center;
}
#comic video {
  width: 100%;
}
#comic .my-20 {
  margin: 20px 0;
}
#comic .text-sm {
  font-size: 18px;
}
#comic .text-right {
  text-align: right;
}
#comic .official-link {
  color: #51bbb5;
  font-weight: bold;
  display: inline-block;
}
.footer {
  background-color: #51bbb5;
  height: 100px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

@keyframes purupuru {
  0% {
    transform: skewX(9deg);
  }
  10% {
    transform: skewX(-8deg);
  }
  20% {
    transform: skewX(7deg);
  }
  30% {
    transform: skewX(-6deg);
  }
  40% {
    transform: skewX(5deg);
  }
  50% {
    transform: skewX(-4deg);
  }
  60% {
    transform: skewX(3deg);
  }
  70% {
    transform: skewX(-2deg);
  }
  80% {
    transform: skewX(1deg);
  }
  90% {
    transform: skewX(0deg);
  }
  100% {
    transform: skewX(0deg);
  }
}