* {
  box-sizing: border-box;
}

body {
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
  background: #F4F4F4;
  font-family: sans-serif;
}

.wrapper {
  max-width: 620px;
  width: 100%;
  margin: auto;
  padding: 20px 10px 0;
  background: #fff;
}

video,
img {
  max-width: 100%;
  display: block;
  margin: auto;
}

video {
  width: 100%;
}

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: .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: .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;
}

.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;
}

.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: 10px;
}

footer a {
  color: #fff;
}

footer .copy_right {
  color: #fff;
}

.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(.215, .61, .355, 1);
      transform: translate3d(0, 0, 0)
  }
  40%,
  43% {
      animation-timing-function: cubic-bezier(.755, .050, .855, .060);
      transform: translate3d(0, -30px, 0)
  }
  70% {
      animation-timing-function: cubic-bezier(.755, .050, .855, .060);
      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;
  }
}