* {
  box-sizing: border-box;
}

body {
  font-size: 20px;
  line-height: 1.8;
  margin: 0;
  background: #fff;
  font-family: sans-serif;
}

.wrapper {
  max-width: 740px;
  width: 100%;
  margin: auto;
}

video,
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

video {
  width: 100%;
}

figure {
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: underline;
  color: #4682b4;
}

.list-ttl {
  margin: 0 auto 30px;
  background-color: #50577e;
  padding: 10px;
}

.list-ttl p {
  color: #fff;
}

.el_checklist ul {
  list-style-type: none;
  padding: 0;
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
}

.el_checklist ul > li > label p {
  display: inline;
  vertical-align: middle;
}

.el_checklist ul > li > input {
  display: none;
}

#check-list {
  padding: 0 45px;
}

#check-list ul {
  display: flex;
  flex-wrap: wrap;
}

#check-list ul li {
  display: block;
  width: 100%;
}

#check-list ul li + li {
  margin-top: 0.9em;
}

#check-list ul > li > input,
#check-list ul > li > label > .iconbefore,
#check-list ul > li > label > .iconafter {
  display: none;
}

#check-list ul > li > label {
  background-color: #fff;
  border: solid 3px #ca254f;
  display: block;
  padding: 0.5em 1.5em;
  font-weight: bold;
  border-radius: 5em;
  transition: 0.2s;
  color: #de2532;
}

#check-list ul > li > label:hover,
#check-list ul > li > input[type="checkbox"]:checked + label {
  background-color: #ca254f;
  border-color: #fff;
  box-shadow: 3px 3px 3px rgba(64, 64, 64, 0.4);
  color: #fff;
}

.txt-note {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 15px;
}

@media (max-width: 767px) {
  #check-list {
    padding: 0;
  }
  .el_checklist ul > li > label p {
    line-height: 1.4;
    display: block;
  }
}

.selectbtn_yn {
  padding: 0px 45px;
}

.selectbtn_yn .el_checklist ul > li {
  width: 50%;
  display: table-cell;
  text-align: center;
  color: #fff;
}

.selectbtn_yn .el_checklist ul > li > label {
  position: relative;
  background: #7d7d7d;
  border: solid 3px #fff;
  display: inline-block;
  font-weight: bold;
  padding: 10px;
  border-radius: 14px;
  width: 96%;
  transition: 0.2s;
  color: #fff;
  cursor: pointer;
  box-sizing: border-box !important;
  box-shadow: 4px 4px 4px rgba(100, 100, 100, 0.4);
}

.selectbtn_yn .el_checklist ul > li > label:hover,
.selectbtn_yn .el_checklist ul > li > input[type="radio"]:checked + label {
  background-color: #ca254f;
  border-color: #fff;
  color: #fff;
}

.selectbtn_yn .el_checklist ul > li > input:checked + label {
  background: #da3b3e;
}

.selectbtn_yn .el_checklist ul > li > label p {
  line-height: 3;
  font-size: 1.4em;
}

.selectbtn_yn .el_checklist ul > li > label i {
  display: none;
}

.swiper-slide {
  padding: 0 25px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 30px;
  font-weight: bold;
}

.swiper-button-prev {
  left: -5px;
}

.swiper-button-next {
  right: -5px;
}

.title-bg-double {
  position: relative;
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 0px;
  overflow: hidden;
  z-index: 1;
}

.title-bg-double .title {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  box-sizing: border-box;
}

.title-bg-double .title .level {
  text-align: center;
}

.title-bg-double .title .level .star {
  font-size: 30px;
  color: #f8b500;
}

.title-bg-double .title .level .num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: min(6.6666666667vw, 40px);
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
  background-color: #f8b500;
  border: 2px solid #ea5506;
  border-radius: 10px;
  width: 1.5em;
  height: 1.5em;
  box-sizing: border-box;
}

.title-bg-double .title h2 {
  display: flex;
  align-items: center;
  font-size: 27px;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.4;
  margin: 0.5em 0 0;
  text-align: center;
}

.title-bg-double .title p {
  margin: 0;
}

.title-bg-double .title.bottom {
  margin-top: 50px;
  background-color: #ffffff;
}

.title-bg-double .title.bottom h2 {
  color: #cb8347;
  text-shadow: 1px 1px 4px #999999;
  margin: 1.5em 0 0;
}

.title-bg-double .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.title-bg-double .bg img,
.title-bg-double .bg video {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

footer {
  text-align: center;
  color: #fff;
  background: #140600;
  padding: 8px;
}

footer a,
footer .copy_right {
  color: #fff;
  font-size: 17px;
}

.animate {
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -ms-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 1;
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes bounce {
  20%,
  53%,
  80%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@media (max-width: 767px) {
  .swiper-slide {
    padding: 0 20px;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 20px;
  }
  .swiper-button-prev {
    left: -8px;
  }
  .swiper-button-next {
    right: -8px;
  }
  .selectbtn_yn {
    padding: 0;
  }
  .selectbtn_yn .el_checklist ul > li > label p {
    font-size: 1.1em;
    line-height: 2;
  }
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-10px {
  font-size: 10px;
}

.text-13px {
  font-size: 13px;
}

.text-14px {
  font-size: 14px;
}

.text-15px {
  font-size: 15px;
}

.text-17px {
  font-size: 17px;
}

.text-18px {
  font-size: 18px;
}

.text-19px {
  font-size: 19px;
}

.text-20px {
  font-size: 20px;
}

.text-21px {
  font-size: 21px;
}
sub {
  font-size: 10px;
  top: -5px;
  position: relative;
}
.text-22px {
  font-size: 22px;
}
.text-23px {
  font-size: 23px;
}
.text-25px {
  font-size: 25px;
}
.text-27px {
  font-size: 27px;
}

.text-de2a63 {
  color: #de2a63;
}
.text-underline {
  text-decoration: underline;
}

.bg_yellow_bold {
  background-color: rgb(255, 255, 0);
}
.text-e60000 {
  color: #e60000;
}
.text-fd0098 {
  color: #fd0098;
}
.text-ff0000 {
  color: #ff0000;
}

.text-df085e {
  color: #df085e;
}
.text-de0344 {
  color: #de0344;
}

.text-333333 {
  color: #333333;
}

.text-185ea1 {
  color: #185ea1;
}

.text-317ed4 {
  color: #317ed4;
}

.text-0066cc {
  color: #0066cc;
}

.text-note {
  font-size: 13px;
  color: #171717;
  text-align: right;
  line-height: 1.5;
  margin: 0.5rem 0 0.75rem;
}

.text-ffffff {
  color: #ffffff;
}

.text-e3007d {
  color: #e3007d;
}

.text-ff2469 {
  color: #ff2469;
}

.font-bold {
  font-weight: bold;
}

.ff-custom {
  font-family: "ヒラギノ角ゴ Pro W3";
}

.bg-ffff99 {
  background-color: #ffff99;
}

.bg-ffffa9 {
  background-color: #ffffa9;
}

.bg-ffffcc {
  background-color: #ffffcc;
}

.bg-e3007d {
  background-color: #e3007d;
}

.flash {
  animation: flash 1s ease infinite alternate;
  display: flex;
  justify-content: center;
}

@keyframes flash {
  50% {
    opacity: 0;
  }
}

.month {
  padding: 40px;
}

.month-item {
  display: flex;
  height: 64px;
  font-size: 25px;
  border: 2px solid #6a6a6a;
  margin-bottom: 12px;
}

.month-item:last-child {
  margin-bottom: 0;
}

.month-item-left,
.month-item-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.month-item-left {
  background: #6a6a6a;
  color: #fff;
  width: 36%;
  position: relative;
}

.month-item-left::after {
  content: "";
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 20px solid #6a6a6a;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
}

.month-item-right {
  width: 64%;
  color: #6a6a6a;
  padding-left: 20px;
}

.month-item.current {
  height: 90px;
  border: 2px solid #e8416c;
}

.month-item.current .month-item-left {
  color: #fff207;
  background: #e8416c;
  font-weight: bold;
}

.month-item.current .month-item-right {
  font-size: 36px;
  font-weight: bold;
  color: #e8416c;
}

.month-item.current .month-item-left::after {
  border-top: 44px solid transparent;
  border-bottom: 44px solid transparent;
  border-left: 20px solid #e8416c;
}

.month-item-right i {
  margin: 0 6px;
}

@media (max-width: 767px) {
  .month {
    padding: 40px 0;
  }
  .month-item {
    font-size: 18px;
  }
  .month-item.current .month-item-right {
    font-size: 22px;
  }
  .month-item {
    height: 50px;
  }
  .month-item-left::after {
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
  }
  .month-item-left {
    width: 32%;
  }
  .month-item-right {
    width: 68%;
  }
  .month-item.current {
    height: 64px;
  }
  .month-item.current .month-item-left::after {
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
  }
}

.balloon1-left {
  max-width: 100%;
  display: table;
  margin: 45px 50px 45px 0;
}

.balloon1-left.custom {
  margin-bottom: 0;
}

.balloon1-left .iconimg {
  width: 20%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding-right: 10px;
}

.balloon1-left .iconimg img {
  width: 80%;
  border-radius: 50%;
  border: 3px solid #ddd;
}

.balloon1-left .fukidashi {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  margin: 1.5em 30px 2em 15px;
  padding: 10px 15px;
  color: #555;
  font-size: 16px;
  background: #ffeae2;
  border-radius: 10px;
  word-break: break-all;
}

.balloon1-left .fukidashi p {
  line-height: 1.9em;
  font-size: 18px;
}

.balloon1-left .fukidashi:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #ffeae2;
}

@media screen and (max-width: 739px) {
  .balloon1-left .iconimg p {
    font-size: 2.5vw;
  }
  .balloon1-left {
    margin: 10px 10px 10px 0;
  }
  .balloon1-left .iconimg {
    vertical-align: top;
  }
  .balloon1-left .fukidashi p {
    line-height: 1.6em;
    font-size: 1.1em;
  }
  .balloon1-left .fukidashi:before {
    top: 30px;
    left: -25px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #ffeae2;
  }
  .balloon1-right {
    margin: 10px 10px 10px 0;
  }
  .balloon1-right .iconimg {
    vertical-align: top;
  }
  .balloon1-right .fukidashi p {
    line-height: 1.6em;
    font-size: 1.1em;
  }
  .balloon1-right .fukidashi:before {
    top: 30px;
    left: 99%;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 15px solid #ffeae2;
  }
}

.btn-area {
  margin: 3em 0 1em;
  justify-content: center;
  display: flex;
  text-align: center;
}

.btn-area .btn {
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: none;
  overflow: hidden;
  box-sizing: border-box;
  animation: bound2Btn 2s ease infinite;
  display: inline-block;
}

.btn-area .btn:hover {
  opacity: 0.7;
  text-decoration: none;
}

.btn-area .btn:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-brite 3s ease-in-out infinite;
}

.btn-area .btn:active {
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.3),
    -4px -4px 6px 0 rgba(116, 125, 136, 0.2),
    inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
}

.btn-area img {
  max-width: 491px;
  width: 100%;
  vertical-align: middle;
}

@keyframes bound2Btn {
  0% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-30px);
  }
  30% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

@-webkit-keyframes shiny-brite {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.swiper-01 {
  padding-bottom: 1.75rem;
}

.swiper-01 .swiper-pagination {
  bottom: 0;
  line-height: 1;
}

.swiper-pagination-bullet {
  margin: 0 5px !important;
}

.swiper-01 .swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0.75);
}

.swiper-02 {
  padding-bottom: 2rem;
}

.swiper-slide {
  padding: 0;
}

.swiper-02 .swiper-button-next:after,
.swiper-02 .swiper-button-prev:after {
  font-size: 50px;
  color: #ccc;
}

.swiper-02 .swiper-button-prev {
  left: 0;
  transform: translateY(-50%);
}

.swiper-02 .swiper-button-next {
  right: 0;
  transform: translateY(-50%);
}

h2 {
  font-size: 1.3em;
  border-bottom: 1px solid #999;
  border-left: 6px solid #d43055;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 0 0 10px 15px;
  margin: 30px 0 30px;
}

h3 {
  font-size: 20px;
  color: #ffffff;
  background: #e51569;
  text-align: center;
  padding: 10px !important;
  margin: 20px 0 30px !important;
  font-weight: 700;
  line-height: 30px;
  position: relative;
}

h3.custom {
  background: #d33055;
}

h3::before {
  border-top: 10px solid #e51569;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  content: "";
  position: absolute;
  bottom: -10px;
  left: calc(50% - 10px);
}

h4 {
  font-size: 27px;
  color: #ffffff;
  text-shadow: 0 0 3px #db3d79, 0 0 3px #db3d79, 0 0 3px #db3d79,
    0 0 3px #db3d79, 0 0 3px #db3d79, 0 0 3px #db3d79, 0 0 3px #db3d79,
    0 0 3px #db3d79, 0 0 3px #db3d79, 0 0 3px #db3d79, 0 0 3px #db3d79,
    0 0 3px #db3d79, 0 0 3px #db3d79, 0 0 3px #db3d79, 0 0 3px #db3d79,
    0 0 3px #db3d79, 0 0 10px rgba(0, 0, 0, 0.7);
  margin: 0;
}

.comment__area {
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 3px 3px 2px #f4d2de;
  padding: 10px 10px 15px;
  margin-top: 30px;
  position: relative;
}

.comment__head {
  position: absolute;
  top: 0;
  left: 0;
  background: #ff80bf;
  border-radius: 5px;
  padding: 3px 5px;
  box-shadow: 2px 2px 2px #888;
}

.comment__head .head {
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px 1px #888;
}

.comment__img {
  width: 100%;
  height: auto;
}

.comment__img img {
  width: 100%;
  height: auto;
}

.comment__detail {
  margin-top: 10px;
}

.comment__detail .text {
  font-size: 17px;
}

.comment__detail .name + .text {
  margin-top: 1em;
}

.comment__detail .text + .text {
  margin-top: 1em;
}

.comment__detail .text .bold {
  font-weight: bold;
}

.comment__detail .text .underline {
  position: relative;
}

.comment__detail .text .underline:before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 70%,
    #ffff00 71%,
    #ffff00 100%
  );
}

.attention {
  font-size: 13px;
  margin-top: 1.4em;
  text-align: right;
}

.comment__detail .attention + .attention {
  margin-top: 1em;
}

.comment__name {
  font-size: 24px;
  font-weight: bold;
}

.matome {
  position: relative;
  padding: 1rem 2rem;
  text-align: left;
  color: #0075a9;
  border-radius: 0 10px 10px 10px;
  background: #d8ecf5;
  margin: 2em 0;
  box-sizing: border-box;
}

.matome:before {
  font-size: 15px;
  position: absolute;
  top: -24px;
  left: 0;
  height: 24px;
  padding: 0 1em;
  content: "✔︎ Check";
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #317ed4;
  box-sizing: border-box;
}

.continue {
  display: flex;
  justify-content: center;
}

.continue span {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 100vh;
  margin: 10px 0;
}

.continue .dot-1,
.continue .dot-2,
.continue .dot-3 {
  -webkit-animation: continue 1s infinite;
  -moz-animation: continue 1s infinite;
}

.continue .dot-1 {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
}

.continue .dot-1 {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
}

.continue .dot-1 {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
}

@keyframes continue {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.txt_note {
  font-size: 14px;
  text-align: right;
}

.txt_pink {
  color: rgb(223, 8, 94);
}

.txt_bold {
  font-weight: bold;
}

.fs19 {
  font-size: 19px;
}

.fs17 {
  font-size: 17px;
}

.fs13 {
  font-size: 13px;
}

.matome p {
  font-weight: bold;
}

.bg_yellow {
  background-color: rgb(255, 255, 153);
}

.yellow_line {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffff82 0%)
    repeat scroll 0 0;
}

.yellow_line_custom {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 80%, #ffff00 0%)
    repeat scroll 0 0;
}

.cp_arrows {
  position: relative;
  height: 50px;
  margin-top: 1em;
  margin-bottom: 1em;
}

.cp_arrows .cp_arrowfirst {
  animation: arrow-move08 2s ease-in-out infinite;
}

.cp_arrows .cp_arrowsecond {
  animation: arrow-move08 2s 1s ease-in-out infinite;
}

.cp_arrows .cp_arrow {
  position: absolute;
  top: 100%;
  left: 45%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  opacity: 0;
}

@keyframes arrow-move08 {
  0% {
    top: 40%;
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.cp_arrows .cp_arrow:before {
  transform: rotate(30deg) translateX(-39%);
  transform-origin: top left;
}

.cp_arrows .cp_arrow:after {
  transform: rotate(-30deg) translateX(39%);
  transform-origin: top right;
}

.cp_arrows .cp_arrow:before,
.cp_arrows .cp_arrow:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 3px;
  content: "";
  background: #e91e63;
}

.cp_arrows *,
.cp_arrows *:before,
.cp_arrows *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_arrows *,
.cp_arrows *:before,
.cp_arrows *:after {
  box-sizing: border-box;
}

.qa-area {
  max-width: 710px;
  width: 100%;
  margin: 50px auto 0;
}

.qa-area .title {
  color: #cc174e;
  font-size: 20px;
}

.qa-area .question {
  margin: 10px 0;
  font-weight: bold;
}

.qa-area .number {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  background-color: #cc174e;
  border-radius: 50%;
  padding: 15px;
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
}

.qa-area .border {
  display: inline-flex;
  justify-content: center;
  border: 2px solid #cc174e;
  border-radius: 50%;
  padding: 15px;
  color: #734057;
  margin: 0 10px;
  font-size: 20px;
  width: 50px;
  height: 50px;
  align-items: center;
  box-sizing: border-box;
}

.qa-area .words {
  color: #fff;
  background-color: #cc174e;
  padding: 10px 0;
  margin: 10px 0;
  max-width: unset;
  font-size: 20px;
}

.qa-area img {
  margin: 0 auto;
  max-width: 570px;
}

.qa-area ul,
.qa-area li,
.qa-area label,
.qa-area span {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  max-height: 99999px;
}

.qa-area .btn_list {
  max-width: 620px;
  margin: auto;
}

.qa-area .btn_list li {
  margin-bottom: 10px;
  margin-top: 20px;
}

.qa-area .radio-input {
  display: none;
}

.qa-area input[type="checkbox"]:checked + .y01,
.qa-area input[type="checkbox"]:checked + .n01,
.qa-area .input_img:hover {
  margin-top: 3px;
  color: #fff;
  background: #4dc839;
  border-bottom: 2px solid #ac8393;
}

.qa-area .input_img {
  display: block;
  width: 100%;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 20px;
  border-radius: 8px;
  font-size: 5vw;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  background: #aaa;
  border-bottom: 5px solid #666;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  box-sizing: border-box;
  text-align: left;
}

@media (min-width: 620px) {
  .qa-area .input_img {
    font-size: 22px;
  }
}

@media (max-width: 414px) {
  .qa-area .input_img {
    padding: 15px;
  }
  .qa-area .btn_list li {
    margin-bottom: 10px;
  }
}

.qa-area .step_arr {
  position: relative;
  padding-top: 22vw;
  margin-top: -4vw;
}

.qa-area .step_arr.custom {
  margin-top: -15px;
}

.qa-area .step_arr span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10vw;
  height: 10vw;
  margin-left: -5vw;
  border-left: 1px solid #333;
  border-bottom: 1px solid #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

.qa-area .step_arr span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.qa-area .step_arr span:nth-of-type(2) {
  top: 4vw;
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.qa-area .step_arr span:nth-of-type(3) {
  top: 8vw;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (min-width: 620px) {
  .qa-area .step_arr {
    position: relative;
    padding-top: 136px;
    margin-top: -25px;
  }
  .qa-area .step_arr span {
    width: 62px;
    height: 62px;
    margin-left: -31px;
  }
  .qa-area .step_arr span:nth-of-type(2) {
    top: 24.8px;
  }
  .qa-area .step_arr span:nth-of-type(3) {
    top: 49.6px;
  }
}

.qa-area .btn_list.yesno {
  overflow: hidden;
  display: flex;
}

.qa-area .btn_list.yesno li:first-child {
  padding-right: 2%;
}

.qa-area .btn_list.yesno li {
  width: 50%;
}

.qa-area .btn_list.yesno li span {
  text-align: center;
  padding: 10%;
}

.qa-area input[type="radio"]:checked + .y01,
.qa-area input[type="radio"]:checked + .n01,
.qa-area .input_img:hover {
  margin-top: 3px;
  color: #fff;
  background: #4dc839;
  border-bottom: 2px solid #b84c00;
}

@media (min-width: 620px) {
  .qa-area .btn_list.yesno .input_img {
    font-size: 50px;
  }
}

.qa-area .btn_list.yesno li:last-child {
  padding-left: 2%;
}

.date__text {
  font-size: 16px;
  color: #000;
  text-align: left;
}

.puyoBtn__area img {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 30px auto;
}

.puyoBtn__area img {
  animation: puyoBtn 1.6s ease-in infinite;
}

@keyframes puyoBtn {
  0% {
    transform: scale(1.09);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1);
  }
  70%,
  100% {
    transform: scale(1.09);
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  background-color: rgba(70, 70, 70, 0.6);
  display: none;
}

.modal-close {
  width: 24px;
  height: 24px;
  line-height: 22px;
  border-radius: 24px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  border: 1px solid #ffffff;
  position: absolute;
  right: -10px;
  top: -10px;
  z-index: 100001;
  cursor: pointer;
}

.modal-content {
  position: relative;
  margin: 0 1rem;
}

.modal-img {
  width: auto;
  max-height: 95vh;
}

@media (max-width: 620px) {
  .puyoBtn__area img {
    width: 90%;
  }
  .wrapper {
    padding: 0 10px;
  }
  .footer {
    margin: 0 -10px;
  }
}
