@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
body {
  background: #F1F1F1;
  font-family: "Noto Sans JP";
  font-size: 16px;
  overflow-x: hidden;
  color: #464748;
}

.wrap {
  background: linear-gradient(to bottom, #3149DD, #3BA8CF);
  min-height: 100vh;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.contain {
  position: relative;
  z-index: 1;
  width: 100vw;
  max-width: 500px;
  min-height: 100vh;
  border: 1px solid #3BA8CF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}

h1 {
  display: block;
  max-width: 170px;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 13px;
  color: white;
  font-weight: 600;
}
h1 > img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.btn_area {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.btn_blue,
.btn_white {
  background: #2033AA;
  color: white;
  width: 90%;
  max-width: 350px;
  padding: 1.4rem 0;
  text-align: center;
  border-radius: 999px;
  margin: 5px 0;
  font-weight: bold;
  border: 2px solid #2033AA;
}

.btn_white {
  background: white;
  color: #2033AA;
}

.slide-items {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 3vh;
  margin-bottom: 5vh;
}

.slide-items img {
  display: block;
  width: 90%;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 13px;
}

h2 {
  color: white;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04rem;
  text-align: center;
}

.white {
  color: white;
}

.text_center {
  text-align: center;
}

p {
  line-height: 1.4rem;
  text-align: center;
}

#blobs {
  position: fixed; /* 背景に固定 */
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 600px;
  margin: 0 auto;
  height: 100vh;
  z-index: -1; /* 背景に回す */
  overflow: hidden;
  padding-top: 3vh;
}
#blobs svg {
  width: 200%; /* ←画面の2倍に拡大 */
  height: 200%;
  transform: translate(-25%, -25%);
  /* ←拡大した分を真ん中に寄せる */
  animation: slow-rotate 60s linear infinite; /* 60秒で一周 */
}

@keyframes slow-rotate {
  from {
    transform: translate(-25%, -25%) rotate(0deg);
  }
  to {
    transform: translate(-25%, -25%) rotate(-30deg);
  }
}
.logo {
  max-width: 150px;
}
.logo > img {
  width: 100%;
}

.inp_wrap {
  width: 70%;
}

.inp_text_gray {
  background: #F2F4F7;
  padding: 0.8rem;
  border-radius: 6px;
  margin: 5px 0;
  width: 100%;
}

input[type=checkbox] + span {
  display: flex;
  align-items: center;
}

input[type=checkbox] + span::before {
  display: inline-block;
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background-color: #F2F4F7;
  border-radius: 5px;
  margin-right: 0.5rem;
}

input[type=checkbox]:checked + span::before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpolyline fill='none' stroke='%230bd' stroke-width='4' points='2,7.3 7.3,12.7 18,2 '/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 2px;
}

.modal {
  display: none;
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 11;
  background: #fff;
  padding: 50px 30px 30px;
  width: 50%;
  height: auto;
  border-radius: 6px;
  overflow-y: auto;
}

.modal_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 10;
}

.modal_close {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.modal_send_box {
  width: 100%;
  height: 75vh;
  border-radius: 13px 13px 0 0;
  top: auto;
  bottom: 0;
}
.modal_send_box > p {
  width: 70%;
  margin: 0 auto;
}

#send {
  height: 50%;
}
#send > svg {
  display: block;
}

.p_title {
  max-width: 80%;
  margin: 0 auto;
}
.p_title > img {
  width: 100%;
}

.img100 {
  width: 100%;
}

.contentwrap {
  width: 90%;
  padding: 7vh 0;
  margin: 0 auto;
}

.white_box {
  width: 90%;
  border-radius: 13px;
  background: white;
  padding: 10%;
  margin: 0 auto 30px;
}
.white_box > dt {
  text-align: center;
  margin-bottom: 1rem;
}
.white_box > dt > img {
  display: block;
  width: 50px;
  margin-bottom: 10px;
  margin: 0 auto 5px;
}
.white_box dd {
  font-size: 14.5px;
  line-height: 1.5rem;
}

.gray_wrap {
  background: #F1F1F1;
  display: block;
  max-width: 500px;
  margin: 0 auto;
}
.gray_wrap > header {
  text-align: center;
  padding: 2rem 0;
  line-height: 1rem;
  background: #F1F1F1;
  font-weight: bold;
  box-shadow: 0px 0px 19px -1px rgb(225, 225, 225);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.gray_wrap > header > a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: 45px;
  position: absolute;
  left: 3vw;
  top: 1rem;
}
.gray_wrap > header > a > img {
  display: block;
  height: 100%;
}

.prog {
  height: 50px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  background: #F1F1F1;
  z-index: 0;
  margin-top: 100px;
  margin-bottom: 3vh;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.prog::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 100px;
  background: #A6B6CE;
  position: absolute;
  top: 50%;
}
.prog > span {
  font-size: 12px;
  color: #2033AA;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 80px;
}
.prog > span:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background: #A6B6CE;
}
.prog > span:first-of-type {
  justify-content: left;
}
.prog > span:last-of-type {
  justify-content: right;
}
.prog > span > p {
  width: 100%;
  margin-top: -4px;
}
.prog > span.big:before {
  content: "";
  width: 14px;
  height: 14px;
  background: #2033AA;
  position: relative;
  z-index: 2;
}

.btn_grad {
  display: block;
  width: 70%;
  margin: 3vh auto;
}

.btn_grad::file-selector-button {
  font-weight: bold;
  color: white;
  background: linear-gradient(to bottom, #3149DD, #3BA8CF);
  font-size: 14px;
  border: 0;
  border-radius: 12px;
  text-align: center;
  display: block;
  width: 100%;
  height: 70px;
}

.pict_area {
  margin: 5vh auto;
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.pict_area > img {
  width: 200px;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 13px;
}
.pict_area .close {
  background: #2033AA;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  position: absolute;
  right: -10px;
  top: -10px;
}

.gray_content_area {
  width: 85%;
  margin: 0 auto 4vh;
}
.gray_content_area > span {
  display: block;
  width: 80%;
  margin: 0 auto;
  height: 400px;
  border-radius: 13px;
}

.input_textarea {
  background: white;
  color: #464748;
  width: 100%;
  height: 150px;
  border-radius: 13px;
  padding: 1rem;
  line-height: 1.4rem;
}
.input_textarea::-moz-placeholder {
  color: #A6B6CE;
  line-height: 1.4rem;
}
.input_textarea::placeholder {
  color: #A6B6CE;
  line-height: 1.4rem;
}

.p_rad {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 13px;
}

.btn_box {
  width: 100%;
  margin: 5vh 0 7vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.btn_box .radio-area {
  width: -moz-fit-content;
  width: fit-content;
  margin: 1% 0;
}
.btn_box .radio-area input[type=radio] {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.btn_box .radio-area label {
  display: block;
  cursor: pointer;
  border-radius: 7px;
  padding: 4vh 1rem;
  color: #fff;
  background-color: #fff;
  text-align: center;
  transition: 0.5s;
  color: #2033AA;
  font-weight: bold;
}
.btn_box .radio-area input[type=radio]:checked + label {
  background: #DAE4F3;
  color: #2033AA;
}

.btn_play {
  display: block;
  width: 90px;
  margin: 0 auto -4vh;
}
.btn_play > img {
  display: block;
  width: 100%;
}

.btn_play2 {
  display: block;
  width: 90px;
  margin: -4vh auto -5vh;
}
.btn_play2 > img {
  display: block;
  width: 100%;
}

.title01 {
  font-weight: bold;
  font-size: 20px;
  width: 100%;
  text-align: center;
}

.title02 {
  color: #2033AA;
  font-size: 14px;
  margin-top: 5px;
  width: 100%;
  text-align: center;
}

.border_top {
  width: 70%;
  font-size: 15px;
  line-height: 1.3rem;
  margin: 10vh auto 0;
  text-align: left;
  border-top: 2px dotted #A6B6CE;
  padding: 0.7rem 0;
}

.slide-items2 {
  width: 75%;
  margin: 0 auto;
}
.slide-items2 img {
  width: 90%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
}

#success {
  width: 60%;
  margin: 0 auto;
}

.white_head {
  width: 100%;
  max-width: 500px;
  padding: 5vh 0 2vh;
  background: white;
  color: #3149DD;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.white_head::before {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background: url(../img/vector.png) no-repeat;
  background-size: cover;
  background-position: bottom;
  position: absolute;
  bottom: -30px;
}

.title03 {
  color: white;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin: 4vh 0 0;
}

.pop {
  width: 70%;
  max-width: 270px;
  margin: 0 auto;
  margin-bottom: 2vh;
}
.pop > img {
  width: 100%;
}

#confetti {
  display: block;
  width: 100%;
  height: 400px;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
}
#confetti > svg {
  display: block;
  width: 100%;
}

.anim-box.poyoyon.is-animated {
  animation: poyoyon2 1s ease-in-out forwards;
}

@keyframes poyoyon2 {
  0% {
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1, 1) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}
.text_important {
  background: #DAE4F3;
  color: #2034AA;
  padding: 0.6rem;
  font-size: 14px;
  display: inline-block;
  border-radius: 100px;
  margin: 0 auto;
}

.title_blue {
  color: #2033AA;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.kakobox {
  margin: 3vh auto 0vh;
}
.kakobox > div {
  display: flex;
}
.kakobox > div span {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 13px;
  margin: 0 5px;
}
.kakobox > div span > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 13px;
}

.selected {
  display: block;
  position: relative;
}
.selected::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #2033AA;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  opacity: 0.6;
}
.selected::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50%;
  height: 50%;
  background: url(../img/check2.svg) no-repeat;
  background-size: contain;
}/*# sourceMappingURL=style.css.map */